commit e2860fde14eec638475616a9e7e31d280fcb2344 Author: karniv00l Date: Mon Mar 22 22:29:03 2021 +0100 Initial commit diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..8822ba2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +indent_style = space +indent_size = 2 diff --git a/.env b/.env new file mode 100644 index 0000000..6ce384e --- /dev/null +++ b/.env @@ -0,0 +1 @@ +BROWSER=none diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..fd43647 --- /dev/null +++ b/.eslintignore @@ -0,0 +1 @@ +/src/**/*.js diff --git a/.eslintrc.yml b/.eslintrc.yml new file mode 100644 index 0000000..990e41f --- /dev/null +++ b/.eslintrc.yml @@ -0,0 +1,49 @@ +--- +settings: + import/core-modules: + - electron + import/resolver: + node: + extensions: + - ".js" + - ".jsx" + - ".ts" + - ".tsx" +extends: + - react-app + - airbnb + - plugin:jsx-a11y/recommended + - prettier +plugins: + - jsx-a11y + - prettier +rules: + semi: + - error + - always + comma-dangle: + - error + - always-multiline + react/jsx-filename-extension: + - 1 + - extensions: + - ".jsx" + - ".tsx" + import/extensions: 0 + react/react-in-jsx-scope: 0 + react/jsx-props-no-spreading: 0 + object-curly-spacing: + - error + - always + quotes: + - error + - single + no-console: 0 + no-plusplus: 0 + import/no-extraneous-dependencies: 0 + no-undef: 1 + react/require-default-props: 0 + no-unused-vars: 0 + '@typescript-eslint/no-unused-vars': 1 + no-shadow: 0 + '@typescript-eslint/no-shadow': 2 diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..8abca40 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "npm" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "daily" diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f7a443f --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +node_modules +.pnp +.pnp.js + +# testing +/coverage + +# production build +/build +/out + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +.eslintcache + +# custom ts builds +/src/**/*.js diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..2d4c9a5 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "editorconfig.editorconfig", + "dbaeumer.vscode-eslint", + "sonarsource.sonarlint-vscode", + "davidanson.vscode-markdownlint" + ] +} diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d05c79f --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Piotr Rogowski + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..e72bab6 --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +# SpeedyTuner Cloud + +Share your Speeduino tune and logs. + +## Development + +Recommended dev environment: + +- [Node LTS](https://nodejs.org/) 14.x.x + +```bash +# install packages +npm install + +# run development server +npm start + +# open in browser +open http://localhost:3000 +``` diff --git a/craco-less.js b/craco-less.js new file mode 100644 index 0000000..53c53c4 --- /dev/null +++ b/craco-less.js @@ -0,0 +1,140 @@ +const path = require('path'); +const { getLoader, loaderByName, throwUnexpectedConfigError } = require('@craco/craco'); + +const overrideWebpackConfig = ({ context, webpackConfig, pluginOptions }) => { + const throwError = (message, githubIssueQuery) => + throwUnexpectedConfigError({ + packageName: 'craco-less', + githubRepo: 'DocSpring/craco-less', + message, + githubIssueQuery, + }); + + const lessExtension = /\.less$/; + const options = pluginOptions || {}; + const pathSep = path.sep; + + const oneOfRule = webpackConfig.module.rules.find(rule => rule.oneOf); + if (!oneOfRule) { + throwError( + 'Can\'t find a \'oneOf\' rule under module.rules in the ' + + `${context.env} webpack config!`, + 'webpack+rules+oneOf', + ); + } + + const sassRule = oneOfRule.oneOf.find( + rule => rule.test && rule.test.toString().includes('scss|sass'), + ); + if (!sassRule) { + throwError( + 'Can\'t find the webpack rule to match scss/sass files in the ' + + `${context.env} webpack config!`, + 'webpack+rules+scss+sass', + ); + } + let lessRule = { + exclude: /\.module\.(less)$/, + test: lessExtension, + use: [], + }; + + const loaders = sassRule.use; + loaders.forEach(ruleOrLoader => { + let rule; + if (typeof ruleOrLoader === 'string') { + rule = { + loader: ruleOrLoader, + options: {}, + }; + } else { + rule = ruleOrLoader; + } + + if ( + (context.env === 'development' || context.env === 'test') && + rule.loader.includes(`${pathSep}style-loader${pathSep}`) + ) { + lessRule.use.push({ + loader: rule.loader, + options: { + ...rule.options, + ...(options.styleLoaderOptions || {}), + }, + }); + } else if (rule.loader.includes(`${pathSep}css-loader${pathSep}`)) { + lessRule.use.push({ + loader: rule.loader, + options: { + ...rule.options, + ...(options.cssLoaderOptions || {}), + }, + }); + } else if (rule.loader.includes(`${pathSep}postcss-loader${pathSep}`)) { + lessRule.use.push({ + loader: rule.loader, + options: { + ...rule.options, + ...(options.postcssLoaderOptions || {}), + }, + }); + } else if (rule.loader.includes(`${pathSep}resolve-url-loader${pathSep}`)) { + lessRule.use.push({ + loader: rule.loader, + options: { + ...rule.options, + ...(options.resolveUrlLoaderOptions || {}), + }, + }); + } else if ( + context.env === 'production' && + rule.loader.includes(`${pathSep}mini-css-extract-plugin${pathSep}`) + ) { + lessRule.use.push({ + loader: rule.loader, + options: { + ...rule.options, + ...(options.miniCssExtractPluginOptions || {}), + }, + }); + } else if (rule.loader.includes(`${pathSep}sass-loader${pathSep}`)) { + const defaultLessLoaderOptions = + context.env === 'production' ? { sourceMap: true } : {}; + lessRule.use.push({ + loader: require.resolve('less-loader'), + options: { + ...defaultLessLoaderOptions, + ...options.lessLoaderOptions, + }, + }); + } else { + throwError( + `Found an unhandled loader in the ${context.env} webpack config: ${rule.loader}`, + 'webpack+unknown+rule', + ); + } + }); + + if (options.modifyLessRule) { + lessRule = options.modifyLessRule(lessRule, context); + } + oneOfRule.oneOf.push(lessRule); + + const { isFound, match: fileLoaderMatch } = getLoader( + webpackConfig, + loaderByName('file-loader'), + ); + if (!isFound) { + throwError( + `Can't find file-loader in the ${context.env} webpack config!`, + 'webpack+file-loader', + ); + } + fileLoaderMatch.loader.exclude.push(lessExtension); + + return webpackConfig; +}; + +module.exports = { + overrideWebpackConfig, +}; diff --git a/craco.config.js b/craco.config.js new file mode 100644 index 0000000..5716f47 --- /dev/null +++ b/craco.config.js @@ -0,0 +1,16 @@ +const CracoLessPlugin = require('./craco-less'); + +module.exports = { + plugins: [ + { + plugin: CracoLessPlugin, + options: { + lessLoaderOptions: { + lessOptions: { + javascriptEnabled: true, + }, + }, + }, + }, + ], +}; diff --git a/forge.config.js b/forge.config.js new file mode 100644 index 0000000..366edb3 --- /dev/null +++ b/forge.config.js @@ -0,0 +1,7 @@ +module.exports = { + makers: [ + { + name: '@electron-forge/maker-dmg' + }, + ], +}; diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..0864c08 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,46850 @@ +{ + "name": "speedy-tuner", + "version": "0.1.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "version": "0.1.0", + "license": "MIT", + "dependencies": { + "@reduxjs/toolkit": "^1.5.0", + "antd": "^4.14.0", + "electron-squirrel-startup": "^1.0.0", + "js-yaml": "^4.0.0 ", + "mlg-converter": "^0.1.5", + "parsimmon": "^1.16.0", + "react": "^17.0.1", + "react-dom": "^17.0.1", + "react-perfect-scrollbar": "^1.5.8", + "react-redux": "^7.2.2", + "react-router-dom": "^5.2.0", + "react-scripts": "^4.0.3", + "react-table-drag-select": "^0.3.1", + "recharts": "^2.0.8" + }, + "devDependencies": { + "@craco/craco": "^6.1.1", + "@electron-forge/cli": "^6.0.0-beta.54", + "@electron-forge/maker-deb": "^6.0.0-beta.54", + "@electron-forge/maker-dmg": "^6.0.0-beta.54", + "@electron-forge/maker-rpm": "^6.0.0-beta.54", + "@electron-forge/maker-squirrel": "^6.0.0-beta.54", + "@electron-forge/maker-zip": "^6.0.0-beta.54", + "@types/js-yaml": "^4.0.0", + "@types/node": "^14.14.35", + "@types/parsimmon": "^1.10.6", + "@types/react": "^17.0.3", + "@types/react-dom": "^17.0.2", + "@types/react-redux": "^7.1.16", + "@types/react-router-dom": "^5.1.7", + "concurrently": "^6.0.0", + "electron": "^12.0.1", + "eslint": "^7.22.0", + "eslint-config-airbnb": "^18.2.1", + "eslint-config-airbnb-base": "^14.2.1", + "eslint-config-prettier": "^8.1.0", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-jsx-a11y": "^6.4.1", + "eslint-plugin-prettier": "^3.3.1", + "less-loader": "^6.1.0", + "prettier": "^2.2.1", + "typescript": "^4.1.5", + "wait-on": "^5.3.0" + } + }, + "node_modules/@ant-design/colors": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-6.0.0.tgz", + "integrity": "sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==", + "dependencies": { + "@ctrl/tinycolor": "^3.4.0" + } + }, + "node_modules/@ant-design/icons": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/@ant-design/icons/-/icons-4.6.2.tgz", + "integrity": "sha512-QsBG2BxBYU/rxr2eb8b2cZ4rPKAPBpzAR+0v6rrZLp/lnyvflLH3tw1vregK+M7aJauGWjIGNdFmUfpAOtw25A==", + "dependencies": { + "@ant-design/colors": "^6.0.0", + "@ant-design/icons-svg": "^4.0.0", + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-util": "^5.9.4" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "react": ">=16.0.0" + } + }, + "node_modules/@ant-design/icons-svg": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.1.0.tgz", + "integrity": "sha512-Fi03PfuUqRs76aI3UWYpP864lkrfPo0hluwGqh7NJdLhvH4iRDc3jbJqZIvRDLHKbXrvAfPPV3+zjUccfFvWOQ==" + }, + "node_modules/@ant-design/react-slick": { + "version": "0.28.2", + "resolved": "https://registry.npmjs.org/@ant-design/react-slick/-/react-slick-0.28.2.tgz", + "integrity": "sha512-nkrvXsO29pLToFaBb3MlJY4McaUFR4UHtXTz6A5HBzYmxH4SwKerX54mWdGc/6tKpHvS3vUwjEOt2T5XqZEo8Q==", + "dependencies": { + "@babel/runtime": "^7.10.4", + "classnames": "^2.2.5", + "json2mq": "^0.2.0", + "lodash": "^4.17.15", + "resize-observer-polyfill": "^1.5.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.13.11", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.11.tgz", + "integrity": "sha512-BwKEkO+2a67DcFeS3RLl0Z3Gs2OvdXewuWjc1Hfokhb5eQWP9YRYH1/+VrVZvql2CfjOiNGqSAFOYt4lsqTHzg==" + }, + "node_modules/@babel/core": { + "version": "7.12.3", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz", + "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.1", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.1", + "@babel/parser": "^7.12.3", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.1", + "@babel/types": "^7.12.1", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@babel/core/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/generator": { + "version": "7.13.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.13.9.tgz", + "integrity": "sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw==", + "dependencies": { + "@babel/types": "^7.13.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + } + }, + "node_modules/@babel/generator/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz", + "integrity": "sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz", + "integrity": "sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==", + "dependencies": { + "@babel/helper-explode-assignable-expression": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.10.tgz", + "integrity": "sha512-/Xju7Qg1GQO4mHZ/Kcs6Au7gfafgZnwm+a7sy/ow/tV1sHeraRUHbjdat8/UvDor4Tez+siGKDk6zIKtCPKVJA==", + "dependencies": { + "@babel/compat-data": "^7.13.8", + "@babel/helper-validator-option": "^7.12.17", + "browserslist": "^4.14.5", + "semver": "^6.3.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.13.11", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.11.tgz", + "integrity": "sha512-ays0I7XYq9xbjCSvT+EvysLgfc3tOkwCULHjrnscGT3A9qD4sk3wXnJ3of0MAWsWGjdinFvajHU2smYuqXKMrw==", + "dependencies": { + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-member-expression-to-functions": "^7.13.0", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/helper-replace-supers": "^7.13.0", + "@babel/helper-split-export-declaration": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz", + "integrity": "sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "regexpu-core": "^4.7.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz", + "integrity": "sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==", + "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", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0-0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-explode-assignable-expression": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz", + "integrity": "sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA==", + "dependencies": { + "@babel/types": "^7.13.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz", + "integrity": "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==", + "dependencies": { + "@babel/helper-get-function-arity": "^7.12.13", + "@babel/template": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-get-function-arity": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz", + "integrity": "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.0.tgz", + "integrity": "sha512-0kBzvXiIKfsCA0y6cFEIJf4OdzfpRuNk4+YTeHZpGGc666SATFKTz6sRncwFnQk7/ugJ4dSrCj6iJuvW4Qwr2g==", + "dependencies": { + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.0.tgz", + "integrity": "sha512-yvRf8Ivk62JwisqV1rFRMxiSMDGnN6KH1/mDMmIrij4jztpQNRoHqqMG3U6apYbGRPJpgPalhva9Yd06HlUxJQ==", + "dependencies": { + "@babel/types": "^7.13.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz", + "integrity": "sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g==", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.0.tgz", + "integrity": "sha512-Ls8/VBwH577+pw7Ku1QkUWIyRRNHpYlts7+qSqBBFCW3I8QteB9DxfcZ5YJpOwH6Ihe/wn8ch7fMGOP1OhEIvw==", + "dependencies": { + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-replace-supers": "^7.13.0", + "@babel/helper-simple-access": "^7.12.13", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/helper-validator-identifier": "^7.12.11", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0", + "lodash": "^4.17.19" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz", + "integrity": "sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", + "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz", + "integrity": "sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-wrap-function": "^7.13.0", + "@babel/types": "^7.13.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.0.tgz", + "integrity": "sha512-Segd5me1+Pz+rmN/NFBOplMbZG3SqRJOBlY+mA0SxAv6rjj7zJqr1AVr3SfzUVTLCv7ZLU5FycOM/SBGuLPbZw==", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.13.0", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz", + "integrity": "sha512-0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA==", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz", + "integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==", + "dependencies": { + "@babel/types": "^7.12.1" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz", + "integrity": "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==" + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz", + "integrity": "sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==" + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz", + "integrity": "sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA==", + "dependencies": { + "@babel/helper-function-name": "^7.12.13", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.13.10.tgz", + "integrity": "sha512-4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ==", + "dependencies": { + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz", + "integrity": "sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.12.11", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.13.11", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.13.11.tgz", + "integrity": "sha512-PhuoqeHoO9fc4ffMEVk4qb/w/s2iOSWohvbHxLtxui0eBg3Lg5gN1U8wp1V1u61hOWkPQJJyJzGH6Y+grwkq8Q==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.8.tgz", + "integrity": "sha512-rPBnhj+WgoSmgq+4gQUtXx/vOcU+UYtjy1AA/aeD61Hwj410fwYyqfUcRP3lR8ucgliVJL/G7sXcNUecC75IXA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-remap-async-to-generator": "^7.13.0", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz", + "integrity": "sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.1.tgz", + "integrity": "sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-decorators": "^7.12.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz", + "integrity": "sha512-ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz", + "integrity": "sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz", + "integrity": "sha512-w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz", + "integrity": "sha512-aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz", + "integrity": "sha512-iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz", + "integrity": "sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz", + "integrity": "sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g==", + "dependencies": { + "@babel/compat-data": "^7.13.8", + "@babel/helper-compilation-targets": "^7.13.8", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.13.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz", + "integrity": "sha512-0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.8.tgz", + "integrity": "sha512-hpbBwbTgd7Cz1QryvwJZRo1U0k1q8uyBmeXOSQUjdg/A2TASkhR/rz7AyqZ/kS8kbpsNA80rOYbxySBJAqmhhQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz", + "integrity": "sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz", + "integrity": "sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.13.tgz", + "integrity": "sha512-Rw6aIXGuqDLr6/LoBBYE57nKOzQpz/aDkKlMqEwH+Vp0MXbG6H/TfRjaY343LKxzAKAMXIHsQ8JzaZKuDZ9MwA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.13.tgz", + "integrity": "sha512-J/RYxnlSLXZLVR7wTRsozxKT8qbsx1mNKJzXEEjQ0Kjx1ZACcyHgbanNWNCFtc36IzuWhYWPpvJFFoexoOWFmA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz", + "integrity": "sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz", + "integrity": "sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz", + "integrity": "sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz", + "integrity": "sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.13.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz", + "integrity": "sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg==", + "dependencies": { + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-remap-async-to-generator": "^7.13.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz", + "integrity": "sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz", + "integrity": "sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz", + "integrity": "sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-replace-supers": "^7.13.0", + "@babel/helper-split-export-declaration": "^7.12.13", + "globals": "^11.1.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-classes/node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz", + "integrity": "sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.13.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz", + "integrity": "sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.13.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz", + "integrity": "sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz", + "integrity": "sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz", + "integrity": "sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==", + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.12.1.tgz", + "integrity": "sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-flow": "^7.12.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz", + "integrity": "sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.13.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz", + "integrity": "sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==", + "dependencies": { + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz", + "integrity": "sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz", + "integrity": "sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz", + "integrity": "sha512-EKy/E2NHhY/6Vw5d1k3rgoobftcNUmp9fGjb9XZwQLtTctsRBOTRO7RHHxfIky1ogMN5BxN7p9uMA3SzPfotMQ==", + "dependencies": { + "@babel/helper-module-transforms": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz", + "integrity": "sha512-9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw==", + "dependencies": { + "@babel/helper-module-transforms": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-simple-access": "^7.12.13", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz", + "integrity": "sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A==", + "dependencies": { + "@babel/helper-hoist-variables": "^7.13.0", + "@babel/helper-module-transforms": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-validator-identifier": "^7.12.11", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz", + "integrity": "sha512-D/ILzAh6uyvkWjKKyFE/W0FzWwasv6vPTSqPcjxFqn6QpX3u8DjRVliq4F2BamO2Wee/om06Vyy+vPkNrd4wxw==", + "dependencies": { + "@babel/helper-module-transforms": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz", + "integrity": "sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz", + "integrity": "sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz", + "integrity": "sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-replace-supers": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz", + "integrity": "sha512-Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.13.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz", + "integrity": "sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.13.10.tgz", + "integrity": "sha512-E+aCW9j7mLq01tOuGV08YzLBt+vSyr4bOPT75B6WrAlrUfmOYOZ/yWk847EH0dv0xXiCihWLEmlX//O30YhpIw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.13.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz", + "integrity": "sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.17.tgz", + "integrity": "sha512-mwaVNcXV+l6qJOuRhpdTEj8sT/Z0owAVWf9QujTZ0d2ye9X/K+MTOTSizcgKOj18PGnTc/7g1I4+cIUjsKhBcw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-jsx": "^7.12.13", + "@babel/types": "^7.12.17" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz", + "integrity": "sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ==", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.12.17" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz", + "integrity": "sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz", + "integrity": "sha512-lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA==", + "dependencies": { + "regenerator-transform": "^0.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz", + "integrity": "sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz", + "integrity": "sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==", + "dependencies": { + "@babel/helper-module-imports": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "resolve": "^1.8.1", + "semver": "^5.5.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz", + "integrity": "sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz", + "integrity": "sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz", + "integrity": "sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz", + "integrity": "sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.13.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz", + "integrity": "sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.13.0.tgz", + "integrity": "sha512-elQEwluzaU8R8dbVuW2Q2Y8Nznf7hnjM7+DSCd14Lo5fF63C9qNLbwZYbmZrtV9/ySpSUpkRpQXvJb6xyu4hCQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-typescript": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz", + "integrity": "sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz", + "integrity": "sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.13.10.tgz", + "integrity": "sha512-nOsTScuoRghRtUsRr/c69d042ysfPHcu+KOB4A9aAO9eJYqrkat+LF8G1yp1HD18QiwixT2CisZTr/0b3YZPXQ==", + "dependencies": { + "@babel/compat-data": "^7.13.8", + "@babel/helper-compilation-targets": "^7.13.10", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-validator-option": "^7.12.17", + "@babel/plugin-proposal-async-generator-functions": "^7.13.8", + "@babel/plugin-proposal-class-properties": "^7.13.0", + "@babel/plugin-proposal-dynamic-import": "^7.13.8", + "@babel/plugin-proposal-export-namespace-from": "^7.12.13", + "@babel/plugin-proposal-json-strings": "^7.13.8", + "@babel/plugin-proposal-logical-assignment-operators": "^7.13.8", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8", + "@babel/plugin-proposal-numeric-separator": "^7.12.13", + "@babel/plugin-proposal-object-rest-spread": "^7.13.8", + "@babel/plugin-proposal-optional-catch-binding": "^7.13.8", + "@babel/plugin-proposal-optional-chaining": "^7.13.8", + "@babel/plugin-proposal-private-methods": "^7.13.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.12.13", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.12.13", + "@babel/plugin-transform-arrow-functions": "^7.13.0", + "@babel/plugin-transform-async-to-generator": "^7.13.0", + "@babel/plugin-transform-block-scoped-functions": "^7.12.13", + "@babel/plugin-transform-block-scoping": "^7.12.13", + "@babel/plugin-transform-classes": "^7.13.0", + "@babel/plugin-transform-computed-properties": "^7.13.0", + "@babel/plugin-transform-destructuring": "^7.13.0", + "@babel/plugin-transform-dotall-regex": "^7.12.13", + "@babel/plugin-transform-duplicate-keys": "^7.12.13", + "@babel/plugin-transform-exponentiation-operator": "^7.12.13", + "@babel/plugin-transform-for-of": "^7.13.0", + "@babel/plugin-transform-function-name": "^7.12.13", + "@babel/plugin-transform-literals": "^7.12.13", + "@babel/plugin-transform-member-expression-literals": "^7.12.13", + "@babel/plugin-transform-modules-amd": "^7.13.0", + "@babel/plugin-transform-modules-commonjs": "^7.13.8", + "@babel/plugin-transform-modules-systemjs": "^7.13.8", + "@babel/plugin-transform-modules-umd": "^7.13.0", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.13", + "@babel/plugin-transform-new-target": "^7.12.13", + "@babel/plugin-transform-object-super": "^7.12.13", + "@babel/plugin-transform-parameters": "^7.13.0", + "@babel/plugin-transform-property-literals": "^7.12.13", + "@babel/plugin-transform-regenerator": "^7.12.13", + "@babel/plugin-transform-reserved-words": "^7.12.13", + "@babel/plugin-transform-shorthand-properties": "^7.12.13", + "@babel/plugin-transform-spread": "^7.13.0", + "@babel/plugin-transform-sticky-regex": "^7.12.13", + "@babel/plugin-transform-template-literals": "^7.13.0", + "@babel/plugin-transform-typeof-symbol": "^7.12.13", + "@babel/plugin-transform-unicode-escapes": "^7.12.13", + "@babel/plugin-transform-unicode-regex": "^7.12.13", + "@babel/preset-modules": "^0.1.4", + "@babel/types": "^7.13.0", + "babel-plugin-polyfill-corejs2": "^0.1.4", + "babel-plugin-polyfill-corejs3": "^0.1.3", + "babel-plugin-polyfill-regenerator": "^0.1.2", + "core-js-compat": "^3.9.0", + "semver": "^6.3.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz", + "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.13.tgz", + "integrity": "sha512-TYM0V9z6Abb6dj1K7i5NrEhA13oS5ujUYQYDfqIBXYHOc2c2VkFgc+q9kyssIyUfy4/hEwqrgSlJ/Qgv8zJLsA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-transform-react-display-name": "^7.12.13", + "@babel/plugin-transform-react-jsx": "^7.12.13", + "@babel/plugin-transform-react-jsx-development": "^7.12.12", + "@babel/plugin-transform-react-pure-annotations": "^7.12.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.12.1.tgz", + "integrity": "sha512-hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-transform-typescript": "^7.12.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.10.tgz", + "integrity": "sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw==", + "dependencies": { + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/@babel/runtime-corejs3": { + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.13.10.tgz", + "integrity": "sha512-x/XYVQ1h684pp1mJwOV4CyvqZXqbc8CMsMGUnAbuc82ZCdv1U63w5RSUzgDSXQHG5Rps/kiksH6g2D5BuaKyXg==", + "dependencies": { + "core-js-pure": "^3.0.0", + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/@babel/template": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz", + "integrity": "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/parser": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/template/node_modules/@babel/code-frame": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", + "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", + "dependencies": { + "@babel/highlight": "^7.12.13" + } + }, + "node_modules/@babel/traverse": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.0.tgz", + "integrity": "sha512-xys5xi5JEhzC3RzEmSGrs/b3pJW/o87SypZ+G/PhaE7uqVQNv/jlmVIBXuoh5atqQ434LfXV+sf23Oxj0bchJQ==", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.13.0", + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/parser": "^7.13.0", + "@babel/types": "^7.13.0", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.19" + } + }, + "node_modules/@babel/traverse/node_modules/@babel/code-frame": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", + "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", + "dependencies": { + "@babel/highlight": "^7.12.13" + } + }, + "node_modules/@babel/traverse/node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/types": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.13.0.tgz", + "integrity": "sha512-hE+HE8rnG1Z6Wzo+MhaKE5lM5eMx71T4EHJgku2E3xIfaULhDcxiiRxUYgwX8qwP1BBSlag+TdGOt6JAidIZTA==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.12.11", + "lodash": "^4.17.19", + "to-fast-properties": "^2.0.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + }, + "node_modules/@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "dependencies": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + }, + "bin": { + "watch": "cli.js" + }, + "engines": { + "node": ">=0.1.95" + } + }, + "node_modules/@craco/craco": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@craco/craco/-/craco-6.1.1.tgz", + "integrity": "sha512-4irfOM8RgYNhFJzAXyIuM8CZLju2Jh9GdOem8uqM2/cI2xPulQSxZKU/9q3uiSbFUJfQLi3pomVKii6KzWLu3Q==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "webpack-merge": "^4.2.2" + }, + "bin": { + "craco": "bin/craco.js" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "react-scripts": "^4.0.0" + } + }, + "node_modules/@csstools/convert-colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz", + "integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@csstools/normalize.css": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-10.1.0.tgz", + "integrity": "sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==" + }, + "node_modules/@ctrl/tinycolor": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.4.0.tgz", + "integrity": "sha512-JZButFdZ1+/xAfpguQHoabIXkcqRRKpMrWKBkpEZZyxfY9C1DpADFB8PEqGSTeFr135SaTRfKqGKx5xSCLI7ZQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@electron-forge/async-ora": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0-beta.54.tgz", + "integrity": "sha512-OCoHds0BIXaB54HgKw6pjlHC1cnaTcfJfVVkPSJl1GLC3VShZ5bETJfsitwbiP2kbfKLUQFayW27sqbwnwQR2w==", + "dev": true, + "dependencies": { + "colors": "^1.4.0", + "debug": "^4.1.0", + "log-symbols": "^4.0.0", + "ora": "^5.0.0", + "pretty-ms": "^7.0.0" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/cli": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0-beta.54.tgz", + "integrity": "sha512-+Ui1BI8c5CnBawH2OEySa5QR8DzrFd/I9FHlClvrTsIDfsBAeMSv9NTbSNcmo9Af5kI+aNsLQa8tp1vD8DNrng==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/malept" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/subscription/pkg/npm-.electron-forge-cli?utm_medium=referral&utm_source=npm_fund" + } + ], + "dependencies": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/core": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "@electron/get": "^1.9.0", + "colors": "^1.4.0", + "commander": "^4.1.1", + "debug": "^4.1.0", + "fs-extra": "^9.0.1", + "inquirer": "^7.3.3", + "semver": "^7.2.1" + }, + "bin": { + "electron-forge": "dist/electron-forge.js", + "electron-forge-vscode-nix": "script/vscode.sh", + "electron-forge-vscode-win": "script/vscode.cmd" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/core": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.54.tgz", + "integrity": "sha512-yggZeiwRLnIsQYCT5jKhx2L7I02CwUCjnIzA+CqUZXD0AU1c2o0BA/26dNOGvY/+pr5yWjOXcrGy1hvj3dnLmQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/malept" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/subscription/pkg/npm-.electron-forge-core?utm_medium=referral&utm_source=npm_fund" + } + ], + "dependencies": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/installer-base": "6.0.0-beta.54", + "@electron-forge/installer-deb": "6.0.0-beta.54", + "@electron-forge/installer-dmg": "6.0.0-beta.54", + "@electron-forge/installer-exe": "6.0.0-beta.54", + "@electron-forge/installer-rpm": "6.0.0-beta.54", + "@electron-forge/installer-zip": "6.0.0-beta.54", + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/plugin-base": "6.0.0-beta.54", + "@electron-forge/publisher-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "@electron-forge/template-base": "6.0.0-beta.54", + "@electron-forge/template-typescript": "6.0.0-beta.54", + "@electron-forge/template-typescript-webpack": "6.0.0-beta.54", + "@electron-forge/template-webpack": "6.0.0-beta.54", + "@electron/get": "^1.9.0", + "@malept/cross-spawn-promise": "^1.1.0", + "colors": "^1.4.0", + "debug": "^4.1.0", + "electron-packager": "^15.0.0", + "electron-rebuild": "^2.0.3", + "find-up": "^5.0.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.5", + "lodash": "^4.17.20", + "log-symbols": "^4.0.0", + "node-fetch": "^2.6.0", + "nugget": "^2.0.1", + "resolve-package": "^1.0.1", + "semver": "^7.2.1", + "source-map-support": "^0.5.13", + "sudo-prompt": "^9.1.1", + "username": "^5.1.0", + "yarn-or-npm": "^3.0.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/installer-base": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.54.tgz", + "integrity": "sha512-q6Z5kBAE6StKqn+3Z5tXVHu7WGCb9OMeIomw9H9Q41UUIehF7V0J3tCWTkJdhZ8D6/tkXcis3GKptaj0wfMpyg==", + "dev": true, + "dependencies": { + "@electron-forge/async-ora": "6.0.0-beta.54" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/installer-darwin": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-darwin/-/installer-darwin-6.0.0-beta.54.tgz", + "integrity": "sha512-kRbH24+QBhbcIugnIvevnf43JGzLFLoyFsoY3YeyZeeDL3vfyg0vtSyUx0hfq1GpHG+zObDf3o18c3WbxdXlXA==", + "dev": true, + "dependencies": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/installer-base": "6.0.0-beta.54", + "fs-extra": "^9.0.1", + "sudo-prompt": "^9.1.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/installer-deb": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.54.tgz", + "integrity": "sha512-UbJR2Md0SBqex5AIv9YZ56hY2Iz5gZ6f1iAx0q4PlYpCY19W9nRXdudLNhx1w5go26DsT53+h6EzX2NGpBLq3Q==", + "dev": true, + "dependencies": { + "@electron-forge/installer-linux": "6.0.0-beta.54" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/installer-dmg": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-dmg/-/installer-dmg-6.0.0-beta.54.tgz", + "integrity": "sha512-F9jwhUTzdFNlbLus7RQ8paoGPryr79JFYDLi42f0dyuFwlOjwlrA1wN5xWqrvcMeqFlc3DfjjeRWZ+10RQyorA==", + "dev": true, + "dependencies": { + "@electron-forge/installer-darwin": "6.0.0-beta.54", + "@malept/cross-spawn-promise": "^1.1.0", + "debug": "^4.1.0", + "fs-extra": "^9.0.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/installer-exe": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.54.tgz", + "integrity": "sha512-PE7RBPerSenNcSkKXJWpervKNl7AVT+JeMzx61OHUQSw3h63NHRvXWh31llxk32mmJcaKRgGle2GsWob87Lv/w==", + "dev": true, + "dependencies": { + "@electron-forge/installer-base": "6.0.0-beta.54", + "open": "^7.2.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/installer-linux": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-linux/-/installer-linux-6.0.0-beta.54.tgz", + "integrity": "sha512-WQVV5fitsfTyktjb18m9Bx+Dho6rCFvVILqFNZAu1RfXIsjLl/h0WdkozdGDccfeDMqlRYmaNs3e5THn5swnAg==", + "dev": true, + "dependencies": { + "@electron-forge/installer-base": "6.0.0-beta.54", + "sudo-prompt": "^9.1.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/installer-rpm": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-rpm/-/installer-rpm-6.0.0-beta.54.tgz", + "integrity": "sha512-8gaJA2m8+Y/ZhV4xEeijXz8UksrliMEzyUAdwM5ZdAsmfmGlnhchGr0L6rI23D66dQP9DeyvUIuUwXrsTlj1nQ==", + "dev": true, + "dependencies": { + "@electron-forge/installer-linux": "6.0.0-beta.54" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/installer-zip": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-zip/-/installer-zip-6.0.0-beta.54.tgz", + "integrity": "sha512-KCY5zreA79wjZODhLmtrbFweTWdlh9JgmW9WruIrmHm3sK19rRhCdaZ+Dg5ZWUhMx2A79d5a2C7r78lWGcHl7A==", + "dev": true, + "dependencies": { + "@electron-forge/installer-darwin": "6.0.0-beta.54", + "@malept/cross-spawn-promise": "^1.1.0", + "fs-extra": "^9.0.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/maker-base": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.54.tgz", + "integrity": "sha512-4y0y15ieb1EOR5mibtFM9tZzaShbAO0RZu6ARLCpD5BgKuJBzXRPfWvEmY6WeDNzoWTJ+mQdYikLAeOL2E9mew==", + "dev": true, + "dependencies": { + "@electron-forge/shared-types": "6.0.0-beta.54", + "fs-extra": "^9.0.1", + "which": "^2.0.2" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/maker-deb": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-deb/-/maker-deb-6.0.0-beta.54.tgz", + "integrity": "sha512-PEAYULi7n/JkwvaEQnM554ewmLYkxGtHvuh6vUf5wsh48Xw3jcEVHejsc4FDjx5I6cKAByb9nscTtZpKt3ngXw==", + "dev": true, + "dependencies": { + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54" + }, + "engines": { + "node": ">= 10.0.0" + }, + "optionalDependencies": { + "electron-installer-debian": "^3.0.0" + } + }, + "node_modules/@electron-forge/maker-dmg": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-dmg/-/maker-dmg-6.0.0-beta.54.tgz", + "integrity": "sha512-5FmzxBiBxTS7z9SthJKRWpOtMKeDrPqvdi3l56DhwAO6beV3g2Gx2bpx9Y8PZXCU+fLDmcTgUstzjxFF7LLggQ==", + "dev": true, + "dependencies": { + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "fs-extra": "^9.0.1" + }, + "engines": { + "node": ">= 10.0.0" + }, + "optionalDependencies": { + "electron-installer-dmg": "^3.0.0" + } + }, + "node_modules/@electron-forge/maker-rpm": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-rpm/-/maker-rpm-6.0.0-beta.54.tgz", + "integrity": "sha512-6nqBOUnojRE8+KdvE8zVXN2/H/V/QuWJQ4cwCLahJQxG1kG5RXOh6VbsM1mEFxjJwOhVnK+wkNCODf1qi56JZw==", + "dev": true, + "dependencies": { + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54" + }, + "engines": { + "node": ">= 10.0.0" + }, + "optionalDependencies": { + "electron-installer-redhat": "^3.2.0" + } + }, + "node_modules/@electron-forge/maker-squirrel": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-squirrel/-/maker-squirrel-6.0.0-beta.54.tgz", + "integrity": "sha512-JJ+HmUe94zZ6mZnyv3IvNLQ5nwoj4dcQ4gzwps4P3fCEpuABMr74KOlza7fMXrrs8cwOrGfMFwsk80GTcLdWkg==", + "dev": true, + "dependencies": { + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "fs-extra": "^9.0.1" + }, + "engines": { + "node": ">= 10.0.0" + }, + "optionalDependencies": { + "electron-winstaller": "^4.0.1" + } + }, + "node_modules/@electron-forge/maker-zip": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-zip/-/maker-zip-6.0.0-beta.54.tgz", + "integrity": "sha512-wbJhK1rDOCZMTtKrjvavT8R+Yi+v/6axsnTXvzbkzzMQ0xADKNslTwzO6mmbBJea4oIbYmQ44DRAjI21TNyQ/A==", + "dev": true, + "dependencies": { + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "cross-zip": "^3.0.0", + "fs-extra": "^9.0.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/plugin-base": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.54.tgz", + "integrity": "sha512-8HwGzgNCHo2PgUfNnTch3Gvj7l6fqOgjnARK1y056UfsxFy+hwvHaAO+7LLfr7ktNwU/bH3hGhOpE+ZmBSwSqQ==", + "dev": true, + "dependencies": { + "@electron-forge/shared-types": "6.0.0-beta.54" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/publisher-base": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0-beta.54.tgz", + "integrity": "sha512-Dny0jW0N8QcNYKHTtzQFZD4pBWJ7tclJWf3ZCX031vUKG7RhThdA06IPNzV6JtWJswrvAE9TPndzZONMza2V7g==", + "dev": true, + "dependencies": { + "@electron-forge/shared-types": "6.0.0-beta.54" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/shared-types": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0-beta.54.tgz", + "integrity": "sha512-6CzWKFR17rxxeIqm1w5ZyT9uTAHSVAjhqL8c+TmizF2703GyCEusUkjP2UXt/tZNY4MJlukZoJM66Bct6oZJ+w==", + "dev": true, + "dependencies": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "electron-packager": "^15.0.0", + "electron-rebuild": "^2.0.3", + "ora": "^5.0.0" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/template-base": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0-beta.54.tgz", + "integrity": "sha512-LuSpeOiM6AzUbamz5U/NqRkn4y7dzof1JK1ISAb+6tORf7JU014aKqDcLdwgP8Lxaz6P1bdlMmNJTvg5+SBrEw==", + "dev": true, + "dependencies": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "debug": "^4.1.0", + "fs-extra": "^9.0.1", + "username": "^5.1.0" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/template-typescript": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.54.tgz", + "integrity": "sha512-7V87LWH+vJ1YibM9MsTttbz7upfwLrmXgchQ399EfLxK306g7q/ouyGkeTerhLr2gCUAvm/Oqx+sXQ7402ol9w==", + "dev": true, + "dependencies": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "@electron-forge/template-base": "6.0.0-beta.54", + "fs-extra": "^9.0.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/template-typescript-webpack": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/template-typescript-webpack/-/template-typescript-webpack-6.0.0-beta.54.tgz", + "integrity": "sha512-1MIw1eGlMZg7KLG4oAEE0rB28WDOtz01OSoW2a2NqkmUzmu4BxJdSvQ97Tp7xCU0naW0H1uU39B9QOjJQgLGCQ==", + "dev": true, + "dependencies": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "@electron-forge/template-base": "6.0.0-beta.54", + "fs-extra": "^9.0.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron-forge/template-webpack": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.54.tgz", + "integrity": "sha512-4/zUOZ8MCZqs8PcUCeeG6ofpy6HT53tQiLknM23OPaFP6ckuE6kOunC6N/teijUrJuLpKl3P8d39SWPVacxEzg==", + "dev": true, + "dependencies": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "@electron-forge/template-base": "6.0.0-beta.54", + "fs-extra": "^9.0.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/@electron/get": { + "version": "1.12.4", + "resolved": "https://registry.npmjs.org/@electron/get/-/get-1.12.4.tgz", + "integrity": "sha512-6nr9DbJPUR9Xujw6zD3y+rS95TyItEVM0NVjt1EehY2vUWfIgPiIPVHxCvaTS0xr2B+DRxovYVKbuOWqC35kjg==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "env-paths": "^2.2.0", + "fs-extra": "^8.1.0", + "got": "^9.6.0", + "progress": "^2.0.3", + "semver": "^6.2.0", + "sumchecker": "^3.0.1" + }, + "engines": { + "node": ">=8.6" + }, + "optionalDependencies": { + "global-agent": "^2.0.2", + "global-tunnel-ng": "^2.7.1" + } + }, + "node_modules/@electron/get/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@electron/get/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@electron/get/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@electron/get/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.0.tgz", + "integrity": "sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog==", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/@eslint/eslintrc/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "dependencies": { + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/eslintrc/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@eslint/eslintrc/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@hapi/address": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz", + "integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==", + "deprecated": "Moved to 'npm install @sideway/address'" + }, + "node_modules/@hapi/bourne": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz", + "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==", + "deprecated": "This version has been deprecated and is no longer supported or maintained" + }, + "node_modules/@hapi/hoek": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.1.1.tgz", + "integrity": "sha512-CAEbWH7OIur6jEOzaai83jq3FmKmv4PmX1JYfs9IrYcGEVI/lyL1EXJGCj7eFVJ0bg5QR8LMxBlEtA+xKiLpFw==", + "dev": true + }, + "node_modules/@hapi/joi": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz", + "integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==", + "deprecated": "Switch to 'npm install joi'", + "dependencies": { + "@hapi/address": "2.x.x", + "@hapi/bourne": "1.x.x", + "@hapi/hoek": "8.x.x", + "@hapi/topo": "3.x.x" + } + }, + "node_modules/@hapi/joi/node_modules/@hapi/hoek": { + "version": "8.5.1", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz", + "integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==", + "deprecated": "This version has been deprecated and is no longer supported or maintained" + }, + "node_modules/@hapi/joi/node_modules/@hapi/topo": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", + "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", + "deprecated": "This version has been deprecated and is no longer supported or maintained", + "dependencies": { + "@hapi/hoek": "^8.3.0" + } + }, + "node_modules/@hapi/topo": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.0.0.tgz", + "integrity": "sha512-tFJlT47db0kMqVm3H4nQYgn6Pwg10GTZHb1pwmSiv1K4ks6drQOtfEF5ZnPjkvC+y4/bUPHK+bc87QvLcL+WMw==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz", + "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^26.6.2", + "jest-util": "^26.6.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/core": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz", + "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==", + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/reporters": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^26.6.2", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-resolve-dependencies": "^26.6.3", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "jest-watcher": "^26.6.2", + "micromatch": "^4.0.2", + "p-each-series": "^2.1.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/core/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/core/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@jest/core/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@jest/core/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz", + "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==", + "dependencies": { + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/fake-timers": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz", + "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==", + "dependencies": { + "@jest/types": "^26.6.2", + "@sinonjs/fake-timers": "^6.0.1", + "@types/node": "*", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/globals": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz", + "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==", + "dependencies": { + "@jest/environment": "^26.6.2", + "@jest/types": "^26.6.2", + "expect": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/reporters": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz", + "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^7.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "optionalDependencies": { + "node-notifier": "^8.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/reporters/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@jest/reporters/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@jest/reporters/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/source-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz", + "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/test-result": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz", + "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==", + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz", + "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==", + "dependencies": { + "@jest/test-result": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/transform": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz", + "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^26.6.2", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-util": "^26.6.2", + "micromatch": "^4.0.2", + "pirates": "^4.0.1", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@malept/cross-spawn-promise": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", + "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/malept" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund" + } + ], + "dependencies": { + "cross-spawn": "^7.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz", + "integrity": "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==", + "dependencies": { + "@nodelib/fs.stat": "2.0.4", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz", + "integrity": "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz", + "integrity": "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.4", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/move-file/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@reduxjs/toolkit": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.5.0.tgz", + "integrity": "sha512-E/FUraRx+8guw9Hlg/Ja8jI/hwCrmIKed8Annt9YsZw3BQp+F24t5I5b2OWR6pkEHY4hn1BgP08FrTZFRKsdaQ==", + "dependencies": { + "immer": "^8.0.0", + "redux": "^4.0.0", + "redux-thunk": "^2.3.0", + "reselect": "^4.0.0" + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.3.tgz", + "integrity": "sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==", + "dependencies": { + "@rollup/pluginutils": "^3.0.8", + "@types/resolve": "0.0.8", + "builtin-modules": "^3.1.0", + "is-module": "^1.0.0", + "resolve": "^1.14.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/plugin-replace": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.1.tgz", + "integrity": "sha512-XwC1oK5rrtRJ0tn1ioLHS6OV5JTluJF7QE1J/q1hN3bquwjnVxjtMyY9iCnoyH9DQbf92CxajB3o98wZbP3oAQ==", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "peerDependencies": { + "rollup": "^1.20.0 || ^2.0.0" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + }, + "node_modules/@sideway/address": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.1.tgz", + "integrity": "sha512-+I5aaQr3m0OAmMr7RQ3fR9zx55sejEYR2BFJaxL+zT3VM2611X0SHvPWIbAUBZVTn/YzYKbV8gJ2oT/QELknfQ==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0" + } + }, + "node_modules/@sideway/formula": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz", + "integrity": "sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==", + "dev": true + }, + "node_modules/@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "dev": true + }, + "node_modules/@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.2.tgz", + "integrity": "sha512-sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw==", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz", + "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz", + "integrity": "sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A==", + "dependencies": { + "ejs": "^2.6.1", + "magic-string": "^0.25.0" + } + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "dependencies": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/core/node_modules/camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "dependencies": { + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "dependencies": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "dev": true, + "dependencies": { + "defer-to-connect": "^1.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@types/anymatch": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz", + "integrity": "sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==" + }, + "node_modules/@types/babel__core": { + "version": "7.1.13", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.13.tgz", + "integrity": "sha512-CC6amBNND16pTk4K3ZqKIaba6VGKAQs3gMjEY17FVd56oI/ZWt9OhS6riYiWv9s8ENbYUi7p8lgqb0QHQvUKQQ==", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz", + "integrity": "sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz", + "integrity": "sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.11.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.1.tgz", + "integrity": "sha512-Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw==", + "dependencies": { + "@babel/types": "^7.3.0" + } + }, + "node_modules/@types/cacheable-request": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.1.tgz", + "integrity": "sha512-ykFq2zmBGOCbpIXtoVbz4SKY5QriWPh3AjyU4G74RYbtt5yOc5OfaY75ftjg7mikMOla1CTGpX3lLbuJh8DTrQ==", + "dev": true, + "dependencies": { + "@types/http-cache-semantics": "*", + "@types/keyv": "*", + "@types/node": "*", + "@types/responselike": "*" + } + }, + "node_modules/@types/d3-path": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-1.0.9.tgz", + "integrity": "sha512-NaIeSIBiFgSC6IGUBjZWcscUJEq7vpVu7KthHN8eieTV9d9MqkSOZLH4chq1PmcKy06PNe3axLeKmRIyxJ+PZQ==" + }, + "node_modules/@types/d3-scale": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-3.2.2.tgz", + "integrity": "sha512-qpQe8G02tzUwt9sdWX1h8A/W0Q1+N48wMnYXVOkrzeLUkCfvzJYV9Ee3aORCS4dN4ONRLFmMvaXdziQ29XGLjQ==", + "dependencies": { + "@types/d3-time": "*" + } + }, + "node_modules/@types/d3-shape": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-2.0.0.tgz", + "integrity": "sha512-NLzD02m5PiD1KLEDjLN+MtqEcFYn4ZL9+Rqc9ZwARK1cpKZXd91zBETbe6wpBB6Ia0D0VZbpmbW3+BsGPGnCpA==", + "dependencies": { + "@types/d3-path": "^1" + } + }, + "node_modules/@types/d3-time": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-2.0.0.tgz", + "integrity": "sha512-Abz8bTzy8UWDeYs9pCa3D37i29EWDjNTjemdk0ei1ApYVNqulYlGUKip/jLOpogkPSsPz/GvZCYiC7MFlEk0iQ==" + }, + "node_modules/@types/eslint": { + "version": "7.2.7", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.7.tgz", + "integrity": "sha512-EHXbc1z2GoQRqHaAT7+grxlTJ3WE2YNeD6jlpPoRc83cCoThRY+NUWjCUZaYmk51OICkPXn2hhphcWcWXgNW0Q==", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/estree": { + "version": "0.0.46", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.46.tgz", + "integrity": "sha512-laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg==" + }, + "node_modules/@types/fs-extra": { + "version": "9.0.8", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.8.tgz", + "integrity": "sha512-bnlTVTwq03Na7DpWxFJ1dvnORob+Otb8xHyUqUWhqvz/Ksg8+JXPlR52oeMSZ37YEOa5PyccbgUNutiQdi13TA==", + "dev": true, + "optional": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/glob": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz", + "integrity": "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==", + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", + "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/history": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.8.tgz", + "integrity": "sha512-S78QIYirQcUoo6UJZx9CSP0O2ix9IaeAXwQi26Rhr/+mg7qqPy8TzaxHSUut7eGjL8WmLccT7/MXf304WjqHcA==", + "dev": true + }, + "node_modules/@types/hoist-non-react-statics": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", + "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", + "dev": true, + "dependencies": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA==" + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.0.tgz", + "integrity": "sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A==", + "dev": true + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", + "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz", + "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/js-yaml": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.0.tgz", + "integrity": "sha512-4vlpCM5KPCL5CfGmTbpjwVKbISRYhduEJvvUWsH5EB7QInhEj94XPZ3ts/9FPiLZFqYO0xoW4ZL8z2AabTGgJA==", + "dev": true + }, + "node_modules/@types/json-schema": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz", + "integrity": "sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" + }, + "node_modules/@types/keyv": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.1.tgz", + "integrity": "sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/minimatch": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", + "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" + }, + "node_modules/@types/node": { + "version": "14.14.35", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.35.tgz", + "integrity": "sha512-Lt+wj8NVPx0zUmUwumiVXapmaLUcAk3yPuHCFVXras9k5VT9TdhJqKqGVUQCD60OTMCl0qxJ57OiTL0Mic3Iag==" + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==" + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + }, + "node_modules/@types/parsimmon": { + "version": "1.10.6", + "resolved": "https://registry.npmjs.org/@types/parsimmon/-/parsimmon-1.10.6.tgz", + "integrity": "sha512-FwAQwMRbkhx0J6YELkwIpciVzCcgEqXEbIrIn3a2P5d3kGEHQ3wVhlN3YdVepYP+bZzCYO6OjmD4o9TGOZ40rA==", + "dev": true + }, + "node_modules/@types/prettier": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.2.3.tgz", + "integrity": "sha512-PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.3", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", + "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==", + "dev": true + }, + "node_modules/@types/q": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz", + "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==" + }, + "node_modules/@types/react": { + "version": "17.0.3", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.3.tgz", + "integrity": "sha512-wYOUxIgs2HZZ0ACNiIayItyluADNbONl7kt8lkLjVK8IitMH5QMyAh75Fwhmo37r1m7L2JaFj03sIfxBVDvRAg==", + "dev": true, + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.2.tgz", + "integrity": "sha512-Icd9KEgdnFfJs39KyRyr0jQ7EKhq8U6CcHRMGAS45fp5qgUvxL3ujUCfWFttUK2UErqZNj97t9gsVPNAqcwoCg==", + "dev": true, + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-redux": { + "version": "7.1.16", + "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.16.tgz", + "integrity": "sha512-f/FKzIrZwZk7YEO9E1yoxIuDNRiDducxkFlkw/GNMGEnK9n4K8wJzlJBghpSuOVDgEUHoDkDF7Gi9lHNQR4siw==", + "dev": true, + "dependencies": { + "@types/hoist-non-react-statics": "^3.3.0", + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0", + "redux": "^4.0.0" + } + }, + "node_modules/@types/react-router": { + "version": "5.1.12", + "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.12.tgz", + "integrity": "sha512-0bhXQwHYfMeJlCh7mGhc0VJTRm0Gk+Z8T00aiP4702mDUuLs9SMhnd2DitpjWFjdOecx2UXtICK14H9iMnziGA==", + "dev": true, + "dependencies": { + "@types/history": "*", + "@types/react": "*" + } + }, + "node_modules/@types/react-router-dom": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.1.7.tgz", + "integrity": "sha512-D5mHD6TbdV/DNHYsnwBTv+y73ei+mMjrkGrla86HthE4/PVvL1J94Bu3qABU+COXzpL23T1EZapVVpwHuBXiUg==", + "dev": true, + "dependencies": { + "@types/history": "*", + "@types/react": "*", + "@types/react-router": "*" + } + }, + "node_modules/@types/resize-observer-browser": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@types/resize-observer-browser/-/resize-observer-browser-0.1.5.tgz", + "integrity": "sha512-8k/67Z95Goa6Lznuykxkfhq9YU3l1Qe6LNZmwde1u7802a3x8v44oq0j91DICclxatTr0rNnhXx7+VTIetSrSQ==" + }, + "node_modules/@types/resolve": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz", + "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/responselike": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", + "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.1.tgz", + "integrity": "sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA==", + "dev": true + }, + "node_modules/@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" + }, + "node_modules/@types/stack-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz", + "integrity": "sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==" + }, + "node_modules/@types/tapable": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz", + "integrity": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==" + }, + "node_modules/@types/uglify-js": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.0.tgz", + "integrity": "sha512-EGkrJD5Uy+Pg0NUR8uA4bJ5WMfljyad0G+784vLCNUkD+QwOJXUbBYExXfVGf7YtyzdQp3L/XMYcliB987kL5Q==", + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/@types/webpack": { + "version": "4.41.26", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.26.tgz", + "integrity": "sha512-7ZyTfxjCRwexh+EJFwRUM+CDB2XvgHl4vfuqf1ZKrgGvcS5BrNvPQqJh3tsZ0P6h6Aa1qClVHaJZszLPzpqHeA==", + "dependencies": { + "@types/anymatch": "*", + "@types/node": "*", + "@types/tapable": "*", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "source-map": "^0.6.0" + } + }, + "node_modules/@types/webpack-sources": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.1.0.tgz", + "integrity": "sha512-LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg==", + "dependencies": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + } + }, + "node_modules/@types/webpack-sources/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@types/yargs": { + "version": "15.0.13", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.13.tgz", + "integrity": "sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "20.2.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.0.tgz", + "integrity": "sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA==" + }, + "node_modules/@types/yauzl": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.9.1.tgz", + "integrity": "sha512-A1b8SU4D10uoPjwb0lnHmmu8wZhR9d+9o2PKBQT2jU5YPTKsxac6M2qGAdY7VcL+dHHhARVUDmeg0rOrcd9EjA==", + "dev": true, + "optional": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.18.0.tgz", + "integrity": "sha512-Lzkc/2+7EoH7+NjIWLS2lVuKKqbEmJhtXe3rmfA8cyiKnZm3IfLf51irnBcmow8Q/AptVV0XBZmBJKuUJTe6cQ==", + "dependencies": { + "@typescript-eslint/experimental-utils": "4.18.0", + "@typescript-eslint/scope-manager": "4.18.0", + "debug": "^4.1.1", + "functional-red-black-tree": "^1.0.1", + "lodash": "^4.17.15", + "regexpp": "^3.0.0", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^4.0.0", + "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.18.0.tgz", + "integrity": "sha512-92h723Kblt9JcT2RRY3QS2xefFKar4ZQFVs3GityOKWQYgtajxt/tuXIzL7sVCUlM1hgreiV5gkGYyBpdOwO6A==", + "dependencies": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/scope-manager": "4.18.0", + "@typescript-eslint/types": "4.18.0", + "@typescript-eslint/typescript-estree": "4.18.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.18.0.tgz", + "integrity": "sha512-W3z5S0ZbecwX3PhJEAnq4mnjK5JJXvXUDBYIYGoweCyWyuvAKfGHvzmpUzgB5L4cRBb+cTu9U/ro66dx7dIimA==", + "dependencies": { + "@typescript-eslint/scope-manager": "4.18.0", + "@typescript-eslint/types": "4.18.0", + "@typescript-eslint/typescript-estree": "4.18.0", + "debug": "^4.1.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.18.0.tgz", + "integrity": "sha512-olX4yN6rvHR2eyFOcb6E4vmhDPsfdMyfQ3qR+oQNkAv8emKKlfxTWUXU5Mqxs2Fwe3Pf1BoPvrwZtwngxDzYzQ==", + "dependencies": { + "@typescript-eslint/types": "4.18.0", + "@typescript-eslint/visitor-keys": "4.18.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.18.0.tgz", + "integrity": "sha512-/BRociARpj5E+9yQ7cwCF/SNOWwXJ3qhjurMuK2hIFUbr9vTuDeu476Zpu+ptxY2kSxUHDGLLKy+qGq2sOg37A==", + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.18.0.tgz", + "integrity": "sha512-wt4xvF6vvJI7epz+rEqxmoNQ4ZADArGQO9gDU+cM0U5fdVv7N+IAuVoVAoZSOZxzGHBfvE3XQMLdy+scsqFfeg==", + "dependencies": { + "@typescript-eslint/types": "4.18.0", + "@typescript-eslint/visitor-keys": "4.18.0", + "debug": "^4.1.1", + "globby": "^11.0.1", + "is-glob": "^4.0.1", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.18.0.tgz", + "integrity": "sha512-Q9t90JCvfYaN0OfFUgaLqByOfz8yPeTAdotn/XYNm5q9eHax90gzdb+RJ6E9T5s97Kv/UHWKERTmqA0jTKAEHw==", + "dependencies": { + "@typescript-eslint/types": "4.18.0", + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dependencies": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" + }, + "node_modules/@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "dependencies": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" + }, + "node_modules/@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "node_modules/abab": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==" + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "node_modules/accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "dependencies": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz", + "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", + "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==", + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz", + "integrity": "sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==", + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/aggregate-error/node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "peerDependencies": { + "ajv": ">=5.0.0" + } + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" + }, + "node_modules/ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz", + "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==", + "dependencies": { + "type-fest": "^0.11.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", + "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/antd": { + "version": "4.14.0", + "resolved": "https://registry.npmjs.org/antd/-/antd-4.14.0.tgz", + "integrity": "sha512-K0VG6Ion4gGX8Lo8mJVfNDD8JrHjTq/qlBkicmpZGQXOOAWi19EElH2RpKGN1+WD4OXekWo6dZkSDmK2Lzxe5Q==", + "dependencies": { + "@ant-design/colors": "^6.0.0", + "@ant-design/icons": "^4.5.0", + "@ant-design/react-slick": "~0.28.1", + "@babel/runtime": "^7.12.5", + "array-tree-filter": "^2.1.0", + "classnames": "^2.2.6", + "copy-to-clipboard": "^3.2.0", + "lodash": "^4.17.20", + "moment": "^2.25.3", + "rc-cascader": "~1.4.0", + "rc-checkbox": "~2.3.0", + "rc-collapse": "~3.1.0", + "rc-dialog": "~8.5.1", + "rc-drawer": "~4.3.0", + "rc-dropdown": "~3.2.0", + "rc-field-form": "~1.20.0", + "rc-image": "~5.2.3", + "rc-input-number": "~7.0.1", + "rc-mentions": "~1.5.0", + "rc-menu": "~8.10.0", + "rc-motion": "^2.4.0", + "rc-notification": "~4.5.2", + "rc-pagination": "~3.1.6", + "rc-picker": "~2.5.10", + "rc-progress": "~3.1.0", + "rc-rate": "~2.9.0", + "rc-resize-observer": "^1.0.0", + "rc-select": "~12.1.6", + "rc-slider": "~9.7.1", + "rc-steps": "~4.1.0", + "rc-switch": "~3.2.0", + "rc-table": "~7.13.0", + "rc-tabs": "~11.7.0", + "rc-textarea": "~0.3.0", + "rc-tooltip": "~5.1.0", + "rc-tree": "~4.1.0", + "rc-tree-select": "~4.3.0", + "rc-trigger": "^5.2.1", + "rc-upload": "~4.2.0-alpha.0", + "rc-util": "^5.8.1", + "scroll-into-view-if-needed": "^2.2.25", + "warning": "^4.0.3" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/ant-design" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/appdmg": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/appdmg/-/appdmg-0.6.0.tgz", + "integrity": "sha512-vDz8cMf5c6BfoS72OmmHzzuxG5DFVDM6YCAkscjYh3GASGEBBRCZ10Bn515ZPSPHOpfI9Xu3MlApbd49C58pJg==", + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "async": "^1.4.2", + "ds-store": "^0.1.5", + "execa": "^1.0.0", + "fs-temp": "^1.0.0", + "fs-xattr": "^0.3.0", + "image-size": "^0.7.4", + "is-my-json-valid": "^2.20.0", + "minimist": "^1.1.3", + "parse-color": "^1.0.0", + "path-exists": "^4.0.0", + "repeat-string": "^1.5.4" + }, + "bin": { + "appdmg": "bin/appdmg.js" + }, + "engines": { + "node": ">=8.5" + } + }, + "node_modules/aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "node_modules/are-we-there-yet": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", + "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", + "dev": true, + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", + "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "dependencies": { + "@babel/runtime": "^7.10.2", + "@babel/runtime-corejs3": "^7.10.2" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/arity-n": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz", + "integrity": "sha1-2edrEXM+CFacCEeuezmyhgswt0U=" + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + }, + "node_modules/array-includes": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.3.tgz", + "integrity": "sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-tree-filter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-tree-filter/-/array-tree-filter-2.1.0.tgz", + "integrity": "sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==" + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz", + "integrity": "sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz", + "integrity": "sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "engines": { + "node": ">=8" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "node_modules/asar": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/asar/-/asar-3.0.3.tgz", + "integrity": "sha512-k7zd+KoR+n8pl71PvgElcoKHrVNiSXtw7odKbyNpmgKe7EGRF9Pnu3uLOukD37EvavKwVFxOUpqXTIZC5B5Pmw==", + "dev": true, + "dependencies": { + "chromium-pickle-js": "^0.2.0", + "commander": "^5.0.0", + "glob": "^7.1.6", + "minimatch": "^3.0.4" + }, + "bin": { + "asar": "bin/asar.js" + }, + "engines": { + "node": ">=10.12.0" + }, + "optionalDependencies": { + "@types/glob": "^7.1.1" + } + }, + "node_modules/asar/node_modules/commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/asn1.js/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dependencies": { + "object-assign": "^4.1.1", + "util": "0.10.3" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/assert/node_modules/inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" + }, + "node_modules/assert/node_modules/util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dependencies": { + "inherits": "2.0.1" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", + "dev": true, + "optional": true + }, + "node_modules/async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" + }, + "node_modules/async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + }, + "node_modules/async-validator": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-3.5.1.tgz", + "integrity": "sha512-DDmKA7sdSAJtTVeNZHrnr2yojfFaoeW8MfQN8CeuXg8DDQHTqKk9Fdv38dSvnesHoO8MUwMI2HphOeSyIF+wmQ==" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/author-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/author-regex/-/author-regex-1.0.0.tgz", + "integrity": "sha1-0IiFvmubv5Q5/gh8dihyRfCoFFA=", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/autoprefixer": { + "version": "9.8.6", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz", + "integrity": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==", + "dependencies": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "colorette": "^1.2.1", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" + }, + "node_modules/axe-core": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.1.3.tgz", + "integrity": "sha512-vwPpH4Aj4122EW38mxO/fxhGKtwWTMLDIJfZ1He0Edbtjcfna/R3YB67yVhezUMzqc3Jr3+Ii50KRntlENL4xQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/axios": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.1.tgz", + "integrity": "sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==", + "dev": true, + "dependencies": { + "follow-redirects": "^1.10.0" + } + }, + "node_modules/axobject-query": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", + "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" + }, + "node_modules/babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", + "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", + "deprecated": "babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "eslint": ">= 4.12.1" + } + }, + "node_modules/babel-eslint/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-extract-comments": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz", + "integrity": "sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==", + "dependencies": { + "babylon": "^6.18.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-jest": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz", + "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==", + "dependencies": { + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-loader": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.1.0.tgz", + "integrity": "sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==", + "dependencies": { + "find-cache-dir": "^2.1.0", + "loader-utils": "^1.4.0", + "mkdirp": "^0.5.3", + "pify": "^4.0.1", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 6.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/babel-loader/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz", + "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^4.0.0", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz", + "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/babel-plugin-macros": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", + "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", + "dependencies": { + "@babel/runtime": "^7.7.2", + "cosmiconfig": "^6.0.0", + "resolve": "^1.12.0" + } + }, + "node_modules/babel-plugin-macros/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-named-asset-import": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.7.tgz", + "integrity": "sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==", + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.1.10.tgz", + "integrity": "sha512-DO95wD4g0A8KRaHKi0D51NdGXzvpqVLnLu5BTvDlpqUEpTmeEtypgC1xqesORaWmiUOQI14UHKlzNd9iZ2G3ZA==", + "dependencies": { + "@babel/compat-data": "^7.13.0", + "@babel/helper-define-polyfill-provider": "^0.1.5", + "semver": "^6.1.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz", + "integrity": "sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.1.5", + "core-js-compat": "^3.8.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.1.6.tgz", + "integrity": "sha512-OUrYG9iKPKz8NxswXbRAdSwF0GhRdIEMTloQATJi4bDuFqrXaXcCUT/VGNrr8pBcjMh1RxZ7Xt9cytVJTJfvMg==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.1.5" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-plugin-syntax-object-rest-spread": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", + "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=" + }, + "node_modules/babel-plugin-transform-object-rest-spread": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz", + "integrity": "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=", + "dependencies": { + "babel-plugin-syntax-object-rest-spread": "^6.8.0", + "babel-runtime": "^6.26.0" + } + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz", + "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==", + "dependencies": { + "babel-plugin-jest-hoist": "^26.6.2", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-react-app": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.0.tgz", + "integrity": "sha512-itL2z8v16khpuKutx5IH8UdCdSTuzrOhRFTEdIhveZ2i1iBKDrVE0ATa4sFVy+02GLucZNVBWtoarXBy0Msdpg==", + "dependencies": { + "@babel/core": "7.12.3", + "@babel/plugin-proposal-class-properties": "7.12.1", + "@babel/plugin-proposal-decorators": "7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "7.12.1", + "@babel/plugin-proposal-numeric-separator": "7.12.1", + "@babel/plugin-proposal-optional-chaining": "7.12.1", + "@babel/plugin-transform-flow-strip-types": "7.12.1", + "@babel/plugin-transform-react-display-name": "7.12.1", + "@babel/plugin-transform-runtime": "7.12.1", + "@babel/preset-env": "7.12.1", + "@babel/preset-react": "7.12.1", + "@babel/preset-typescript": "7.12.1", + "@babel/runtime": "7.12.1", + "babel-plugin-macros": "2.8.0", + "babel-plugin-transform-react-remove-prop-types": "0.4.24" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz", + "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz", + "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz", + "integrity": "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz", + "integrity": "sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", + "@babel/plugin-syntax-optional-chaining": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz", + "integrity": "sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-env": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz", + "integrity": "sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==", + "dependencies": { + "@babel/compat-data": "^7.12.1", + "@babel/helper-compilation-targets": "^7.12.1", + "@babel/helper-module-imports": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-validator-option": "^7.12.1", + "@babel/plugin-proposal-async-generator-functions": "^7.12.1", + "@babel/plugin-proposal-class-properties": "^7.12.1", + "@babel/plugin-proposal-dynamic-import": "^7.12.1", + "@babel/plugin-proposal-export-namespace-from": "^7.12.1", + "@babel/plugin-proposal-json-strings": "^7.12.1", + "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", + "@babel/plugin-proposal-numeric-separator": "^7.12.1", + "@babel/plugin-proposal-object-rest-spread": "^7.12.1", + "@babel/plugin-proposal-optional-catch-binding": "^7.12.1", + "@babel/plugin-proposal-optional-chaining": "^7.12.1", + "@babel/plugin-proposal-private-methods": "^7.12.1", + "@babel/plugin-proposal-unicode-property-regex": "^7.12.1", + "@babel/plugin-syntax-async-generators": "^7.8.0", + "@babel/plugin-syntax-class-properties": "^7.12.1", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.0", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.0", + "@babel/plugin-syntax-top-level-await": "^7.12.1", + "@babel/plugin-transform-arrow-functions": "^7.12.1", + "@babel/plugin-transform-async-to-generator": "^7.12.1", + "@babel/plugin-transform-block-scoped-functions": "^7.12.1", + "@babel/plugin-transform-block-scoping": "^7.12.1", + "@babel/plugin-transform-classes": "^7.12.1", + "@babel/plugin-transform-computed-properties": "^7.12.1", + "@babel/plugin-transform-destructuring": "^7.12.1", + "@babel/plugin-transform-dotall-regex": "^7.12.1", + "@babel/plugin-transform-duplicate-keys": "^7.12.1", + "@babel/plugin-transform-exponentiation-operator": "^7.12.1", + "@babel/plugin-transform-for-of": "^7.12.1", + "@babel/plugin-transform-function-name": "^7.12.1", + "@babel/plugin-transform-literals": "^7.12.1", + "@babel/plugin-transform-member-expression-literals": "^7.12.1", + "@babel/plugin-transform-modules-amd": "^7.12.1", + "@babel/plugin-transform-modules-commonjs": "^7.12.1", + "@babel/plugin-transform-modules-systemjs": "^7.12.1", + "@babel/plugin-transform-modules-umd": "^7.12.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1", + "@babel/plugin-transform-new-target": "^7.12.1", + "@babel/plugin-transform-object-super": "^7.12.1", + "@babel/plugin-transform-parameters": "^7.12.1", + "@babel/plugin-transform-property-literals": "^7.12.1", + "@babel/plugin-transform-regenerator": "^7.12.1", + "@babel/plugin-transform-reserved-words": "^7.12.1", + "@babel/plugin-transform-shorthand-properties": "^7.12.1", + "@babel/plugin-transform-spread": "^7.12.1", + "@babel/plugin-transform-sticky-regex": "^7.12.1", + "@babel/plugin-transform-template-literals": "^7.12.1", + "@babel/plugin-transform-typeof-symbol": "^7.12.1", + "@babel/plugin-transform-unicode-escapes": "^7.12.1", + "@babel/plugin-transform-unicode-regex": "^7.12.1", + "@babel/preset-modules": "^0.1.3", + "@babel/types": "^7.12.1", + "core-js-compat": "^3.6.2", + "semver": "^5.5.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-react": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.1.tgz", + "integrity": "sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-transform-react-display-name": "^7.12.1", + "@babel/plugin-transform-react-jsx": "^7.12.1", + "@babel/plugin-transform-react-jsx-development": "^7.12.1", + "@babel/plugin-transform-react-jsx-self": "^7.12.1", + "@babel/plugin-transform-react-jsx-source": "^7.12.1", + "@babel/plugin-transform-react-pure-annotations": "^7.12.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-react/node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.13.tgz", + "integrity": "sha512-FXYw98TTJ125GVCCkFLZXlZ1qGcsYqNQhVBQcZjyrwf8FEUtVfKIoidnO8S0q+KBQpDYNTmiGo1gn67Vti04lQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-react/node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.13.tgz", + "integrity": "sha512-O5JJi6fyfih0WfDgIJXksSPhGP/G0fQpfxYy87sDc+1sFmsCS6wr3aAn+whbzkhbjtq4VMqLRaSzR6IsshIC0Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/runtime": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz", + "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==", + "dependencies": { + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/babel-preset-react-app/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "dependencies": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "node_modules/babel-runtime/node_modules/core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3.", + "hasInstallScript": true + }, + "node_modules/babel-runtime/node_modules/regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + }, + "node_modules/babylon": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", + "bin": { + "babylon": "bin/babylon.js" + } + }, + "node_modules/balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base32-encode": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/base32-encode/-/base32-encode-1.1.1.tgz", + "integrity": "sha512-eqa0BeGghj3guezlasdHJhr3+J5ZbbQvxeprkcDMbRQrjlqOT832IUDT4Al4ofAwekFYMqkkM9KMUHs9Cu0HKA==", + "dev": true, + "optional": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/bfj": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", + "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", + "dependencies": { + "bluebird": "^3.5.5", + "check-types": "^11.1.1", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bl/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "node_modules/bn.js": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz", + "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==" + }, + "node_modules/body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "dependencies": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/body-parser/node_modules/qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "dependencies": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + }, + "node_modules/boolean": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.0.2.tgz", + "integrity": "sha512-RwywHlpCRc3/Wh81MiCKun4ydaIFyW5Ea6JbL6sRCVx5q5irDw7pMXBUFYF/jArQ6YrG36q0kpovc9P/Kd3I4g==", + "dev": true, + "optional": true + }, + "node_modules/bplist-creator": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.8.tgz", + "integrity": "sha512-Za9JKzD6fjLC16oX2wsXfc+qBEhJBJB1YPInoAQpMLhDuj5aVOv1baGeIQSq1Fr3OCqzvsoQcSBSwGId/Ja2PA==", + "dev": true, + "optional": true, + "dependencies": { + "stream-buffers": "~2.2.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dependencies": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dependencies": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dependencies": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "node_modules/browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dependencies": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + } + }, + "node_modules/browserify-sign/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/browserify-sign/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dependencies": { + "pako": "~1.0.5" + } + }, + "node_modules/browserslist": { + "version": "4.16.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz", + "integrity": "sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==", + "dependencies": { + "caniuse-lite": "^1.0.30001181", + "colorette": "^1.2.1", + "electron-to-chromium": "^1.3.649", + "escalade": "^3.1.1", + "node-releases": "^1.1.70" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "dev": true, + "dependencies": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "node_modules/buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "dev": true + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=", + "dev": true + }, + "node_modules/buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" + }, + "node_modules/buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + }, + "node_modules/builtin-modules": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz", + "integrity": "sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "15.0.5", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.0.5.tgz", + "integrity": "sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==", + "dependencies": { + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.0", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/cacache/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "dev": true, + "engines": { + "node": ">=10.6.0" + } + }, + "node_modules/cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "dev": true, + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cacheable-request/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cacheable-request/node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "dependencies": { + "callsites": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-callsite/node_modules/callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "dependencies": { + "caller-callsite": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camel-case/node_modules/tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + }, + "node_modules/camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/camelcase-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "dev": true, + "dependencies": { + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001203", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001203.tgz", + "integrity": "sha512-/I9tvnzU/PHMH7wBPrfDMSuecDeUKerjCPX7D0xBbaJZPxoT9m+yYxt0zCTkcijCkjTdim3H56Zm0i5Adxch4w==" + }, + "node_modules/capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "dependencies": { + "rsvp": "^4.8.4" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz", + "integrity": "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "node_modules/chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "node_modules/check-types": { + "version": "11.1.2", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.1.2.tgz", + "integrity": "sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==" + }, + "node_modules/chokidar": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", + "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", + "optional": true, + "dependencies": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.1" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", + "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/chromium-pickle-js": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz", + "integrity": "sha1-BKEGZywYsIWrd02YPfo+oTjyIgU=", + "dev": true + }, + "node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/cjs-module-lexer": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz", + "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==" + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/classnames": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz", + "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" + }, + "node_modules/clean-css": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", + "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-spinners": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.0.tgz", + "integrity": "sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "dev": true, + "dependencies": { + "mimic-response": "^1.0.0" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/coa/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/coa/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "node_modules/coa/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz", + "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==", + "dependencies": { + "color-convert": "^1.9.1", + "color-string": "^1.5.4" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/color-string": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz", + "integrity": "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/color/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "node_modules/colorette": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", + "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" + }, + "node_modules/colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "dev": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/common-tags": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz", + "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + }, + "node_modules/compare-version": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/compare-version/-/compare-version-0.1.2.tgz", + "integrity": "sha1-AWLsLZNR9d3VmpICy6k1NmpyUIA=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + }, + "node_modules/compose-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz", + "integrity": "sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=", + "dependencies": { + "arity-n": "^1.0.4" + } + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/compute-scroll-into-view": { + "version": "1.0.17", + "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz", + "integrity": "sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/concurrently": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-6.0.0.tgz", + "integrity": "sha512-Ik9Igqnef2ONLjN2o/OVx1Ow5tymVvvEwQeYCQdD/oV+CN9oWhxLk7ibcBdOtv0UzBqHCEKRwbKceYoTK8t3fQ==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "date-fns": "^2.16.1", + "lodash": "^4.17.20", + "read-pkg": "^5.2.0", + "rxjs": "^6.6.3", + "spawn-command": "^0.0.2-1", + "supports-color": "^8.1.0", + "tree-kill": "^1.2.2", + "yargs": "^16.2.0" + }, + "bin": { + "concurrently": "bin/concurrently.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/config-chain": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz", + "integrity": "sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==", + "dev": true, + "optional": true, + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz", + "integrity": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==" + }, + "node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "dev": true + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + }, + "node_modules/contains-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", + "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "dependencies": { + "safe-buffer": "5.1.2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "node_modules/copy-anything": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.3.tgz", + "integrity": "sha512-GK6QUtisv4fNS+XcI7shX0Gx9ORg7QqIznyfho79JTnX1XhLiyZHfftvGiziqzRiEi/Bjhgpi+D2o7HxJFPnDQ==", + "dev": true, + "dependencies": { + "is-what": "^3.12.0" + } + }, + "node_modules/copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "dependencies": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + } + }, + "node_modules/copy-concurrently/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/copy-to-clipboard": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz", + "integrity": "sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==", + "dependencies": { + "toggle-selection": "^1.0.6" + } + }, + "node_modules/core-js": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.9.1.tgz", + "integrity": "sha512-gSjRvzkxQc1zjM/5paAmL4idJBFzuJoo+jDjF1tStYFMV2ERfD02HhahhCGXUyHxQRG4yFKVSdO6g62eoRMcDg==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.1.tgz", + "integrity": "sha512-jXAirMQxrkbiiLsCx9bQPJFA6llDadKMpYrBJQJ3/c4/vsPP/fAf29h24tviRlvwUL6AmY5CHLu2GvjuYviQqA==", + "dependencies": { + "browserslist": "^4.16.3", + "semver": "7.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat/node_modules/semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/core-js-pure": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.9.1.tgz", + "integrity": "sha512-laz3Zx0avrw9a4QEIdmIblnVuJz8W51leY9iLThatCsFawWxC3sE4guASC78JbCin+DkwMpCdp1AVAuzL/GN7A==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "node_modules/cosmiconfig": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", + "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dependencies": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + } + }, + "node_modules/create-ecdh/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "node_modules/create-react-class": { + "version": "15.7.0", + "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.7.0.tgz", + "integrity": "sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==", + "dependencies": { + "loose-envify": "^1.3.1", + "object-assign": "^4.1.1" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cross-zip": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cross-zip/-/cross-zip-3.1.0.tgz", + "integrity": "sha512-aX02l0SD3KE27pMl69gkxDdDM5D3u9Ic4Je+2b1B2fP0dWnlWWY6ns2Vk5DEgCXJRhL3GasSpicNQRNbDkq0+w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "rimraf": "^3.0.0" + } + }, + "node_modules/crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dependencies": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "engines": { + "node": "*" + } + }, + "node_modules/crypto-random-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", + "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=", + "engines": { + "node": ">=4" + } + }, + "node_modules/css": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", + "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", + "dependencies": { + "inherits": "^2.0.3", + "source-map": "^0.6.1", + "source-map-resolve": "^0.5.2", + "urix": "^0.1.0" + } + }, + "node_modules/css-blank-pseudo": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz", + "integrity": "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==", + "dependencies": { + "postcss": "^7.0.5" + }, + "bin": { + "css-blank-pseudo": "cli.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", + "engines": { + "node": "*" + } + }, + "node_modules/css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "dependencies": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + }, + "engines": { + "node": ">4" + } + }, + "node_modules/css-has-pseudo": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz", + "integrity": "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==", + "dependencies": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^5.0.0-rc.4" + }, + "bin": { + "css-has-pseudo": "cli.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/css-has-pseudo/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/css-has-pseudo/node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/css-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-4.3.0.tgz", + "integrity": "sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==", + "dependencies": { + "camelcase": "^6.0.0", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^2.0.0", + "postcss": "^7.0.32", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.3", + "postcss-modules-scope": "^2.2.0", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^2.7.1", + "semver": "^7.3.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.27.0 || ^5.0.0" + } + }, + "node_modules/css-loader/node_modules/camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/css-prefers-color-scheme": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz", + "integrity": "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==", + "dependencies": { + "postcss": "^7.0.5" + }, + "bin": { + "css-prefers-color-scheme": "cli.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-unit-converter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz", + "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==" + }, + "node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssdb": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz", + "integrity": "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==" + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz", + "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==", + "dependencies": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.7", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-preset-default": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz", + "integrity": "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==", + "dependencies": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.2", + "postcss-unique-selectors": "^4.0.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/cssnano/node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano/node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/cssnano/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.2.tgz", + "integrity": "sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + }, + "node_modules/csstype": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", + "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==", + "dev": true + }, + "node_modules/cuint": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz", + "integrity": "sha1-QICG1AlVDCYxFVYZ6fp7ytw7mRs=", + "dev": true, + "optional": true + }, + "node_modules/currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "dev": true, + "dependencies": { + "array-find-index": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cyclist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=" + }, + "node_modules/d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "dependencies": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "node_modules/d3-array": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.12.0.tgz", + "integrity": "sha512-T6H/qNldyD/1OlRkJbonb3u3MPhNwju8OPxYv0YSjDb/B2RUeeBEHzIpNrYiinwpmz8+am+puMrpcrDWgY9wRg==", + "dependencies": { + "internmap": "^1.0.0" + } + }, + "node_modules/d3-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-2.0.0.tgz", + "integrity": "sha512-SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ==" + }, + "node_modules/d3-format": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-2.0.0.tgz", + "integrity": "sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA==" + }, + "node_modules/d3-interpolate": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-2.0.1.tgz", + "integrity": "sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ==", + "dependencies": { + "d3-color": "1 - 2" + } + }, + "node_modules/d3-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-2.0.0.tgz", + "integrity": "sha512-ZwZQxKhBnv9yHaiWd6ZU4x5BtCQ7pXszEV9CU6kRgwIQVQGLMv1oiL4M+MK/n79sYzsj+gcgpPQSctJUsLN7fA==" + }, + "node_modules/d3-scale": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-3.2.3.tgz", + "integrity": "sha512-8E37oWEmEzj57bHcnjPVOBS3n4jqakOeuv1EDdQSiSrYnMCBdMd3nc4HtKk7uia8DUHcY/CGuJ42xxgtEYrX0g==", + "dependencies": { + "d3-array": "^2.3.0", + "d3-format": "1 - 2", + "d3-interpolate": "1.2.0 - 2", + "d3-time": "1 - 2", + "d3-time-format": "2 - 3" + } + }, + "node_modules/d3-shape": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-2.1.0.tgz", + "integrity": "sha512-PnjUqfM2PpskbSLTJvAzp2Wv4CZsnAgTfcVRTwW03QR3MkXF8Uo7B1y/lWkAsmbKwuecto++4NlsYcvYpXpTHA==", + "dependencies": { + "d3-path": "1 - 2" + } + }, + "node_modules/d3-time": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-2.0.0.tgz", + "integrity": "sha512-2mvhstTFcMvwStWd9Tj3e6CEqtOivtD8AUiHT8ido/xmzrI9ijrUUihZ6nHuf/vsScRBonagOdj0Vv+SEL5G3Q==" + }, + "node_modules/d3-time-format": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-3.0.0.tgz", + "integrity": "sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==", + "dependencies": { + "d3-time": "1 - 2" + } + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz", + "integrity": "sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==" + }, + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/date-fns": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.19.0.tgz", + "integrity": "sha512-X3bf2iTPgCAQp9wvjOQytnf5vO5rESYRXlPIVcgSbtT5OTScPcsf9eZU+B/YIkKAtYr5WeCii58BgATrNitlWg==", + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, + "node_modules/dayjs": { + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.10.4.tgz", + "integrity": "sha512-RI/Hh4kqRc1UKLOAf/T5zdMMX5DQIlDxwUe3wSyMMnEbGunnpENCdbUgM+dW7kXidZqCttBrmw7BhN4TMddkCw==", + "peer": true + }, + "node_modules/debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decimal.js": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz", + "integrity": "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==" + }, + "node_modules/decimal.js-light": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz", + "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==" + }, + "node_modules/decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "dev": true, + "dependencies": { + "mimic-response": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=" + }, + "node_modules/deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "dependencies": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" + }, + "node_modules/deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dependencies": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/defaults": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", + "dev": true, + "dependencies": { + "clone": "^1.0.2" + } + }, + "node_modules/defaults/node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", + "dev": true + }, + "node_modules/define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dependencies": { + "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dependencies": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/del/node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/del/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "dev": true + }, + "node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "dependencies": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=", + "dev": true, + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.5.tgz", + "integrity": "sha512-qi86tE6hRcFHy8jI1m2VG+LaPUR1LhqDa5G8tVjuUXmOrpuAgqsA1pN0+ldgr3aKUH+QLI9hCY/OcRYisERejw==" + }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/diff-sequences": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dependencies": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "node_modules/diffie-hellman/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + }, + "node_modules/dns-packet": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz", + "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==", + "dependencies": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dependencies": { + "buffer-indexof": "^1.0.0" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-align": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/dom-align/-/dom-align-1.12.0.tgz", + "integrity": "sha512-YkoezQuhp3SLFGdOlr5xkqZ640iXrnHAwVYcDg8ZKRUtO7mSzSC2BA5V0VuyAwPSJA4CLIc6EDDJh4bEsD2+zA==" + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-helpers": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz", + "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==", + "dependencies": { + "@babel/runtime": "^7.1.2" + } + }, + "node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/dom-serializer/node_modules/domelementtype": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz", + "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "engines": { + "node": ">=0.4", + "npm": ">=1.2" + } + }, + "node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "dependencies": { + "domelementtype": "1" + } + }, + "node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-case/node_modules/tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dot-prop/node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/dotenv": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", + "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + }, + "node_modules/ds-store": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/ds-store/-/ds-store-0.1.6.tgz", + "integrity": "sha1-0QJO90btDBPw9/7IXH6FjoxLfKc=", + "dev": true, + "optional": true, + "dependencies": { + "bplist-creator": "~0.0.3", + "macos-alias": "~0.2.5", + "tn1150": "^0.1.0" + } + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "node_modules/duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", + "dev": true + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "node_modules/ejs": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz", + "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==", + "hasInstallScript": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/electron/-/electron-12.0.1.tgz", + "integrity": "sha512-4bTfLSTmuFkMxq3RMyjd8DxuzbxI1Bde879XDrBA4kFWbKhZ3hfXqHXQz3129eCmcLre5odcNsWq7/xzyJilMA==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "@electron/get": "^1.0.1", + "@types/node": "^14.6.2", + "extract-zip": "^1.0.3" + }, + "bin": { + "electron": "cli.js" + }, + "engines": { + "node": ">= 8.6" + } + }, + "node_modules/electron-installer-common": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/electron-installer-common/-/electron-installer-common-0.10.3.tgz", + "integrity": "sha512-mYbP+6i+nHMIm0WZHXgGdmmXMe+KXncl6jZYQNcCF9C1WsNA9C5SZ2VP4TLQMSIoFO+X4ugkMEA5uld1bmyEvA==", + "dev": true, + "optional": true, + "dependencies": { + "@malept/cross-spawn-promise": "^1.0.0", + "asar": "^3.0.0", + "debug": "^4.1.1", + "fs-extra": "^9.0.0", + "glob": "^7.1.4", + "lodash": "^4.17.15", + "parse-author": "^2.0.0", + "semver": "^7.1.1", + "tmp-promise": "^3.0.2" + }, + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "url": "https://github.com/electron-userland/electron-installer-common?sponsor=1" + }, + "optionalDependencies": { + "@types/fs-extra": "^9.0.1" + } + }, + "node_modules/electron-installer-debian": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/electron-installer-debian/-/electron-installer-debian-3.1.0.tgz", + "integrity": "sha512-k6KChvx0Fw8XTlCqwwbBfh19yGQaKjGdbugokmr1IpzINOm4QFyACKMTHAYFHW5LCBUZQShZD96hwxUZ+8Kx+w==", + "dev": true, + "optional": true, + "os": [ + "darwin", + "linux" + ], + "dependencies": { + "@malept/cross-spawn-promise": "^1.0.0", + "debug": "^4.1.1", + "electron-installer-common": "^0.10.2", + "fs-extra": "^9.0.0", + "get-folder-size": "^2.0.1", + "lodash": "^4.17.4", + "word-wrap": "^1.2.3", + "yargs": "^15.0.1" + }, + "bin": { + "electron-installer-debian": "src/cli.js" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/electron-installer-debian/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/electron-installer-debian/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "optional": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/electron-installer-debian/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "optional": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/electron-installer-debian/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "optional": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/electron-installer-debian/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "optional": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/electron-installer-debian/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "optional": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/electron-installer-debian/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "optional": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/electron-installer-debian/node_modules/y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "dev": true, + "optional": true + }, + "node_modules/electron-installer-debian/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "optional": true, + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/electron-installer-debian/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "optional": true, + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/electron-installer-dmg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/electron-installer-dmg/-/electron-installer-dmg-3.0.0.tgz", + "integrity": "sha512-a3z9ABUfLJtrLK1ize4j+wJKslodb0kRHgBuUN4GTckiUxtGdo49XCvvAHvQaOqQk3S5VTvuc6PoofnI9mKSCQ==", + "dev": true, + "optional": true, + "dependencies": { + "debug": "^4.1.1", + "fs-extra": "^8.0.1", + "minimist": "^1.1.1" + }, + "bin": { + "electron-installer-dmg": "bin/electron-installer-dmg.js" + }, + "engines": { + "node": ">= 8.0.0" + }, + "optionalDependencies": { + "appdmg": "^0.6.0" + } + }, + "node_modules/electron-installer-dmg/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "optional": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/electron-installer-dmg/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "optional": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/electron-installer-dmg/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "optional": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/electron-installer-redhat": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/electron-installer-redhat/-/electron-installer-redhat-3.3.0.tgz", + "integrity": "sha512-hXIXB3uQXmXZy/v3MpbwWN4Of28ALpPt9ZyUDNEoSe0w7QZceL9IqI2K6Q6imiBJCLRC0hmT94WhlKj1RyGOWg==", + "dev": true, + "optional": true, + "os": [ + "darwin", + "linux" + ], + "dependencies": { + "@malept/cross-spawn-promise": "^1.0.0", + "debug": "^4.1.1", + "electron-installer-common": "^0.10.2", + "fs-extra": "^9.0.0", + "lodash": "^4.17.15", + "word-wrap": "^1.2.3", + "yargs": "^16.0.2" + }, + "bin": { + "electron-installer-redhat": "src/cli.js" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/electron-notarize": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/electron-notarize/-/electron-notarize-1.0.0.tgz", + "integrity": "sha512-dsib1IAquMn0onCrNMJ6gtEIZn/azG8hZMCYOuZIMVMUeRMgBYHK1s5TK9P8xAcrAjh/2aN5WYHzgVSWX314og==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "fs-extra": "^9.0.1" + }, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/electron-osx-sign": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/electron-osx-sign/-/electron-osx-sign-0.5.0.tgz", + "integrity": "sha512-icoRLHzFz/qxzDh/N4Pi2z4yVHurlsCAYQvsCSG7fCedJ4UJXBS6PoQyGH71IfcqKupcKeK7HX/NkyfG+v6vlQ==", + "dev": true, + "dependencies": { + "bluebird": "^3.5.0", + "compare-version": "^0.1.2", + "debug": "^2.6.8", + "isbinaryfile": "^3.0.2", + "minimist": "^1.2.0", + "plist": "^3.0.1" + }, + "bin": { + "electron-osx-flat": "bin/electron-osx-flat.js", + "electron-osx-sign": "bin/electron-osx-sign.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/electron-osx-sign/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/electron-osx-sign/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/electron-packager": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/electron-packager/-/electron-packager-15.2.0.tgz", + "integrity": "sha512-BaklTBRQy1JTijR3hi8XxHf/uo76rHbDCNM/eQHSblzE9C0NoNfOe86nPxB7y1u2jwlqoEJ4zFiHpTFioKGGRA==", + "dev": true, + "dependencies": { + "@electron/get": "^1.6.0", + "asar": "^3.0.0", + "debug": "^4.0.1", + "electron-notarize": "^1.0.0", + "electron-osx-sign": "^0.5.0", + "extract-zip": "^2.0.0", + "filenamify": "^4.1.0", + "fs-extra": "^9.0.0", + "galactus": "^0.2.1", + "get-package-info": "^1.0.0", + "junk": "^3.1.0", + "parse-author": "^2.0.0", + "plist": "^3.0.0", + "rcedit": "^2.0.0", + "resolve": "^1.1.6", + "semver": "^7.1.3", + "yargs-parser": "^20.0.0" + }, + "bin": { + "electron-packager": "bin/electron-packager.js" + }, + "engines": { + "node": ">= 10.12.0" + }, + "funding": { + "url": "https://github.com/electron/electron-packager?sponsor=1" + } + }, + "node_modules/electron-packager/node_modules/extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + }, + "engines": { + "node": ">= 10.17.0" + }, + "optionalDependencies": { + "@types/yauzl": "^2.9.1" + } + }, + "node_modules/electron-packager/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/electron-rebuild": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/electron-rebuild/-/electron-rebuild-2.3.5.tgz", + "integrity": "sha512-1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ==", + "dev": true, + "dependencies": { + "@malept/cross-spawn-promise": "^1.1.1", + "colors": "^1.3.3", + "debug": "^4.1.1", + "detect-libc": "^1.0.3", + "fs-extra": "^9.0.1", + "got": "^11.7.0", + "lzma-native": "^6.0.1", + "node-abi": "^2.19.2", + "node-gyp": "^7.1.0", + "ora": "^5.1.0", + "tar": "^6.0.5", + "yargs": "^16.0.0" + }, + "bin": { + "electron-rebuild": "lib/src/cli.js" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/electron-rebuild/node_modules/@sindresorhus/is": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.0.0.tgz", + "integrity": "sha512-FyD2meJpDPjyNQejSjvnhpgI/azsQkA4lGbuu5BQZfjvJ9cbRZXzeWL2HceCekW4lixO9JPesIIQkSoLjeJHNQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/electron-rebuild/node_modules/@szmarczak/http-timer": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.5.tgz", + "integrity": "sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==", + "dev": true, + "dependencies": { + "defer-to-connect": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/electron-rebuild/node_modules/cacheable-request": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.1.tgz", + "integrity": "sha512-lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw==", + "dev": true, + "dependencies": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/electron-rebuild/node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dev": true, + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/electron-rebuild/node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/electron-rebuild/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/electron-rebuild/node_modules/got": { + "version": "11.8.2", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.2.tgz", + "integrity": "sha512-D0QywKgIe30ODs+fm8wMZiAcZjypcCodPNuMz5H9Mny7RJ+IjJ10BdmGW7OM7fHXP+O7r6ZwapQ/YQmMSvB0UQ==", + "dev": true, + "dependencies": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.1", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=10.19.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "node_modules/electron-rebuild/node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/electron-rebuild/node_modules/keyv": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.3.tgz", + "integrity": "sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/electron-rebuild/node_modules/lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/electron-rebuild/node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/electron-rebuild/node_modules/p-cancelable": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.0.tgz", + "integrity": "sha512-HAZyB3ZodPo+BDpb4/Iu7Jv4P6cSazBz9ZM0ChhEXp70scx834aWCEjQRwgt41UzzejUAPdbqqONfRWTPYrPAQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/electron-rebuild/node_modules/responselike": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz", + "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==", + "dev": true, + "dependencies": { + "lowercase-keys": "^2.0.0" + } + }, + "node_modules/electron-squirrel-startup": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/electron-squirrel-startup/-/electron-squirrel-startup-1.0.0.tgz", + "integrity": "sha1-GbTlWTP6Dvj1VnhLnGYPdyVGoLg=", + "dependencies": { + "debug": "^2.2.0" + } + }, + "node_modules/electron-squirrel-startup/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/electron-squirrel-startup/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/electron-to-chromium": { + "version": "1.3.693", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.693.tgz", + "integrity": "sha512-vUdsE8yyeu30RecppQtI+XTz2++LWLVEIYmzeCaCRLSdtKZ2eXqdJcrs85KwLiPOPVc6PELgWyXBsfqIvzGZag==" + }, + "node_modules/electron-winstaller": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/electron-winstaller/-/electron-winstaller-4.0.2.tgz", + "integrity": "sha512-tYmzIyi+W0CXd9o/jmR0VT+vwJ+nOaE/dQz8f64IlbQ/J9d2lpwsmmOKxx6veAVKeYiJHYQHR1eYsLzznNzd5g==", + "dev": true, + "optional": true, + "dependencies": { + "asar": "^2.0.1", + "debug": "^4.1.1", + "fs-extra": "^7.0.1", + "lodash.template": "^4.2.2", + "temp": "^0.9.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/electron-winstaller/node_modules/asar": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/asar/-/asar-2.1.0.tgz", + "integrity": "sha512-d2Ovma+bfqNpvBzY/KU8oPY67ZworixTpkjSx0PCXnQi67c2cXmssaTxpFDUM0ttopXoGx/KRxNg/GDThYbXQA==", + "dev": true, + "optional": true, + "dependencies": { + "chromium-pickle-js": "^0.2.0", + "commander": "^2.20.0", + "cuint": "^0.2.2", + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "tmp-promise": "^1.0.5" + }, + "bin": { + "asar": "bin/asar.js" + }, + "engines": { + "node": ">=8.0" + }, + "optionalDependencies": { + "@types/glob": "^7.1.1" + } + }, + "node_modules/electron-winstaller/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true, + "optional": true + }, + "node_modules/electron-winstaller/node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dev": true, + "optional": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/electron-winstaller/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "optional": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/electron-winstaller/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "optional": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/electron-winstaller/node_modules/tmp": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.1.0.tgz", + "integrity": "sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw==", + "dev": true, + "optional": true, + "dependencies": { + "rimraf": "^2.6.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/electron-winstaller/node_modules/tmp-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-1.1.0.tgz", + "integrity": "sha512-8+Ah9aB1IRXCnIOxXZ0uFozV1nMU5xiu7hhFVUSxZ3bYu+psD4TzagCzVbexUCgNNGJnsmNDQlS4nG3mTyoNkw==", + "dev": true, + "optional": true, + "dependencies": { + "bluebird": "^3.5.0", + "tmp": "0.1.0" + } + }, + "node_modules/electron-winstaller/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "optional": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/emittery": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz", + "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/encode-utf8": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/encode-utf8/-/encode-utf8-1.0.3.tgz", + "integrity": "sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==", + "dev": true, + "optional": true + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/encoding/node_modules/iconv-lite": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.2.tgz", + "integrity": "sha512-2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/enhanced-resolve/node_modules/memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dependencies": { + "ansi-colors": "^4.1.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz", + "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==", + "dependencies": { + "stackframe": "^1.1.1" + } + }, + "node_modules/es-abstract": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", + "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.2", + "is-string": "^1.0.5", + "object-inspect": "^1.9.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es5-ext": { + "version": "0.10.53", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", + "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", + "dependencies": { + "es6-iterator": "~2.0.3", + "es6-symbol": "~3.1.3", + "next-tick": "~1.0.0" + } + }, + "node_modules/es6-error": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", + "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", + "dev": true, + "optional": true + }, + "node_modules/es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", + "dependencies": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "dependencies": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/escodegen": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/escodegen/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/eslint": { + "version": "7.22.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.22.0.tgz", + "integrity": "sha512-3VawOtjSJUQiiqac8MQc+w457iGLfuNGLFn8JmF051tTKbh5/x/0vlcEj8OgDCaw7Ysa2Jn8paGshV7x2abKXg==", + "dependencies": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash": "^4.17.21", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.4", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-airbnb": { + "version": "18.2.1", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-18.2.1.tgz", + "integrity": "sha512-glZNDEZ36VdlZWoxn/bUR1r/sdFKPd1mHPbqUtkctgNG4yT2DLLtJ3D+yCV+jzZCc2V1nBVkmdknOJBZ5Hc0fg==", + "dev": true, + "dependencies": { + "eslint-config-airbnb-base": "^14.2.1", + "object.assign": "^4.1.2", + "object.entries": "^1.1.2" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "eslint": "^5.16.0 || ^6.8.0 || ^7.2.0", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-jsx-a11y": "^6.4.1", + "eslint-plugin-react": "^7.21.5", + "eslint-plugin-react-hooks": "^4 || ^3 || ^2.3.0 || ^1.7.0" + } + }, + "node_modules/eslint-config-airbnb-base": { + "version": "14.2.1", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz", + "integrity": "sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==", + "dev": true, + "dependencies": { + "confusing-browser-globals": "^1.0.10", + "object.assign": "^4.1.2", + "object.entries": "^1.1.2" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "eslint": "^5.16.0 || ^6.8.0 || ^7.2.0", + "eslint-plugin-import": "^2.22.1" + } + }, + "node_modules/eslint-config-prettier": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.1.0.tgz", + "integrity": "sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-config-react-app": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-6.0.0.tgz", + "integrity": "sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==", + "dependencies": { + "confusing-browser-globals": "^1.0.10" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0", + "@typescript-eslint/parser": "^4.0.0", + "babel-eslint": "^10.0.0", + "eslint": "^7.5.0", + "eslint-plugin-flowtype": "^5.2.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-jest": "^24.0.0", + "eslint-plugin-jsx-a11y": "^6.3.1", + "eslint-plugin-react": "^7.20.3", + "eslint-plugin-react-hooks": "^4.0.8", + "eslint-plugin-testing-library": "^3.9.0" + }, + "peerDependenciesMeta": { + "eslint-plugin-jest": { + "optional": true + }, + "eslint-plugin-testing-library": { + "optional": true + } + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz", + "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==", + "dependencies": { + "debug": "^2.6.9", + "resolve": "^1.13.1" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/eslint-module-utils": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz", + "integrity": "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==", + "dependencies": { + "debug": "^2.6.9", + "pkg-dir": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/eslint-module-utils/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/eslint-plugin-flowtype": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.4.0.tgz", + "integrity": "sha512-O0s0iTT5UxYuoOpHMLSIO2qZMyvrb9shhk1EM5INNGtJ2CffrfUmsnh6TVsnoT41fkXIEndP630WNovhoO87xQ==", + "dependencies": { + "lodash": "^4.17.15", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "eslint": "^7.1.0" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.22.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz", + "integrity": "sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==", + "dependencies": { + "array-includes": "^3.1.1", + "array.prototype.flat": "^1.2.3", + "contains-path": "^0.1.0", + "debug": "^2.6.9", + "doctrine": "1.5.0", + "eslint-import-resolver-node": "^0.3.4", + "eslint-module-utils": "^2.6.0", + "has": "^1.0.3", + "minimatch": "^3.0.4", + "object.values": "^1.1.1", + "read-pkg-up": "^2.0.0", + "resolve": "^1.17.0", + "tsconfig-paths": "^3.9.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", + "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", + "dependencies": { + "esutils": "^2.0.2", + "isarray": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/eslint-plugin-import/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/eslint-plugin-jest": { + "version": "24.3.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.3.2.tgz", + "integrity": "sha512-cicWDr+RvTAOKS3Q/k03+Z3odt3VCiWamNUHWd6QWbVQWcYJyYgUTu8x0mx9GfeDEimawU5kQC+nQ3MFxIM6bw==", + "dependencies": { + "@typescript-eslint/experimental-utils": "^4.0.1" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": ">= 4", + "eslint": ">=5" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz", + "integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==", + "dependencies": { + "@babel/runtime": "^7.11.2", + "aria-query": "^4.2.2", + "array-includes": "^3.1.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.0.2", + "axobject-query": "^2.2.0", + "damerau-levenshtein": "^1.0.6", + "emoji-regex": "^9.0.0", + "has": "^1.0.3", + "jsx-ast-utils": "^3.1.0", + "language-tags": "^1.0.5" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7" + } + }, + "node_modules/eslint-plugin-prettier": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.3.1.tgz", + "integrity": "sha512-Rq3jkcFY8RYeQLgk2cCwuc0P7SEFwDravPhsJZOQ5N4YI4DSg50NyqJ/9gdZHzQlHf8MvafSesbNJCcP/FF6pQ==", + "dev": true, + "dependencies": { + "prettier-linter-helpers": "^1.0.0" + }, + "engines": { + "node": ">=6.0.0" + }, + "peerDependencies": { + "eslint": ">=5.0.0", + "prettier": ">=1.13.0" + }, + "peerDependenciesMeta": { + "eslint-config-prettier": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.22.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.22.0.tgz", + "integrity": "sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA==", + "dependencies": { + "array-includes": "^3.1.1", + "array.prototype.flatmap": "^1.2.3", + "doctrine": "^2.1.0", + "has": "^1.0.3", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "object.entries": "^1.1.2", + "object.fromentries": "^2.0.2", + "object.values": "^1.1.1", + "prop-types": "^15.7.2", + "resolve": "^1.18.1", + "string.prototype.matchall": "^4.0.2" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz", + "integrity": "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-testing-library": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-3.10.1.tgz", + "integrity": "sha512-nQIFe2muIFv2oR2zIuXE4vTbcFNx8hZKRzgHZqJg8rfopIWwoTwtlbCCNELT/jXzVe1uZF68ALGYoDXjLczKiQ==", + "dependencies": { + "@typescript-eslint/experimental-utils": "^3.10.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^5 || ^6 || ^7" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/@typescript-eslint/experimental-utils": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz", + "integrity": "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==", + "dependencies": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/typescript-estree": "3.10.1", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/@typescript-eslint/types": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-3.10.1.tgz", + "integrity": "sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==", + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/@typescript-eslint/typescript-estree": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz", + "integrity": "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==", + "dependencies": { + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/visitor-keys": "3.10.1", + "debug": "^4.1.1", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/@typescript-eslint/visitor-keys": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz", + "integrity": "sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", + "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-2.5.2.tgz", + "integrity": "sha512-ndD9chZ/kaGnjjx7taRg7c6FK/YKb29SSYzaLtPBIYLYJQmZtuKqtQbAvTS2ymiMQT6X0VW9vZIHK0KLstv93Q==", + "dependencies": { + "@types/eslint": "^7.2.6", + "arrify": "^2.0.1", + "jest-worker": "^26.6.2", + "micromatch": "^4.0.2", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0", + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "dependencies": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/eslint/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/eslint/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/eslint/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "node_modules/espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dependencies": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esquery/node_modules/estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/eventsource": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz", + "integrity": "sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==", + "dependencies": { + "original": "^1.0.0" + }, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/exec-sh": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz", + "integrity": "sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==" + }, + "node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/execa/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/execa/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "engines": { + "node": ">=4" + } + }, + "node_modules/execa/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/execa/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "dev": true, + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expect": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz", + "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-styles": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "dependencies": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/express/node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "node_modules/express/node_modules/qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/ext": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", + "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", + "dependencies": { + "type": "^2.0.0" + } + }, + "node_modules/ext/node_modules/type": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/type/-/type-2.5.0.tgz", + "integrity": "sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==" + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extract-zip": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", + "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", + "dev": true, + "dependencies": { + "concat-stream": "^1.6.2", + "debug": "^2.6.9", + "mkdirp": "^0.5.4", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" + } + }, + "node_modules/extract-zip/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/extract-zip/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "engines": [ + "node >=0.6.0" + ] + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-diff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz", + "integrity": "sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.0", + "merge2": "^1.3.0", + "micromatch": "^4.0.2", + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + }, + "node_modules/fastq": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz", + "integrity": "sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", + "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/fbjs": { + "version": "0.8.17", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.17.tgz", + "integrity": "sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90=", + "dependencies": { + "core-js": "^1.0.0", + "isomorphic-fetch": "^2.1.1", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^0.7.18" + } + }, + "node_modules/fbjs/node_modules/core-js": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", + "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=", + "deprecated": "core-js@<3 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3." + }, + "node_modules/fbjs/node_modules/promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "dependencies": { + "asap": "~2.0.3" + } + }, + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", + "dev": true, + "dependencies": { + "pend": "~1.2.0" + } + }, + "node_modules/figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" + }, + "node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.1.1.tgz", + "integrity": "sha512-Klt8C4BjWSXYQAfhpYYkG4qHNTna4toMHEbWrI5IuVoxbU6uiDKeKAP99R8mmbJi3lvewn/jQBOgU4+NS3tDQw==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "dependencies": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "optional": true + }, + "node_modules/filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/filenamify": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-4.2.0.tgz", + "integrity": "sha512-pkgE+4p7N1n7QieOopmn3TqJaefjdWXwEkj2XLZJLKfOgcQKkn11ahvGNgTD8mLggexLiDFQxeTs14xVU22XPA==", + "dev": true, + "dependencies": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.1", + "trim-repeated": "^1.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/filesize": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz", + "integrity": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-cache-dir/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/find-cache-dir/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz", + "integrity": "sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==" + }, + "node_modules/flatten": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz", + "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==" + }, + "node_modules/flora-colossus": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/flora-colossus/-/flora-colossus-1.0.1.tgz", + "integrity": "sha512-d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "fs-extra": "^7.0.0" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/flora-colossus/node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/flora-colossus/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/flora-colossus/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dependencies": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "node_modules/fmix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/fmix/-/fmix-0.1.0.tgz", + "integrity": "sha1-x7vxJN7ELJ0ZHPuUfQqXeN2YbAw=", + "dev": true, + "optional": true, + "dependencies": { + "imul": "^1.0.0" + } + }, + "node_modules/follow-redirects": { + "version": "1.13.3", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.3.tgz", + "integrity": "sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "engines": { + "node": "*" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz", + "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==", + "dependencies": { + "@babel/code-frame": "^7.5.5", + "chalk": "^2.4.1", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" + }, + "engines": { + "node": ">=6.11.5", + "yarn": ">=1.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/forwarded": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", + "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-temp": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/fs-temp/-/fs-temp-1.2.1.tgz", + "integrity": "sha512-okTwLB7/Qsq82G6iN5zZJFsOfZtx2/pqrA7Hk/9fvy+c+eJS9CvgGXT2uNxwnI14BDY9L/jQPkaBgSvlKfSW9w==", + "dev": true, + "optional": true, + "dependencies": { + "random-path": "^0.1.0" + } + }, + "node_modules/fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "dependencies": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "node_modules/fs-xattr": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/fs-xattr/-/fs-xattr-0.3.1.tgz", + "integrity": "sha512-UVqkrEW0GfDabw4C3HOrFlxKfx0eeigfRne69FxSBdHIP8Qt5Sq6Pu3RM9KmMlkygtC4pPKkj5CiPO5USnj2GA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "!win32" + ], + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + }, + "node_modules/galactus": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/galactus/-/galactus-0.2.1.tgz", + "integrity": "sha1-y+0tIKQMH1Z5o1kI4rlBVzPnjbk=", + "dev": true, + "dependencies": { + "debug": "^3.1.0", + "flora-colossus": "^1.0.0", + "fs-extra": "^4.0.0" + } + }, + "node_modules/galactus/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/galactus/node_modules/fs-extra": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", + "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "node_modules/galactus/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/galactus/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/gar": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/gar/-/gar-1.0.4.tgz", + "integrity": "sha512-w4n9cPWyP7aHxKxYHFQMegj7WIAsL/YX/C4Bs5Rr8s1H9M1rNtRWRsw+ovYMkXDQ5S4ZbYHsHAPmevPjPgw44w==", + "dev": true, + "optional": true + }, + "node_modules/gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "dev": true, + "dependencies": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + } + }, + "node_modules/gauge/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gauge/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gauge/node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gauge/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/generate-function": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz", + "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==", + "dev": true, + "optional": true, + "dependencies": { + "is-property": "^1.0.2" + } + }, + "node_modules/generate-object-property": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", + "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", + "dev": true, + "optional": true, + "dependencies": { + "is-property": "^1.0.0" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-folder-size": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/get-folder-size/-/get-folder-size-2.0.1.tgz", + "integrity": "sha512-+CEb+GDCM7tkOS2wdMKTn9vU7DgnKUTuDlehkNJKNSovdCOVxs14OfKCk4cvSaR3za4gj+OBdl9opPN9xrJ0zA==", + "dev": true, + "optional": true, + "dependencies": { + "gar": "^1.0.4", + "tiny-each-async": "2.0.3" + }, + "bin": { + "get-folder-size": "bin/get-folder-size" + } + }, + "node_modules/get-installed-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/get-installed-path/-/get-installed-path-2.1.1.tgz", + "integrity": "sha512-Qkn9eq6tW5/q9BDVdMpB8tOHljX9OSP0jRC5TRNVA4qRc839t4g8KQaR8t0Uv0EFVL0MlyG7m/ofjEgAROtYsA==", + "dev": true, + "dependencies": { + "global-modules": "1.0.0" + } + }, + "node_modules/get-installed-path/node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/get-installed-path/node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/get-installed-path/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "node_modules/get-package-info": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-package-info/-/get-package-info-1.0.0.tgz", + "integrity": "sha1-ZDJ5ZWPigRPNlHTbvQAFKYWkmZw=", + "dev": true, + "dependencies": { + "bluebird": "^3.1.1", + "debug": "^2.2.0", + "lodash.get": "^4.0.0", + "read-pkg-up": "^2.0.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/get-package-info/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/get-package-info/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/global-agent": { + "version": "2.1.12", + "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-2.1.12.tgz", + "integrity": "sha512-caAljRMS/qcDo69X9BfkgrihGUgGx44Fb4QQToNQjsiWh+YlQ66uqYVAdA8Olqit+5Ng0nkz09je3ZzANMZcjg==", + "dev": true, + "optional": true, + "dependencies": { + "boolean": "^3.0.1", + "core-js": "^3.6.5", + "es6-error": "^4.1.1", + "matcher": "^3.0.0", + "roarr": "^2.15.3", + "semver": "^7.3.2", + "serialize-error": "^7.0.1" + }, + "engines": { + "node": ">=10.0" + } + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/global-tunnel-ng": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/global-tunnel-ng/-/global-tunnel-ng-2.7.1.tgz", + "integrity": "sha512-4s+DyciWBV0eK148wqXxcmVAbFVPqtc3sEtUE/GTQfuU80rySLcMhUmHKSHI7/LDj8q0gDYI1lIhRRB7ieRAqg==", + "dev": true, + "optional": true, + "dependencies": { + "encodeurl": "^1.0.2", + "lodash": "^4.17.10", + "npm-conf": "^1.1.3", + "tunnel": "^0.0.6" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/globals": { + "version": "13.7.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.7.0.tgz", + "integrity": "sha512-Aipsz6ZKRxa/xQkZhNg0qIWXT6x6rD46f6x/PCnBomlttdIyAPak4YD9jTmKpZ72uROSMU87qJtcgpgHaVchiA==", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.2.tgz", + "integrity": "sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ==", + "dev": true, + "optional": true, + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz", + "integrity": "sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby/node_modules/ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/got": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "dev": true, + "dependencies": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", + "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" + }, + "node_modules/growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "optional": true + }, + "node_modules/gzip-size": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", + "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", + "dependencies": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + }, + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/harmony-reflect": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.1.tgz", + "integrity": "sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA==" + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "dev": true + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash-base/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hash-base/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==" + }, + "node_modules/history": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", + "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", + "dependencies": { + "@babel/runtime": "^7.1.2", + "loose-envify": "^1.2.0", + "resolve-pathname": "^3.0.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0", + "value-equal": "^1.0.1" + } + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "dependencies": { + "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", + "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==" + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=" + }, + "node_modules/hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=" + }, + "node_modules/html-comment-regex": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz", + "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==" + }, + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==" + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "node_modules/html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "dependencies": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/html-webpack-plugin": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.0.tgz", + "integrity": "sha512-MouoXEYSjTzCrjIxWwg8gxL5fE2X2WZJLmBYXlaJhQUH5K/b5OrqmV7T4dB7iu0xkmJ6JlUuV6fFVtnqbPopZw==", + "dependencies": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.15", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + }, + "engines": { + "node": ">=6.9" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/html-webpack-plugin/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/html-webpack-plugin/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "dependencies": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + } + }, + "node_modules/htmlparser2/node_modules/entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + }, + "node_modules/htmlparser2/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", + "dev": true + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + }, + "node_modules/http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/http-errors/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "node_modules/http-parser-js": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz", + "integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==" + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dependencies": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "dev": true, + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" + }, + "node_modules/human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "engines": { + "node": ">=8.12.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", + "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", + "dependencies": { + "postcss": "^7.0.14" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=", + "dependencies": { + "harmony-reflect": "^1.4.6" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" + }, + "node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/ignore-walk": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.3.tgz", + "integrity": "sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==", + "dev": true, + "dependencies": { + "minimatch": "^3.0.4" + } + }, + "node_modules/image-size": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.7.5.tgz", + "integrity": "sha512-Hiyv+mXHfFEP7LzUL/llg9RwFxxY+o9N3JVLIeG5E7iFIFAalxvRU9UZthBdYDEVnzHMgjnKJPPpay5BWf1g9g==", + "dev": true, + "optional": true, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/immer": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.4.tgz", + "integrity": "sha512-jMfL18P+/6P6epANRvRk6q8t+3gGhqsJ9EuJ25AXE+9bNTYtssvzeYbEd0mXRYWCmmXSIbnlpz6vd6iJlmGGGQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", + "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", + "dependencies": { + "import-from": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-from": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", + "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-from/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz", + "integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-local/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/imul": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/imul/-/imul-1.0.1.tgz", + "integrity": "sha1-nVhnFh6LPelsLDjV3HyxAvNeKsk=", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "dev": true, + "dependencies": { + "repeating": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=" + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/inquirer": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", + "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dependencies": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "dependencies": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/internmap": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-1.0.1.tgz", + "integrity": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==" + }, + "node_modules/ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-arguments": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", + "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", + "dependencies": { + "call-bind": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + }, + "node_modules/is-bigint": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz", + "integrity": "sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "optional": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz", + "integrity": "sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==", + "dependencies": { + "call-bind": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "node_modules/is-callable": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", + "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", + "dependencies": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "node_modules/is-core-module": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz", + "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-date-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", + "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-docker": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz", + "integrity": "sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finite": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", + "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", + "dev": true, + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" + }, + "node_modules/is-my-ip-valid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz", + "integrity": "sha512-gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ==", + "dev": true, + "optional": true + }, + "node_modules/is-my-json-valid": { + "version": "2.20.5", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.20.5.tgz", + "integrity": "sha512-VTPuvvGQtxvCeghwspQu1rBgjYUT6FGxPlvFKbYuFtgc4ADsX3U5ihZOYN0qyU6u+d4X9xXb0IT5O6QpXKt87A==", + "dev": true, + "optional": true, + "dependencies": { + "generate-function": "^2.0.0", + "generate-object-property": "^1.1.0", + "is-my-ip-valid": "^1.0.0", + "jsonpointer": "^4.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz", + "integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dependencies": { + "is-path-inside": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dependencies": { + "path-is-inside": "^1.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz", + "integrity": "sha1-DFLlS8yjkbssSUsh6GJtczbG45c=" + }, + "node_modules/is-property": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", + "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=", + "dev": true, + "optional": true + }, + "node_modules/is-regex": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", + "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-symbols": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" + }, + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-string": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", + "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-svg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz", + "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==", + "dependencies": { + "html-comment-regex": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/is-symbol": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", + "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", + "dependencies": { + "has-symbols": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + }, + "node_modules/is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "node_modules/isbinaryfile": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz", + "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==", + "dev": true, + "dependencies": { + "buffer-alloc": "^1.2.0" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isomorphic-fetch": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", + "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=", + "dependencies": { + "node-fetch": "^1.0.1", + "whatwg-fetch": ">=0.10.0" + } + }, + "node_modules/isomorphic-fetch/node_modules/node-fetch": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", + "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", + "dependencies": { + "encoding": "^0.1.11", + "is-stream": "^1.0.1" + } + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", + "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "dependencies": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/istanbul-lib-report/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz", + "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-reports": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz", + "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.0.tgz", + "integrity": "sha512-jxTmrvuecVISvKFFhOkjsWRZV7sFqdSUAd1ajOKY+/QE/aLBVstsJ/dX8GczLzwiT6ZEwwmZqtCUHLHHQVzcfA==", + "dependencies": { + "@jest/core": "^26.6.0", + "import-local": "^3.0.2", + "jest-cli": "^26.6.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-changed-files": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz", + "integrity": "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "execa": "^4.0.0", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-changed-files/node_modules/execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/jest-changed-files/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-changed-files/node_modules/is-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", + "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-26.6.0.tgz", + "integrity": "sha512-L2/Y9szN6FJPWFK8kzWXwfp+FOR7xq0cUL4lIsdbIdwz3Vh6P1nrpcqOleSzr28zOtSHQNV9Z7Tl+KkuK7t5Ng==", + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^26.6.0", + "@jest/test-result": "^26.6.0", + "@jest/types": "^26.6.0", + "@types/babel__traverse": "^7.0.4", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^26.6.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^26.6.0", + "jest-matcher-utils": "^26.6.0", + "jest-message-util": "^26.6.0", + "jest-runner": "^26.6.0", + "jest-runtime": "^26.6.0", + "jest-snapshot": "^26.6.0", + "jest-util": "^26.6.0", + "pretty-format": "^26.6.0", + "stack-utils": "^2.0.2", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-cli": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz", + "integrity": "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==", + "dependencies": { + "@jest/core": "^26.6.3", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "is-ci": "^2.0.0", + "jest-config": "^26.6.3", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "prompts": "^2.0.1", + "yargs": "^15.4.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-cli/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-cli/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/jest-cli/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-cli/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==" + }, + "node_modules/jest-cli/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-config": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz", + "integrity": "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^26.6.3", + "@jest/types": "^26.6.2", + "babel-jest": "^26.6.3", + "chalk": "^4.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-environment-jsdom": "^26.6.2", + "jest-environment-node": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-jasmine2": "^26.6.3", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-config/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-config/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-config/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-docblock": { + "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz", + "integrity": "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-each": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz", + "integrity": "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz", + "integrity": "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==", + "dependencies": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2", + "jsdom": "^16.4.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-environment-node": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz", + "integrity": "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==", + "dependencies": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-get-type": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-haste-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz", + "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-regex-util": "^26.0.0", + "jest-serializer": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "micromatch": "^4.0.2", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "engines": { + "node": ">= 10.14.2" + }, + "optionalDependencies": { + "fsevents": "^2.1.2" + } + }, + "node_modules/jest-jasmine2": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz", + "integrity": "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==", + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^26.6.2", + "is-generator-fn": "^2.0.0", + "jest-each": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz", + "integrity": "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==", + "dependencies": { + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-matcher-utils": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz", + "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-message-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-mock": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz", + "integrity": "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz", + "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-resolve": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.0.tgz", + "integrity": "sha512-tRAz2bwraHufNp+CCmAD8ciyCpXCs1NQxB5EJAmtCFy6BN81loFEGWKzYu26Y62lAJJe4X4jg36Kf+NsQyiStQ==", + "dependencies": { + "@jest/types": "^26.6.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.0", + "read-pkg-up": "^7.0.1", + "resolve": "^1.17.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz", + "integrity": "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==", + "dependencies": { + "@jest/types": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-snapshot": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-resolve/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-resolve/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-resolve/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz", + "integrity": "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==", + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.7.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-docblock": "^26.0.0", + "jest-haste-map": "^26.6.2", + "jest-leak-detector": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "source-map-support": "^0.5.6", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runner/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runner/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-runner/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-runner/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz", + "integrity": "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==", + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/globals": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0", + "cjs-module-lexer": "^0.6.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^15.4.1" + }, + "bin": { + "jest-runtime": "bin/jest-runtime.js" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runtime/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-runtime/node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/jest-runtime/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runtime/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-runtime/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-runtime/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==" + }, + "node_modules/jest-runtime/node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jest-serializer": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz", + "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.4" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz", + "integrity": "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==", + "dependencies": { + "@babel/types": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.0.0", + "chalk": "^4.0.0", + "expect": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-haste-map": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "natural-compare": "^1.4.0", + "pretty-format": "^26.6.2", + "semver": "^7.3.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-snapshot/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-snapshot/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-validate": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz", + "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==", + "dependencies": { + "@jest/types": "^26.6.2", + "camelcase": "^6.0.0", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "leven": "^3.1.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-0.6.1.tgz", + "integrity": "sha512-ITVnHhj3Jd/QkqQcTqZfRgjfyRhDFM/auzgVo2RKvSwi18YMvh0WvXDJFoFED6c7jd/5jxtu4kSOb9PTu2cPVg==", + "dependencies": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^26.0.0", + "jest-watcher": "^26.3.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "jest": "^26.0.0" + } + }, + "node_modules/jest-watcher": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz", + "integrity": "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==", + "dependencies": { + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^26.6.2", + "string-length": "^4.0.1" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/joi": { + "version": "17.4.0", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.4.0.tgz", + "integrity": "sha512-F4WiW2xaV6wc1jxete70Rw4V/VuMd6IN+a5ilZsxG4uYtUXWu2kq9W5P2dz30e7Gmw8RCbY/u/uk+dMPma9tAg==", + "dev": true, + "dependencies": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0", + "@sideway/address": "^4.1.0", + "@sideway/formula": "^3.0.0", + "@sideway/pinpoint": "^2.0.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.0.0.tgz", + "integrity": "sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "node_modules/jsdom": { + "version": "16.5.1", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.5.1.tgz", + "integrity": "sha512-pF73EOsJgwZekbDHEY5VO/yKXUkab/DuvrQB/ANVizbr6UAHJsDdHXuotZYwkJSGQl1JM+ivXaqY+XBDDL4TiA==", + "dependencies": { + "abab": "^2.0.5", + "acorn": "^8.0.5", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "html-encoding-sniffer": "^2.0.1", + "is-potential-custom-element-name": "^1.0.0", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "request": "^2.88.2", + "request-promise-native": "^1.0.9", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0", + "ws": "^7.4.4", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/acorn": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.1.0.tgz", + "integrity": "sha512-LWCF/Wn0nfHOmJ9rzQApGnxnvgfROzGilS8936rqN/lfcYkY9MYZzdMqN+2NJ4SlTc+m5HiSa+kNfDtI64dwUA==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", + "dev": true + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "node_modules/json2mq": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/json2mq/-/json2mq-0.2.0.tgz", + "integrity": "sha1-tje9O6nqvhIsg+lyBIOusQ0skEo=", + "dependencies": { + "string-convert": "^0.2.0" + } + }, + "node_modules/json3": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==" + }, + "node_modules/json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonpointer": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.1.0.tgz", + "integrity": "sha512-CXcRvMyTlnR53xMcKnuMzfCA5i/nfblTnnr74CZb6C4vG39eu6w51t7nKmU5MfLfbTgGItliNyjO/ciNPDqClg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz", + "integrity": "sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==", + "dependencies": { + "array-includes": "^3.1.2", + "object.assign": "^4.1.2" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/junk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", + "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.0" + } + }, + "node_modules/killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==" + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.4.tgz", + "integrity": "sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", + "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + }, + "node_modules/language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=", + "dependencies": { + "language-subtag-registry": "~0.3.2" + } + }, + "node_modules/last-call-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", + "dependencies": { + "lodash": "^4.17.5", + "webpack-sources": "^1.1.0" + } + }, + "node_modules/less": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/less/-/less-3.13.1.tgz", + "integrity": "sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==", + "dev": true, + "dependencies": { + "copy-anything": "^2.0.1", + "tslib": "^1.10.0" + }, + "bin": { + "lessc": "bin/lessc" + }, + "engines": { + "node": ">=6" + }, + "optionalDependencies": { + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "native-request": "^1.0.5", + "source-map": "~0.6.0" + } + }, + "node_modules/less-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-6.2.0.tgz", + "integrity": "sha512-Cl5h95/Pz/PWub/tCBgT1oNMFeH1WTD33piG80jn5jr12T4XbxZcjThwNXDQ7AG649WEynuIzO4b0+2Tn9Qolg==", + "dev": true, + "dependencies": { + "clone": "^2.1.2", + "less": "^3.11.3", + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/less/node_modules/image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", + "dev": true, + "optional": true, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" + }, + "node_modules/load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/load-json-file/node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dev": true, + "dependencies": { + "error-ex": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/load-json-file/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/load-json-file/node_modules/strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, + "dependencies": { + "is-utf8": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + }, + "node_modules/lodash.get": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" + }, + "node_modules/lodash.template": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "dependencies": { + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" + } + }, + "node_modules/lodash.templatesettings": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "dependencies": { + "lodash._reinterpolate": "^3.0.0" + } + }, + "node_modules/lodash.throttle": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", + "integrity": "sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/loglevel": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz", + "integrity": "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==", + "engines": { + "node": ">= 0.6.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/loglevel" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", + "dev": true, + "dependencies": { + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lower-case/node_modules/tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + }, + "node_modules/lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/lzma-native": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/lzma-native/-/lzma-native-6.0.1.tgz", + "integrity": "sha512-O6oWF0xe1AFvOCjU8uOZBZ/lhjaMNwHfVNaqVMqmoQXlRwBcFWpCAToiZOdXcKVMdo/5s/D0a2QgA5laMErxHQ==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "node-addon-api": "^1.6.0", + "node-pre-gyp": "^0.11.0", + "readable-stream": "^2.3.5", + "rimraf": "^2.7.1" + }, + "bin": { + "lzmajs": "bin/lzmajs" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/lzma-native/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/macos-alias": { + "version": "0.2.11", + "resolved": "https://registry.npmjs.org/macos-alias/-/macos-alias-0.2.11.tgz", + "integrity": "sha1-/u6mwTuhGYFKQ/xDxHCzHlnvcYo=", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "nan": "^2.4.0" + } + }, + "node_modules/magic-string": { + "version": "0.25.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", + "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", + "dependencies": { + "sourcemap-codec": "^1.4.4" + } + }, + "node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/makeerror": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", + "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "dependencies": { + "tmpl": "1.0.x" + } + }, + "node_modules/map-age-cleaner": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "dev": true, + "dependencies": { + "p-defer": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matcher": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", + "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", + "dev": true, + "optional": true, + "dependencies": { + "escape-string-regexp": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/matcher/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "optional": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mem": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", + "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", + "dev": true, + "dependencies": { + "map-age-cleaner": "^0.1.1", + "mimic-fn": "^2.0.0", + "p-is-promise": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "node_modules/meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "dev": true, + "dependencies": { + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/meow/node_modules/find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "dependencies": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/meow/node_modules/path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "dependencies": { + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/meow/node_modules/path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/meow/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/meow/node_modules/read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dev": true, + "dependencies": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/meow/node_modules/read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "dev": true, + "dependencies": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/microevent.ts": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz", + "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" + }, + "node_modules/micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "dependencies": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/miller-rabin/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.46.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz", + "integrity": "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.29", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz", + "integrity": "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==", + "dependencies": { + "mime-db": "1.46.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-create-react-context": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz", + "integrity": "sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==", + "dependencies": { + "@babel/runtime": "^7.12.1", + "tiny-warning": "^1.0.3" + }, + "peerDependencies": { + "prop-types": "^15.0.0", + "react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.11.3.tgz", + "integrity": "sha512-n9BA8LonkOkW1/zn+IbLPQmovsL0wMb9yx75fMJQZf2X1Zoec9yTZtyMePcyu19wPkmFbzZZA6fLTotpFhQsOA==", + "dependencies": { + "loader-utils": "^1.1.0", + "normalize-url": "1.9.1", + "schema-utils": "^1.0.0", + "webpack-sources": "^1.1.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/normalize-url": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", + "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", + "dependencies": { + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/mini-store": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/mini-store/-/mini-store-3.0.6.tgz", + "integrity": "sha512-YzffKHbYsMQGUWQRKdsearR79QsMzzJcDDmZKlJBqt5JNkqpyJHYlK6gP61O36X+sLf76sO9G6mhKBe83gIZIQ==", + "dependencies": { + "hoist-non-react-statics": "^3.3.2", + "shallowequal": "^1.0.2" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + }, + "node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "node_modules/minipass": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", + "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "dependencies": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mississippi/node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/mlg-converter": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/mlg-converter/-/mlg-converter-0.1.5.tgz", + "integrity": "sha512-w6nOR/OefQf1QZJ67gXe7tPak29C/WBudl8CwnHWrmJq33+FYWOwVGATbP3FjcdIFue7kQ4aNnTLf/jUiJCBfg==" + }, + "node_modules/moment": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz", + "integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==", + "engines": { + "node": "*" + } + }, + "node_modules/move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "dependencies": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + } + }, + "node_modules/move-concurrently/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dependencies": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" + }, + "node_modules/murmur-32": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/murmur-32/-/murmur-32-0.2.0.tgz", + "integrity": "sha512-ZkcWZudylwF+ir3Ld1n7gL6bI2mQAzXvSobPwVtu8aYi2sbXeipeSkdcanRLzIofLcM5F53lGaKm2dk7orBi7Q==", + "dev": true, + "optional": true, + "dependencies": { + "encode-utf8": "^1.0.3", + "fmix": "^0.1.0", + "imul": "^1.0.0" + } + }, + "node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "node_modules/nan": { + "version": "2.14.2", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz", + "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==", + "optional": true + }, + "node_modules/nanoid": { + "version": "3.1.22", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz", + "integrity": "sha512-/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ==", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/native-request": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/native-request/-/native-request-1.0.8.tgz", + "integrity": "sha512-vU2JojJVelUGp6jRcLwToPoWGxSx23z/0iX+I77J3Ht17rf2INGjrhOoQnjVo60nQd8wVsgzKkPfRXBiVdD2ag==", + "dev": true, + "optional": true + }, + "node_modules/native-url": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.2.6.tgz", + "integrity": "sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==", + "dependencies": { + "querystring": "^0.2.0" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + }, + "node_modules/needle": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.6.0.tgz", + "integrity": "sha512-KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg==", + "dev": true, + "dependencies": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + }, + "bin": { + "needle": "bin/needle" + }, + "engines": { + "node": ">= 4.4.x" + } + }, + "node_modules/needle/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "node_modules/next-tick": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", + "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/no-case/node_modules/tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + }, + "node_modules/node-abi": { + "version": "2.21.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.21.0.tgz", + "integrity": "sha512-smhrivuPqEM3H5LmnY3KU6HfYv0u4QklgAxfFyRNujKUzbUcYZ+Jc2EhukB9SRcD2VpqhxM7n/MIcp1Ua1/JMg==", + "dev": true, + "dependencies": { + "semver": "^5.4.1" + } + }, + "node_modules/node-abi/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/node-addon-api": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", + "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==", + "dev": true + }, + "node_modules/node-fetch": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", + "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==", + "dev": true, + "engines": { + "node": "4.x || >=6.0.0" + } + }, + "node_modules/node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/node-gyp": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-7.1.2.tgz", + "integrity": "sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==", + "dev": true, + "dependencies": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.3", + "nopt": "^5.0.0", + "npmlog": "^4.1.2", + "request": "^2.88.2", + "rimraf": "^3.0.2", + "semver": "^7.3.2", + "tar": "^6.0.2", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": ">= 10.12.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" + }, + "node_modules/node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dependencies": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + } + }, + "node_modules/node-libs-browser/node_modules/buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "node_modules/node-libs-browser/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/node-libs-browser/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + }, + "node_modules/node-modules-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", + "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/node-notifier": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.2.tgz", + "integrity": "sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==", + "optional": true, + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^2.2.0", + "semver": "^7.3.2", + "shellwords": "^0.1.1", + "uuid": "^8.3.0", + "which": "^2.0.2" + } + }, + "node_modules/node-pre-gyp": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.11.0.tgz", + "integrity": "sha512-TwWAOZb0j7e9eGaf9esRx3ZcLaE5tQ2lvYy1pb5IAaG1a2e2Kv5Lms1Y4hpj+ciXJRofIxxlt5haeQ/2ANeE0Q==", + "deprecated": "Please upgrade to @mapbox/node-pre-gyp: the non-scoped node-pre-gyp package is deprecated and only the @mapbox scoped package will recieve updates in the future", + "dev": true, + "dependencies": { + "detect-libc": "^1.0.2", + "mkdirp": "^0.5.1", + "needle": "^2.2.1", + "nopt": "^4.0.1", + "npm-packlist": "^1.1.6", + "npmlog": "^4.0.2", + "rc": "^1.2.7", + "rimraf": "^2.6.1", + "semver": "^5.3.0", + "tar": "^4" + }, + "bin": { + "node-pre-gyp": "bin/node-pre-gyp" + } + }, + "node_modules/node-pre-gyp/node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "node_modules/node-pre-gyp/node_modules/fs-minipass": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", + "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", + "dev": true, + "dependencies": { + "minipass": "^2.6.0" + } + }, + "node_modules/node-pre-gyp/node_modules/minipass": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", + "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" + } + }, + "node_modules/node-pre-gyp/node_modules/minizlib": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", + "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", + "dev": true, + "dependencies": { + "minipass": "^2.9.0" + } + }, + "node_modules/node-pre-gyp/node_modules/nopt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz", + "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==", + "dev": true, + "dependencies": { + "abbrev": "1", + "osenv": "^0.1.4" + }, + "bin": { + "nopt": "bin/nopt.js" + } + }, + "node_modules/node-pre-gyp/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/node-pre-gyp/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/node-pre-gyp/node_modules/tar": { + "version": "4.4.13", + "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz", + "integrity": "sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==", + "dev": true, + "dependencies": { + "chownr": "^1.1.1", + "fs-minipass": "^1.2.5", + "minipass": "^2.8.6", + "minizlib": "^1.2.1", + "mkdirp": "^0.5.0", + "safe-buffer": "^5.1.2", + "yallist": "^3.0.3" + }, + "engines": { + "node": ">=4.5" + } + }, + "node_modules/node-pre-gyp/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/node-releases": { + "version": "1.1.71", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz", + "integrity": "sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==" + }, + "node_modules/nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dev": true, + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", + "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm-bundled": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.1.tgz", + "integrity": "sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA==", + "dev": true, + "dependencies": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "node_modules/npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "dev": true, + "optional": true, + "dependencies": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-conf/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true, + "optional": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-normalize-package-bin": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", + "dev": true + }, + "node_modules/npm-packlist": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.8.tgz", + "integrity": "sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A==", + "dev": true, + "dependencies": { + "ignore-walk": "^3.0.1", + "npm-bundled": "^1.0.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "engines": { + "node": ">=4" + } + }, + "node_modules/npmlog": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "dev": true, + "dependencies": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/nugget": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/nugget/-/nugget-2.0.1.tgz", + "integrity": "sha1-IBCVpIfhrTYIGzQy+jytpPjQcbA=", + "dev": true, + "dependencies": { + "debug": "^2.1.3", + "minimist": "^1.1.0", + "pretty-bytes": "^1.0.2", + "progress-stream": "^1.1.0", + "request": "^2.45.0", + "single-line-log": "^1.1.2", + "throttleit": "0.0.2" + }, + "bin": { + "nugget": "bin.js" + } + }, + "node_modules/nugget/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/nugget/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "node_modules/num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" + }, + "node_modules/number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==" + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "engines": { + "node": "*" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", + "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "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" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz", + "integrity": "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "has": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.4.tgz", + "integrity": "sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2", + "has": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz", + "integrity": "sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.values": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz", + "integrity": "sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2", + "has": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + }, + "node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "dependencies": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/opn/node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/optimize-css-assets-webpack-plugin": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.4.tgz", + "integrity": "sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A==", + "dependencies": { + "cssnano": "^4.1.10", + "last-call-webpack-plugin": "^3.0.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dependencies": { + "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" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/ora": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.0.tgz", + "integrity": "sha512-1StwyXQGoU6gdjYkyVcqOLnVlbKj+6yPNNOxJVgpt9t4eksKjiriiHuxktLYkgllwk+D6MbC4ihH84L1udRXPg==", + "dev": true, + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/original": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "dependencies": { + "url-parse": "^1.4.3" + } + }, + "node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" + }, + "node_modules/os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/osenv": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "dev": true, + "dependencies": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "node_modules/p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-defer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", + "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/p-each-series": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", + "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", + "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dependencies": { + "retry": "^0.12.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + }, + "node_modules/parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "dependencies": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/param-case/node_modules/tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dependencies": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/parse-author": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-author/-/parse-author-2.0.0.tgz", + "integrity": "sha1-00YL8d3Q367tQtp1QkLmX7aEqB8=", + "dev": true, + "dependencies": { + "author-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parse-color": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-color/-/parse-color-1.0.0.tgz", + "integrity": "sha1-e3SLlag/A/FqlPU15S1/PZRlhhk=", + "dev": true, + "optional": true, + "dependencies": { + "color-convert": "~0.5.0" + } + }, + "node_modules/parse-color/node_modules/color-convert": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-0.5.3.tgz", + "integrity": "sha1-vbbGnOZg+t/+CwAHzER+G59ygr0=", + "dev": true, + "optional": true + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz", + "integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/parsimmon": { + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/parsimmon/-/parsimmon-1.16.0.tgz", + "integrity": "sha512-tekGDz2Lny27SQ/5DzJdIK0lqsWwZ667SCLFIDCxaZM7VNgQjyKLbaL7FYPKpbjdxNAXFV/mSxkq5D2fnkW4pA==" + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascal-case/node_modules/tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" + }, + "node_modules/path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "dependencies": { + "isarray": "0.0.1" + } + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/pbkdf2": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz", + "integrity": "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==", + "dependencies": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", + "dev": true + }, + "node_modules/perfect-scrollbar": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.0.tgz", + "integrity": "sha512-NrNHJn5mUGupSiheBTy6x+6SXCFbLlm8fVZh9moIzw/LgqElN5q4ncR4pbCBCYuCJ8Kcl9mYM0NgDxvW+b4LxA==" + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "node_modules/picomatch": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", + "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "dependencies": { + "node-modules-regexp": "^1.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "dependencies": { + "find-up": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-dir/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/plist": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/plist/-/plist-3.0.1.tgz", + "integrity": "sha512-GpgvHHocGRyQm74b6FWEZZVRroHKE1I0/BTjAmySaohK+cUn+hZpbqXkc3KWgW3gQYkqcQej35FohcT0FRlkRQ==", + "dev": true, + "dependencies": { + "base64-js": "^1.2.3", + "xmlbuilder": "^9.0.7", + "xmldom": "0.1.x" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pnp-webpack-plugin": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", + "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", + "dependencies": { + "ts-pnp": "^1.1.6" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "dependencies": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "7.0.35", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", + "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "dependencies": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-attribute-case-insensitive": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz", + "integrity": "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^6.0.2" + } + }, + "node_modules/postcss-browser-comments": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-3.0.0.tgz", + "integrity": "sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==", + "dependencies": { + "postcss": "^7" + }, + "engines": { + "node": ">=8.0.0" + }, + "peerDependencies": { + "browserslist": "^4" + } + }, + "node_modules/postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "dependencies": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "node_modules/postcss-color-functional-notation": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz", + "integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-gray": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz", + "integrity": "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==", + "dependencies": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-hex-alpha": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz", + "integrity": "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==", + "dependencies": { + "postcss": "^7.0.14", + "postcss-values-parser": "^2.0.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-mod-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz", + "integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==", + "dependencies": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-rebeccapurple": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz", + "integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "dependencies": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-colormin/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-convert-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-custom-media": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz", + "integrity": "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==", + "dependencies": { + "postcss": "^7.0.14" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-custom-properties": { + "version": "8.0.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz", + "integrity": "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==", + "dependencies": { + "postcss": "^7.0.17", + "postcss-values-parser": "^2.0.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-custom-selectors": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz", + "integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-custom-selectors/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-custom-selectors/node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-dir-pseudo-class": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz", + "integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/postcss-dir-pseudo-class/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-dir-pseudo-class/node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-double-position-gradients": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz", + "integrity": "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==", + "dependencies": { + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-env-function": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz", + "integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-flexbugs-fixes": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz", + "integrity": "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==", + "dependencies": { + "postcss": "^7.0.26" + } + }, + "node_modules/postcss-focus-visible": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz", + "integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-focus-within": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz", + "integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-font-variant": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz", + "integrity": "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==", + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-gap-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz", + "integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-image-set-function": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz", + "integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-initial": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.2.tgz", + "integrity": "sha512-ugA2wKonC0xeNHgirR4D3VWHs2JcU08WAi1KFLVcnb7IN89phID6Qtg2RIctWbnvp1TM2BOmDtX8GGLCKdR8YA==", + "dependencies": { + "lodash.template": "^4.5.0", + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-lab-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz", + "integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==", + "dependencies": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", + "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", + "dependencies": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-load-config/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/postcss-load-config/node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-load-config/node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-load-config/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/postcss-load-config/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-load-config/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-load-config/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "node_modules/postcss-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", + "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", + "dependencies": { + "loader-utils": "^1.1.0", + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^1.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-loader/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/postcss-loader/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/postcss-loader/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/postcss-logical": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz", + "integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-media-minmax": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz", + "integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "dependencies": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-merge-longhand/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-font-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-gradients/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "dependencies": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-params/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "dependencies": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "dependencies": { + "postcss": "^7.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "dependencies": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "dependencies": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "dependencies": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + }, + "node_modules/postcss-nesting": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz", + "integrity": "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-normalize": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-8.0.1.tgz", + "integrity": "sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==", + "dependencies": { + "@csstools/normalize.css": "^10.1.0", + "browserslist": "^4.6.2", + "postcss": "^7.0.17", + "postcss-browser-comments": "^3.0.0", + "sanitize.css": "^10.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-display-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-positions/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-repeat-style/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "dependencies": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-string/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-timing-functions/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-unicode/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "dependencies": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-url/node_modules/normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/postcss-normalize-url/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-whitespace/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-ordered-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-overflow-shorthand": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz", + "integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-page-break": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz", + "integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==", + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-place": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz", + "integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-preset-env": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz", + "integrity": "sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==", + "dependencies": { + "autoprefixer": "^9.6.1", + "browserslist": "^4.6.4", + "caniuse-lite": "^1.0.30000981", + "css-blank-pseudo": "^0.1.4", + "css-has-pseudo": "^0.10.0", + "css-prefers-color-scheme": "^3.1.1", + "cssdb": "^4.4.0", + "postcss": "^7.0.17", + "postcss-attribute-case-insensitive": "^4.0.1", + "postcss-color-functional-notation": "^2.0.1", + "postcss-color-gray": "^5.0.0", + "postcss-color-hex-alpha": "^5.0.3", + "postcss-color-mod-function": "^3.0.3", + "postcss-color-rebeccapurple": "^4.0.1", + "postcss-custom-media": "^7.0.8", + "postcss-custom-properties": "^8.0.11", + "postcss-custom-selectors": "^5.1.2", + "postcss-dir-pseudo-class": "^5.0.0", + "postcss-double-position-gradients": "^1.0.0", + "postcss-env-function": "^2.0.2", + "postcss-focus-visible": "^4.0.0", + "postcss-focus-within": "^3.0.0", + "postcss-font-variant": "^4.0.0", + "postcss-gap-properties": "^2.0.0", + "postcss-image-set-function": "^3.0.1", + "postcss-initial": "^3.0.0", + "postcss-lab-function": "^2.0.1", + "postcss-logical": "^3.0.0", + "postcss-media-minmax": "^4.0.0", + "postcss-nesting": "^7.0.0", + "postcss-overflow-shorthand": "^2.0.0", + "postcss-page-break": "^2.0.0", + "postcss-place": "^4.0.1", + "postcss-pseudo-class-any-link": "^6.0.0", + "postcss-replace-overflow-wrap": "^3.0.0", + "postcss-selector-matches": "^4.0.0", + "postcss-selector-not": "^4.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz", + "integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==", + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-pseudo-class-any-link/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-pseudo-class-any-link/node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-reduce-transforms/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz", + "integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==", + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-safe-parser": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-5.0.2.tgz", + "integrity": "sha512-jDUfCPJbKOABhwpUKcqCVbbXiloe/QXMcbJ6Iipf3sDIihEzTqRCeMBfRaOHxhBuTYqtASrI1KJWxzztZU4qUQ==", + "dependencies": { + "postcss": "^8.1.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-safe-parser/node_modules/postcss": { + "version": "8.2.8", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.2.8.tgz", + "integrity": "sha512-1F0Xb2T21xET7oQV9eKuctbM9S7BC0fetoHCc4H13z0PT6haiRLP4T0ZY4XWh7iLP0usgqykT6p9B2RtOf4FPw==", + "dependencies": { + "colorette": "^1.2.2", + "nanoid": "^3.1.20", + "source-map": "^0.6.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-selector-matches": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz", + "integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==", + "dependencies": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-selector-not": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz", + "integrity": "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==", + "dependencies": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", + "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", + "dependencies": { + "cssesc": "^3.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz", + "integrity": "sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==", + "dependencies": { + "is-svg": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-svgo/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "dependencies": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + }, + "node_modules/postcss-values-parser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz", + "integrity": "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==", + "dependencies": { + "flatten": "^1.0.2", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=6.14.4" + } + }, + "node_modules/postcss/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss/node_modules/chalk/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/postcss/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "node_modules/postcss/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/prettier": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz", + "integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "dependencies": { + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/pretty-bytes": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-1.0.4.tgz", + "integrity": "sha1-CiLoIQYJrTVUL4yNXSFZr/B1HIQ=", + "dev": true, + "dependencies": { + "get-stdin": "^4.0.1", + "meow": "^3.1.0" + }, + "bin": { + "pretty-bytes": "cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", + "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + } + }, + "node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/pretty-format/node_modules/react-is": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz", + "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==" + }, + "node_modules/pretty-ms": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-7.0.1.tgz", + "integrity": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==", + "dev": true, + "dependencies": { + "parse-ms": "^2.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/progress-stream": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/progress-stream/-/progress-stream-1.2.0.tgz", + "integrity": "sha1-LNPP6jO6OonJwSHsM0er6asSX3c=", + "dev": true, + "dependencies": { + "speedometer": "~0.1.2", + "through2": "~0.2.3" + } + }, + "node_modules/promise": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.1.0.tgz", + "integrity": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + }, + "node_modules/prompts": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", + "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" + } + }, + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=", + "dev": true, + "optional": true + }, + "node_modules/proxy-addr": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", + "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", + "dependencies": { + "forwarded": "~0.1.2", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" + }, + "node_modules/psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + }, + "node_modules/public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dependencies": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/public-encrypt/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/pumpify/node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/query-string": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", + "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", + "dependencies": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, + "node_modules/queue-microtask": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.2.tgz", + "integrity": "sha512-dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "node_modules/random-path": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/random-path/-/random-path-0.1.2.tgz", + "integrity": "sha512-4jY0yoEaQ5v9StCl5kZbNIQlg1QheIDBrdkDn53EynpPb9FgO6//p3X/tgMnrC45XN6QZCzU1Xz/+pSSsJBpRw==", + "dev": true, + "optional": true, + "dependencies": { + "base32-encode": "^0.1.0 || ^1.0.0", + "murmur-32": "^0.1.0 || ^0.2.0" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dependencies": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "dependencies": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/rc-align": { + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/rc-align/-/rc-align-4.0.9.tgz", + "integrity": "sha512-myAM2R4qoB6LqBul0leaqY8gFaiECDJ3MtQDmzDo9xM9NRT/04TvWOYd2YHU9zvGzqk9QXF6S9/MifzSKDZeMw==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "dom-align": "^1.7.0", + "rc-util": "^5.3.0", + "resize-observer-polyfill": "^1.5.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-cascader": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/rc-cascader/-/rc-cascader-1.4.2.tgz", + "integrity": "sha512-JVuLGrSi+3G8DZyPvlKlGVWJjhoi9NTz6REHIgRspa5WnznRkKGm2ejb0jJtz0m2IL8Q9BG4ZA2sXuqAu71ltQ==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "array-tree-filter": "^2.1.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.0.1", + "warning": "^4.0.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-checkbox": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/rc-checkbox/-/rc-checkbox-2.3.2.tgz", + "integrity": "sha512-afVi1FYiGv1U0JlpNH/UaEXdh6WUJjcWokj/nUN2TgG80bfG+MDdbfHKlLcNNba94mbjy2/SXJ1HDgrOkXGAjg==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-collapse": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/rc-collapse/-/rc-collapse-3.1.0.tgz", + "integrity": "sha512-EwpNPJcLe7b+5JfyaxM9ZNnkCgqArt3QQO0Cr5p5plwz/C9h8liAmjYY5I4+hl9lAjBqb7ZwLu94+z+rt5g1WQ==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.3.4", + "rc-util": "^5.2.1", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-dialog": { + "version": "8.5.2", + "resolved": "https://registry.npmjs.org/rc-dialog/-/rc-dialog-8.5.2.tgz", + "integrity": "sha512-3n4taFcjqhTE9uNuzjB+nPDeqgRBTEGBfe46mb1e7r88DgDo0lL4NnxY/PZ6PJKd2tsCt+RrgF/+YeTvJ/Thsw==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-motion": "^2.3.0", + "rc-util": "^5.6.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-drawer": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/rc-drawer/-/rc-drawer-4.3.1.tgz", + "integrity": "sha512-GMfFy4maqxS9faYXEhQ+0cA1xtkddEQzraf6SAdzWbn444DrrLogwYPk1NXSpdXjLCLxgxOj9MYtyYG42JsfXg==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-util": "^5.7.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-dropdown": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/rc-dropdown/-/rc-dropdown-3.2.0.tgz", + "integrity": "sha512-j1HSw+/QqlhxyTEF6BArVZnTmezw2LnSmRk6I9W7BCqNCKaRwleRmMMs1PHbuaG8dKHVqP6e21RQ7vPBLVnnNw==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-trigger": "^5.0.4" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/rc-field-form": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/rc-field-form/-/rc-field-form-1.20.0.tgz", + "integrity": "sha512-jkzsIfXR7ywEYdeAtktt1aLff88wxIPDLpq7KShHNl4wlsWrCE+TzkXBfjvVzYOVZt5GGrD8YDqNO/q6eaR/eA==", + "dependencies": { + "@babel/runtime": "^7.8.4", + "async-validator": "^3.0.3", + "rc-util": "^5.8.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">= 16.9.0", + "react-dom": ">= 16.9.0" + } + }, + "node_modules/rc-image": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/rc-image/-/rc-image-5.2.4.tgz", + "integrity": "sha512-kWOjhZC1OoGKfvWqtDoO9r8WUNswBwnjcstI6rf7HMudz0usmbGvewcWqsOhyaBRJL9+I4eeG+xiAoxV1xi75Q==", + "dependencies": { + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-dialog": "~8.5.0", + "rc-util": "^5.0.6" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-input-number": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rc-input-number/-/rc-input-number-7.0.2.tgz", + "integrity": "sha512-9AcD3/D18Oa41xZnBFvJ0fdp6AJkf/en8uKi8E69Ct+sh64qIYbWUXeh1PXhJgrCHIoNNT8OWaTebypT4/d3ZA==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.0.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-mentions": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/rc-mentions/-/rc-mentions-1.5.3.tgz", + "integrity": "sha512-NG/KB8YiKBCJPHHvr/QapAb4f9YzLJn7kDHtmI1K6t7ZMM5YgrjIxNNhoRKKP9zJvb9PdPts69Hbg4ZMvLVIFQ==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-menu": "^8.0.1", + "rc-textarea": "^0.3.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.0.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-menu": { + "version": "8.10.6", + "resolved": "https://registry.npmjs.org/rc-menu/-/rc-menu-8.10.6.tgz", + "integrity": "sha512-RVkd8XChwSmVOdNULbqLNnABthRZWnhqct1Q74onEXTClsXvsLADMhlIJtw/umglVSECM+14TJdIli9rl2Bzlw==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "mini-store": "^3.0.1", + "rc-motion": "^2.0.1", + "rc-trigger": "^5.1.2", + "rc-util": "^5.7.0", + "resize-observer-polyfill": "^1.5.0", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-motion": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/rc-motion/-/rc-motion-2.4.1.tgz", + "integrity": "sha512-TWLvymfMu8SngPx5MDH8dQ0D2RYbluNTfam4hY/dNNx9RQ3WtGuZ/GXHi2ymLMzH+UNd6EEFYkOuR5JTTtm8Xg==", + "dependencies": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-util": "^5.2.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-notification": { + "version": "4.5.5", + "resolved": "https://registry.npmjs.org/rc-notification/-/rc-notification-4.5.5.tgz", + "integrity": "sha512-YIfhTSw+h5GsSdgMnuMx24wqiPlg3FeamuOlkh9RkyHx+SeZVAKzQ0juy2NGvPEF2hDWi5xTqxUqLdo0L2AmGg==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.2.0", + "rc-util": "^5.0.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-overflow": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/rc-overflow/-/rc-overflow-1.0.2.tgz", + "integrity": "sha512-GXj4DAyNxm4f57LvXLwhJaZoJHzSge2l2lQq64MZP7NJAfLpQqOLD+v9JMV9ONTvDPZe8kdzR+UMmkAn7qlzFA==", + "dependencies": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.5.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-pagination": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/rc-pagination/-/rc-pagination-3.1.6.tgz", + "integrity": "sha512-Pb2zJEt8uxXzYCWx/2qwsYZ3vSS9Eqdw0cJBli6C58/iYhmvutSBqrBJh51Z5UzYc5ZcW5CMeP5LbbKE1J3rpw==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-picker": { + "version": "2.5.10", + "resolved": "https://registry.npmjs.org/rc-picker/-/rc-picker-2.5.10.tgz", + "integrity": "sha512-d2or2jql9SSY8CaRPybpbKkXBq3bZ6g88UKyWQZBLTCrc92Xm87RfRC/P3UEQo/CLmia3jVF7IXVi1HmNe2DZA==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "date-fns": "^2.15.0", + "moment": "^2.24.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.4.0", + "shallowequal": "^1.1.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "dayjs": "^1.8.30", + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-progress": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/rc-progress/-/rc-progress-3.1.3.tgz", + "integrity": "sha512-Jl4fzbBExHYMoC6HBPzel0a9VmhcSXx24LVt/mdhDM90MuzoMCJjXZAlhA0V0CJi+SKjMhfBoIQ6Lla1nD4QNw==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-rate": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/rc-rate/-/rc-rate-2.9.1.tgz", + "integrity": "sha512-MmIU7FT8W4LYRRHJD1sgG366qKtSaKb67D0/vVvJYR0lrCuRrCiVQ5qhfT5ghVO4wuVIORGpZs7ZKaYu+KMUzA==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.0.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-resize-observer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rc-resize-observer/-/rc-resize-observer-1.0.0.tgz", + "integrity": "sha512-RgKGukg1mlzyGdvzF7o/LGFC8AeoMH9aGzXTUdp6m+OApvmRdUuOscq/Y2O45cJA+rXt1ApWlpFoOIioXL3AGg==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-util": "^5.0.0", + "resize-observer-polyfill": "^1.5.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-select": { + "version": "12.1.7", + "resolved": "https://registry.npmjs.org/rc-select/-/rc-select-12.1.7.tgz", + "integrity": "sha512-sLZlfp+U7Typ+jPM5gTi8I4/oJalRw8kyhxZZ9Q4mEfO2p+otd1Chmzhh+wPraBY3IwE0RZM2/x1Leg/kQKk/w==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.0.1", + "rc-overflow": "^1.0.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.0.1", + "rc-virtual-list": "^3.2.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/rc-slider": { + "version": "9.7.1", + "resolved": "https://registry.npmjs.org/rc-slider/-/rc-slider-9.7.1.tgz", + "integrity": "sha512-r9r0dpFA3PEvxBhIfVi1lVzxuSogWxeY+tGvi2AqMM1rPgaOXQ7WbtT+9kVFkJ9K8TntA/vYPgiCCKfN29KTkw==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-tooltip": "^5.0.1", + "rc-util": "^5.0.0", + "shallowequal": "^1.1.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-steps": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/rc-steps/-/rc-steps-4.1.3.tgz", + "integrity": "sha512-GXrMfWQOhN3sVze3JnzNboHpQdNHcdFubOETUHyDpa/U3HEKBZC3xJ8XK4paBgF4OJ3bdUVLC+uBPc6dCxvDYA==", + "dependencies": { + "@babel/runtime": "^7.10.2", + "classnames": "^2.2.3", + "rc-util": "^5.0.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-switch": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/rc-switch/-/rc-switch-3.2.2.tgz", + "integrity": "sha512-+gUJClsZZzvAHGy1vZfnwySxj+MjLlGRyXKXScrtCTcmiYNPzxDFOxdQ/3pK1Kt/0POvwJ/6ALOR8gwdXGhs+A==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-util": "^5.0.1" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-table": { + "version": "7.13.3", + "resolved": "https://registry.npmjs.org/rc-table/-/rc-table-7.13.3.tgz", + "integrity": "sha512-oP4fknjvKCZAaiDnvj+yzBaWcg+JYjkASbeWonU1BbrLcomkpKvMUgPODNEzg0QdXA9OGW0PO86h4goDSW06Kg==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.4.0", + "shallowequal": "^1.1.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-tabs": { + "version": "11.7.3", + "resolved": "https://registry.npmjs.org/rc-tabs/-/rc-tabs-11.7.3.tgz", + "integrity": "sha512-5nd2NVss9TprPRV9r8N05SjQyAE7zDrLejxFLcbJ+BdLxSwnGnk3ws/Iq0smqKZUnPQC0XEvnpF3+zlllUUT2w==", + "dependencies": { + "@babel/runtime": "^7.11.2", + "classnames": "2.x", + "rc-dropdown": "^3.1.3", + "rc-menu": "^8.6.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.5.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-textarea": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/rc-textarea/-/rc-textarea-0.3.4.tgz", + "integrity": "sha512-ILUYx831ZukQPv3m7R4RGRtVVWmL1LV4ME03L22mvT56US0DGCJJaRTHs4vmpcSjFHItph5OTmhodY4BOwy81A==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.7.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-tooltip": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/rc-tooltip/-/rc-tooltip-5.1.0.tgz", + "integrity": "sha512-pFqD1JZwNIpbdcefB7k5xREoHAWM/k3yQwYF0iminbmDXERgq4rvBfUwIvlCqqZSM7HDr9hYeYr6ZsVNaKtvCQ==", + "dependencies": { + "@babel/runtime": "^7.11.2", + "rc-trigger": "^5.0.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-tree": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/rc-tree/-/rc-tree-4.1.5.tgz", + "integrity": "sha512-q2vjcmnBDylGZ9/ZW4F9oZMKMJdbFWC7um+DAQhZG1nqyg1iwoowbBggUDUaUOEryJP+08bpliEAYnzJXbI5xQ==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.0.1", + "rc-util": "^5.0.0", + "rc-virtual-list": "^3.0.1" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/rc-tree-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/rc-tree-select/-/rc-tree-select-4.3.0.tgz", + "integrity": "sha512-EEXB9dKBsJNJuKIU5NERZsaJ71GDGIj5uWLl7A4XiYr2jXM4JICfScvvp3O5jHMDfhqmgpqNc0z90mHkgh3hKg==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-select": "^12.0.0", + "rc-tree": "^4.0.0", + "rc-util": "^5.0.5" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/rc-trigger": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/rc-trigger/-/rc-trigger-5.2.3.tgz", + "integrity": "sha512-6Fokao07HUbqKIDkDRFEM0AGZvsvK0Fbp8A/KFgl1ngaqfO1nY037cISCG1Jm5fxImVsXp9awdkP7Vu5cxjjog==", + "dependencies": { + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-align": "^4.0.0", + "rc-motion": "^2.0.0", + "rc-util": "^5.5.0" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-upload": { + "version": "4.2.0-alpha.0", + "resolved": "https://registry.npmjs.org/rc-upload/-/rc-upload-4.2.0-alpha.0.tgz", + "integrity": "sha512-44mVeg9+FwcHVLheYovApS/Q676/dHglRbb9vEYcgqGoR0poP0ssYZ9mtmKxdgr2g5EJe7nGFljbfnyEmluCqQ==", + "dependencies": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.2.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-util": { + "version": "5.9.4", + "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.9.4.tgz", + "integrity": "sha512-pzFmYZsKLJ1p+Uv4NqA4aNBaFh8/hOQxOOxA5G4TiyPboa0o/PjminxUCKvoSwVJVW5YgleSM2XPCTpTV6DCsQ==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "react-is": "^16.12.0", + "shallowequal": "^1.1.0" + }, + "peerDependencies": { + "react": ">=16.9.0", + "react-dom": ">=16.9.0" + } + }, + "node_modules/rc-virtual-list": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/rc-virtual-list/-/rc-virtual-list-3.2.6.tgz", + "integrity": "sha512-8FiQLDzm3c/tMX0d62SQtKDhLH7zFlSI6pWBAPt+TUntEqd3Lz9zFAmpvTu8gkvUom/HCsDSZs4wfV4wDPWC0Q==", + "dependencies": { + "classnames": "^2.2.6", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.0.7" + }, + "engines": { + "node": ">=8.x" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/rcedit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/rcedit/-/rcedit-2.3.0.tgz", + "integrity": "sha512-h1gNEl9Oai1oijwyJ1WYqYSXTStHnOcv1KYljg/8WM4NAg3H1KBK3azIaKkQ1WQl+d7PoJpcBMscPfLXVKgCLQ==", + "dev": true, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/react": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.1.tgz", + "integrity": "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-app-polyfill": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-2.0.0.tgz", + "integrity": "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==", + "dependencies": { + "core-js": "^3.6.5", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.7", + "whatwg-fetch": "^3.4.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-dev-utils": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.4.tgz", + "integrity": "sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==", + "dependencies": { + "@babel/code-frame": "7.10.4", + "address": "1.1.2", + "browserslist": "4.14.2", + "chalk": "2.4.2", + "cross-spawn": "7.0.3", + "detect-port-alt": "1.1.6", + "escape-string-regexp": "2.0.0", + "filesize": "6.1.0", + "find-up": "4.1.0", + "fork-ts-checker-webpack-plugin": "4.1.6", + "global-modules": "2.0.0", + "globby": "11.0.1", + "gzip-size": "5.1.1", + "immer": "8.0.1", + "is-root": "2.1.0", + "loader-utils": "2.0.0", + "open": "^7.0.2", + "pkg-up": "3.1.0", + "prompts": "2.4.0", + "react-error-overlay": "^6.0.9", + "recursive-readdir": "2.2.2", + "shell-quote": "1.7.2", + "strip-ansi": "6.0.0", + "text-table": "0.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-dev-utils/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/react-dev-utils/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dev-utils/node_modules/browserslist": { + "version": "4.14.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz", + "integrity": "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==", + "dependencies": { + "caniuse-lite": "^1.0.30001125", + "electron-to-chromium": "^1.3.564", + "escalade": "^3.0.2", + "node-releases": "^1.1.61" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + }, + "node_modules/react-dev-utils/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dev-utils/node_modules/chalk/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/react-dev-utils/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/react-dev-utils/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "node_modules/react-dev-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/globby": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dev-utils/node_modules/ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/react-dev-utils/node_modules/immer": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz", + "integrity": "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/react-dev-utils/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/react-dev-utils/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dom": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz", + "integrity": "sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.1" + }, + "peerDependencies": { + "react": "17.0.1" + } + }, + "node_modules/react-error-overlay": { + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.9.tgz", + "integrity": "sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==" + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "node_modules/react-perfect-scrollbar": { + "version": "1.5.8", + "resolved": "https://registry.npmjs.org/react-perfect-scrollbar/-/react-perfect-scrollbar-1.5.8.tgz", + "integrity": "sha512-bQ46m70gp/HJtiBOF3gRzBISSZn8FFGNxznTdmTG8AAwpxG1bJCyn7shrgjEvGSQ5FJEafVEiosY+ccER11OSA==", + "dependencies": { + "perfect-scrollbar": "^1.5.0", + "prop-types": "^15.6.1" + }, + "peerDependencies": { + "react": ">=16.3.3", + "react-dom": ">=16.3.3" + } + }, + "node_modules/react-redux": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.2.tgz", + "integrity": "sha512-8+CQ1EvIVFkYL/vu6Olo7JFLWop1qRUeb46sGtIMDCSpgwPQq8fPLpirIB0iTqFe9XYEFPHssdX8/UwN6pAkEA==", + "dependencies": { + "@babel/runtime": "^7.12.1", + "hoist-non-react-statics": "^3.3.2", + "loose-envify": "^1.4.0", + "prop-types": "^15.7.2", + "react-is": "^16.13.1" + }, + "peerDependencies": { + "react": "^16.8.3 || ^17", + "redux": "^2.0.0 || ^3.0.0 || ^4.0.0-0" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } + } + }, + "node_modules/react-refresh": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz", + "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-resize-detector": { + "version": "6.6.3", + "resolved": "https://registry.npmjs.org/react-resize-detector/-/react-resize-detector-6.6.3.tgz", + "integrity": "sha512-L4T4NGua6FnxA3/GRhmm3t1UQx0Wcu7a5evlD6wvCj06OdI+JdMDhngzhk9fpqTiXmsZfdk4DR+vavFIJyfHfQ==", + "dependencies": { + "@types/resize-observer-browser": "^0.1.5", + "lodash.debounce": "^4.0.8", + "lodash.throttle": "^4.1.1", + "resize-observer-polyfill": "^1.5.1" + }, + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0", + "react-dom": "^16.0.0 || ^17.0.0" + } + }, + "node_modules/react-router": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.2.0.tgz", + "integrity": "sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==", + "dependencies": { + "@babel/runtime": "^7.1.2", + "history": "^4.9.0", + "hoist-non-react-statics": "^3.1.0", + "loose-envify": "^1.3.1", + "mini-create-react-context": "^0.4.0", + "path-to-regexp": "^1.7.0", + "prop-types": "^15.6.2", + "react-is": "^16.6.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + }, + "peerDependencies": { + "react": ">=15" + } + }, + "node_modules/react-router-dom": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.2.0.tgz", + "integrity": "sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==", + "dependencies": { + "@babel/runtime": "^7.1.2", + "history": "^4.9.0", + "loose-envify": "^1.3.1", + "prop-types": "^15.6.2", + "react-router": "5.2.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + }, + "peerDependencies": { + "react": ">=15" + } + }, + "node_modules/react-scripts": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-4.0.3.tgz", + "integrity": "sha512-S5eO4vjUzUisvkIPB7jVsKtuH2HhWcASREYWHAQ1FP5HyCv3xgn+wpILAEWkmy+A+tTNbSZClhxjT3qz6g4L1A==", + "dependencies": { + "@babel/core": "7.12.3", + "@pmmmwh/react-refresh-webpack-plugin": "0.4.3", + "@svgr/webpack": "5.5.0", + "@typescript-eslint/eslint-plugin": "^4.5.0", + "@typescript-eslint/parser": "^4.5.0", + "babel-eslint": "^10.1.0", + "babel-jest": "^26.6.0", + "babel-loader": "8.1.0", + "babel-plugin-named-asset-import": "^0.3.7", + "babel-preset-react-app": "^10.0.0", + "bfj": "^7.0.2", + "camelcase": "^6.1.0", + "case-sensitive-paths-webpack-plugin": "2.3.0", + "css-loader": "4.3.0", + "dotenv": "8.2.0", + "dotenv-expand": "5.1.0", + "eslint": "^7.11.0", + "eslint-config-react-app": "^6.0.0", + "eslint-plugin-flowtype": "^5.2.0", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-jest": "^24.1.0", + "eslint-plugin-jsx-a11y": "^6.3.1", + "eslint-plugin-react": "^7.21.5", + "eslint-plugin-react-hooks": "^4.2.0", + "eslint-plugin-testing-library": "^3.9.2", + "eslint-webpack-plugin": "^2.5.2", + "file-loader": "6.1.1", + "fs-extra": "^9.0.1", + "html-webpack-plugin": "4.5.0", + "identity-obj-proxy": "3.0.0", + "jest": "26.6.0", + "jest-circus": "26.6.0", + "jest-resolve": "26.6.0", + "jest-watch-typeahead": "0.6.1", + "mini-css-extract-plugin": "0.11.3", + "optimize-css-assets-webpack-plugin": "5.0.4", + "pnp-webpack-plugin": "1.6.4", + "postcss-flexbugs-fixes": "4.2.1", + "postcss-loader": "3.0.0", + "postcss-normalize": "8.0.1", + "postcss-preset-env": "6.7.0", + "postcss-safe-parser": "5.0.2", + "prompts": "2.4.0", + "react-app-polyfill": "^2.0.0", + "react-dev-utils": "^11.0.3", + "react-refresh": "^0.8.3", + "resolve": "1.18.1", + "resolve-url-loader": "^3.1.2", + "sass-loader": "^10.0.5", + "semver": "7.3.2", + "style-loader": "1.3.0", + "terser-webpack-plugin": "4.2.3", + "ts-pnp": "1.2.0", + "url-loader": "4.1.1", + "webpack": "4.44.2", + "webpack-dev-server": "3.11.1", + "webpack-manifest-plugin": "2.2.0", + "workbox-webpack-plugin": "5.1.4" + }, + "bin": { + "react-scripts": "bin/react-scripts.js" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.1.3" + }, + "peerDependencies": { + "react": ">= 16", + "typescript": "^3.2.1 || ^4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/react-scripts/node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.3.tgz", + "integrity": "sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==", + "dependencies": { + "ansi-html": "^0.0.7", + "error-stack-parser": "^2.0.6", + "html-entities": "^1.2.1", + "native-url": "^0.2.6", + "schema-utils": "^2.6.5", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.x" + }, + "peerDependencies": { + "@types/webpack": "4.x", + "react-refresh": ">=0.8.3 <0.10.0", + "sockjs-client": "^1.4.0", + "type-fest": "^0.13.1", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/react-scripts/node_modules/camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-scripts/node_modules/resolve": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.18.1.tgz", + "integrity": "sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==", + "dependencies": { + "is-core-module": "^2.0.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/react-scripts/node_modules/semver": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", + "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-scripts/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/react-scripts/node_modules/type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "optional": true, + "peer": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-table-drag-select": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/react-table-drag-select/-/react-table-drag-select-0.3.1.tgz", + "integrity": "sha512-+aOYkpbQ1YlEpDoMhdD+S+GVY5lG1+YN60YIt6pVRuEkU24G8BgGAy9+R+JXX+Izw3Nv7Jq8+kKoCPhBrKgaiw==", + "dependencies": { + "clone": "^2.1.1", + "deep-is": "^0.1.3", + "react": "^15.5.4" + } + }, + "node_modules/react-table-drag-select/node_modules/react": { + "version": "15.7.0", + "resolved": "https://registry.npmjs.org/react/-/react-15.7.0.tgz", + "integrity": "sha512-5/MMRYmpmM0sMTHGLossnJCrmXQIiJilD6y3YN3TzAwGFj6zdnMtFv6xmi65PHKRV+pehIHpT7oy67Sr6s9AHA==", + "dependencies": { + "create-react-class": "^15.6.0", + "fbjs": "^0.8.9", + "loose-envify": "^1.1.0", + "object-assign": "^4.1.0", + "prop-types": "^15.5.10" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-transition-group": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz", + "integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==", + "dependencies": { + "dom-helpers": "^3.4.0", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2", + "react-lifecycles-compat": "^3.0.4" + }, + "peerDependencies": { + "react": ">=15.0.0", + "react-dom": ">=15.0.0" + } + }, + "node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", + "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", + "dependencies": { + "find-up": "^2.0.0", + "read-pkg": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/load-json-file": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", + "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dependencies": { + "error-ex": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/path-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", + "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", + "dependencies": { + "pify": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up/node_modules/read-pkg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", + "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", + "dependencies": { + "load-json-file": "^2.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg-up/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "engines": { + "node": ">=4" + } + }, + "node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readable-stream/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/readdirp": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", + "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "optional": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/recharts": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.0.8.tgz", + "integrity": "sha512-38Pc1Z3UaNdi+zv1O5CQs1vCv2ZHo8sZ2c8UaTFydNKNO07uNVc3411TYRDOqMj0SZCwhoEW7uTHNhWBTkPmaQ==", + "dependencies": { + "@types/d3-scale": "^3.0.0", + "@types/d3-shape": "^2.0.0", + "classnames": "^2.2.5", + "d3-interpolate": "^2.0.1", + "d3-scale": "^3.2.3", + "d3-shape": "^2.0.0", + "eventemitter3": "^4.0.1", + "lodash": "^4.17.19", + "react-is": "16.10.2", + "react-resize-detector": "^6.6.0", + "react-smooth": "^1.0.6", + "recharts-scale": "^0.4.2", + "reduce-css-calc": "^2.1.7" + }, + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0", + "react-dom": "^16.0.0 || ^17.0.0" + } + }, + "node_modules/recharts-scale": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/recharts-scale/-/recharts-scale-0.4.4.tgz", + "integrity": "sha512-e7MCnuD1+gtY9N7TYxzB+QXvi4s30kvNqVbI1p5m4rf47GusEQaEHxi8zvlZkdOOZ90UhpGHcnkYlyYkUJ2JoQ==", + "dependencies": { + "decimal.js-light": "^2.4.1" + } + }, + "node_modules/recharts/node_modules/react-is": { + "version": "16.10.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.10.2.tgz", + "integrity": "sha512-INBT1QEgtcCCgvccr5/86CfD71fw9EPmDxgiJX4I2Ddr6ZsV6iFXsuby+qWJPtmNuMY0zByTsG4468P7nHuNWA==" + }, + "node_modules/recharts/node_modules/react-smooth": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-1.0.6.tgz", + "integrity": "sha512-B2vL4trGpNSMSOzFiAul9kFAsxTukL9Wyy9EXtkQy3GJr6sZqW9e1nShdVOJ3hRYamPZ94O17r3Q0bjSw3UYtg==", + "dependencies": { + "lodash": "~4.17.4", + "prop-types": "^15.6.0", + "raf": "^3.4.0", + "react-transition-group": "^2.5.0" + }, + "peerDependencies": { + "react": "^15.0.0 || ^16.0.0", + "react-dom": "^15.0.0 || ^16.0.0" + } + }, + "node_modules/recursive-readdir": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", + "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", + "dependencies": { + "minimatch": "3.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", + "dev": true, + "dependencies": { + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/reduce-css-calc": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz", + "integrity": "sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==", + "dependencies": { + "css-unit-converter": "^1.1.1", + "postcss-value-parser": "^3.3.0" + } + }, + "node_modules/reduce-css-calc/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "node_modules/redux": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.0.5.tgz", + "integrity": "sha512-VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w==", + "dependencies": { + "loose-envify": "^1.4.0", + "symbol-observable": "^1.2.0" + } + }, + "node_modules/redux-thunk": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.3.0.tgz", + "integrity": "sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw==" + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "node_modules/regenerate-unicode-properties": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz", + "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==", + "dependencies": { + "regenerate": "^1.4.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" + }, + "node_modules/regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpp": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", + "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/regexpu-core": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz", + "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==", + "dependencies": { + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==" + }, + "node_modules/regjsparser": { + "version": "0.6.7", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.7.tgz", + "integrity": "sha512-ib77G0uxsA2ovgiYbCVGx4Pv3PSttAx2vIwidqQzbL2U5S4Q+j00HdSAneSBuyVcMvEnTXMjiGgB+DlXozVhpQ==", + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + }, + "node_modules/renderkid": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.5.tgz", + "integrity": "sha512-ccqoLg+HLOHq1vdfYNm4TBeaCDIi1FLt3wGojTDSvdewUv65oTmI3cnT2E4hRjl1gzKZIPK+KZrXzlUYKnR+vQ==", + "dependencies": { + "css-select": "^2.0.2", + "dom-converter": "^0.2", + "htmlparser2": "^3.10.1", + "lodash": "^4.17.20", + "strip-ansi": "^3.0.0" + } + }, + "node_modules/renderkid/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/renderkid/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-element": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "dev": true, + "dependencies": { + "is-finite": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "dependencies": { + "lodash": "^4.17.19" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "request": "^2.34" + } + }, + "node_modules/request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", + "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", + "deprecated": "request-promise-native has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142", + "dependencies": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "engines": { + "node": ">=0.12.0" + }, + "peerDependencies": { + "request": "^2.34" + } + }, + "node_modules/request-promise-native/node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/request/node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/request/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + }, + "node_modules/reselect": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.0.0.tgz", + "integrity": "sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA==" + }, + "node_modules/resize-observer-polyfill": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", + "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" + }, + "node_modules/resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-alpn": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.0.0.tgz", + "integrity": "sha512-rTuiIEqFmGxne4IovivKSDzld2lWW9QCjqv80SYjPgf+gS35eaCAjaP54CCwGAwBtnCsvNLYtqxe1Nw+i6JEmA==", + "dev": true + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-package": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-package/-/resolve-package-1.0.1.tgz", + "integrity": "sha1-aG9wsYi9fWdfW7xCgszaBgq7nSc=", + "dev": true, + "dependencies": { + "get-installed-path": "^2.0.3" + }, + "engines": { + "node": ">=4", + "npm": ">=2" + } + }, + "node_modules/resolve-pathname": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", + "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "deprecated": "https://github.com/lydell/resolve-url#deprecated" + }, + "node_modules/resolve-url-loader": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.2.tgz", + "integrity": "sha512-QEb4A76c8Mi7I3xNKXlRKQSlLBwjUV/ULFMP+G7n3/7tJZ8MG5wsZ3ucxP1Jz8Vevn6fnJsxDx9cIls+utGzPQ==", + "dependencies": { + "adjust-sourcemap-loader": "3.0.0", + "camelcase": "5.3.1", + "compose-function": "3.0.3", + "convert-source-map": "1.7.0", + "es6-iterator": "2.0.3", + "loader-utils": "1.2.3", + "postcss": "7.0.21", + "rework": "1.0.1", + "rework-visit": "1.0.0", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/resolve-url-loader/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url-loader/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/resolve-url-loader/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url-loader/node_modules/chalk/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url-loader/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/resolve-url-loader/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "node_modules/resolve-url-loader/node_modules/emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/resolve-url-loader/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url-loader/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/resolve-url-loader/node_modules/loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^2.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.21", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.21.tgz", + "integrity": "sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ==", + "dependencies": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/resolve-url-loader/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "dev": true, + "dependencies": { + "lowercase-keys": "^1.0.0" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "engines": { + "node": ">=0.12" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rework": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz", + "integrity": "sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=", + "dependencies": { + "convert-source-map": "^0.3.3", + "css": "^2.0.0" + } + }, + "node_modules/rework-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", + "integrity": "sha1-mUWygD8hni96ygCtuLyfZA+ELJo=" + }, + "node_modules/rework/node_modules/convert-source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz", + "integrity": "sha1-8dgClQr33SYxof6+BZZVDIarMZA=" + }, + "node_modules/rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=" + }, + "node_modules/rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=" + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/roarr": { + "version": "2.15.4", + "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz", + "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==", + "dev": true, + "optional": true, + "dependencies": { + "boolean": "^3.0.1", + "detect-node": "^2.0.4", + "globalthis": "^1.0.1", + "json-stringify-safe": "^5.0.1", + "semver-compare": "^1.0.0", + "sprintf-js": "^1.1.2" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/rollup": { + "version": "1.32.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-1.32.1.tgz", + "integrity": "sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==", + "dependencies": { + "@types/estree": "*", + "@types/node": "*", + "acorn": "^7.1.0" + }, + "bin": { + "rollup": "dist/bin/rollup" + } + }, + "node_modules/rollup-plugin-babel": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz", + "integrity": "sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==", + "deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-babel.", + "dependencies": { + "@babel/helper-module-imports": "^7.0.0", + "rollup-pluginutils": "^2.8.1" + }, + "peerDependencies": { + "@babel/core": "7 || ^7.0.0-rc.2", + "rollup": ">=0.60.0 <3" + } + }, + "node_modules/rollup-plugin-terser": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-5.3.1.tgz", + "integrity": "sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==", + "dependencies": { + "@babel/code-frame": "^7.5.5", + "jest-worker": "^24.9.0", + "rollup-pluginutils": "^2.8.2", + "serialize-javascript": "^4.0.0", + "terser": "^4.6.2" + }, + "peerDependencies": { + "rollup": ">=0.66.0 <3" + } + }, + "node_modules/rollup-plugin-terser/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/rollup-plugin-terser/node_modules/jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/rollup-pluginutils": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", + "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", + "dependencies": { + "estree-walker": "^0.6.1" + } + }, + "node_modules/rollup-pluginutils/node_modules/estree-walker": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", + "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==" + }, + "node_modules/rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "engines": { + "node": "6.* || >= 7.*" + } + }, + "node_modules/run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "dependencies": { + "aproba": "^1.1.1" + } + }, + "node_modules/rxjs": { + "version": "6.6.6", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.6.tgz", + "integrity": "sha512-/oTwee4N4iWzAMAL9xdGKjkEHmIwupR3oXbQjCKywF1BeFohswF3vZdogbmEF6pZkOsXTzWkrZszrWpQTByYVg==", + "dev": true, + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "dependencies": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "bin": { + "sane": "src/cli.js" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/sane/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/sane/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sanitize.css": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-10.0.0.tgz", + "integrity": "sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==" + }, + "node_modules/sass-loader": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-10.1.1.tgz", + "integrity": "sha512-W6gVDXAd5hR/WHsPicvZdjAWHBcEJ44UahgxcIE196fW2ong0ZHMPO1kZuI5q0VlvMQZh32gpv69PLWQm70qrw==", + "dependencies": { + "klona": "^2.0.4", + "loader-utils": "^2.0.0", + "neo-async": "^2.6.2", + "schema-utils": "^3.0.0", + "semver": "^7.3.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0", + "sass": "^1.3.0", + "webpack": "^4.36.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/sass-loader/node_modules/schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "dependencies": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/scheduler": { + "version": "0.20.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz", + "integrity": "sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/scroll-into-view-if-needed": { + "version": "2.2.27", + "resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.27.tgz", + "integrity": "sha512-BKiRstRm4u1bZvw+Wu9TxXhyMZ9fskb/9fbuSGuRzwHhlbKlDetL4dBdYaPfQbEFTttQmpkNtFH7sQpk4rZf9w==", + "dependencies": { + "compute-scroll-into-view": "^1.0.16" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + }, + "node_modules/selfsigned": { + "version": "1.10.8", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.8.tgz", + "integrity": "sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w==", + "dependencies": { + "node-forge": "^0.10.0" + } + }, + "node_modules/semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=", + "dev": true, + "optional": true + }, + "node_modules/send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "dependencies": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + }, + "node_modules/serialize-error": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", + "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", + "dev": true, + "optional": true, + "dependencies": { + "type-fest": "^0.13.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/serialize-error/node_modules/type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + }, + "node_modules/serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + }, + "node_modules/setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + }, + "node_modules/sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/shallowequal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", + "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" + }, + "node_modules/shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "optional": true + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + }, + "node_modules/single-line-log": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/single-line-log/-/single-line-log-1.1.2.tgz", + "integrity": "sha1-wvg/Jzo+GhbtsJlWYdoO1e8DM2Q=", + "dev": true, + "dependencies": { + "string-width": "^1.0.1" + } + }, + "node_modules/single-line-log/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/single-line-log/node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/single-line-log/node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/single-line-log/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sockjs": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz", + "integrity": "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/sockjs-client": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.0.tgz", + "integrity": "sha512-8Dt3BDi4FYNrCFGTL/HtwVzkARrENdwOUf1ZoW/9p3M8lZdFT35jVdrHza+qgxuG9H3/shR4cuX/X9umUrjP8Q==", + "dependencies": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.4.7" + } + }, + "node_modules/sockjs-client/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/sockjs/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==" + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + }, + "node_modules/spawn-command": { + "version": "0.0.2-1", + "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz", + "integrity": "sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=", + "dev": true + }, + "node_modules/spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz", + "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==" + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/speedometer": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/speedometer/-/speedometer-0.1.4.tgz", + "integrity": "sha1-mHbb0qFp0xFUAtSObqYynIgWpQ0=", + "dev": true + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", + "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==", + "dev": true, + "optional": true + }, + "node_modules/sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + }, + "node_modules/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz", + "integrity": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==" + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "node_modules/stream-buffers": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz", + "integrity": "sha1-kdX1Ew0c75bc+n9yaUUYh0HQnuQ=", + "dev": true, + "optional": true, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "dependencies": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dependencies": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + }, + "node_modules/strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-convert": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/string-convert/-/string-convert-0.2.1.tgz", + "integrity": "sha1-aYLMMEn7tM2F+LJFaLnZvznu/5c=" + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + }, + "node_modules/string-width": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", + "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.4.tgz", + "integrity": "sha512-pknFIWVachNcyqRfaQSeu/FUfpvJTe4uskUSZ9Wc1RijsPuzbZ8TyYT8WCNnntCjUEqQ3vUHMAfVj2+wLAisPQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2", + "has-symbols": "^1.0.1", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.3.1", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dependencies": { + "ansi-regex": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-comments": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz", + "integrity": "sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==", + "dependencies": { + "babel-extract-comments": "^1.0.0", + "babel-plugin-transform-object-rest-spread": "^6.26.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "dev": true, + "dependencies": { + "get-stdin": "^4.0.1" + }, + "bin": { + "strip-indent": "cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/style-loader": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz", + "integrity": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.0" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/stylehacks/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sudo-prompt": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz", + "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==", + "dev": true + }, + "node_modules/sumchecker": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz", + "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==", + "dev": true, + "dependencies": { + "debug": "^4.1.0" + }, + "engines": { + "node": ">= 8.0" + } + }, + "node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz", + "integrity": "sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + }, + "node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/svgo/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/svgo/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "node_modules/svgo/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/svgo/node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "node_modules/svgo/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/symbol-observable": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", + "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + }, + "node_modules/table": { + "version": "6.0.7", + "resolved": "https://registry.npmjs.org/table/-/table-6.0.7.tgz", + "integrity": "sha512-rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g==", + "dependencies": { + "ajv": "^7.0.2", + "lodash": "^4.17.20", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/table/node_modules/ajv": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-7.2.1.tgz", + "integrity": "sha512-+nu0HDv7kNSOua9apAVc979qd932rrZeb3WOvoiD31A/p1mIE5/9bN2027pE2rOPYEdS3UHzsvof4hY+lM9/WQ==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/table/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/tar": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz", + "integrity": "sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA==", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/temp": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz", + "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==", + "dev": true, + "optional": true, + "dependencies": { + "mkdirp": "^0.5.1", + "rimraf": "~2.6.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/temp/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, + "optional": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/tempy": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz", + "integrity": "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==", + "dependencies": { + "temp-dir": "^1.0.0", + "type-fest": "^0.3.1", + "unique-string": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", + "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", + "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz", + "integrity": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==", + "dependencies": { + "cacache": "^15.0.5", + "find-cache-dir": "^3.3.1", + "jest-worker": "^26.5.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1", + "terser": "^5.3.4", + "webpack-sources": "^1.4.3" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/terser-webpack-plugin/node_modules/find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", + "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/terser-webpack-plugin/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser-webpack-plugin/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser-webpack-plugin/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "dependencies": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser-webpack-plugin/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/terser-webpack-plugin/node_modules/terser": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.6.1.tgz", + "integrity": "sha512-yv9YLFQQ+3ZqgWCUk+pvNJwgUTdlIxUk1WTN+RnaFJe2L7ipG2csPT0ra2XRm7Cs8cxN7QXmK1rFzEwYEQkzXw==", + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.19" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin/node_modules/terser/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + }, + "node_modules/throat": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==" + }, + "node_modules/throttleit": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-0.0.2.tgz", + "integrity": "sha1-z+34jmDADdlpe2H90qg0OptoDq8=", + "dev": true + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "node_modules/through2": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.2.3.tgz", + "integrity": "sha1-6zKE2k6jEbbMis42U3SKUqvyWj8=", + "dev": true, + "dependencies": { + "readable-stream": "~1.1.9", + "xtend": "~2.1.1" + } + }, + "node_modules/through2/node_modules/object-keys": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz", + "integrity": "sha1-KKaq50KN0sOpLz2V8hM13SBOAzY=", + "dev": true + }, + "node_modules/through2/node_modules/readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "node_modules/through2/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + }, + "node_modules/through2/node_modules/xtend": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", + "integrity": "sha1-bv7MKk2tjmlixJAbM3znuoe10os=", + "dev": true, + "dependencies": { + "object-keys": "~0.4.0" + }, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "node_modules/timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "dependencies": { + "setimmediate": "^1.0.4" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" + }, + "node_modules/tiny-each-async": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tiny-each-async/-/tiny-each-async-2.0.3.tgz", + "integrity": "sha1-jru/1tYpXxNwAD+7NxYq/loKUdE=", + "dev": true, + "optional": true + }, + "node_modules/tiny-invariant": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz", + "integrity": "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" + }, + "node_modules/tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/tmp-promise": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-3.0.2.tgz", + "integrity": "sha512-OyCLAKU1HzBjL6Ev3gxUeraJNlbNingmi8IrHHEsYH8LTmEuhvYfqvhn2F/je+mjf4N58UmZ96OMEy1JanSCpA==", + "dev": true, + "optional": true, + "dependencies": { + "tmp": "^0.2.0" + } + }, + "node_modules/tmp-promise/node_modules/tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "dev": true, + "optional": true, + "dependencies": { + "rimraf": "^3.0.0" + }, + "engines": { + "node": ">=8.17.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", + "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=" + }, + "node_modules/tn1150": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/tn1150/-/tn1150-0.1.0.tgz", + "integrity": "sha1-ZzUD0k1WuH3ouMd/7j/AhT1ZoY0=", + "dev": true, + "optional": true, + "dependencies": { + "unorm": "^1.4.1" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toggle-selection": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", + "integrity": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=" + }, + "node_modules/toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tough-cookie": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", + "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.1.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz", + "integrity": "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true, + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + }, + "node_modules/ts-pnp": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", + "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==", + "engines": { + "node": ">=6" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/tsconfig-paths": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz", + "integrity": "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.0", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" + }, + "node_modules/tunnel": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", + "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=0.6.11 <=0.7.0 || >=0.7.3" + } + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "node_modules/type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.2.3.tgz", + "integrity": "sha512-qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw==", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/ua-parser-js": { + "version": "0.7.24", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.24.tgz", + "integrity": "sha512-yo+miGzQx5gakzVK3QFfN0/L9uVhosXBBO7qmnk7c2iw1IhL212wfA3zbnI54B0obGwC/5NWub/iT9sReMx+Fw==", + "engines": { + "node": "*" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.0.tgz", + "integrity": "sha512-P/51NX+JXyxK/aigg1/ZgyccdAxm5K1+n8+tvqSntjOivPt19gvm1VC49RWYetsiub8WViUchdxl/KWHHB0kzA==", + "dependencies": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.0", + "has-symbols": "^1.0.0", + "which-boxed-primitive": "^1.0.1" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", + "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", + "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^1.0.4", + "unicode-property-aliases-ecmascript": "^1.0.4" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz", + "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz", + "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/union-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" + }, + "node_modules/uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=" + }, + "node_modules/unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/unique-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", + "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", + "dependencies": { + "crypto-random-string": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unorm": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/unorm/-/unorm-1.6.0.tgz", + "integrity": "sha512-b2/KCUlYZUeA7JFUuRJZPUtr4gZvBh7tavtv4fvk4+KV9pfGiR6CQAQAWl49ZpR3ts2dk4FYkP7EIgDJoiOLDA==", + "dev": true, + "optional": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "deprecated": "Please see https://github.com/lydell/urix#deprecated" + }, + "node_modules/url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dependencies": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "node_modules/url-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "dependencies": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "file-loader": "*", + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "file-loader": { + "optional": true + } + } + }, + "node_modules/url-loader/node_modules/schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "dependencies": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/url-parse": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.1.tgz", + "integrity": "sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q==", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "dev": true, + "dependencies": { + "prepend-http": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/username": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/username/-/username-5.1.0.tgz", + "integrity": "sha512-PCKbdWw85JsYMvmCv5GH3kXmM66rCd9m1hBEDutPNv94b/pqCMT4NtcKyeWYvLFiE8b+ha1Jdl8XAaUdPn5QTg==", + "dev": true, + "dependencies": { + "execa": "^1.0.0", + "mem": "^4.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "node_modules/util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "dependencies": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "optional": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + }, + "node_modules/v8-to-istanbul": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.0.tgz", + "integrity": "sha512-uXUVqNUCLa0AH1vuVxzi+MI4RfxEOKt9pBgKwHbgH7st8Kv2P1m+jvWNnektzBh5QShF3ODgKmUFCf38LnVz1g==", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/value-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", + "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "engines": [ + "node >=0.6.0" + ], + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/wait-on": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-5.3.0.tgz", + "integrity": "sha512-DwrHrnTK+/0QFaB9a8Ol5Lna3k7WvUR4jzSKmz0YaPBpuN2sACyiPVKVfj6ejnjcajAcvn3wlbTyMIn9AZouOg==", + "dev": true, + "dependencies": { + "axios": "^0.21.1", + "joi": "^17.3.0", + "lodash": "^4.17.21", + "minimist": "^1.2.5", + "rxjs": "^6.6.3" + }, + "bin": { + "wait-on": "bin/wait-on" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/walker": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", + "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "dependencies": { + "makeerror": "1.0.x" + } + }, + "node_modules/warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "dependencies": { + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0" + }, + "optionalDependencies": { + "chokidar": "^3.4.1", + "watchpack-chokidar2": "^2.0.1" + } + }, + "node_modules/watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "optional": true, + "dependencies": { + "chokidar": "^2.1.8" + } + }, + "node_modules/watchpack-chokidar2/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "optional": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/watchpack-chokidar2/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "optional": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "optional": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "optional": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.", + "optional": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "optional": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "optional": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "optional": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "optional": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "optional": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "optional": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "optional": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "optional": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "optional": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/watchpack-chokidar2/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "optional": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", + "dev": true, + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "engines": { + "node": ">=10.4" + } + }, + "node_modules/webpack": { + "version": "4.44.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz", + "integrity": "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.3.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + }, + "webpack-command": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "dependencies": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack-dev-server": { + "version": "3.11.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.1.tgz", + "integrity": "sha512-u4R3mRzZkbxQVa+MBWi2uVpB5W59H3ekZAJsQlKUTdl7Elcah2EhygTPLmeFXybQkf9i2+L0kn7ik9SnXa6ihQ==", + "dependencies": { + "ansi-html": "0.0.7", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 6.11.5" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/webpack-dev-server/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 will break on node v14+. Upgrade to chokidar 3 with 15x less dependencies.", + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/webpack-dev-server/node_modules/cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/webpack-dev-server/node_modules/cliui/node_modules/ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/cliui/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/webpack-dev-server/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "node_modules/webpack-dev-server/node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "node_modules/webpack-dev-server/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/webpack-dev-server/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/webpack-dev-server/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dependencies": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/webpack-dev-server/node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-dev-server/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/webpack-dev-server/node_modules/resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/webpack-dev-server/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/webpack-dev-server/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/string-width/node_modules/ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/string-width/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", + "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/webpack-dev-server/node_modules/y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==" + }, + "node_modules/webpack-dev-server/node_modules/yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dependencies": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "node_modules/webpack-dev-server/node_modules/yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dependencies": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/webpack-log/node_modules/ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-log/node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/webpack-manifest-plugin": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz", + "integrity": "sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==", + "dependencies": { + "fs-extra": "^7.0.0", + "lodash": ">=3.5 <5", + "object.entries": "^1.1.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.11.5" + }, + "peerDependencies": { + "webpack": "2 || 3 || 4" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/webpack-merge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz", + "integrity": "sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==", + "dev": true, + "dependencies": { + "lodash": "^4.17.15" + } + }, + "node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack/node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/webpack/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "dependencies": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "node_modules/webpack/node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dependencies": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/webpack/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/webpack/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/webpack/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/webpack/node_modules/ssri": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", + "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", + "dependencies": { + "figgy-pudding": "^3.5.1" + } + }, + "node_modules/webpack/node_modules/terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "dependencies": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/webpack/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==" + }, + "node_modules/webpack/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + }, + "node_modules/whatwg-url": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.4.0.tgz", + "integrity": "sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^2.0.2", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + }, + "node_modules/wide-align": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", + "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", + "dev": true, + "dependencies": { + "string-width": "^1.0.2 || 2" + } + }, + "node_modules/wide-align/node_modules/ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/wide-align/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/wide-align/node_modules/string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "dependencies": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/wide-align/node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "dependencies": { + "ansi-regex": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-background-sync": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-5.1.4.tgz", + "integrity": "sha512-AH6x5pYq4vwQvfRDWH+vfOePfPIYQ00nCEB7dJRU1e0n9+9HMRyvI63FlDvtFT2AvXVRsXvUt7DNMEToyJLpSA==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-broadcast-update": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-5.1.4.tgz", + "integrity": "sha512-HTyTWkqXvHRuqY73XrwvXPud/FN6x3ROzkfFPsRjtw/kGZuZkPzfeH531qdUGfhtwjmtO/ZzXcWErqVzJNdXaA==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-build": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-5.1.4.tgz", + "integrity": "sha512-xUcZn6SYU8usjOlfLb9Y2/f86Gdo+fy1fXgH8tJHjxgpo53VVsqRX0lUDw8/JuyzNmXuo8vXX14pXX2oIm9Bow==", + "dependencies": { + "@babel/core": "^7.8.4", + "@babel/preset-env": "^7.8.4", + "@babel/runtime": "^7.8.4", + "@hapi/joi": "^15.1.0", + "@rollup/plugin-node-resolve": "^7.1.1", + "@rollup/plugin-replace": "^2.3.1", + "@surma/rollup-plugin-off-main-thread": "^1.1.1", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^8.1.0", + "glob": "^7.1.6", + "lodash.template": "^4.5.0", + "pretty-bytes": "^5.3.0", + "rollup": "^1.31.1", + "rollup-plugin-babel": "^4.3.3", + "rollup-plugin-terser": "^5.3.1", + "source-map": "^0.7.3", + "source-map-url": "^0.4.0", + "stringify-object": "^3.3.0", + "strip-comments": "^1.0.2", + "tempy": "^0.3.0", + "upath": "^1.2.0", + "workbox-background-sync": "^5.1.4", + "workbox-broadcast-update": "^5.1.4", + "workbox-cacheable-response": "^5.1.4", + "workbox-core": "^5.1.4", + "workbox-expiration": "^5.1.4", + "workbox-google-analytics": "^5.1.4", + "workbox-navigation-preload": "^5.1.4", + "workbox-precaching": "^5.1.4", + "workbox-range-requests": "^5.1.4", + "workbox-routing": "^5.1.4", + "workbox-strategies": "^5.1.4", + "workbox-streams": "^5.1.4", + "workbox-sw": "^5.1.4", + "workbox-window": "^5.1.4" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/workbox-build/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/workbox-build/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/workbox-build/node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/workbox-build/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/workbox-build/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/workbox-cacheable-response": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-5.1.4.tgz", + "integrity": "sha512-0bfvMZs0Of1S5cdswfQK0BXt6ulU5kVD4lwer2CeI+03czHprXR3V4Y8lPTooamn7eHP8Iywi5QjyAMjw0qauA==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-core": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-5.1.4.tgz", + "integrity": "sha512-+4iRQan/1D8I81nR2L5vcbaaFskZC2CL17TLbvWVzQ4qiF/ytOGF6XeV54pVxAvKUtkLANhk8TyIUMtiMw2oDg==" + }, + "node_modules/workbox-expiration": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-5.1.4.tgz", + "integrity": "sha512-oDO/5iC65h2Eq7jctAv858W2+CeRW5e0jZBMNRXpzp0ZPvuT6GblUiHnAsC5W5lANs1QS9atVOm4ifrBiYY7AQ==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-google-analytics": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-5.1.4.tgz", + "integrity": "sha512-0IFhKoEVrreHpKgcOoddV+oIaVXBFKXUzJVBI+nb0bxmcwYuZMdteBTp8AEDJacENtc9xbR0wa9RDCnYsCDLjA==", + "dependencies": { + "workbox-background-sync": "^5.1.4", + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4", + "workbox-strategies": "^5.1.4" + } + }, + "node_modules/workbox-navigation-preload": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-5.1.4.tgz", + "integrity": "sha512-Wf03osvK0wTflAfKXba//QmWC5BIaIZARU03JIhAEO2wSB2BDROWI8Q/zmianf54kdV7e1eLaIEZhth4K4MyfQ==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-precaching": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-5.1.4.tgz", + "integrity": "sha512-gCIFrBXmVQLFwvAzuGLCmkUYGVhBb7D1k/IL7pUJUO5xacjLcFUaLnnsoVepBGAiKw34HU1y/YuqvTKim9qAZA==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-range-requests": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-5.1.4.tgz", + "integrity": "sha512-1HSujLjgTeoxHrMR2muDW2dKdxqCGMc1KbeyGcmjZZAizJTFwu7CWLDmLv6O1ceWYrhfuLFJO+umYMddk2XMhw==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-routing": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-5.1.4.tgz", + "integrity": "sha512-8ljknRfqE1vEQtnMtzfksL+UXO822jJlHTIR7+BtJuxQ17+WPZfsHqvk1ynR/v0EHik4x2+826Hkwpgh4GKDCw==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-strategies": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-5.1.4.tgz", + "integrity": "sha512-VVS57LpaJTdjW3RgZvPwX0NlhNmscR7OQ9bP+N/34cYMDzXLyA6kqWffP6QKXSkca1OFo/v6v7hW7zrrguo6EA==", + "dependencies": { + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4" + } + }, + "node_modules/workbox-streams": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-5.1.4.tgz", + "integrity": "sha512-xU8yuF1hI/XcVhJUAfbQLa1guQUhdLMPQJkdT0kn6HP5CwiPOGiXnSFq80rAG4b1kJUChQQIGPrq439FQUNVrw==", + "dependencies": { + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4" + } + }, + "node_modules/workbox-sw": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-5.1.4.tgz", + "integrity": "sha512-9xKnKw95aXwSNc8kk8gki4HU0g0W6KXu+xks7wFuC7h0sembFnTrKtckqZxbSod41TDaGh+gWUA5IRXrL0ECRA==" + }, + "node_modules/workbox-webpack-plugin": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-5.1.4.tgz", + "integrity": "sha512-PZafF4HpugZndqISi3rZ4ZK4A4DxO8rAqt2FwRptgsDx7NF8TVKP86/huHquUsRjMGQllsNdn4FNl8CD/UvKmQ==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "fast-json-stable-stringify": "^2.0.0", + "source-map-url": "^0.4.0", + "upath": "^1.1.2", + "webpack-sources": "^1.3.0", + "workbox-build": "^5.1.4" + }, + "engines": { + "node": ">=8.0.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/workbox-window": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-5.1.4.tgz", + "integrity": "sha512-vXQtgTeMCUq/4pBWMfQX8Ee7N2wVC4Q7XYFqLnfbXJ2hqew/cU1uMTD2KqGEgEpE4/30luxIxgE+LkIa8glBYw==", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "dependencies": { + "errno": "~0.1.7" + } + }, + "node_modules/worker-rpc": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz", + "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==", + "dependencies": { + "microevent.ts": "~0.1.1" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/ws": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.4.tgz", + "integrity": "sha512-Qm8k8ojNQIMx7S+Zp8u/uHOx7Qazv3Yv4q68MiWWWOJhiwG5W3x7iqmRtJo8xxrciZUY4vRxUTJCKuRnF28ZZw==", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + }, + "node_modules/xmlbuilder": { + "version": "9.0.7", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz", + "integrity": "sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + }, + "node_modules/xmldom": { + "version": "0.1.31", + "resolved": "https://registry.npmjs.org/xmldom/-/xmldom-0.1.31.tgz", + "integrity": "sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ==", + "deprecated": "Deprecated due to CVE-2021-21366 resolved in 0.5.0", + "dev": true, + "engines": { + "node": ">=0.1" + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.5.tgz", + "integrity": "sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-parser": { + "version": "20.2.7", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.7.tgz", + "integrity": "sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yarn-or-npm": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/yarn-or-npm/-/yarn-or-npm-3.0.1.tgz", + "integrity": "sha512-fTiQP6WbDAh5QZAVdbMQkecZoahnbOjClTQhzv74WX5h2Uaidj1isf9FDes11TKtsZ0/ZVfZsqZ+O3x6aLERHQ==", + "dev": true, + "dependencies": { + "cross-spawn": "^6.0.5", + "pkg-dir": "^4.2.0" + }, + "bin": { + "yarn-or-npm": "bin/index.js", + "yon": "bin/index.js" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/yarn-or-npm/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/yarn-or-npm/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yarn-or-npm/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yarn-or-npm/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yarn-or-npm/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yarn-or-npm/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/yarn-or-npm/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yarn-or-npm/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/yarn-or-npm/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yarn-or-npm/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yarn-or-npm/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", + "dev": true, + "dependencies": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + }, + "dependencies": { + "@ant-design/colors": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@ant-design/colors/-/colors-6.0.0.tgz", + "integrity": "sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==", + "requires": { + "@ctrl/tinycolor": "^3.4.0" + } + }, + "@ant-design/icons": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/@ant-design/icons/-/icons-4.6.2.tgz", + "integrity": "sha512-QsBG2BxBYU/rxr2eb8b2cZ4rPKAPBpzAR+0v6rrZLp/lnyvflLH3tw1vregK+M7aJauGWjIGNdFmUfpAOtw25A==", + "requires": { + "@ant-design/colors": "^6.0.0", + "@ant-design/icons-svg": "^4.0.0", + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-util": "^5.9.4" + } + }, + "@ant-design/icons-svg": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/@ant-design/icons-svg/-/icons-svg-4.1.0.tgz", + "integrity": "sha512-Fi03PfuUqRs76aI3UWYpP864lkrfPo0hluwGqh7NJdLhvH4iRDc3jbJqZIvRDLHKbXrvAfPPV3+zjUccfFvWOQ==" + }, + "@ant-design/react-slick": { + "version": "0.28.2", + "resolved": "https://registry.npmjs.org/@ant-design/react-slick/-/react-slick-0.28.2.tgz", + "integrity": "sha512-nkrvXsO29pLToFaBb3MlJY4McaUFR4UHtXTz6A5HBzYmxH4SwKerX54mWdGc/6tKpHvS3vUwjEOt2T5XqZEo8Q==", + "requires": { + "@babel/runtime": "^7.10.4", + "classnames": "^2.2.5", + "json2mq": "^0.2.0", + "lodash": "^4.17.15", + "resize-observer-polyfill": "^1.5.0" + } + }, + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@babel/compat-data": { + "version": "7.13.11", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.11.tgz", + "integrity": "sha512-BwKEkO+2a67DcFeS3RLl0Z3Gs2OvdXewuWjc1Hfokhb5eQWP9YRYH1/+VrVZvql2CfjOiNGqSAFOYt4lsqTHzg==" + }, + "@babel/core": { + "version": "7.12.3", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz", + "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.1", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.1", + "@babel/parser": "^7.12.3", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.1", + "@babel/types": "^7.12.1", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } + } + }, + "@babel/generator": { + "version": "7.13.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.13.9.tgz", + "integrity": "sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw==", + "requires": { + "@babel/types": "^7.13.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz", + "integrity": "sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==", + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz", + "integrity": "sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==", + "requires": { + "@babel/helper-explode-assignable-expression": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.10.tgz", + "integrity": "sha512-/Xju7Qg1GQO4mHZ/Kcs6Au7gfafgZnwm+a7sy/ow/tV1sHeraRUHbjdat8/UvDor4Tez+siGKDk6zIKtCPKVJA==", + "requires": { + "@babel/compat-data": "^7.13.8", + "@babel/helper-validator-option": "^7.12.17", + "browserslist": "^4.14.5", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.13.11", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.11.tgz", + "integrity": "sha512-ays0I7XYq9xbjCSvT+EvysLgfc3tOkwCULHjrnscGT3A9qD4sk3wXnJ3of0MAWsWGjdinFvajHU2smYuqXKMrw==", + "requires": { + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-member-expression-to-functions": "^7.13.0", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/helper-replace-supers": "^7.13.0", + "@babel/helper-split-export-declaration": "^7.12.13" + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz", + "integrity": "sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "regexpu-core": "^4.7.1" + } + }, + "@babel/helper-define-polyfill-provider": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz", + "integrity": "sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==", + "requires": { + "@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", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2", + "semver": "^6.1.2" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz", + "integrity": "sha512-qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA==", + "requires": { + "@babel/types": "^7.13.0" + } + }, + "@babel/helper-function-name": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz", + "integrity": "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==", + "requires": { + "@babel/helper-get-function-arity": "^7.12.13", + "@babel/template": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz", + "integrity": "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==", + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.0.tgz", + "integrity": "sha512-0kBzvXiIKfsCA0y6cFEIJf4OdzfpRuNk4+YTeHZpGGc666SATFKTz6sRncwFnQk7/ugJ4dSrCj6iJuvW4Qwr2g==", + "requires": { + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.0.tgz", + "integrity": "sha512-yvRf8Ivk62JwisqV1rFRMxiSMDGnN6KH1/mDMmIrij4jztpQNRoHqqMG3U6apYbGRPJpgPalhva9Yd06HlUxJQ==", + "requires": { + "@babel/types": "^7.13.0" + } + }, + "@babel/helper-module-imports": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz", + "integrity": "sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g==", + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-module-transforms": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.0.tgz", + "integrity": "sha512-Ls8/VBwH577+pw7Ku1QkUWIyRRNHpYlts7+qSqBBFCW3I8QteB9DxfcZ5YJpOwH6Ihe/wn8ch7fMGOP1OhEIvw==", + "requires": { + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-replace-supers": "^7.13.0", + "@babel/helper-simple-access": "^7.12.13", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/helper-validator-identifier": "^7.12.11", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0", + "lodash": "^4.17.19" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz", + "integrity": "sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==", + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz", + "integrity": "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ==" + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz", + "integrity": "sha512-pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-wrap-function": "^7.13.0", + "@babel/types": "^7.13.0" + } + }, + "@babel/helper-replace-supers": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.0.tgz", + "integrity": "sha512-Segd5me1+Pz+rmN/NFBOplMbZG3SqRJOBlY+mA0SxAv6rjj7zJqr1AVr3SfzUVTLCv7ZLU5FycOM/SBGuLPbZw==", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.13.0", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0" + } + }, + "@babel/helper-simple-access": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz", + "integrity": "sha512-0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA==", + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz", + "integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==", + "requires": { + "@babel/types": "^7.12.1" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz", + "integrity": "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==", + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==" + }, + "@babel/helper-validator-option": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz", + "integrity": "sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==" + }, + "@babel/helper-wrap-function": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz", + "integrity": "sha512-1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA==", + "requires": { + "@babel/helper-function-name": "^7.12.13", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0" + } + }, + "@babel/helpers": { + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.13.10.tgz", + "integrity": "sha512-4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ==", + "requires": { + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.13.0", + "@babel/types": "^7.13.0" + } + }, + "@babel/highlight": { + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz", + "integrity": "sha512-5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg==", + "requires": { + "@babel/helper-validator-identifier": "^7.12.11", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/parser": { + "version": "7.13.11", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.13.11.tgz", + "integrity": "sha512-PhuoqeHoO9fc4ffMEVk4qb/w/s2iOSWohvbHxLtxui0eBg3Lg5gN1U8wp1V1u61hOWkPQJJyJzGH6Y+grwkq8Q==" + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.8.tgz", + "integrity": "sha512-rPBnhj+WgoSmgq+4gQUtXx/vOcU+UYtjy1AA/aeD61Hwj410fwYyqfUcRP3lR8ucgliVJL/G7sXcNUecC75IXA==", + "requires": { + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-remap-async-to-generator": "^7.13.0", + "@babel/plugin-syntax-async-generators": "^7.8.4" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz", + "integrity": "sha512-KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0" + } + }, + "@babel/plugin-proposal-decorators": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.1.tgz", + "integrity": "sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-decorators": "^7.12.1" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz", + "integrity": "sha512-ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz", + "integrity": "sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz", + "integrity": "sha512-w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-json-strings": "^7.8.3" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz", + "integrity": "sha512-aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A==", + "requires": { + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz", + "integrity": "sha512-iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A==", + "requires": { + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz", + "integrity": "sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz", + "integrity": "sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g==", + "requires": { + "@babel/compat-data": "^7.13.8", + "@babel/helper-compilation-targets": "^7.13.8", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.13.0" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz", + "integrity": "sha512-0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA==", + "requires": { + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.8.tgz", + "integrity": "sha512-hpbBwbTgd7Cz1QryvwJZRo1U0k1q8uyBmeXOSQUjdg/A2TASkhR/rz7AyqZ/kS8kbpsNA80rOYbxySBJAqmhhQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz", + "integrity": "sha512-MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz", + "integrity": "sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-decorators": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.13.tgz", + "integrity": "sha512-Rw6aIXGuqDLr6/LoBBYE57nKOzQpz/aDkKlMqEwH+Vp0MXbG6H/TfRjaY343LKxzAKAMXIHsQ8JzaZKuDZ9MwA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-flow": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.13.tgz", + "integrity": "sha512-J/RYxnlSLXZLVR7wTRsozxKT8qbsx1mNKJzXEEjQ0Kjx1ZACcyHgbanNWNCFtc36IzuWhYWPpvJFFoexoOWFmA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz", + "integrity": "sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz", + "integrity": "sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz", + "integrity": "sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz", + "integrity": "sha512-96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg==", + "requires": { + "@babel/helper-plugin-utils": "^7.13.0" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz", + "integrity": "sha512-3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg==", + "requires": { + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-remap-async-to-generator": "^7.13.0" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz", + "integrity": "sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz", + "integrity": "sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz", + "integrity": "sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-replace-supers": "^7.13.0", + "@babel/helper-split-export-declaration": "^7.12.13", + "globals": "^11.1.0" + }, + "dependencies": { + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + } + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz", + "integrity": "sha512-RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg==", + "requires": { + "@babel/helper-plugin-utils": "^7.13.0" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz", + "integrity": "sha512-zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA==", + "requires": { + "@babel/helper-plugin-utils": "^7.13.0" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz", + "integrity": "sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz", + "integrity": "sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz", + "integrity": "sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==", + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-flow-strip-types": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.12.1.tgz", + "integrity": "sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-flow": "^7.12.1" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz", + "integrity": "sha512-IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg==", + "requires": { + "@babel/helper-plugin-utils": "^7.13.0" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz", + "integrity": "sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==", + "requires": { + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz", + "integrity": "sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz", + "integrity": "sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz", + "integrity": "sha512-EKy/E2NHhY/6Vw5d1k3rgoobftcNUmp9fGjb9XZwQLtTctsRBOTRO7RHHxfIky1ogMN5BxN7p9uMA3SzPfotMQ==", + "requires": { + "@babel/helper-module-transforms": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz", + "integrity": "sha512-9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw==", + "requires": { + "@babel/helper-module-transforms": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-simple-access": "^7.12.13", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.13.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz", + "integrity": "sha512-hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A==", + "requires": { + "@babel/helper-hoist-variables": "^7.13.0", + "@babel/helper-module-transforms": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-validator-identifier": "^7.12.11", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz", + "integrity": "sha512-D/ILzAh6uyvkWjKKyFE/W0FzWwasv6vPTSqPcjxFqn6QpX3u8DjRVliq4F2BamO2Wee/om06Vyy+vPkNrd4wxw==", + "requires": { + "@babel/helper-module-transforms": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz", + "integrity": "sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.12.13" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz", + "integrity": "sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz", + "integrity": "sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-replace-supers": "^7.12.13" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz", + "integrity": "sha512-Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw==", + "requires": { + "@babel/helper-plugin-utils": "^7.13.0" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz", + "integrity": "sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-react-constant-elements": { + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.13.10.tgz", + "integrity": "sha512-E+aCW9j7mLq01tOuGV08YzLBt+vSyr4bOPT75B6WrAlrUfmOYOZ/yWk847EH0dv0xXiCihWLEmlX//O30YhpIw==", + "requires": { + "@babel/helper-plugin-utils": "^7.13.0" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz", + "integrity": "sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.17.tgz", + "integrity": "sha512-mwaVNcXV+l6qJOuRhpdTEj8sT/Z0owAVWf9QujTZ0d2ye9X/K+MTOTSizcgKOj18PGnTc/7g1I4+cIUjsKhBcw==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-jsx": "^7.12.13", + "@babel/types": "^7.12.17" + } + }, + "@babel/plugin-transform-react-jsx-development": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz", + "integrity": "sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ==", + "requires": { + "@babel/plugin-transform-react-jsx": "^7.12.17" + } + }, + "@babel/plugin-transform-react-pure-annotations": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz", + "integrity": "sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz", + "integrity": "sha512-lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA==", + "requires": { + "regenerator-transform": "^0.14.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz", + "integrity": "sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz", + "integrity": "sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==", + "requires": { + "@babel/helper-module-imports": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "resolve": "^1.8.1", + "semver": "^5.5.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz", + "integrity": "sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz", + "integrity": "sha512-V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg==", + "requires": { + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz", + "integrity": "sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz", + "integrity": "sha512-d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw==", + "requires": { + "@babel/helper-plugin-utils": "^7.13.0" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz", + "integrity": "sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.13.0.tgz", + "integrity": "sha512-elQEwluzaU8R8dbVuW2Q2Y8Nznf7hnjM7+DSCd14Lo5fF63C9qNLbwZYbmZrtV9/ySpSUpkRpQXvJb6xyu4hCQ==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.13.0", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/plugin-syntax-typescript": "^7.12.13" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz", + "integrity": "sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz", + "integrity": "sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/preset-env": { + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.13.10.tgz", + "integrity": "sha512-nOsTScuoRghRtUsRr/c69d042ysfPHcu+KOB4A9aAO9eJYqrkat+LF8G1yp1HD18QiwixT2CisZTr/0b3YZPXQ==", + "requires": { + "@babel/compat-data": "^7.13.8", + "@babel/helper-compilation-targets": "^7.13.10", + "@babel/helper-plugin-utils": "^7.13.0", + "@babel/helper-validator-option": "^7.12.17", + "@babel/plugin-proposal-async-generator-functions": "^7.13.8", + "@babel/plugin-proposal-class-properties": "^7.13.0", + "@babel/plugin-proposal-dynamic-import": "^7.13.8", + "@babel/plugin-proposal-export-namespace-from": "^7.12.13", + "@babel/plugin-proposal-json-strings": "^7.13.8", + "@babel/plugin-proposal-logical-assignment-operators": "^7.13.8", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8", + "@babel/plugin-proposal-numeric-separator": "^7.12.13", + "@babel/plugin-proposal-object-rest-spread": "^7.13.8", + "@babel/plugin-proposal-optional-catch-binding": "^7.13.8", + "@babel/plugin-proposal-optional-chaining": "^7.13.8", + "@babel/plugin-proposal-private-methods": "^7.13.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.12.13", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.12.13", + "@babel/plugin-transform-arrow-functions": "^7.13.0", + "@babel/plugin-transform-async-to-generator": "^7.13.0", + "@babel/plugin-transform-block-scoped-functions": "^7.12.13", + "@babel/plugin-transform-block-scoping": "^7.12.13", + "@babel/plugin-transform-classes": "^7.13.0", + "@babel/plugin-transform-computed-properties": "^7.13.0", + "@babel/plugin-transform-destructuring": "^7.13.0", + "@babel/plugin-transform-dotall-regex": "^7.12.13", + "@babel/plugin-transform-duplicate-keys": "^7.12.13", + "@babel/plugin-transform-exponentiation-operator": "^7.12.13", + "@babel/plugin-transform-for-of": "^7.13.0", + "@babel/plugin-transform-function-name": "^7.12.13", + "@babel/plugin-transform-literals": "^7.12.13", + "@babel/plugin-transform-member-expression-literals": "^7.12.13", + "@babel/plugin-transform-modules-amd": "^7.13.0", + "@babel/plugin-transform-modules-commonjs": "^7.13.8", + "@babel/plugin-transform-modules-systemjs": "^7.13.8", + "@babel/plugin-transform-modules-umd": "^7.13.0", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.13", + "@babel/plugin-transform-new-target": "^7.12.13", + "@babel/plugin-transform-object-super": "^7.12.13", + "@babel/plugin-transform-parameters": "^7.13.0", + "@babel/plugin-transform-property-literals": "^7.12.13", + "@babel/plugin-transform-regenerator": "^7.12.13", + "@babel/plugin-transform-reserved-words": "^7.12.13", + "@babel/plugin-transform-shorthand-properties": "^7.12.13", + "@babel/plugin-transform-spread": "^7.13.0", + "@babel/plugin-transform-sticky-regex": "^7.12.13", + "@babel/plugin-transform-template-literals": "^7.13.0", + "@babel/plugin-transform-typeof-symbol": "^7.12.13", + "@babel/plugin-transform-unicode-escapes": "^7.12.13", + "@babel/plugin-transform-unicode-regex": "^7.12.13", + "@babel/preset-modules": "^0.1.4", + "@babel/types": "^7.13.0", + "babel-plugin-polyfill-corejs2": "^0.1.4", + "babel-plugin-polyfill-corejs3": "^0.1.3", + "babel-plugin-polyfill-regenerator": "^0.1.2", + "core-js-compat": "^3.9.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "@babel/preset-modules": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz", + "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/preset-react": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.13.tgz", + "integrity": "sha512-TYM0V9z6Abb6dj1K7i5NrEhA13oS5ujUYQYDfqIBXYHOc2c2VkFgc+q9kyssIyUfy4/hEwqrgSlJ/Qgv8zJLsA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-transform-react-display-name": "^7.12.13", + "@babel/plugin-transform-react-jsx": "^7.12.13", + "@babel/plugin-transform-react-jsx-development": "^7.12.12", + "@babel/plugin-transform-react-pure-annotations": "^7.12.1" + } + }, + "@babel/preset-typescript": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.12.1.tgz", + "integrity": "sha512-hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-transform-typescript": "^7.12.1" + } + }, + "@babel/runtime": { + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.10.tgz", + "integrity": "sha512-4QPkjJq6Ns3V/RgpEahRk+AGfL0eO6RHHtTWoNNr5mO49G6B5+X6d6THgWEAvTrznU5xYpbAlVKRYcsCgh/Akw==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/runtime-corejs3": { + "version": "7.13.10", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.13.10.tgz", + "integrity": "sha512-x/XYVQ1h684pp1mJwOV4CyvqZXqbc8CMsMGUnAbuc82ZCdv1U63w5RSUzgDSXQHG5Rps/kiksH6g2D5BuaKyXg==", + "requires": { + "core-js-pure": "^3.0.0", + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz", + "integrity": "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==", + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/parser": "^7.12.13", + "@babel/types": "^7.12.13" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", + "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", + "requires": { + "@babel/highlight": "^7.12.13" + } + } + } + }, + "@babel/traverse": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.0.tgz", + "integrity": "sha512-xys5xi5JEhzC3RzEmSGrs/b3pJW/o87SypZ+G/PhaE7uqVQNv/jlmVIBXuoh5atqQ434LfXV+sf23Oxj0bchJQ==", + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.13.0", + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/parser": "^7.13.0", + "@babel/types": "^7.13.0", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.19" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", + "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", + "requires": { + "@babel/highlight": "^7.12.13" + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + } + } + }, + "@babel/types": { + "version": "7.13.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.13.0.tgz", + "integrity": "sha512-hE+HE8rnG1Z6Wzo+MhaKE5lM5eMx71T4EHJgku2E3xIfaULhDcxiiRxUYgwX8qwP1BBSlag+TdGOt6JAidIZTA==", + "requires": { + "@babel/helper-validator-identifier": "^7.12.11", + "lodash": "^4.17.19", + "to-fast-properties": "^2.0.0" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + }, + "@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "requires": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + } + }, + "@craco/craco": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@craco/craco/-/craco-6.1.1.tgz", + "integrity": "sha512-4irfOM8RgYNhFJzAXyIuM8CZLju2Jh9GdOem8uqM2/cI2xPulQSxZKU/9q3uiSbFUJfQLi3pomVKii6KzWLu3Q==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "webpack-merge": "^4.2.2" + } + }, + "@csstools/convert-colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz", + "integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==" + }, + "@csstools/normalize.css": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-10.1.0.tgz", + "integrity": "sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==" + }, + "@ctrl/tinycolor": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.4.0.tgz", + "integrity": "sha512-JZButFdZ1+/xAfpguQHoabIXkcqRRKpMrWKBkpEZZyxfY9C1DpADFB8PEqGSTeFr135SaTRfKqGKx5xSCLI7ZQ==" + }, + "@electron-forge/async-ora": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/async-ora/-/async-ora-6.0.0-beta.54.tgz", + "integrity": "sha512-OCoHds0BIXaB54HgKw6pjlHC1cnaTcfJfVVkPSJl1GLC3VShZ5bETJfsitwbiP2kbfKLUQFayW27sqbwnwQR2w==", + "dev": true, + "requires": { + "colors": "^1.4.0", + "debug": "^4.1.0", + "log-symbols": "^4.0.0", + "ora": "^5.0.0", + "pretty-ms": "^7.0.0" + } + }, + "@electron-forge/cli": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/cli/-/cli-6.0.0-beta.54.tgz", + "integrity": "sha512-+Ui1BI8c5CnBawH2OEySa5QR8DzrFd/I9FHlClvrTsIDfsBAeMSv9NTbSNcmo9Af5kI+aNsLQa8tp1vD8DNrng==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/core": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "@electron/get": "^1.9.0", + "colors": "^1.4.0", + "commander": "^4.1.1", + "debug": "^4.1.0", + "fs-extra": "^9.0.1", + "inquirer": "^7.3.3", + "semver": "^7.2.1" + } + }, + "@electron-forge/core": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/core/-/core-6.0.0-beta.54.tgz", + "integrity": "sha512-yggZeiwRLnIsQYCT5jKhx2L7I02CwUCjnIzA+CqUZXD0AU1c2o0BA/26dNOGvY/+pr5yWjOXcrGy1hvj3dnLmQ==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/installer-base": "6.0.0-beta.54", + "@electron-forge/installer-deb": "6.0.0-beta.54", + "@electron-forge/installer-dmg": "6.0.0-beta.54", + "@electron-forge/installer-exe": "6.0.0-beta.54", + "@electron-forge/installer-rpm": "6.0.0-beta.54", + "@electron-forge/installer-zip": "6.0.0-beta.54", + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/plugin-base": "6.0.0-beta.54", + "@electron-forge/publisher-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "@electron-forge/template-base": "6.0.0-beta.54", + "@electron-forge/template-typescript": "6.0.0-beta.54", + "@electron-forge/template-typescript-webpack": "6.0.0-beta.54", + "@electron-forge/template-webpack": "6.0.0-beta.54", + "@electron/get": "^1.9.0", + "@malept/cross-spawn-promise": "^1.1.0", + "colors": "^1.4.0", + "debug": "^4.1.0", + "electron-packager": "^15.0.0", + "electron-rebuild": "^2.0.3", + "find-up": "^5.0.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.5", + "lodash": "^4.17.20", + "log-symbols": "^4.0.0", + "node-fetch": "^2.6.0", + "nugget": "^2.0.1", + "resolve-package": "^1.0.1", + "semver": "^7.2.1", + "source-map-support": "^0.5.13", + "sudo-prompt": "^9.1.1", + "username": "^5.1.0", + "yarn-or-npm": "^3.0.1" + } + }, + "@electron-forge/installer-base": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-base/-/installer-base-6.0.0-beta.54.tgz", + "integrity": "sha512-q6Z5kBAE6StKqn+3Z5tXVHu7WGCb9OMeIomw9H9Q41UUIehF7V0J3tCWTkJdhZ8D6/tkXcis3GKptaj0wfMpyg==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54" + } + }, + "@electron-forge/installer-darwin": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-darwin/-/installer-darwin-6.0.0-beta.54.tgz", + "integrity": "sha512-kRbH24+QBhbcIugnIvevnf43JGzLFLoyFsoY3YeyZeeDL3vfyg0vtSyUx0hfq1GpHG+zObDf3o18c3WbxdXlXA==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/installer-base": "6.0.0-beta.54", + "fs-extra": "^9.0.1", + "sudo-prompt": "^9.1.1" + } + }, + "@electron-forge/installer-deb": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-deb/-/installer-deb-6.0.0-beta.54.tgz", + "integrity": "sha512-UbJR2Md0SBqex5AIv9YZ56hY2Iz5gZ6f1iAx0q4PlYpCY19W9nRXdudLNhx1w5go26DsT53+h6EzX2NGpBLq3Q==", + "dev": true, + "requires": { + "@electron-forge/installer-linux": "6.0.0-beta.54" + } + }, + "@electron-forge/installer-dmg": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-dmg/-/installer-dmg-6.0.0-beta.54.tgz", + "integrity": "sha512-F9jwhUTzdFNlbLus7RQ8paoGPryr79JFYDLi42f0dyuFwlOjwlrA1wN5xWqrvcMeqFlc3DfjjeRWZ+10RQyorA==", + "dev": true, + "requires": { + "@electron-forge/installer-darwin": "6.0.0-beta.54", + "@malept/cross-spawn-promise": "^1.1.0", + "debug": "^4.1.0", + "fs-extra": "^9.0.1" + } + }, + "@electron-forge/installer-exe": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-exe/-/installer-exe-6.0.0-beta.54.tgz", + "integrity": "sha512-PE7RBPerSenNcSkKXJWpervKNl7AVT+JeMzx61OHUQSw3h63NHRvXWh31llxk32mmJcaKRgGle2GsWob87Lv/w==", + "dev": true, + "requires": { + "@electron-forge/installer-base": "6.0.0-beta.54", + "open": "^7.2.1" + } + }, + "@electron-forge/installer-linux": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-linux/-/installer-linux-6.0.0-beta.54.tgz", + "integrity": "sha512-WQVV5fitsfTyktjb18m9Bx+Dho6rCFvVILqFNZAu1RfXIsjLl/h0WdkozdGDccfeDMqlRYmaNs3e5THn5swnAg==", + "dev": true, + "requires": { + "@electron-forge/installer-base": "6.0.0-beta.54", + "sudo-prompt": "^9.1.1" + } + }, + "@electron-forge/installer-rpm": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-rpm/-/installer-rpm-6.0.0-beta.54.tgz", + "integrity": "sha512-8gaJA2m8+Y/ZhV4xEeijXz8UksrliMEzyUAdwM5ZdAsmfmGlnhchGr0L6rI23D66dQP9DeyvUIuUwXrsTlj1nQ==", + "dev": true, + "requires": { + "@electron-forge/installer-linux": "6.0.0-beta.54" + } + }, + "@electron-forge/installer-zip": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/installer-zip/-/installer-zip-6.0.0-beta.54.tgz", + "integrity": "sha512-KCY5zreA79wjZODhLmtrbFweTWdlh9JgmW9WruIrmHm3sK19rRhCdaZ+Dg5ZWUhMx2A79d5a2C7r78lWGcHl7A==", + "dev": true, + "requires": { + "@electron-forge/installer-darwin": "6.0.0-beta.54", + "@malept/cross-spawn-promise": "^1.1.0", + "fs-extra": "^9.0.1" + } + }, + "@electron-forge/maker-base": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-base/-/maker-base-6.0.0-beta.54.tgz", + "integrity": "sha512-4y0y15ieb1EOR5mibtFM9tZzaShbAO0RZu6ARLCpD5BgKuJBzXRPfWvEmY6WeDNzoWTJ+mQdYikLAeOL2E9mew==", + "dev": true, + "requires": { + "@electron-forge/shared-types": "6.0.0-beta.54", + "fs-extra": "^9.0.1", + "which": "^2.0.2" + } + }, + "@electron-forge/maker-deb": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-deb/-/maker-deb-6.0.0-beta.54.tgz", + "integrity": "sha512-PEAYULi7n/JkwvaEQnM554ewmLYkxGtHvuh6vUf5wsh48Xw3jcEVHejsc4FDjx5I6cKAByb9nscTtZpKt3ngXw==", + "dev": true, + "requires": { + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "electron-installer-debian": "^3.0.0" + } + }, + "@electron-forge/maker-dmg": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-dmg/-/maker-dmg-6.0.0-beta.54.tgz", + "integrity": "sha512-5FmzxBiBxTS7z9SthJKRWpOtMKeDrPqvdi3l56DhwAO6beV3g2Gx2bpx9Y8PZXCU+fLDmcTgUstzjxFF7LLggQ==", + "dev": true, + "requires": { + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "electron-installer-dmg": "^3.0.0", + "fs-extra": "^9.0.1" + } + }, + "@electron-forge/maker-rpm": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-rpm/-/maker-rpm-6.0.0-beta.54.tgz", + "integrity": "sha512-6nqBOUnojRE8+KdvE8zVXN2/H/V/QuWJQ4cwCLahJQxG1kG5RXOh6VbsM1mEFxjJwOhVnK+wkNCODf1qi56JZw==", + "dev": true, + "requires": { + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "electron-installer-redhat": "^3.2.0" + } + }, + "@electron-forge/maker-squirrel": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-squirrel/-/maker-squirrel-6.0.0-beta.54.tgz", + "integrity": "sha512-JJ+HmUe94zZ6mZnyv3IvNLQ5nwoj4dcQ4gzwps4P3fCEpuABMr74KOlza7fMXrrs8cwOrGfMFwsk80GTcLdWkg==", + "dev": true, + "requires": { + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "electron-winstaller": "^4.0.1", + "fs-extra": "^9.0.1" + } + }, + "@electron-forge/maker-zip": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/maker-zip/-/maker-zip-6.0.0-beta.54.tgz", + "integrity": "sha512-wbJhK1rDOCZMTtKrjvavT8R+Yi+v/6axsnTXvzbkzzMQ0xADKNslTwzO6mmbBJea4oIbYmQ44DRAjI21TNyQ/A==", + "dev": true, + "requires": { + "@electron-forge/maker-base": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "cross-zip": "^3.0.0", + "fs-extra": "^9.0.1" + } + }, + "@electron-forge/plugin-base": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/plugin-base/-/plugin-base-6.0.0-beta.54.tgz", + "integrity": "sha512-8HwGzgNCHo2PgUfNnTch3Gvj7l6fqOgjnARK1y056UfsxFy+hwvHaAO+7LLfr7ktNwU/bH3hGhOpE+ZmBSwSqQ==", + "dev": true, + "requires": { + "@electron-forge/shared-types": "6.0.0-beta.54" + } + }, + "@electron-forge/publisher-base": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/publisher-base/-/publisher-base-6.0.0-beta.54.tgz", + "integrity": "sha512-Dny0jW0N8QcNYKHTtzQFZD4pBWJ7tclJWf3ZCX031vUKG7RhThdA06IPNzV6JtWJswrvAE9TPndzZONMza2V7g==", + "dev": true, + "requires": { + "@electron-forge/shared-types": "6.0.0-beta.54" + } + }, + "@electron-forge/shared-types": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/shared-types/-/shared-types-6.0.0-beta.54.tgz", + "integrity": "sha512-6CzWKFR17rxxeIqm1w5ZyT9uTAHSVAjhqL8c+TmizF2703GyCEusUkjP2UXt/tZNY4MJlukZoJM66Bct6oZJ+w==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "electron-packager": "^15.0.0", + "electron-rebuild": "^2.0.3", + "ora": "^5.0.0" + } + }, + "@electron-forge/template-base": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/template-base/-/template-base-6.0.0-beta.54.tgz", + "integrity": "sha512-LuSpeOiM6AzUbamz5U/NqRkn4y7dzof1JK1ISAb+6tORf7JU014aKqDcLdwgP8Lxaz6P1bdlMmNJTvg5+SBrEw==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "debug": "^4.1.0", + "fs-extra": "^9.0.1", + "username": "^5.1.0" + } + }, + "@electron-forge/template-typescript": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/template-typescript/-/template-typescript-6.0.0-beta.54.tgz", + "integrity": "sha512-7V87LWH+vJ1YibM9MsTttbz7upfwLrmXgchQ399EfLxK306g7q/ouyGkeTerhLr2gCUAvm/Oqx+sXQ7402ol9w==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "@electron-forge/template-base": "6.0.0-beta.54", + "fs-extra": "^9.0.1" + } + }, + "@electron-forge/template-typescript-webpack": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/template-typescript-webpack/-/template-typescript-webpack-6.0.0-beta.54.tgz", + "integrity": "sha512-1MIw1eGlMZg7KLG4oAEE0rB28WDOtz01OSoW2a2NqkmUzmu4BxJdSvQ97Tp7xCU0naW0H1uU39B9QOjJQgLGCQ==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "@electron-forge/template-base": "6.0.0-beta.54", + "fs-extra": "^9.0.1" + } + }, + "@electron-forge/template-webpack": { + "version": "6.0.0-beta.54", + "resolved": "https://registry.npmjs.org/@electron-forge/template-webpack/-/template-webpack-6.0.0-beta.54.tgz", + "integrity": "sha512-4/zUOZ8MCZqs8PcUCeeG6ofpy6HT53tQiLknM23OPaFP6ckuE6kOunC6N/teijUrJuLpKl3P8d39SWPVacxEzg==", + "dev": true, + "requires": { + "@electron-forge/async-ora": "6.0.0-beta.54", + "@electron-forge/shared-types": "6.0.0-beta.54", + "@electron-forge/template-base": "6.0.0-beta.54", + "fs-extra": "^9.0.1" + } + }, + "@electron/get": { + "version": "1.12.4", + "resolved": "https://registry.npmjs.org/@electron/get/-/get-1.12.4.tgz", + "integrity": "sha512-6nr9DbJPUR9Xujw6zD3y+rS95TyItEVM0NVjt1EehY2vUWfIgPiIPVHxCvaTS0xr2B+DRxovYVKbuOWqC35kjg==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "env-paths": "^2.2.0", + "fs-extra": "^8.1.0", + "global-agent": "^2.0.2", + "global-tunnel-ng": "^2.7.1", + "got": "^9.6.0", + "progress": "^2.0.3", + "semver": "^6.2.0", + "sumchecker": "^3.0.1" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + } + } + }, + "@eslint/eslintrc": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.0.tgz", + "integrity": "sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog==", + "requires": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "requires": { + "type-fest": "^0.8.1" + } + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + } + } + }, + "@hapi/address": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz", + "integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==" + }, + "@hapi/bourne": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz", + "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==" + }, + "@hapi/hoek": { + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.1.1.tgz", + "integrity": "sha512-CAEbWH7OIur6jEOzaai83jq3FmKmv4PmX1JYfs9IrYcGEVI/lyL1EXJGCj7eFVJ0bg5QR8LMxBlEtA+xKiLpFw==", + "dev": true + }, + "@hapi/joi": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz", + "integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==", + "requires": { + "@hapi/address": "2.x.x", + "@hapi/bourne": "1.x.x", + "@hapi/hoek": "8.x.x", + "@hapi/topo": "3.x.x" + }, + "dependencies": { + "@hapi/hoek": { + "version": "8.5.1", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz", + "integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==" + }, + "@hapi/topo": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", + "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", + "requires": { + "@hapi/hoek": "^8.3.0" + } + } + } + }, + "@hapi/topo": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.0.0.tgz", + "integrity": "sha512-tFJlT47db0kMqVm3H4nQYgn6Pwg10GTZHb1pwmSiv1K4ks6drQOtfEF5ZnPjkvC+y4/bUPHK+bc87QvLcL+WMw==", + "dev": true, + "requires": { + "@hapi/hoek": "^9.0.0" + } + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "dependencies": { + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + } + } + }, + "@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" + }, + "@jest/console": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz", + "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==", + "requires": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^26.6.2", + "jest-util": "^26.6.2", + "slash": "^3.0.0" + } + }, + "@jest/core": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz", + "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==", + "requires": { + "@jest/console": "^26.6.2", + "@jest/reporters": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^26.6.2", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-resolve-dependencies": "^26.6.3", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "jest-watcher": "^26.6.2", + "micromatch": "^4.0.2", + "p-each-series": "^2.1.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + } + } + }, + "@jest/environment": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz", + "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==", + "requires": { + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2" + } + }, + "@jest/fake-timers": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz", + "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==", + "requires": { + "@jest/types": "^26.6.2", + "@sinonjs/fake-timers": "^6.0.1", + "@types/node": "*", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + } + }, + "@jest/globals": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz", + "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==", + "requires": { + "@jest/environment": "^26.6.2", + "@jest/types": "^26.6.2", + "expect": "^26.6.2" + } + }, + "@jest/reporters": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz", + "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==", + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "node-notifier": "^8.0.0", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^7.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + } + } + }, + "@jest/source-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz", + "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + } + }, + "@jest/test-result": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz", + "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==", + "requires": { + "@jest/console": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz", + "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==", + "requires": { + "@jest/test-result": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3" + } + }, + "@jest/transform": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz", + "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^26.6.2", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-util": "^26.6.2", + "micromatch": "^4.0.2", + "pirates": "^4.0.1", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + } + }, + "@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + } + }, + "@malept/cross-spawn-promise": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-1.1.1.tgz", + "integrity": "sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.1" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz", + "integrity": "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==", + "requires": { + "@nodelib/fs.stat": "2.0.4", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz", + "integrity": "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==" + }, + "@nodelib/fs.walk": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz", + "integrity": "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==", + "requires": { + "@nodelib/fs.scandir": "2.1.4", + "fastq": "^1.6.0" + } + }, + "@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "requires": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + } + }, + "@reduxjs/toolkit": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.5.0.tgz", + "integrity": "sha512-E/FUraRx+8guw9Hlg/Ja8jI/hwCrmIKed8Annt9YsZw3BQp+F24t5I5b2OWR6pkEHY4hn1BgP08FrTZFRKsdaQ==", + "requires": { + "immer": "^8.0.0", + "redux": "^4.0.0", + "redux-thunk": "^2.3.0", + "reselect": "^4.0.0" + } + }, + "@rollup/plugin-node-resolve": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.3.tgz", + "integrity": "sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==", + "requires": { + "@rollup/pluginutils": "^3.0.8", + "@types/resolve": "0.0.8", + "builtin-modules": "^3.1.0", + "is-module": "^1.0.0", + "resolve": "^1.14.2" + } + }, + "@rollup/plugin-replace": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.1.tgz", + "integrity": "sha512-XwC1oK5rrtRJ0tn1ioLHS6OV5JTluJF7QE1J/q1hN3bquwjnVxjtMyY9iCnoyH9DQbf92CxajB3o98wZbP3oAQ==", + "requires": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + } + }, + "@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "requires": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "dependencies": { + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + } + } + }, + "@sideway/address": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.1.tgz", + "integrity": "sha512-+I5aaQr3m0OAmMr7RQ3fR9zx55sejEYR2BFJaxL+zT3VM2611X0SHvPWIbAUBZVTn/YzYKbV8gJ2oT/QELknfQ==", + "dev": true, + "requires": { + "@hapi/hoek": "^9.0.0" + } + }, + "@sideway/formula": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.0.tgz", + "integrity": "sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==", + "dev": true + }, + "@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", + "dev": true + }, + "@sindresorhus/is": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", + "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", + "dev": true + }, + "@sinonjs/commons": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.2.tgz", + "integrity": "sha512-sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw==", + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz", + "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==", + "requires": { + "@sinonjs/commons": "^1.7.0" + } + }, + "@surma/rollup-plugin-off-main-thread": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz", + "integrity": "sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A==", + "requires": { + "ejs": "^2.6.1", + "magic-string": "^0.25.0" + } + }, + "@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==" + }, + "@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==" + }, + "@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==" + }, + "@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==" + }, + "@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==" + }, + "@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==" + }, + "@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==" + }, + "@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==" + }, + "@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "requires": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + } + }, + "@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "requires": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "dependencies": { + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + } + } + }, + "@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "requires": { + "@babel/types": "^7.12.6" + } + }, + "@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "requires": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + } + }, + "@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "requires": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + } + }, + "@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "requires": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + } + }, + "@szmarczak/http-timer": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", + "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", + "dev": true, + "requires": { + "defer-to-connect": "^1.0.1" + } + }, + "@types/anymatch": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz", + "integrity": "sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==" + }, + "@types/babel__core": { + "version": "7.1.13", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.13.tgz", + "integrity": "sha512-CC6amBNND16pTk4K3ZqKIaba6VGKAQs3gMjEY17FVd56oI/ZWt9OhS6riYiWv9s8ENbYUi7p8lgqb0QHQvUKQQ==", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz", + "integrity": "sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==", + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz", + "integrity": "sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.11.1", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.1.tgz", + "integrity": "sha512-Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw==", + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/cacheable-request": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.1.tgz", + "integrity": "sha512-ykFq2zmBGOCbpIXtoVbz4SKY5QriWPh3AjyU4G74RYbtt5yOc5OfaY75ftjg7mikMOla1CTGpX3lLbuJh8DTrQ==", + "dev": true, + "requires": { + "@types/http-cache-semantics": "*", + "@types/keyv": "*", + "@types/node": "*", + "@types/responselike": "*" + } + }, + "@types/d3-path": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-1.0.9.tgz", + "integrity": "sha512-NaIeSIBiFgSC6IGUBjZWcscUJEq7vpVu7KthHN8eieTV9d9MqkSOZLH4chq1PmcKy06PNe3axLeKmRIyxJ+PZQ==" + }, + "@types/d3-scale": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-3.2.2.tgz", + "integrity": "sha512-qpQe8G02tzUwt9sdWX1h8A/W0Q1+N48wMnYXVOkrzeLUkCfvzJYV9Ee3aORCS4dN4ONRLFmMvaXdziQ29XGLjQ==", + "requires": { + "@types/d3-time": "*" + } + }, + "@types/d3-shape": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-2.0.0.tgz", + "integrity": "sha512-NLzD02m5PiD1KLEDjLN+MtqEcFYn4ZL9+Rqc9ZwARK1cpKZXd91zBETbe6wpBB6Ia0D0VZbpmbW3+BsGPGnCpA==", + "requires": { + "@types/d3-path": "^1" + } + }, + "@types/d3-time": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-2.0.0.tgz", + "integrity": "sha512-Abz8bTzy8UWDeYs9pCa3D37i29EWDjNTjemdk0ei1ApYVNqulYlGUKip/jLOpogkPSsPz/GvZCYiC7MFlEk0iQ==" + }, + "@types/eslint": { + "version": "7.2.7", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.7.tgz", + "integrity": "sha512-EHXbc1z2GoQRqHaAT7+grxlTJ3WE2YNeD6jlpPoRc83cCoThRY+NUWjCUZaYmk51OICkPXn2hhphcWcWXgNW0Q==", + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/estree": { + "version": "0.0.46", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.46.tgz", + "integrity": "sha512-laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg==" + }, + "@types/fs-extra": { + "version": "9.0.8", + "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.8.tgz", + "integrity": "sha512-bnlTVTwq03Na7DpWxFJ1dvnORob+Otb8xHyUqUWhqvz/Ksg8+JXPlR52oeMSZ37YEOa5PyccbgUNutiQdi13TA==", + "dev": true, + "optional": true, + "requires": { + "@types/node": "*" + } + }, + "@types/glob": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz", + "integrity": "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==", + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/graceful-fs": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", + "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "requires": { + "@types/node": "*" + } + }, + "@types/history": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.8.tgz", + "integrity": "sha512-S78QIYirQcUoo6UJZx9CSP0O2ix9IaeAXwQi26Rhr/+mg7qqPy8TzaxHSUut7eGjL8WmLccT7/MXf304WjqHcA==", + "dev": true + }, + "@types/hoist-non-react-statics": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", + "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", + "dev": true, + "requires": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + } + }, + "@types/html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA==" + }, + "@types/http-cache-semantics": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.0.tgz", + "integrity": "sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A==", + "dev": true + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", + "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==" + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz", + "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==", + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/js-yaml": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.0.tgz", + "integrity": "sha512-4vlpCM5KPCL5CfGmTbpjwVKbISRYhduEJvvUWsH5EB7QInhEj94XPZ3ts/9FPiLZFqYO0xoW4ZL8z2AabTGgJA==", + "dev": true + }, + "@types/json-schema": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz", + "integrity": "sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==" + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" + }, + "@types/keyv": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.1.tgz", + "integrity": "sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/minimatch": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", + "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" + }, + "@types/node": { + "version": "14.14.35", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.35.tgz", + "integrity": "sha512-Lt+wj8NVPx0zUmUwumiVXapmaLUcAk3yPuHCFVXras9k5VT9TdhJqKqGVUQCD60OTMCl0qxJ57OiTL0Mic3Iag==" + }, + "@types/normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==" + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + }, + "@types/parsimmon": { + "version": "1.10.6", + "resolved": "https://registry.npmjs.org/@types/parsimmon/-/parsimmon-1.10.6.tgz", + "integrity": "sha512-FwAQwMRbkhx0J6YELkwIpciVzCcgEqXEbIrIn3a2P5d3kGEHQ3wVhlN3YdVepYP+bZzCYO6OjmD4o9TGOZ40rA==", + "dev": true + }, + "@types/prettier": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.2.3.tgz", + "integrity": "sha512-PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA==" + }, + "@types/prop-types": { + "version": "15.7.3", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", + "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==", + "dev": true + }, + "@types/q": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz", + "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==" + }, + "@types/react": { + "version": "17.0.3", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.3.tgz", + "integrity": "sha512-wYOUxIgs2HZZ0ACNiIayItyluADNbONl7kt8lkLjVK8IitMH5QMyAh75Fwhmo37r1m7L2JaFj03sIfxBVDvRAg==", + "dev": true, + "requires": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "@types/react-dom": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.2.tgz", + "integrity": "sha512-Icd9KEgdnFfJs39KyRyr0jQ7EKhq8U6CcHRMGAS45fp5qgUvxL3ujUCfWFttUK2UErqZNj97t9gsVPNAqcwoCg==", + "dev": true, + "requires": { + "@types/react": "*" + } + }, + "@types/react-redux": { + "version": "7.1.16", + "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.16.tgz", + "integrity": "sha512-f/FKzIrZwZk7YEO9E1yoxIuDNRiDducxkFlkw/GNMGEnK9n4K8wJzlJBghpSuOVDgEUHoDkDF7Gi9lHNQR4siw==", + "dev": true, + "requires": { + "@types/hoist-non-react-statics": "^3.3.0", + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0", + "redux": "^4.0.0" + } + }, + "@types/react-router": { + "version": "5.1.12", + "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.12.tgz", + "integrity": "sha512-0bhXQwHYfMeJlCh7mGhc0VJTRm0Gk+Z8T00aiP4702mDUuLs9SMhnd2DitpjWFjdOecx2UXtICK14H9iMnziGA==", + "dev": true, + "requires": { + "@types/history": "*", + "@types/react": "*" + } + }, + "@types/react-router-dom": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.1.7.tgz", + "integrity": "sha512-D5mHD6TbdV/DNHYsnwBTv+y73ei+mMjrkGrla86HthE4/PVvL1J94Bu3qABU+COXzpL23T1EZapVVpwHuBXiUg==", + "dev": true, + "requires": { + "@types/history": "*", + "@types/react": "*", + "@types/react-router": "*" + } + }, + "@types/resize-observer-browser": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@types/resize-observer-browser/-/resize-observer-browser-0.1.5.tgz", + "integrity": "sha512-8k/67Z95Goa6Lznuykxkfhq9YU3l1Qe6LNZmwde1u7802a3x8v44oq0j91DICclxatTr0rNnhXx7+VTIetSrSQ==" + }, + "@types/resolve": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz", + "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==", + "requires": { + "@types/node": "*" + } + }, + "@types/responselike": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", + "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, + "@types/scheduler": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.1.tgz", + "integrity": "sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA==", + "dev": true + }, + "@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" + }, + "@types/stack-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz", + "integrity": "sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==" + }, + "@types/tapable": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz", + "integrity": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==" + }, + "@types/uglify-js": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.13.0.tgz", + "integrity": "sha512-EGkrJD5Uy+Pg0NUR8uA4bJ5WMfljyad0G+784vLCNUkD+QwOJXUbBYExXfVGf7YtyzdQp3L/XMYcliB987kL5Q==", + "requires": { + "source-map": "^0.6.1" + } + }, + "@types/webpack": { + "version": "4.41.26", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.26.tgz", + "integrity": "sha512-7ZyTfxjCRwexh+EJFwRUM+CDB2XvgHl4vfuqf1ZKrgGvcS5BrNvPQqJh3tsZ0P6h6Aa1qClVHaJZszLPzpqHeA==", + "requires": { + "@types/anymatch": "*", + "@types/node": "*", + "@types/tapable": "*", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "source-map": "^0.6.0" + } + }, + "@types/webpack-sources": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.1.0.tgz", + "integrity": "sha512-LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg==", + "requires": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + } + }, + "@types/yargs": { + "version": "15.0.13", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.13.tgz", + "integrity": "sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==", + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "20.2.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.0.tgz", + "integrity": "sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA==" + }, + "@types/yauzl": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.9.1.tgz", + "integrity": "sha512-A1b8SU4D10uoPjwb0lnHmmu8wZhR9d+9o2PKBQT2jU5YPTKsxac6M2qGAdY7VcL+dHHhARVUDmeg0rOrcd9EjA==", + "dev": true, + "optional": true, + "requires": { + "@types/node": "*" + } + }, + "@typescript-eslint/eslint-plugin": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.18.0.tgz", + "integrity": "sha512-Lzkc/2+7EoH7+NjIWLS2lVuKKqbEmJhtXe3rmfA8cyiKnZm3IfLf51irnBcmow8Q/AptVV0XBZmBJKuUJTe6cQ==", + "requires": { + "@typescript-eslint/experimental-utils": "4.18.0", + "@typescript-eslint/scope-manager": "4.18.0", + "debug": "^4.1.1", + "functional-red-black-tree": "^1.0.1", + "lodash": "^4.17.15", + "regexpp": "^3.0.0", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + } + }, + "@typescript-eslint/experimental-utils": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.18.0.tgz", + "integrity": "sha512-92h723Kblt9JcT2RRY3QS2xefFKar4ZQFVs3GityOKWQYgtajxt/tuXIzL7sVCUlM1hgreiV5gkGYyBpdOwO6A==", + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/scope-manager": "4.18.0", + "@typescript-eslint/types": "4.18.0", + "@typescript-eslint/typescript-estree": "4.18.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + } + }, + "@typescript-eslint/parser": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.18.0.tgz", + "integrity": "sha512-W3z5S0ZbecwX3PhJEAnq4mnjK5JJXvXUDBYIYGoweCyWyuvAKfGHvzmpUzgB5L4cRBb+cTu9U/ro66dx7dIimA==", + "requires": { + "@typescript-eslint/scope-manager": "4.18.0", + "@typescript-eslint/types": "4.18.0", + "@typescript-eslint/typescript-estree": "4.18.0", + "debug": "^4.1.1" + } + }, + "@typescript-eslint/scope-manager": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.18.0.tgz", + "integrity": "sha512-olX4yN6rvHR2eyFOcb6E4vmhDPsfdMyfQ3qR+oQNkAv8emKKlfxTWUXU5Mqxs2Fwe3Pf1BoPvrwZtwngxDzYzQ==", + "requires": { + "@typescript-eslint/types": "4.18.0", + "@typescript-eslint/visitor-keys": "4.18.0" + } + }, + "@typescript-eslint/types": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.18.0.tgz", + "integrity": "sha512-/BRociARpj5E+9yQ7cwCF/SNOWwXJ3qhjurMuK2hIFUbr9vTuDeu476Zpu+ptxY2kSxUHDGLLKy+qGq2sOg37A==" + }, + "@typescript-eslint/typescript-estree": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.18.0.tgz", + "integrity": "sha512-wt4xvF6vvJI7epz+rEqxmoNQ4ZADArGQO9gDU+cM0U5fdVv7N+IAuVoVAoZSOZxzGHBfvE3XQMLdy+scsqFfeg==", + "requires": { + "@typescript-eslint/types": "4.18.0", + "@typescript-eslint/visitor-keys": "4.18.0", + "debug": "^4.1.1", + "globby": "^11.0.1", + "is-glob": "^4.0.1", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.18.0.tgz", + "integrity": "sha512-Q9t90JCvfYaN0OfFUgaLqByOfz8yPeTAdotn/XYNm5q9eHax90gzdb+RJ6E9T5s97Kv/UHWKERTmqA0jTKAEHw==", + "requires": { + "@typescript-eslint/types": "4.18.0", + "eslint-visitor-keys": "^2.0.0" + } + }, + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "requires": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "abab": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==" + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + }, + "acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "acorn-jsx": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz", + "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==", + "requires": {} + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" + }, + "address": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", + "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" + }, + "adjust-sourcemap-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz", + "integrity": "sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==", + "requires": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + } + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "dependencies": { + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + } + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "requires": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "requires": {} + }, + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==" + }, + "ansi-escapes": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz", + "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==", + "requires": { + "type-fest": "^0.11.0" + }, + "dependencies": { + "type-fest": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", + "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==" + } + } + }, + "ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=" + }, + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "antd": { + "version": "4.14.0", + "resolved": "https://registry.npmjs.org/antd/-/antd-4.14.0.tgz", + "integrity": "sha512-K0VG6Ion4gGX8Lo8mJVfNDD8JrHjTq/qlBkicmpZGQXOOAWi19EElH2RpKGN1+WD4OXekWo6dZkSDmK2Lzxe5Q==", + "requires": { + "@ant-design/colors": "^6.0.0", + "@ant-design/icons": "^4.5.0", + "@ant-design/react-slick": "~0.28.1", + "@babel/runtime": "^7.12.5", + "array-tree-filter": "^2.1.0", + "classnames": "^2.2.6", + "copy-to-clipboard": "^3.2.0", + "lodash": "^4.17.20", + "moment": "^2.25.3", + "rc-cascader": "~1.4.0", + "rc-checkbox": "~2.3.0", + "rc-collapse": "~3.1.0", + "rc-dialog": "~8.5.1", + "rc-drawer": "~4.3.0", + "rc-dropdown": "~3.2.0", + "rc-field-form": "~1.20.0", + "rc-image": "~5.2.3", + "rc-input-number": "~7.0.1", + "rc-mentions": "~1.5.0", + "rc-menu": "~8.10.0", + "rc-motion": "^2.4.0", + "rc-notification": "~4.5.2", + "rc-pagination": "~3.1.6", + "rc-picker": "~2.5.10", + "rc-progress": "~3.1.0", + "rc-rate": "~2.9.0", + "rc-resize-observer": "^1.0.0", + "rc-select": "~12.1.6", + "rc-slider": "~9.7.1", + "rc-steps": "~4.1.0", + "rc-switch": "~3.2.0", + "rc-table": "~7.13.0", + "rc-tabs": "~11.7.0", + "rc-textarea": "~0.3.0", + "rc-tooltip": "~5.1.0", + "rc-tree": "~4.1.0", + "rc-tree-select": "~4.3.0", + "rc-trigger": "^5.2.1", + "rc-upload": "~4.2.0-alpha.0", + "rc-util": "^5.8.1", + "scroll-into-view-if-needed": "^2.2.25", + "warning": "^4.0.3" + } + }, + "anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "appdmg": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/appdmg/-/appdmg-0.6.0.tgz", + "integrity": "sha512-vDz8cMf5c6BfoS72OmmHzzuxG5DFVDM6YCAkscjYh3GASGEBBRCZ10Bn515ZPSPHOpfI9Xu3MlApbd49C58pJg==", + "dev": true, + "optional": true, + "requires": { + "async": "^1.4.2", + "ds-store": "^0.1.5", + "execa": "^1.0.0", + "fs-temp": "^1.0.0", + "fs-xattr": "^0.3.0", + "image-size": "^0.7.4", + "is-my-json-valid": "^2.20.0", + "minimist": "^1.1.3", + "parse-color": "^1.0.0", + "path-exists": "^4.0.0", + "repeat-string": "^1.5.4" + } + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "are-we-there-yet": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", + "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", + "dev": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", + "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "requires": { + "@babel/runtime": "^7.10.2", + "@babel/runtime-corejs3": "^7.10.2" + } + }, + "arity-n": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz", + "integrity": "sha1-2edrEXM+CFacCEeuezmyhgswt0U=" + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" + }, + "array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", + "dev": true + }, + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + }, + "array-includes": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.3.tgz", + "integrity": "sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.5" + } + }, + "array-tree-filter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-tree-filter/-/array-tree-filter-2.1.0.tgz", + "integrity": "sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==" + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "array.prototype.flat": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz", + "integrity": "sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1" + } + }, + "array.prototype.flatmap": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz", + "integrity": "sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "function-bind": "^1.1.1" + } + }, + "arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "asar": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/asar/-/asar-3.0.3.tgz", + "integrity": "sha512-k7zd+KoR+n8pl71PvgElcoKHrVNiSXtw7odKbyNpmgKe7EGRF9Pnu3uLOukD37EvavKwVFxOUpqXTIZC5B5Pmw==", + "dev": true, + "requires": { + "@types/glob": "^7.1.1", + "chromium-pickle-js": "^0.2.0", + "commander": "^5.0.0", + "glob": "^7.1.6", + "minimatch": "^3.0.4" + }, + "dependencies": { + "commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "dev": true + } + } + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "requires": { + "inherits": "2.0.1" + } + } + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" + }, + "ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" + }, + "async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", + "dev": true, + "optional": true + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + }, + "async-validator": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-3.5.1.tgz", + "integrity": "sha512-DDmKA7sdSAJtTVeNZHrnr2yojfFaoeW8MfQN8CeuXg8DDQHTqKk9Fdv38dSvnesHoO8MUwMI2HphOeSyIF+wmQ==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" + }, + "author-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/author-regex/-/author-regex-1.0.0.tgz", + "integrity": "sha1-0IiFvmubv5Q5/gh8dihyRfCoFFA=", + "dev": true + }, + "autoprefixer": { + "version": "9.8.6", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz", + "integrity": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==", + "requires": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "colorette": "^1.2.1", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + } + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" + }, + "axe-core": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.1.3.tgz", + "integrity": "sha512-vwPpH4Aj4122EW38mxO/fxhGKtwWTMLDIJfZ1He0Edbtjcfna/R3YB67yVhezUMzqc3Jr3+Ii50KRntlENL4xQ==" + }, + "axios": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.1.tgz", + "integrity": "sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==", + "dev": true, + "requires": { + "follow-redirects": "^1.10.0" + } + }, + "axobject-query": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", + "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" + }, + "babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", + "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", + "requires": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + } + } + }, + "babel-extract-comments": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz", + "integrity": "sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==", + "requires": { + "babylon": "^6.18.0" + } + }, + "babel-jest": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz", + "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==", + "requires": { + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + } + }, + "babel-loader": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.1.0.tgz", + "integrity": "sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==", + "requires": { + "find-cache-dir": "^2.1.0", + "loader-utils": "^1.4.0", + "mkdirp": "^0.5.3", + "pify": "^4.0.1", + "schema-utils": "^2.6.5" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "requires": { + "object.assign": "^4.1.0" + } + }, + "babel-plugin-istanbul": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz", + "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^4.0.0", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz", + "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==", + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-plugin-macros": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", + "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", + "requires": { + "@babel/runtime": "^7.7.2", + "cosmiconfig": "^6.0.0", + "resolve": "^1.12.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + } + } + } + }, + "babel-plugin-named-asset-import": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.7.tgz", + "integrity": "sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==", + "requires": {} + }, + "babel-plugin-polyfill-corejs2": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.1.10.tgz", + "integrity": "sha512-DO95wD4g0A8KRaHKi0D51NdGXzvpqVLnLu5BTvDlpqUEpTmeEtypgC1xqesORaWmiUOQI14UHKlzNd9iZ2G3ZA==", + "requires": { + "@babel/compat-data": "^7.13.0", + "@babel/helper-define-polyfill-provider": "^0.1.5", + "semver": "^6.1.1" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "babel-plugin-polyfill-corejs3": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz", + "integrity": "sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.1.5", + "core-js-compat": "^3.8.1" + } + }, + "babel-plugin-polyfill-regenerator": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.1.6.tgz", + "integrity": "sha512-OUrYG9iKPKz8NxswXbRAdSwF0GhRdIEMTloQATJi4bDuFqrXaXcCUT/VGNrr8pBcjMh1RxZ7Xt9cytVJTJfvMg==", + "requires": { + "@babel/helper-define-polyfill-provider": "^0.1.5" + } + }, + "babel-plugin-syntax-object-rest-spread": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", + "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=" + }, + "babel-plugin-transform-object-rest-spread": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz", + "integrity": "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=", + "requires": { + "babel-plugin-syntax-object-rest-spread": "^6.8.0", + "babel-runtime": "^6.26.0" + } + }, + "babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + }, + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz", + "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==", + "requires": { + "babel-plugin-jest-hoist": "^26.6.2", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "babel-preset-react-app": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.0.tgz", + "integrity": "sha512-itL2z8v16khpuKutx5IH8UdCdSTuzrOhRFTEdIhveZ2i1iBKDrVE0ATa4sFVy+02GLucZNVBWtoarXBy0Msdpg==", + "requires": { + "@babel/core": "7.12.3", + "@babel/plugin-proposal-class-properties": "7.12.1", + "@babel/plugin-proposal-decorators": "7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "7.12.1", + "@babel/plugin-proposal-numeric-separator": "7.12.1", + "@babel/plugin-proposal-optional-chaining": "7.12.1", + "@babel/plugin-transform-flow-strip-types": "7.12.1", + "@babel/plugin-transform-react-display-name": "7.12.1", + "@babel/plugin-transform-runtime": "7.12.1", + "@babel/preset-env": "7.12.1", + "@babel/preset-react": "7.12.1", + "@babel/preset-typescript": "7.12.1", + "@babel/runtime": "7.12.1", + "babel-plugin-macros": "2.8.0", + "babel-plugin-transform-react-remove-prop-types": "0.4.24" + }, + "dependencies": { + "@babel/plugin-proposal-class-properties": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz", + "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz", + "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz", + "integrity": "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz", + "integrity": "sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", + "@babel/plugin-syntax-optional-chaining": "^7.8.0" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz", + "integrity": "sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/preset-env": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz", + "integrity": "sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==", + "requires": { + "@babel/compat-data": "^7.12.1", + "@babel/helper-compilation-targets": "^7.12.1", + "@babel/helper-module-imports": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-validator-option": "^7.12.1", + "@babel/plugin-proposal-async-generator-functions": "^7.12.1", + "@babel/plugin-proposal-class-properties": "^7.12.1", + "@babel/plugin-proposal-dynamic-import": "^7.12.1", + "@babel/plugin-proposal-export-namespace-from": "^7.12.1", + "@babel/plugin-proposal-json-strings": "^7.12.1", + "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", + "@babel/plugin-proposal-numeric-separator": "^7.12.1", + "@babel/plugin-proposal-object-rest-spread": "^7.12.1", + "@babel/plugin-proposal-optional-catch-binding": "^7.12.1", + "@babel/plugin-proposal-optional-chaining": "^7.12.1", + "@babel/plugin-proposal-private-methods": "^7.12.1", + "@babel/plugin-proposal-unicode-property-regex": "^7.12.1", + "@babel/plugin-syntax-async-generators": "^7.8.0", + "@babel/plugin-syntax-class-properties": "^7.12.1", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.0", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.0", + "@babel/plugin-syntax-top-level-await": "^7.12.1", + "@babel/plugin-transform-arrow-functions": "^7.12.1", + "@babel/plugin-transform-async-to-generator": "^7.12.1", + "@babel/plugin-transform-block-scoped-functions": "^7.12.1", + "@babel/plugin-transform-block-scoping": "^7.12.1", + "@babel/plugin-transform-classes": "^7.12.1", + "@babel/plugin-transform-computed-properties": "^7.12.1", + "@babel/plugin-transform-destructuring": "^7.12.1", + "@babel/plugin-transform-dotall-regex": "^7.12.1", + "@babel/plugin-transform-duplicate-keys": "^7.12.1", + "@babel/plugin-transform-exponentiation-operator": "^7.12.1", + "@babel/plugin-transform-for-of": "^7.12.1", + "@babel/plugin-transform-function-name": "^7.12.1", + "@babel/plugin-transform-literals": "^7.12.1", + "@babel/plugin-transform-member-expression-literals": "^7.12.1", + "@babel/plugin-transform-modules-amd": "^7.12.1", + "@babel/plugin-transform-modules-commonjs": "^7.12.1", + "@babel/plugin-transform-modules-systemjs": "^7.12.1", + "@babel/plugin-transform-modules-umd": "^7.12.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1", + "@babel/plugin-transform-new-target": "^7.12.1", + "@babel/plugin-transform-object-super": "^7.12.1", + "@babel/plugin-transform-parameters": "^7.12.1", + "@babel/plugin-transform-property-literals": "^7.12.1", + "@babel/plugin-transform-regenerator": "^7.12.1", + "@babel/plugin-transform-reserved-words": "^7.12.1", + "@babel/plugin-transform-shorthand-properties": "^7.12.1", + "@babel/plugin-transform-spread": "^7.12.1", + "@babel/plugin-transform-sticky-regex": "^7.12.1", + "@babel/plugin-transform-template-literals": "^7.12.1", + "@babel/plugin-transform-typeof-symbol": "^7.12.1", + "@babel/plugin-transform-unicode-escapes": "^7.12.1", + "@babel/plugin-transform-unicode-regex": "^7.12.1", + "@babel/preset-modules": "^0.1.3", + "@babel/types": "^7.12.1", + "core-js-compat": "^3.6.2", + "semver": "^5.5.0" + } + }, + "@babel/preset-react": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.1.tgz", + "integrity": "sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-transform-react-display-name": "^7.12.1", + "@babel/plugin-transform-react-jsx": "^7.12.1", + "@babel/plugin-transform-react-jsx-development": "^7.12.1", + "@babel/plugin-transform-react-jsx-self": "^7.12.1", + "@babel/plugin-transform-react-jsx-source": "^7.12.1", + "@babel/plugin-transform-react-pure-annotations": "^7.12.1" + }, + "dependencies": { + "@babel/plugin-transform-react-jsx-self": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.13.tgz", + "integrity": "sha512-FXYw98TTJ125GVCCkFLZXlZ1qGcsYqNQhVBQcZjyrwf8FEUtVfKIoidnO8S0q+KBQpDYNTmiGo1gn67Vti04lQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-react-jsx-source": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.13.tgz", + "integrity": "sha512-O5JJi6fyfih0WfDgIJXksSPhGP/G0fQpfxYy87sDc+1sFmsCS6wr3aAn+whbzkhbjtq4VMqLRaSzR6IsshIC0Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + } + } + }, + "@babel/runtime": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz", + "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + } + } + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "base32-encode": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/base32-encode/-/base32-encode-1.1.1.tgz", + "integrity": "sha512-eqa0BeGghj3guezlasdHJhr3+J5ZbbQvxeprkcDMbRQrjlqOT832IUDT4Al4ofAwekFYMqkkM9KMUHs9Cu0HKA==", + "dev": true, + "optional": true + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "bfj": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", + "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", + "requires": { + "bluebird": "^3.5.5", + "check-types": "^11.1.1", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "optional": true + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "bn.js": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz", + "integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==" + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + }, + "boolean": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.0.2.tgz", + "integrity": "sha512-RwywHlpCRc3/Wh81MiCKun4ydaIFyW5Ea6JbL6sRCVx5q5irDw7pMXBUFYF/jArQ6YrG36q0kpovc9P/Kd3I4g==", + "dev": true, + "optional": true + }, + "bplist-creator": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.8.tgz", + "integrity": "sha512-Za9JKzD6fjLC16oX2wsXfc+qBEhJBJB1YPInoAQpMLhDuj5aVOv1baGeIQSq1Fr3OCqzvsoQcSBSwGId/Ja2PA==", + "dev": true, + "optional": true, + "requires": { + "stream-buffers": "~2.2.0" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + }, + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "requires": { + "pako": "~1.0.5" + } + }, + "browserslist": { + "version": "4.16.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz", + "integrity": "sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==", + "requires": { + "caniuse-lite": "^1.0.30001181", + "colorette": "^1.2.1", + "electron-to-chromium": "^1.3.649", + "escalade": "^3.1.1", + "node-releases": "^1.1.70" + } + }, + "bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "dev": true, + "requires": { + "buffer-alloc-unsafe": "^1.1.0", + "buffer-fill": "^1.0.0" + } + }, + "buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "dev": true + }, + "buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", + "dev": true + }, + "buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=", + "dev": true + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + }, + "builtin-modules": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz", + "integrity": "sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==" + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + }, + "cacache": { + "version": "15.0.5", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.0.5.tgz", + "integrity": "sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==", + "requires": { + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.0", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + } + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "cacheable-lookup": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", + "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", + "dev": true + }, + "cacheable-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", + "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", + "dev": true, + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^3.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true + } + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "requires": { + "callsites": "^2.0.0" + }, + "dependencies": { + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" + } + } + }, + "caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "requires": { + "caller-callsite": "^2.0.0" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + } + } + }, + "camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", + "dev": true + }, + "camelcase-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "dev": true, + "requires": { + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" + } + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "caniuse-lite": { + "version": "1.0.30001203", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001203.tgz", + "integrity": "sha512-/I9tvnzU/PHMH7wBPrfDMSuecDeUKerjCPX7D0xBbaJZPxoT9m+yYxt0zCTkcijCkjTdim3H56Zm0i5Adxch4w==" + }, + "capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "requires": { + "rsvp": "^4.8.4" + } + }, + "case-sensitive-paths-webpack-plugin": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz", + "integrity": "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + }, + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "check-types": { + "version": "11.1.2", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.1.2.tgz", + "integrity": "sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==" + }, + "chokidar": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", + "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", + "optional": true, + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.3.1", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + }, + "chrome-trace-event": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", + "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", + "requires": { + "tslib": "^1.9.0" + } + }, + "chromium-pickle-js": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz", + "integrity": "sha1-BKEGZywYsIWrd02YPfo+oTjyIgU=", + "dev": true + }, + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "cjs-module-lexer": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz", + "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==" + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + } + }, + "classnames": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz", + "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" + }, + "clean-css": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", + "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", + "requires": { + "source-map": "~0.6.0" + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "cli-spinners": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.6.0.tgz", + "integrity": "sha512-t+4/y50K/+4xcCRosKkA7W4gTr1MySvLV0q+PxmG7FJ5g+66ChKurYjxBCjHggHH3HA5Hh9cy+lcUGWDqVH+4Q==", + "dev": true + }, + "cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true + }, + "collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz", + "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==", + "requires": { + "color-convert": "^1.9.1", + "color-string": "^1.5.4" + }, + "dependencies": { + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + } + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "color-string": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz", + "integrity": "sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg==", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "colorette": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", + "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" + }, + "colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" + }, + "common-tags": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz", + "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==" + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + }, + "compare-version": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/compare-version/-/compare-version-0.1.2.tgz", + "integrity": "sha1-AWLsLZNR9d3VmpICy6k1NmpyUIA=", + "dev": true + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + }, + "compose-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz", + "integrity": "sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=", + "requires": { + "arity-n": "^1.0.4" + } + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "compute-scroll-into-view": { + "version": "1.0.17", + "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz", + "integrity": "sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==" + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "concurrently": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-6.0.0.tgz", + "integrity": "sha512-Ik9Igqnef2ONLjN2o/OVx1Ow5tymVvvEwQeYCQdD/oV+CN9oWhxLk7ibcBdOtv0UzBqHCEKRwbKceYoTK8t3fQ==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "date-fns": "^2.16.1", + "lodash": "^4.17.20", + "read-pkg": "^5.2.0", + "rxjs": "^6.6.3", + "spawn-command": "^0.0.2-1", + "supports-color": "^8.1.0", + "tree-kill": "^1.2.2", + "yargs": "^16.2.0" + } + }, + "config-chain": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz", + "integrity": "sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==", + "dev": true, + "optional": true, + "requires": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "confusing-browser-globals": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz", + "integrity": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==" + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" + }, + "console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + }, + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "dev": true + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + }, + "contains-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", + "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=" + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "requires": { + "safe-buffer": "5.1.2" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "copy-anything": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.3.tgz", + "integrity": "sha512-GK6QUtisv4fNS+XcI7shX0Gx9ORg7QqIznyfho79JTnX1XhLiyZHfftvGiziqzRiEi/Bjhgpi+D2o7HxJFPnDQ==", + "dev": true, + "requires": { + "is-what": "^3.12.0" + } + }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" + }, + "copy-to-clipboard": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz", + "integrity": "sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==", + "requires": { + "toggle-selection": "^1.0.6" + } + }, + "core-js": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.9.1.tgz", + "integrity": "sha512-gSjRvzkxQc1zjM/5paAmL4idJBFzuJoo+jDjF1tStYFMV2ERfD02HhahhCGXUyHxQRG4yFKVSdO6g62eoRMcDg==" + }, + "core-js-compat": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.1.tgz", + "integrity": "sha512-jXAirMQxrkbiiLsCx9bQPJFA6llDadKMpYrBJQJ3/c4/vsPP/fAf29h24tviRlvwUL6AmY5CHLu2GvjuYviQqA==", + "requires": { + "browserslist": "^4.16.3", + "semver": "7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" + } + } + }, + "core-js-pure": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.9.1.tgz", + "integrity": "sha512-laz3Zx0avrw9a4QEIdmIblnVuJz8W51leY9iLThatCsFawWxC3sE4guASC78JbCin+DkwMpCdp1AVAuzL/GN7A==" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "cosmiconfig": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", + "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "create-react-class": { + "version": "15.7.0", + "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.7.0.tgz", + "integrity": "sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==", + "requires": { + "loose-envify": "^1.3.1", + "object-assign": "^4.1.1" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "cross-zip": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cross-zip/-/cross-zip-3.1.0.tgz", + "integrity": "sha512-aX02l0SD3KE27pMl69gkxDdDM5D3u9Ic4Je+2b1B2fP0dWnlWWY6ns2Vk5DEgCXJRhL3GasSpicNQRNbDkq0+w==", + "dev": true, + "requires": { + "rimraf": "^3.0.0" + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "crypto-random-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", + "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=" + }, + "css": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", + "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", + "requires": { + "inherits": "^2.0.3", + "source-map": "^0.6.1", + "source-map-resolve": "^0.5.2", + "urix": "^0.1.0" + } + }, + "css-blank-pseudo": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz", + "integrity": "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==", + "requires": { + "postcss": "^7.0.5" + } + }, + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=" + }, + "css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "requires": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + } + }, + "css-has-pseudo": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz", + "integrity": "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==", + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^5.0.0-rc.4" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "css-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-4.3.0.tgz", + "integrity": "sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==", + "requires": { + "camelcase": "^6.0.0", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^2.0.0", + "postcss": "^7.0.32", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.3", + "postcss-modules-scope": "^2.2.0", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^2.7.1", + "semver": "^7.3.2" + }, + "dependencies": { + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + } + } + }, + "css-prefers-color-scheme": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz", + "integrity": "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==", + "requires": { + "postcss": "^7.0.5" + } + }, + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + } + }, + "css-unit-converter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz", + "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==" + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" + }, + "cssdb": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz", + "integrity": "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==" + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + }, + "cssnano": { + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz", + "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==", + "requires": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.7", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "dependencies": { + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + } + }, + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + } + } + }, + "cssnano-preset-default": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz", + "integrity": "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==", + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.2", + "postcss-unique-selectors": "^4.0.1" + } + }, + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=" + }, + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=" + }, + "cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "requires": { + "postcss": "^7.0.0" + } + }, + "cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==" + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "requires": { + "css-tree": "^1.1.2" + }, + "dependencies": { + "css-tree": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.2.tgz", + "integrity": "sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ==", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + } + } + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + } + } + }, + "csstype": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", + "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==", + "dev": true + }, + "cuint": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz", + "integrity": "sha1-QICG1AlVDCYxFVYZ6fp7ytw7mRs=", + "dev": true, + "optional": true + }, + "currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "dev": true, + "requires": { + "array-find-index": "^1.0.1" + } + }, + "cyclist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=" + }, + "d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "requires": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "d3-array": { + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-2.12.0.tgz", + "integrity": "sha512-T6H/qNldyD/1OlRkJbonb3u3MPhNwju8OPxYv0YSjDb/B2RUeeBEHzIpNrYiinwpmz8+am+puMrpcrDWgY9wRg==", + "requires": { + "internmap": "^1.0.0" + } + }, + "d3-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-2.0.0.tgz", + "integrity": "sha512-SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ==" + }, + "d3-format": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-2.0.0.tgz", + "integrity": "sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA==" + }, + "d3-interpolate": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-2.0.1.tgz", + "integrity": "sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ==", + "requires": { + "d3-color": "1 - 2" + } + }, + "d3-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-2.0.0.tgz", + "integrity": "sha512-ZwZQxKhBnv9yHaiWd6ZU4x5BtCQ7pXszEV9CU6kRgwIQVQGLMv1oiL4M+MK/n79sYzsj+gcgpPQSctJUsLN7fA==" + }, + "d3-scale": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-3.2.3.tgz", + "integrity": "sha512-8E37oWEmEzj57bHcnjPVOBS3n4jqakOeuv1EDdQSiSrYnMCBdMd3nc4HtKk7uia8DUHcY/CGuJ42xxgtEYrX0g==", + "requires": { + "d3-array": "^2.3.0", + "d3-format": "1 - 2", + "d3-interpolate": "1.2.0 - 2", + "d3-time": "1 - 2", + "d3-time-format": "2 - 3" + } + }, + "d3-shape": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-2.1.0.tgz", + "integrity": "sha512-PnjUqfM2PpskbSLTJvAzp2Wv4CZsnAgTfcVRTwW03QR3MkXF8Uo7B1y/lWkAsmbKwuecto++4NlsYcvYpXpTHA==", + "requires": { + "d3-path": "1 - 2" + } + }, + "d3-time": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-2.0.0.tgz", + "integrity": "sha512-2mvhstTFcMvwStWd9Tj3e6CEqtOivtD8AUiHT8ido/xmzrI9ijrUUihZ6nHuf/vsScRBonagOdj0Vv+SEL5G3Q==" + }, + "d3-time-format": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-3.0.0.tgz", + "integrity": "sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==", + "requires": { + "d3-time": "1 - 2" + } + }, + "damerau-levenshtein": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz", + "integrity": "sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==" + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "requires": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + } + }, + "date-fns": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.19.0.tgz", + "integrity": "sha512-X3bf2iTPgCAQp9wvjOQytnf5vO5rESYRXlPIVcgSbtT5OTScPcsf9eZU+B/YIkKAtYr5WeCii58BgATrNitlWg==" + }, + "dayjs": { + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.10.4.tgz", + "integrity": "sha512-RI/Hh4kqRc1UKLOAf/T5zdMMX5DQIlDxwUe3wSyMMnEbGunnpENCdbUgM+dW7kXidZqCttBrmw7BhN4TMddkCw==", + "peer": true + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + }, + "decimal.js": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz", + "integrity": "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==" + }, + "decimal.js-light": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz", + "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==" + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "dev": true, + "requires": { + "mimic-response": "^1.0.0" + } + }, + "dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=" + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } + }, + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" + }, + "deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" + }, + "default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + } + }, + "defaults": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", + "dev": true, + "requires": { + "clone": "^1.0.2" + }, + "dependencies": { + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "dev": true + } + } + }, + "defer-to-connect": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", + "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", + "dev": true + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "requires": { + "array-uniq": "^1.0.1" + } + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + } + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", + "dev": true + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=", + "dev": true + }, + "detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + }, + "detect-node": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.5.tgz", + "integrity": "sha512-qi86tE6hRcFHy8jI1m2VG+LaPUR1LhqDa5G8tVjuUXmOrpuAgqsA1pN0+ldgr3aKUH+QLI9hCY/OcRYisERejw==" + }, + "detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "requires": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "diff-sequences": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==" + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "requires": { + "path-type": "^4.0.0" + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + }, + "dns-packet": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz", + "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==", + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-align": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/dom-align/-/dom-align-1.12.0.tgz", + "integrity": "sha512-YkoezQuhp3SLFGdOlr5xkqZ640iXrnHAwVYcDg8ZKRUtO7mSzSC2BA5V0VuyAwPSJA4CLIc6EDDJh4bEsD2+zA==" + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "requires": { + "utila": "~0.4" + } + }, + "dom-helpers": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz", + "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==", + "requires": { + "@babel/runtime": "^7.1.2" + } + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz", + "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==" + } + } + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "requires": { + "webidl-conversions": "^5.0.0" + }, + "dependencies": { + "webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==" + } + } + }, + "domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "requires": { + "domelementtype": "1" + } + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + } + } + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "requires": { + "is-obj": "^2.0.0" + }, + "dependencies": { + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + } + } + }, + "dotenv": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", + "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==" + }, + "dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + }, + "ds-store": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/ds-store/-/ds-store-0.1.6.tgz", + "integrity": "sha1-0QJO90btDBPw9/7IXH6FjoxLfKc=", + "dev": true, + "optional": true, + "requires": { + "bplist-creator": "~0.0.3", + "macos-alias": "~0.2.5", + "tn1150": "^0.1.0" + } + }, + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", + "dev": true + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "ejs": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz", + "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==" + }, + "electron": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/electron/-/electron-12.0.1.tgz", + "integrity": "sha512-4bTfLSTmuFkMxq3RMyjd8DxuzbxI1Bde879XDrBA4kFWbKhZ3hfXqHXQz3129eCmcLre5odcNsWq7/xzyJilMA==", + "dev": true, + "requires": { + "@electron/get": "^1.0.1", + "@types/node": "^14.6.2", + "extract-zip": "^1.0.3" + } + }, + "electron-installer-common": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/electron-installer-common/-/electron-installer-common-0.10.3.tgz", + "integrity": "sha512-mYbP+6i+nHMIm0WZHXgGdmmXMe+KXncl6jZYQNcCF9C1WsNA9C5SZ2VP4TLQMSIoFO+X4ugkMEA5uld1bmyEvA==", + "dev": true, + "optional": true, + "requires": { + "@malept/cross-spawn-promise": "^1.0.0", + "@types/fs-extra": "^9.0.1", + "asar": "^3.0.0", + "debug": "^4.1.1", + "fs-extra": "^9.0.0", + "glob": "^7.1.4", + "lodash": "^4.17.15", + "parse-author": "^2.0.0", + "semver": "^7.1.1", + "tmp-promise": "^3.0.2" + } + }, + "electron-installer-debian": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/electron-installer-debian/-/electron-installer-debian-3.1.0.tgz", + "integrity": "sha512-k6KChvx0Fw8XTlCqwwbBfh19yGQaKjGdbugokmr1IpzINOm4QFyACKMTHAYFHW5LCBUZQShZD96hwxUZ+8Kx+w==", + "dev": true, + "optional": true, + "requires": { + "@malept/cross-spawn-promise": "^1.0.0", + "debug": "^4.1.1", + "electron-installer-common": "^0.10.2", + "fs-extra": "^9.0.0", + "get-folder-size": "^2.0.1", + "lodash": "^4.17.4", + "word-wrap": "^1.2.3", + "yargs": "^15.0.1" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "optional": true + }, + "cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "optional": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "optional": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "optional": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "optional": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "optional": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "optional": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "dev": true, + "optional": true + }, + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "optional": true, + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + } + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "optional": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "electron-installer-dmg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/electron-installer-dmg/-/electron-installer-dmg-3.0.0.tgz", + "integrity": "sha512-a3z9ABUfLJtrLK1ize4j+wJKslodb0kRHgBuUN4GTckiUxtGdo49XCvvAHvQaOqQk3S5VTvuc6PoofnI9mKSCQ==", + "dev": true, + "optional": true, + "requires": { + "appdmg": "^0.6.0", + "debug": "^4.1.1", + "fs-extra": "^8.0.1", + "minimist": "^1.1.1" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dev": true, + "optional": true, + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "optional": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "optional": true + } + } + }, + "electron-installer-redhat": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/electron-installer-redhat/-/electron-installer-redhat-3.3.0.tgz", + "integrity": "sha512-hXIXB3uQXmXZy/v3MpbwWN4Of28ALpPt9ZyUDNEoSe0w7QZceL9IqI2K6Q6imiBJCLRC0hmT94WhlKj1RyGOWg==", + "dev": true, + "optional": true, + "requires": { + "@malept/cross-spawn-promise": "^1.0.0", + "debug": "^4.1.1", + "electron-installer-common": "^0.10.2", + "fs-extra": "^9.0.0", + "lodash": "^4.17.15", + "word-wrap": "^1.2.3", + "yargs": "^16.0.2" + } + }, + "electron-notarize": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/electron-notarize/-/electron-notarize-1.0.0.tgz", + "integrity": "sha512-dsib1IAquMn0onCrNMJ6gtEIZn/azG8hZMCYOuZIMVMUeRMgBYHK1s5TK9P8xAcrAjh/2aN5WYHzgVSWX314og==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "fs-extra": "^9.0.1" + } + }, + "electron-osx-sign": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/electron-osx-sign/-/electron-osx-sign-0.5.0.tgz", + "integrity": "sha512-icoRLHzFz/qxzDh/N4Pi2z4yVHurlsCAYQvsCSG7fCedJ4UJXBS6PoQyGH71IfcqKupcKeK7HX/NkyfG+v6vlQ==", + "dev": true, + "requires": { + "bluebird": "^3.5.0", + "compare-version": "^0.1.2", + "debug": "^2.6.8", + "isbinaryfile": "^3.0.2", + "minimist": "^1.2.0", + "plist": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "electron-packager": { + "version": "15.2.0", + "resolved": "https://registry.npmjs.org/electron-packager/-/electron-packager-15.2.0.tgz", + "integrity": "sha512-BaklTBRQy1JTijR3hi8XxHf/uo76rHbDCNM/eQHSblzE9C0NoNfOe86nPxB7y1u2jwlqoEJ4zFiHpTFioKGGRA==", + "dev": true, + "requires": { + "@electron/get": "^1.6.0", + "asar": "^3.0.0", + "debug": "^4.0.1", + "electron-notarize": "^1.0.0", + "electron-osx-sign": "^0.5.0", + "extract-zip": "^2.0.0", + "filenamify": "^4.1.0", + "fs-extra": "^9.0.0", + "galactus": "^0.2.1", + "get-package-info": "^1.0.0", + "junk": "^3.1.0", + "parse-author": "^2.0.0", + "plist": "^3.0.0", + "rcedit": "^2.0.0", + "resolve": "^1.1.6", + "semver": "^7.1.3", + "yargs-parser": "^20.0.0" + }, + "dependencies": { + "extract-zip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", + "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", + "dev": true, + "requires": { + "@types/yauzl": "^2.9.1", + "debug": "^4.1.1", + "get-stream": "^5.1.0", + "yauzl": "^2.10.0" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + } + } + }, + "electron-rebuild": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/electron-rebuild/-/electron-rebuild-2.3.5.tgz", + "integrity": "sha512-1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ==", + "dev": true, + "requires": { + "@malept/cross-spawn-promise": "^1.1.1", + "colors": "^1.3.3", + "debug": "^4.1.1", + "detect-libc": "^1.0.3", + "fs-extra": "^9.0.1", + "got": "^11.7.0", + "lzma-native": "^6.0.1", + "node-abi": "^2.19.2", + "node-gyp": "^7.1.0", + "ora": "^5.1.0", + "tar": "^6.0.5", + "yargs": "^16.0.0" + }, + "dependencies": { + "@sindresorhus/is": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.0.0.tgz", + "integrity": "sha512-FyD2meJpDPjyNQejSjvnhpgI/azsQkA4lGbuu5BQZfjvJ9cbRZXzeWL2HceCekW4lixO9JPesIIQkSoLjeJHNQ==", + "dev": true + }, + "@szmarczak/http-timer": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.5.tgz", + "integrity": "sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ==", + "dev": true, + "requires": { + "defer-to-connect": "^2.0.0" + } + }, + "cacheable-request": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.1.tgz", + "integrity": "sha512-lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw==", + "dev": true, + "requires": { + "clone-response": "^1.0.2", + "get-stream": "^5.1.0", + "http-cache-semantics": "^4.0.0", + "keyv": "^4.0.0", + "lowercase-keys": "^2.0.0", + "normalize-url": "^4.1.0", + "responselike": "^2.0.0" + } + }, + "decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dev": true, + "requires": { + "mimic-response": "^3.1.0" + } + }, + "defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "dev": true + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "got": { + "version": "11.8.2", + "resolved": "https://registry.npmjs.org/got/-/got-11.8.2.tgz", + "integrity": "sha512-D0QywKgIe30ODs+fm8wMZiAcZjypcCodPNuMz5H9Mny7RJ+IjJ10BdmGW7OM7fHXP+O7r6ZwapQ/YQmMSvB0UQ==", + "dev": true, + "requires": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.1", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + } + }, + "json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "keyv": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.0.3.tgz", + "integrity": "sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==", + "dev": true, + "requires": { + "json-buffer": "3.0.1" + } + }, + "lowercase-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", + "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "dev": true + }, + "mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "dev": true + }, + "p-cancelable": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.0.tgz", + "integrity": "sha512-HAZyB3ZodPo+BDpb4/Iu7Jv4P6cSazBz9ZM0ChhEXp70scx834aWCEjQRwgt41UzzejUAPdbqqONfRWTPYrPAQ==", + "dev": true + }, + "responselike": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.0.tgz", + "integrity": "sha512-xH48u3FTB9VsZw7R+vvgaKeLKzT6jOogbQhEe/jewwnZgzPcnyWui2Av6JpoYZF/91uueC+lqhWqeURw5/qhCw==", + "dev": true, + "requires": { + "lowercase-keys": "^2.0.0" + } + } + } + }, + "electron-squirrel-startup": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/electron-squirrel-startup/-/electron-squirrel-startup-1.0.0.tgz", + "integrity": "sha1-GbTlWTP6Dvj1VnhLnGYPdyVGoLg=", + "requires": { + "debug": "^2.2.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "electron-to-chromium": { + "version": "1.3.693", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.693.tgz", + "integrity": "sha512-vUdsE8yyeu30RecppQtI+XTz2++LWLVEIYmzeCaCRLSdtKZ2eXqdJcrs85KwLiPOPVc6PELgWyXBsfqIvzGZag==" + }, + "electron-winstaller": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/electron-winstaller/-/electron-winstaller-4.0.2.tgz", + "integrity": "sha512-tYmzIyi+W0CXd9o/jmR0VT+vwJ+nOaE/dQz8f64IlbQ/J9d2lpwsmmOKxx6veAVKeYiJHYQHR1eYsLzznNzd5g==", + "dev": true, + "optional": true, + "requires": { + "asar": "^2.0.1", + "debug": "^4.1.1", + "fs-extra": "^7.0.1", + "lodash.template": "^4.2.2", + "temp": "^0.9.0" + }, + "dependencies": { + "asar": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/asar/-/asar-2.1.0.tgz", + "integrity": "sha512-d2Ovma+bfqNpvBzY/KU8oPY67ZworixTpkjSx0PCXnQi67c2cXmssaTxpFDUM0ttopXoGx/KRxNg/GDThYbXQA==", + "dev": true, + "optional": true, + "requires": { + "@types/glob": "^7.1.1", + "chromium-pickle-js": "^0.2.0", + "commander": "^2.20.0", + "cuint": "^0.2.2", + "glob": "^7.1.3", + "minimatch": "^3.0.4", + "mkdirp": "^0.5.1", + "tmp-promise": "^1.0.5" + } + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true, + "optional": true + }, + "fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dev": true, + "optional": true, + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "optional": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "optional": true, + "requires": { + "glob": "^7.1.3" + } + }, + "tmp": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.1.0.tgz", + "integrity": "sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw==", + "dev": true, + "optional": true, + "requires": { + "rimraf": "^2.6.3" + } + }, + "tmp-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-1.1.0.tgz", + "integrity": "sha512-8+Ah9aB1IRXCnIOxXZ0uFozV1nMU5xiu7hhFVUSxZ3bYu+psD4TzagCzVbexUCgNNGJnsmNDQlS4nG3mTyoNkw==", + "dev": true, + "optional": true, + "requires": { + "bluebird": "^3.5.0", + "tmp": "0.1.0" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "optional": true + } + } + }, + "elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "emittery": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz", + "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==" + }, + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "encode-utf8": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/encode-utf8/-/encode-utf8-1.0.3.tgz", + "integrity": "sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==", + "dev": true, + "optional": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + }, + "encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "requires": { + "iconv-lite": "^0.6.2" + }, + "dependencies": { + "iconv-lite": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.2.tgz", + "integrity": "sha512-2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + } + } + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + } + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + }, + "env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "requires": { + "prr": "~1.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "error-stack-parser": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz", + "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==", + "requires": { + "stackframe": "^1.1.1" + } + }, + "es-abstract": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0.tgz", + "integrity": "sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "is-callable": "^1.2.3", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.2", + "is-string": "^1.0.5", + "object-inspect": "^1.9.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.0" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "es5-ext": { + "version": "0.10.53", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", + "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", + "requires": { + "es6-iterator": "~2.0.3", + "es6-symbol": "~3.1.3", + "next-tick": "~1.0.0" + } + }, + "es6-error": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", + "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", + "dev": true, + "optional": true + }, + "es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", + "requires": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "requires": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "escodegen": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + } + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "requires": { + "prelude-ls": "~1.1.2" + } + } + } + }, + "eslint": { + "version": "7.22.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.22.0.tgz", + "integrity": "sha512-3VawOtjSJUQiiqac8MQc+w457iGLfuNGLFn8JmF051tTKbh5/x/0vlcEj8OgDCaw7Ysa2Jn8paGshV7x2abKXg==", + "requires": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.4.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "file-entry-cache": "^6.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^13.6.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash": "^4.17.21", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.4", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + } + } + }, + "eslint-config-airbnb": { + "version": "18.2.1", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-18.2.1.tgz", + "integrity": "sha512-glZNDEZ36VdlZWoxn/bUR1r/sdFKPd1mHPbqUtkctgNG4yT2DLLtJ3D+yCV+jzZCc2V1nBVkmdknOJBZ5Hc0fg==", + "dev": true, + "requires": { + "eslint-config-airbnb-base": "^14.2.1", + "object.assign": "^4.1.2", + "object.entries": "^1.1.2" + } + }, + "eslint-config-airbnb-base": { + "version": "14.2.1", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz", + "integrity": "sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==", + "dev": true, + "requires": { + "confusing-browser-globals": "^1.0.10", + "object.assign": "^4.1.2", + "object.entries": "^1.1.2" + } + }, + "eslint-config-prettier": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.1.0.tgz", + "integrity": "sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==", + "dev": true, + "requires": {} + }, + "eslint-config-react-app": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-6.0.0.tgz", + "integrity": "sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==", + "requires": { + "confusing-browser-globals": "^1.0.10" + } + }, + "eslint-import-resolver-node": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz", + "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==", + "requires": { + "debug": "^2.6.9", + "resolve": "^1.13.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "eslint-module-utils": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz", + "integrity": "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==", + "requires": { + "debug": "^2.6.9", + "pkg-dir": "^2.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "eslint-plugin-flowtype": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.4.0.tgz", + "integrity": "sha512-O0s0iTT5UxYuoOpHMLSIO2qZMyvrb9shhk1EM5INNGtJ2CffrfUmsnh6TVsnoT41fkXIEndP630WNovhoO87xQ==", + "requires": { + "lodash": "^4.17.15", + "string-natural-compare": "^3.0.1" + } + }, + "eslint-plugin-import": { + "version": "2.22.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz", + "integrity": "sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==", + "requires": { + "array-includes": "^3.1.1", + "array.prototype.flat": "^1.2.3", + "contains-path": "^0.1.0", + "debug": "^2.6.9", + "doctrine": "1.5.0", + "eslint-import-resolver-node": "^0.3.4", + "eslint-module-utils": "^2.6.0", + "has": "^1.0.3", + "minimatch": "^3.0.4", + "object.values": "^1.1.1", + "read-pkg-up": "^2.0.0", + "resolve": "^1.17.0", + "tsconfig-paths": "^3.9.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "doctrine": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", + "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", + "requires": { + "esutils": "^2.0.2", + "isarray": "^1.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "eslint-plugin-jest": { + "version": "24.3.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.3.2.tgz", + "integrity": "sha512-cicWDr+RvTAOKS3Q/k03+Z3odt3VCiWamNUHWd6QWbVQWcYJyYgUTu8x0mx9GfeDEimawU5kQC+nQ3MFxIM6bw==", + "requires": { + "@typescript-eslint/experimental-utils": "^4.0.1" + } + }, + "eslint-plugin-jsx-a11y": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz", + "integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==", + "requires": { + "@babel/runtime": "^7.11.2", + "aria-query": "^4.2.2", + "array-includes": "^3.1.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.0.2", + "axobject-query": "^2.2.0", + "damerau-levenshtein": "^1.0.6", + "emoji-regex": "^9.0.0", + "has": "^1.0.3", + "jsx-ast-utils": "^3.1.0", + "language-tags": "^1.0.5" + } + }, + "eslint-plugin-prettier": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.3.1.tgz", + "integrity": "sha512-Rq3jkcFY8RYeQLgk2cCwuc0P7SEFwDravPhsJZOQ5N4YI4DSg50NyqJ/9gdZHzQlHf8MvafSesbNJCcP/FF6pQ==", + "dev": true, + "requires": { + "prettier-linter-helpers": "^1.0.0" + } + }, + "eslint-plugin-react": { + "version": "7.22.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.22.0.tgz", + "integrity": "sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA==", + "requires": { + "array-includes": "^3.1.1", + "array.prototype.flatmap": "^1.2.3", + "doctrine": "^2.1.0", + "has": "^1.0.3", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "object.entries": "^1.1.2", + "object.fromentries": "^2.0.2", + "object.values": "^1.1.1", + "prop-types": "^15.7.2", + "resolve": "^1.18.1", + "string.prototype.matchall": "^4.0.2" + }, + "dependencies": { + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + } + } + }, + "eslint-plugin-react-hooks": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz", + "integrity": "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==", + "requires": {} + }, + "eslint-plugin-testing-library": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-3.10.1.tgz", + "integrity": "sha512-nQIFe2muIFv2oR2zIuXE4vTbcFNx8hZKRzgHZqJg8rfopIWwoTwtlbCCNELT/jXzVe1uZF68ALGYoDXjLczKiQ==", + "requires": { + "@typescript-eslint/experimental-utils": "^3.10.1" + }, + "dependencies": { + "@typescript-eslint/experimental-utils": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz", + "integrity": "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==", + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/typescript-estree": "3.10.1", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + } + }, + "@typescript-eslint/types": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-3.10.1.tgz", + "integrity": "sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==" + }, + "@typescript-eslint/typescript-estree": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz", + "integrity": "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==", + "requires": { + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/visitor-keys": "3.10.1", + "debug": "^4.1.1", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz", + "integrity": "sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==", + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + } + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "requires": { + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + } + } + }, + "eslint-visitor-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", + "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==" + }, + "eslint-webpack-plugin": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-2.5.2.tgz", + "integrity": "sha512-ndD9chZ/kaGnjjx7taRg7c6FK/YKb29SSYzaLtPBIYLYJQmZtuKqtQbAvTS2ymiMQT6X0VW9vZIHK0KLstv93Q==", + "requires": { + "@types/eslint": "^7.2.6", + "arrify": "^2.0.1", + "jest-worker": "^26.6.2", + "micromatch": "^4.0.2", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "requires": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + } + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" + } + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + }, + "estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" + }, + "eventsource": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz", + "integrity": "sha512-VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg==", + "requires": { + "original": "^1.0.0" + } + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "exec-sh": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz", + "integrity": "sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==" + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "expect": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz", + "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==", + "requires": { + "@jest/types": "^26.6.2", + "ansi-styles": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0" + } + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + } + } + }, + "ext": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", + "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", + "requires": { + "type": "^2.0.0" + }, + "dependencies": { + "type": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/type/-/type-2.5.0.tgz", + "integrity": "sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==" + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "requires": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + } + } + }, + "extract-zip": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", + "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", + "dev": true, + "requires": { + "concat-stream": "^1.6.2", + "debug": "^2.6.9", + "mkdirp": "^0.5.4", + "yauzl": "^2.10.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-diff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "dev": true + }, + "fast-glob": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz", + "integrity": "sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==", + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.0", + "merge2": "^1.3.0", + "micromatch": "^4.0.2", + "picomatch": "^2.2.1" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + }, + "fastq": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz", + "integrity": "sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g==", + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", + "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "requires": { + "bser": "2.1.1" + } + }, + "fbjs": { + "version": "0.8.17", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.17.tgz", + "integrity": "sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90=", + "requires": { + "core-js": "^1.0.0", + "isomorphic-fetch": "^2.1.1", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^0.7.18" + }, + "dependencies": { + "core-js": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", + "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=" + }, + "promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", + "requires": { + "asap": "~2.0.3" + } + } + } + }, + "fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", + "dev": true, + "requires": { + "pend": "~1.2.0" + } + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" + }, + "figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "requires": { + "flat-cache": "^3.0.4" + } + }, + "file-loader": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.1.1.tgz", + "integrity": "sha512-Klt8C4BjWSXYQAfhpYYkG4qHNTna4toMHEbWrI5IuVoxbU6uiDKeKAP99R8mmbJi3lvewn/jQBOgU4+NS3tDQw==", + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "requires": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "optional": true + }, + "filename-reserved-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", + "integrity": "sha1-q/c9+rc10EVECr/qLZHzieu/oik=", + "dev": true + }, + "filenamify": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-4.2.0.tgz", + "integrity": "sha512-pkgE+4p7N1n7QieOopmn3TqJaefjdWXwEkj2XLZJLKfOgcQKkn11ahvGNgTD8mLggexLiDFQxeTs14xVU22XPA==", + "dev": true, + "requires": { + "filename-reserved-regex": "^2.0.0", + "strip-outer": "^1.0.1", + "trim-repeated": "^1.0.0" + } + }, + "filesize": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz", + "integrity": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==" + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "requires": { + "find-up": "^3.0.0" + } + } + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz", + "integrity": "sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==" + }, + "flatten": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz", + "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==" + }, + "flora-colossus": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/flora-colossus/-/flora-colossus-1.0.1.tgz", + "integrity": "sha512-d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "fs-extra": "^7.0.0" + }, + "dependencies": { + "fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + } + } + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "fmix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/fmix/-/fmix-0.1.0.tgz", + "integrity": "sha1-x7vxJN7ELJ0ZHPuUfQqXeN2YbAw=", + "dev": true, + "optional": true, + "requires": { + "imul": "^1.0.0" + } + }, + "follow-redirects": { + "version": "1.13.3", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.3.tgz", + "integrity": "sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA==" + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "fork-ts-checker-webpack-plugin": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz", + "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==", + "requires": { + "@babel/code-frame": "^7.5.5", + "chalk": "^2.4.1", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "forwarded": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", + "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "requires": { + "map-cache": "^0.2.2" + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "requires": { + "minipass": "^3.0.0" + } + }, + "fs-temp": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/fs-temp/-/fs-temp-1.2.1.tgz", + "integrity": "sha512-okTwLB7/Qsq82G6iN5zZJFsOfZtx2/pqrA7Hk/9fvy+c+eJS9CvgGXT2uNxwnI14BDY9L/jQPkaBgSvlKfSW9w==", + "dev": true, + "optional": true, + "requires": { + "random-path": "^0.1.0" + } + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "fs-xattr": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/fs-xattr/-/fs-xattr-0.3.1.tgz", + "integrity": "sha512-UVqkrEW0GfDabw4C3HOrFlxKfx0eeigfRne69FxSBdHIP8Qt5Sq6Pu3RM9KmMlkygtC4pPKkj5CiPO5USnj2GA==", + "dev": true, + "optional": true + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + }, + "galactus": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/galactus/-/galactus-0.2.1.tgz", + "integrity": "sha1-y+0tIKQMH1Z5o1kI4rlBVzPnjbk=", + "dev": true, + "requires": { + "debug": "^3.1.0", + "flora-colossus": "^1.0.0", + "fs-extra": "^4.0.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "fs-extra": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", + "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true + } + } + }, + "gar": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/gar/-/gar-1.0.4.tgz", + "integrity": "sha512-w4n9cPWyP7aHxKxYHFQMegj7WIAsL/YX/C4Bs5Rr8s1H9M1rNtRWRsw+ovYMkXDQ5S4ZbYHsHAPmevPjPgw44w==", + "dev": true, + "optional": true + }, + "gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "dev": true, + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "generate-function": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz", + "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==", + "dev": true, + "optional": true, + "requires": { + "is-property": "^1.0.2" + } + }, + "generate-object-property": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", + "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", + "dev": true, + "optional": true, + "requires": { + "is-property": "^1.0.0" + } + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + }, + "get-folder-size": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/get-folder-size/-/get-folder-size-2.0.1.tgz", + "integrity": "sha512-+CEb+GDCM7tkOS2wdMKTn9vU7DgnKUTuDlehkNJKNSovdCOVxs14OfKCk4cvSaR3za4gj+OBdl9opPN9xrJ0zA==", + "dev": true, + "optional": true, + "requires": { + "gar": "^1.0.4", + "tiny-each-async": "2.0.3" + } + }, + "get-installed-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/get-installed-path/-/get-installed-path-2.1.1.tgz", + "integrity": "sha512-Qkn9eq6tW5/q9BDVdMpB8tOHljX9OSP0jRC5TRNVA4qRc839t4g8KQaR8t0Uv0EFVL0MlyG7m/ofjEgAROtYsA==", + "dev": true, + "requires": { + "global-modules": "1.0.0" + }, + "dependencies": { + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "get-package-info": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-package-info/-/get-package-info-1.0.0.tgz", + "integrity": "sha1-ZDJ5ZWPigRPNlHTbvQAFKYWkmZw=", + "dev": true, + "requires": { + "bluebird": "^3.1.1", + "debug": "^2.2.0", + "lodash.get": "^4.0.0", + "read-pkg-up": "^2.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + }, + "get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "dev": true + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "requires": { + "pump": "^3.0.0" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + }, + "global-agent": { + "version": "2.1.12", + "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-2.1.12.tgz", + "integrity": "sha512-caAljRMS/qcDo69X9BfkgrihGUgGx44Fb4QQToNQjsiWh+YlQ66uqYVAdA8Olqit+5Ng0nkz09je3ZzANMZcjg==", + "dev": true, + "optional": true, + "requires": { + "boolean": "^3.0.1", + "core-js": "^3.6.5", + "es6-error": "^4.1.1", + "matcher": "^3.0.0", + "roarr": "^2.15.3", + "semver": "^7.3.2", + "serialize-error": "^7.0.1" + } + }, + "global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "requires": { + "global-prefix": "^3.0.0" + } + }, + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "dependencies": { + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "global-tunnel-ng": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/global-tunnel-ng/-/global-tunnel-ng-2.7.1.tgz", + "integrity": "sha512-4s+DyciWBV0eK148wqXxcmVAbFVPqtc3sEtUE/GTQfuU80rySLcMhUmHKSHI7/LDj8q0gDYI1lIhRRB7ieRAqg==", + "dev": true, + "optional": true, + "requires": { + "encodeurl": "^1.0.2", + "lodash": "^4.17.10", + "npm-conf": "^1.1.3", + "tunnel": "^0.0.6" + } + }, + "globals": { + "version": "13.7.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.7.0.tgz", + "integrity": "sha512-Aipsz6ZKRxa/xQkZhNg0qIWXT6x6rD46f6x/PCnBomlttdIyAPak4YD9jTmKpZ72uROSMU87qJtcgpgHaVchiA==", + "requires": { + "type-fest": "^0.20.2" + } + }, + "globalthis": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.2.tgz", + "integrity": "sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ==", + "dev": true, + "optional": true, + "requires": { + "define-properties": "^1.1.3" + } + }, + "globby": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz", + "integrity": "sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "dependencies": { + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==" + } + } + }, + "got": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", + "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", + "dev": true, + "requires": { + "@sindresorhus/is": "^0.14.0", + "@szmarczak/http-timer": "^1.1.2", + "cacheable-request": "^6.0.0", + "decompress-response": "^3.3.0", + "duplexer3": "^0.1.4", + "get-stream": "^4.1.0", + "lowercase-keys": "^1.0.1", + "mimic-response": "^1.0.1", + "p-cancelable": "^1.0.0", + "to-readable-stream": "^1.0.0", + "url-parse-lax": "^3.0.0" + } + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", + "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" + }, + "growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "optional": true + }, + "gzip-size": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", + "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", + "requires": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + } + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "harmony-reflect": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.1.tgz", + "integrity": "sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + }, + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", + "dev": true + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + } + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, + "hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==" + }, + "history": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", + "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", + "requires": { + "@babel/runtime": "^7.1.2", + "loose-envify": "^1.2.0", + "resolve-pathname": "^3.0.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0", + "value-equal": "^1.0.1" + } + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "requires": { + "react-is": "^16.7.0" + } + }, + "homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "requires": { + "parse-passwd": "^1.0.0" + } + }, + "hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==" + }, + "hosted-git-info": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", + "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==" + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=" + }, + "hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=" + }, + "html-comment-regex": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz", + "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==" + }, + "html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "requires": { + "whatwg-encoding": "^1.0.5" + } + }, + "html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==" + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "requires": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + } + }, + "html-webpack-plugin": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.0.tgz", + "integrity": "sha512-MouoXEYSjTzCrjIxWwg8gxL5fE2X2WZJLmBYXlaJhQUH5K/b5OrqmV7T4dB7iu0xkmJ6JlUuV6fFVtnqbPopZw==", + "requires": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.15", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } + } + }, + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + }, + "dependencies": { + "entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", + "dev": true + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } + } + }, + "http-parser-js": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz", + "integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==" + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "http2-wrapper": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", + "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", + "dev": true, + "requires": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + } + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", + "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", + "requires": { + "postcss": "^7.0.14" + } + }, + "identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=", + "requires": { + "harmony-reflect": "^1.4.6" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" + }, + "ignore-walk": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.3.tgz", + "integrity": "sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==", + "dev": true, + "requires": { + "minimatch": "^3.0.4" + } + }, + "image-size": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.7.5.tgz", + "integrity": "sha512-Hiyv+mXHfFEP7LzUL/llg9RwFxxY+o9N3JVLIeG5E7iFIFAalxvRU9UZthBdYDEVnzHMgjnKJPPpay5BWf1g9g==", + "dev": true, + "optional": true + }, + "immer": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.4.tgz", + "integrity": "sha512-jMfL18P+/6P6epANRvRk6q8t+3gGhqsJ9EuJ25AXE+9bNTYtssvzeYbEd0mXRYWCmmXSIbnlpz6vd6iJlmGGGQ==" + }, + "import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", + "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", + "requires": { + "import-from": "^2.1.0" + } + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "import-from": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", + "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" + } + } + }, + "import-local": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz", + "integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==", + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "requires": { + "find-up": "^4.0.0" + } + } + } + }, + "imul": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/imul/-/imul-1.0.1.tgz", + "integrity": "sha1-nVhnFh6LPelsLDjV3HyxAvNeKsk=", + "dev": true, + "optional": true + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + }, + "indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "dev": true, + "requires": { + "repeating": "^2.0.0" + } + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=" + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "inquirer": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", + "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + } + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + } + }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "internmap": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-1.0.1.tgz", + "integrity": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==" + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=" + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-arguments": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", + "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", + "requires": { + "call-bind": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + }, + "is-bigint": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.1.tgz", + "integrity": "sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg==" + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "optional": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-boolean-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.0.tgz", + "integrity": "sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA==", + "requires": { + "call-bind": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "is-callable": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", + "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "requires": { + "ci-info": "^2.0.0" + } + }, + "is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", + "requires": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "is-core-module": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz", + "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==", + "requires": { + "has": "^1.0.3" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-date-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", + "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==" + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=" + }, + "is-docker": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz", + "integrity": "sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==" + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + }, + "is-finite": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", + "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true + }, + "is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" + }, + "is-my-ip-valid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz", + "integrity": "sha512-gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ==", + "dev": true, + "optional": true + }, + "is-my-json-valid": { + "version": "2.20.5", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.20.5.tgz", + "integrity": "sha512-VTPuvvGQtxvCeghwspQu1rBgjYUT6FGxPlvFKbYuFtgc4ADsX3U5ihZOYN0qyU6u+d4X9xXb0IT5O6QpXKt87A==", + "dev": true, + "optional": true, + "requires": { + "generate-function": "^2.0.0", + "generate-object-property": "^1.1.0", + "is-my-ip-valid": "^1.0.0", + "jsonpointer": "^4.0.0", + "xtend": "^4.0.0" + } + }, + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "is-number-object": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz", + "integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==" + }, + "is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "requires": { + "is-path-inside": "^2.1.0" + } + }, + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "requires": { + "path-is-inside": "^1.0.2" + } + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "requires": { + "isobject": "^3.0.1" + } + }, + "is-potential-custom-element-name": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz", + "integrity": "sha1-DFLlS8yjkbssSUsh6GJtczbG45c=" + }, + "is-property": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", + "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=", + "dev": true, + "optional": true + }, + "is-regex": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", + "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", + "requires": { + "call-bind": "^1.0.2", + "has-symbols": "^1.0.1" + } + }, + "is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" + }, + "is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + }, + "is-string": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", + "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==" + }, + "is-svg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz", + "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==", + "requires": { + "html-comment-regex": "^1.1.0" + } + }, + "is-symbol": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", + "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", + "requires": { + "has-symbols": "^1.0.1" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + }, + "is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "requires": { + "is-docker": "^2.0.0" + } + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "isbinaryfile": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz", + "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==", + "dev": true, + "requires": { + "buffer-alloc": "^1.2.0" + } + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "isomorphic-fetch": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", + "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=", + "requires": { + "node-fetch": "^1.0.1", + "whatwg-fetch": ">=0.10.0" + }, + "dependencies": { + "node-fetch": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", + "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", + "requires": { + "encoding": "^0.1.11", + "is-stream": "^1.0.1" + } + } + } + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "istanbul-lib-coverage": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", + "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==" + }, + "istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "requires": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "requires": { + "semver": "^6.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz", + "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + } + }, + "istanbul-reports": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz", + "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==", + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "jest": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.0.tgz", + "integrity": "sha512-jxTmrvuecVISvKFFhOkjsWRZV7sFqdSUAd1ajOKY+/QE/aLBVstsJ/dX8GczLzwiT6ZEwwmZqtCUHLHHQVzcfA==", + "requires": { + "@jest/core": "^26.6.0", + "import-local": "^3.0.2", + "jest-cli": "^26.6.0" + } + }, + "jest-changed-files": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz", + "integrity": "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==", + "requires": { + "@jest/types": "^26.6.2", + "execa": "^4.0.0", + "throat": "^5.0.0" + }, + "dependencies": { + "execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", + "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "requires": { + "path-key": "^3.0.0" + } + } + } + }, + "jest-circus": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-26.6.0.tgz", + "integrity": "sha512-L2/Y9szN6FJPWFK8kzWXwfp+FOR7xq0cUL4lIsdbIdwz3Vh6P1nrpcqOleSzr28zOtSHQNV9Z7Tl+KkuK7t5Ng==", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^26.6.0", + "@jest/test-result": "^26.6.0", + "@jest/types": "^26.6.0", + "@types/babel__traverse": "^7.0.4", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^26.6.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^26.6.0", + "jest-matcher-utils": "^26.6.0", + "jest-message-util": "^26.6.0", + "jest-runner": "^26.6.0", + "jest-runtime": "^26.6.0", + "jest-snapshot": "^26.6.0", + "jest-util": "^26.6.0", + "pretty-format": "^26.6.0", + "stack-utils": "^2.0.2", + "throat": "^5.0.0" + } + }, + "jest-cli": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz", + "integrity": "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==", + "requires": { + "@jest/core": "^26.6.3", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "is-ci": "^2.0.0", + "jest-config": "^26.6.3", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "prompts": "^2.0.1", + "yargs": "^15.4.1" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==" + }, + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + } + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "jest-config": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz", + "integrity": "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^26.6.3", + "@jest/types": "^26.6.2", + "babel-jest": "^26.6.3", + "chalk": "^4.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-environment-jsdom": "^26.6.2", + "jest-environment-node": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-jasmine2": "^26.6.3", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + } + } + }, + "jest-diff": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + } + }, + "jest-docblock": { + "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz", + "integrity": "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==", + "requires": { + "detect-newline": "^3.0.0" + } + }, + "jest-each": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz", + "integrity": "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2" + } + }, + "jest-environment-jsdom": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz", + "integrity": "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==", + "requires": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2", + "jsdom": "^16.4.0" + } + }, + "jest-environment-node": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz", + "integrity": "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==", + "requires": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + } + }, + "jest-get-type": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==" + }, + "jest-haste-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz", + "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==", + "requires": { + "@jest/types": "^26.6.2", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.1.2", + "graceful-fs": "^4.2.4", + "jest-regex-util": "^26.0.0", + "jest-serializer": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "micromatch": "^4.0.2", + "sane": "^4.0.3", + "walker": "^1.0.7" + } + }, + "jest-jasmine2": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz", + "integrity": "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^26.6.2", + "is-generator-fn": "^2.0.0", + "jest-each": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2", + "throat": "^5.0.0" + } + }, + "jest-leak-detector": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz", + "integrity": "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==", + "requires": { + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + } + }, + "jest-matcher-utils": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz", + "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==", + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + } + }, + "jest-message-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + } + }, + "jest-mock": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz", + "integrity": "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==", + "requires": { + "@jest/types": "^26.6.2", + "@types/node": "*" + } + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "requires": {} + }, + "jest-regex-util": { + "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz", + "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==" + }, + "jest-resolve": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.0.tgz", + "integrity": "sha512-tRAz2bwraHufNp+CCmAD8ciyCpXCs1NQxB5EJAmtCFy6BN81loFEGWKzYu26Y62lAJJe4X4jg36Kf+NsQyiStQ==", + "requires": { + "@jest/types": "^26.6.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.0", + "read-pkg-up": "^7.0.1", + "resolve": "^1.17.0", + "slash": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + } + } + }, + "jest-resolve-dependencies": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz", + "integrity": "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==", + "requires": { + "@jest/types": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-snapshot": "^26.6.2" + } + }, + "jest-runner": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz", + "integrity": "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==", + "requires": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.7.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-docblock": "^26.0.0", + "jest-haste-map": "^26.6.2", + "jest-leak-detector": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "source-map-support": "^0.5.6", + "throat": "^5.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + } + } + }, + "jest-runtime": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz", + "integrity": "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==", + "requires": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/globals": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0", + "cjs-module-lexer": "^0.6.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^15.4.1" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==" + }, + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + } + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "jest-serializer": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz", + "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==", + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.4" + } + }, + "jest-snapshot": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz", + "integrity": "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.0.0", + "chalk": "^4.0.0", + "expect": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-haste-map": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "natural-compare": "^1.4.0", + "pretty-format": "^26.6.2", + "semver": "^7.3.2" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + } + } + }, + "jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "requires": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + } + }, + "jest-validate": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz", + "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==", + "requires": { + "@jest/types": "^26.6.2", + "camelcase": "^6.0.0", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "leven": "^3.1.0", + "pretty-format": "^26.6.2" + }, + "dependencies": { + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + } + } + }, + "jest-watch-typeahead": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-0.6.1.tgz", + "integrity": "sha512-ITVnHhj3Jd/QkqQcTqZfRgjfyRhDFM/auzgVo2RKvSwi18YMvh0WvXDJFoFED6c7jd/5jxtu4kSOb9PTu2cPVg==", + "requires": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^26.0.0", + "jest-watcher": "^26.3.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0" + } + }, + "jest-watcher": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz", + "integrity": "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==", + "requires": { + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^26.6.2", + "string-length": "^4.0.1" + } + }, + "jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "joi": { + "version": "17.4.0", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.4.0.tgz", + "integrity": "sha512-F4WiW2xaV6wc1jxete70Rw4V/VuMd6IN+a5ilZsxG4uYtUXWu2kq9W5P2dz30e7Gmw8RCbY/u/uk+dMPma9tAg==", + "dev": true, + "requires": { + "@hapi/hoek": "^9.0.0", + "@hapi/topo": "^5.0.0", + "@sideway/address": "^4.1.0", + "@sideway/formula": "^3.0.0", + "@sideway/pinpoint": "^2.0.0" + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "js-yaml": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.0.0.tgz", + "integrity": "sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==", + "requires": { + "argparse": "^2.0.1" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "jsdom": { + "version": "16.5.1", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.5.1.tgz", + "integrity": "sha512-pF73EOsJgwZekbDHEY5VO/yKXUkab/DuvrQB/ANVizbr6UAHJsDdHXuotZYwkJSGQl1JM+ivXaqY+XBDDL4TiA==", + "requires": { + "abab": "^2.0.5", + "acorn": "^8.0.5", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "html-encoding-sniffer": "^2.0.1", + "is-potential-custom-element-name": "^1.0.0", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "request": "^2.88.2", + "request-promise-native": "^1.0.9", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0", + "ws": "^7.4.4", + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "acorn": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.1.0.tgz", + "integrity": "sha512-LWCF/Wn0nfHOmJ9rzQApGnxnvgfROzGilS8936rqN/lfcYkY9MYZzdMqN+2NJ4SlTc+m5HiSa+kNfDtI64dwUA==" + } + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", + "dev": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "json2mq": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/json2mq/-/json2mq-0.2.0.tgz", + "integrity": "sha1-tje9O6nqvhIsg+lyBIOusQ0skEo=", + "requires": { + "string-convert": "^0.2.0" + } + }, + "json3": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==" + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "requires": { + "minimist": "^1.2.5" + } + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "jsonpointer": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.1.0.tgz", + "integrity": "sha512-CXcRvMyTlnR53xMcKnuMzfCA5i/nfblTnnr74CZb6C4vG39eu6w51t7nKmU5MfLfbTgGItliNyjO/ciNPDqClg==", + "dev": true, + "optional": true + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "jsx-ast-utils": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz", + "integrity": "sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==", + "requires": { + "array-includes": "^3.1.2", + "object.assign": "^4.1.2" + } + }, + "junk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", + "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", + "dev": true + }, + "keyv": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", + "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", + "dev": true, + "requires": { + "json-buffer": "3.0.0" + } + }, + "killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==" + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + }, + "klona": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.4.tgz", + "integrity": "sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==" + }, + "language-subtag-registry": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", + "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + }, + "language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=", + "requires": { + "language-subtag-registry": "~0.3.2" + } + }, + "last-call-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", + "requires": { + "lodash": "^4.17.5", + "webpack-sources": "^1.1.0" + } + }, + "less": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/less/-/less-3.13.1.tgz", + "integrity": "sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==", + "dev": true, + "requires": { + "copy-anything": "^2.0.1", + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "native-request": "^1.0.5", + "source-map": "~0.6.0", + "tslib": "^1.10.0" + }, + "dependencies": { + "image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w=", + "dev": true, + "optional": true + } + } + }, + "less-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/less-loader/-/less-loader-6.2.0.tgz", + "integrity": "sha512-Cl5h95/Pz/PWub/tCBgT1oNMFeH1WTD33piG80jn5jr12T4XbxZcjThwNXDQ7AG649WEynuIzO4b0+2Tn9Qolg==", + "dev": true, + "requires": { + "clone": "^2.1.2", + "less": "^3.11.3", + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.0" + } + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "dependencies": { + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dev": true, + "requires": { + "error-ex": "^1.2.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, + "requires": { + "is-utf8": "^0.2.0" + } + } + } + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==" + }, + "loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" + }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" + }, + "lodash.get": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=", + "dev": true + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" + }, + "lodash.template": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "requires": { + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" + } + }, + "lodash.templatesettings": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "requires": { + "lodash._reinterpolate": "^3.0.0" + } + }, + "lodash.throttle": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", + "integrity": "sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=" + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + }, + "log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + } + }, + "loglevel": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz", + "integrity": "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==" + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", + "dev": true, + "requires": { + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "requires": { + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + } + } + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "lzma-native": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/lzma-native/-/lzma-native-6.0.1.tgz", + "integrity": "sha512-O6oWF0xe1AFvOCjU8uOZBZ/lhjaMNwHfVNaqVMqmoQXlRwBcFWpCAToiZOdXcKVMdo/5s/D0a2QgA5laMErxHQ==", + "dev": true, + "requires": { + "node-addon-api": "^1.6.0", + "node-pre-gyp": "^0.11.0", + "readable-stream": "^2.3.5", + "rimraf": "^2.7.1" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "macos-alias": { + "version": "0.2.11", + "resolved": "https://registry.npmjs.org/macos-alias/-/macos-alias-0.2.11.tgz", + "integrity": "sha1-/u6mwTuhGYFKQ/xDxHCzHlnvcYo=", + "dev": true, + "optional": true, + "requires": { + "nan": "^2.4.0" + } + }, + "magic-string": { + "version": "0.25.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", + "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", + "requires": { + "sourcemap-codec": "^1.4.4" + } + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "makeerror": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", + "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "requires": { + "tmpl": "1.0.x" + } + }, + "map-age-cleaner": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "dev": true, + "requires": { + "p-defer": "^1.0.0" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" + }, + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "requires": { + "object-visit": "^1.0.0" + } + }, + "matcher": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz", + "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==", + "dev": true, + "optional": true, + "requires": { + "escape-string-regexp": "^4.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "optional": true + } + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "mem": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", + "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", + "dev": true, + "requires": { + "map-age-cleaner": "^0.1.1", + "mimic-fn": "^2.0.0", + "p-is-promise": "^2.0.0" + } + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "dev": true, + "requires": { + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dev": true, + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "dev": true, + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + } + } + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "microevent.ts": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz", + "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" + }, + "micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.46.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz", + "integrity": "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==" + }, + "mime-types": { + "version": "2.1.29", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz", + "integrity": "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==", + "requires": { + "mime-db": "1.46.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true + }, + "mini-create-react-context": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz", + "integrity": "sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==", + "requires": { + "@babel/runtime": "^7.12.1", + "tiny-warning": "^1.0.3" + } + }, + "mini-css-extract-plugin": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.11.3.tgz", + "integrity": "sha512-n9BA8LonkOkW1/zn+IbLPQmovsL0wMb9yx75fMJQZf2X1Zoec9yTZtyMePcyu19wPkmFbzZZA6fLTotpFhQsOA==", + "requires": { + "loader-utils": "^1.1.0", + "normalize-url": "1.9.1", + "schema-utils": "^1.0.0", + "webpack-sources": "^1.1.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "normalize-url": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", + "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", + "requires": { + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" + } + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + } + } + }, + "mini-store": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/mini-store/-/mini-store-3.0.6.tgz", + "integrity": "sha512-YzffKHbYsMQGUWQRKdsearR79QsMzzJcDDmZKlJBqt5JNkqpyJHYlK6gP61O36X+sLf76sO9G6mhKBe83gIZIQ==", + "requires": { + "hoist-non-react-statics": "^3.3.2", + "shallowequal": "^1.0.2" + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", + "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", + "requires": { + "yallist": "^4.0.0" + } + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "requires": { + "minipass": "^3.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "dependencies": { + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + } + } + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "requires": { + "minimist": "^1.2.5" + } + }, + "mlg-converter": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/mlg-converter/-/mlg-converter-0.1.5.tgz", + "integrity": "sha512-w6nOR/OefQf1QZJ67gXe7tPak29C/WBudl8CwnHWrmJq33+FYWOwVGATbP3FjcdIFue7kQ4aNnTLf/jUiJCBfg==" + }, + "moment": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz", + "integrity": "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==" + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" + }, + "murmur-32": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/murmur-32/-/murmur-32-0.2.0.tgz", + "integrity": "sha512-ZkcWZudylwF+ir3Ld1n7gL6bI2mQAzXvSobPwVtu8aYi2sbXeipeSkdcanRLzIofLcM5F53lGaKm2dk7orBi7Q==", + "dev": true, + "optional": true, + "requires": { + "encode-utf8": "^1.0.3", + "fmix": "^0.1.0", + "imul": "^1.0.0" + } + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true + }, + "nan": { + "version": "2.14.2", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz", + "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==", + "optional": true + }, + "nanoid": { + "version": "3.1.22", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz", + "integrity": "sha512-/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ==" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "native-request": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/native-request/-/native-request-1.0.8.tgz", + "integrity": "sha512-vU2JojJVelUGp6jRcLwToPoWGxSx23z/0iX+I77J3Ht17rf2INGjrhOoQnjVo60nQd8wVsgzKkPfRXBiVdD2ag==", + "dev": true, + "optional": true + }, + "native-url": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.2.6.tgz", + "integrity": "sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==", + "requires": { + "querystring": "^0.2.0" + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + }, + "needle": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-2.6.0.tgz", + "integrity": "sha512-KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg==", + "dev": true, + "requires": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "next-tick": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", + "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + } + } + }, + "node-abi": { + "version": "2.21.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-2.21.0.tgz", + "integrity": "sha512-smhrivuPqEM3H5LmnY3KU6HfYv0u4QklgAxfFyRNujKUzbUcYZ+Jc2EhukB9SRcD2VpqhxM7n/MIcp1Ua1/JMg==", + "dev": true, + "requires": { + "semver": "^5.4.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "node-addon-api": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz", + "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==", + "dev": true + }, + "node-fetch": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", + "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==", + "dev": true + }, + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==" + }, + "node-gyp": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-7.1.2.tgz", + "integrity": "sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==", + "dev": true, + "requires": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.3", + "nopt": "^5.0.0", + "npmlog": "^4.1.2", + "request": "^2.88.2", + "rimraf": "^3.0.2", + "semver": "^7.3.2", + "tar": "^6.0.2", + "which": "^2.0.2" + } + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": { + "buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + } + } + }, + "node-modules-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", + "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=" + }, + "node-notifier": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.2.tgz", + "integrity": "sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==", + "optional": true, + "requires": { + "growly": "^1.3.0", + "is-wsl": "^2.2.0", + "semver": "^7.3.2", + "shellwords": "^0.1.1", + "uuid": "^8.3.0", + "which": "^2.0.2" + } + }, + "node-pre-gyp": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.11.0.tgz", + "integrity": "sha512-TwWAOZb0j7e9eGaf9esRx3ZcLaE5tQ2lvYy1pb5IAaG1a2e2Kv5Lms1Y4hpj+ciXJRofIxxlt5haeQ/2ANeE0Q==", + "dev": true, + "requires": { + "detect-libc": "^1.0.2", + "mkdirp": "^0.5.1", + "needle": "^2.2.1", + "nopt": "^4.0.1", + "npm-packlist": "^1.1.6", + "npmlog": "^4.0.2", + "rc": "^1.2.7", + "rimraf": "^2.6.1", + "semver": "^5.3.0", + "tar": "^4" + }, + "dependencies": { + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "fs-minipass": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", + "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", + "dev": true, + "requires": { + "minipass": "^2.6.0" + } + }, + "minipass": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", + "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" + } + }, + "minizlib": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", + "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", + "dev": true, + "requires": { + "minipass": "^2.9.0" + } + }, + "nopt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.3.tgz", + "integrity": "sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg==", + "dev": true, + "requires": { + "abbrev": "1", + "osenv": "^0.1.4" + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "tar": { + "version": "4.4.13", + "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz", + "integrity": "sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==", + "dev": true, + "requires": { + "chownr": "^1.1.1", + "fs-minipass": "^1.2.5", + "minipass": "^2.8.6", + "minizlib": "^1.2.1", + "mkdirp": "^0.5.0", + "safe-buffer": "^5.1.2", + "yallist": "^3.0.3" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } + } + }, + "node-releases": { + "version": "1.1.71", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz", + "integrity": "sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg==" + }, + "nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dev": true, + "requires": { + "abbrev": "1" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + }, + "normalize-url": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", + "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==", + "dev": true + }, + "npm-bundled": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.1.tgz", + "integrity": "sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA==", + "dev": true, + "requires": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-conf": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", + "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", + "dev": true, + "optional": true, + "requires": { + "config-chain": "^1.1.11", + "pify": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true, + "optional": true + } + } + }, + "npm-normalize-package-bin": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", + "dev": true + }, + "npm-packlist": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.8.tgz", + "integrity": "sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A==", + "dev": true, + "requires": { + "ignore-walk": "^3.0.1", + "npm-bundled": "^1.0.1", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "requires": { + "path-key": "^2.0.0" + }, + "dependencies": { + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + } + } + }, + "npmlog": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "dev": true, + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "requires": { + "boolbase": "~1.0.0" + } + }, + "nugget": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/nugget/-/nugget-2.0.1.tgz", + "integrity": "sha1-IBCVpIfhrTYIGzQy+jytpPjQcbA=", + "dev": true, + "requires": { + "debug": "^2.1.3", + "minimist": "^1.1.0", + "pretty-bytes": "^1.0.2", + "progress-stream": "^1.1.0", + "request": "^2.45.0", + "single-line-log": "^1.1.2", + "throttleit": "0.0.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + }, + "nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==" + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-inspect": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", + "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.entries": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz", + "integrity": "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "has": "^1.0.3" + } + }, + "object.fromentries": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.4.tgz", + "integrity": "sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2", + "has": "^1.0.3" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz", + "integrity": "sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "requires": { + "isobject": "^3.0.1" + } + }, + "object.values": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.3.tgz", + "integrity": "sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2", + "has": "^1.0.3" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "requires": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + } + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "requires": { + "is-wsl": "^1.1.0" + }, + "dependencies": { + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" + } + } + }, + "optimize-css-assets-webpack-plugin": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.4.tgz", + "integrity": "sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A==", + "requires": { + "cssnano": "^4.1.10", + "last-call-webpack-plugin": "^3.0.0" + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "requires": { + "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": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.0.tgz", + "integrity": "sha512-1StwyXQGoU6gdjYkyVcqOLnVlbKj+6yPNNOxJVgpt9t4eksKjiriiHuxktLYkgllwk+D6MbC4ihH84L1udRXPg==", + "dev": true, + "requires": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + } + }, + "original": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "requires": { + "url-parse": "^1.4.3" + } + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" + }, + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "dev": true + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true + }, + "osenv": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "dev": true, + "requires": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "p-cancelable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", + "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", + "dev": true + }, + "p-defer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", + "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", + "dev": true + }, + "p-each-series": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", + "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==" + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" + }, + "p-is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", + "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "requires": { + "retry": "^0.12.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + }, + "pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + }, + "parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + } + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-author": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/parse-author/-/parse-author-2.0.0.tgz", + "integrity": "sha1-00YL8d3Q367tQtp1QkLmX7aEqB8=", + "dev": true, + "requires": { + "author-regex": "^1.0.0" + } + }, + "parse-color": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-color/-/parse-color-1.0.0.tgz", + "integrity": "sha1-e3SLlag/A/FqlPU15S1/PZRlhhk=", + "dev": true, + "optional": true, + "requires": { + "color-convert": "~0.5.0" + }, + "dependencies": { + "color-convert": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-0.5.3.tgz", + "integrity": "sha1-vbbGnOZg+t/+CwAHzER+G59ygr0=", + "dev": true, + "optional": true + } + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parse-ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-2.1.0.tgz", + "integrity": "sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==", + "dev": true + }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "dev": true + }, + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "parsimmon": { + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/parsimmon/-/parsimmon-1.16.0.tgz", + "integrity": "sha512-tekGDz2Lny27SQ/5DzJdIK0lqsWwZ667SCLFIDCxaZM7VNgQjyKLbaL7FYPKpbjdxNAXFV/mSxkq5D2fnkW4pA==" + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + } + } + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "path-parse": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" + }, + "path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "requires": { + "isarray": "0.0.1" + } + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + }, + "pbkdf2": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz", + "integrity": "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", + "dev": true + }, + "perfect-scrollbar": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/perfect-scrollbar/-/perfect-scrollbar-1.5.0.tgz", + "integrity": "sha512-NrNHJn5mUGupSiheBTy6x+6SXCFbLlm8fVZh9moIzw/LgqElN5q4ncR4pbCBCYuCJ8Kcl9mYM0NgDxvW+b4LxA==" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "picomatch": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "requires": { + "pinkie": "^2.0.0" + } + }, + "pirates": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", + "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "requires": { + "node-modules-regexp": "^1.0.0" + } + }, + "pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "requires": { + "find-up": "^2.1.0" + }, + "dependencies": { + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "requires": { + "locate-path": "^2.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + } + } + }, + "pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + } + } + }, + "plist": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/plist/-/plist-3.0.1.tgz", + "integrity": "sha512-GpgvHHocGRyQm74b6FWEZZVRroHKE1I0/BTjAmySaohK+cUn+hZpbqXkc3KWgW3gQYkqcQej35FohcT0FRlkRQ==", + "dev": true, + "requires": { + "base64-js": "^1.2.3", + "xmlbuilder": "^9.0.7", + "xmldom": "0.1.x" + } + }, + "pnp-webpack-plugin": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", + "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", + "requires": { + "ts-pnp": "^1.1.6" + } + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "requires": { + "lodash": "^4.17.14" + } + }, + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", + "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-attribute-case-insensitive": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz", + "integrity": "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==", + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^6.0.2" + } + }, + "postcss-browser-comments": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-3.0.0.tgz", + "integrity": "sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==", + "requires": { + "postcss": "^7" + } + }, + "postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "requires": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "postcss-color-functional-notation": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz", + "integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-color-gray": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz", + "integrity": "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==", + "requires": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-color-hex-alpha": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz", + "integrity": "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==", + "requires": { + "postcss": "^7.0.14", + "postcss-values-parser": "^2.0.1" + } + }, + "postcss-color-mod-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz", + "integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==", + "requires": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-color-rebeccapurple": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz", + "integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "requires": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-custom-media": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz", + "integrity": "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==", + "requires": { + "postcss": "^7.0.14" + } + }, + "postcss-custom-properties": { + "version": "8.0.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz", + "integrity": "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==", + "requires": { + "postcss": "^7.0.17", + "postcss-values-parser": "^2.0.1" + } + }, + "postcss-custom-selectors": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz", + "integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==", + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-dir-pseudo-class": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz", + "integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==", + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-double-position-gradients": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz", + "integrity": "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==", + "requires": { + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-env-function": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz", + "integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-flexbugs-fixes": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz", + "integrity": "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==", + "requires": { + "postcss": "^7.0.26" + } + }, + "postcss-focus-visible": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz", + "integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-focus-within": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz", + "integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-font-variant": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz", + "integrity": "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-gap-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz", + "integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-image-set-function": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz", + "integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-initial": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.2.tgz", + "integrity": "sha512-ugA2wKonC0xeNHgirR4D3VWHs2JcU08WAi1KFLVcnb7IN89phID6Qtg2RIctWbnvp1TM2BOmDtX8GGLCKdR8YA==", + "requires": { + "lodash.template": "^4.5.0", + "postcss": "^7.0.2" + } + }, + "postcss-lab-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz", + "integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==", + "requires": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", + "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", + "requires": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + }, + "dependencies": { + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + } + }, + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + } + } + }, + "postcss-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", + "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", + "requires": { + "loader-utils": "^1.1.0", + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^1.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + } + } + }, + "postcss-logical": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz", + "integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-media-minmax": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz", + "integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "requires": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "requires": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "requires": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "requires": { + "postcss": "^7.0.5" + } + }, + "postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + } + }, + "postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + } + }, + "postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + }, + "postcss-nesting": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz", + "integrity": "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-normalize": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-8.0.1.tgz", + "integrity": "sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==", + "requires": { + "@csstools/normalize.css": "^10.1.0", + "browserslist": "^4.6.2", + "postcss": "^7.0.17", + "postcss-browser-comments": "^3.0.0", + "sanitize.css": "^10.0.0" + } + }, + "postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "requires": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==" + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-overflow-shorthand": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz", + "integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-page-break": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz", + "integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-place": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz", + "integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-preset-env": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz", + "integrity": "sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==", + "requires": { + "autoprefixer": "^9.6.1", + "browserslist": "^4.6.4", + "caniuse-lite": "^1.0.30000981", + "css-blank-pseudo": "^0.1.4", + "css-has-pseudo": "^0.10.0", + "css-prefers-color-scheme": "^3.1.1", + "cssdb": "^4.4.0", + "postcss": "^7.0.17", + "postcss-attribute-case-insensitive": "^4.0.1", + "postcss-color-functional-notation": "^2.0.1", + "postcss-color-gray": "^5.0.0", + "postcss-color-hex-alpha": "^5.0.3", + "postcss-color-mod-function": "^3.0.3", + "postcss-color-rebeccapurple": "^4.0.1", + "postcss-custom-media": "^7.0.8", + "postcss-custom-properties": "^8.0.11", + "postcss-custom-selectors": "^5.1.2", + "postcss-dir-pseudo-class": "^5.0.0", + "postcss-double-position-gradients": "^1.0.0", + "postcss-env-function": "^2.0.2", + "postcss-focus-visible": "^4.0.0", + "postcss-focus-within": "^3.0.0", + "postcss-font-variant": "^4.0.0", + "postcss-gap-properties": "^2.0.0", + "postcss-image-set-function": "^3.0.1", + "postcss-initial": "^3.0.0", + "postcss-lab-function": "^2.0.1", + "postcss-logical": "^3.0.0", + "postcss-media-minmax": "^4.0.0", + "postcss-nesting": "^7.0.0", + "postcss-overflow-shorthand": "^2.0.0", + "postcss-page-break": "^2.0.0", + "postcss-place": "^4.0.1", + "postcss-pseudo-class-any-link": "^6.0.0", + "postcss-replace-overflow-wrap": "^3.0.0", + "postcss-selector-matches": "^4.0.0", + "postcss-selector-not": "^4.0.0" + } + }, + "postcss-pseudo-class-any-link": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz", + "integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==", + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + } + }, + "postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-replace-overflow-wrap": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz", + "integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-safe-parser": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-5.0.2.tgz", + "integrity": "sha512-jDUfCPJbKOABhwpUKcqCVbbXiloe/QXMcbJ6Iipf3sDIihEzTqRCeMBfRaOHxhBuTYqtASrI1KJWxzztZU4qUQ==", + "requires": { + "postcss": "^8.1.0" + }, + "dependencies": { + "postcss": { + "version": "8.2.8", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.2.8.tgz", + "integrity": "sha512-1F0Xb2T21xET7oQV9eKuctbM9S7BC0fetoHCc4H13z0PT6haiRLP4T0ZY4XWh7iLP0usgqykT6p9B2RtOf4FPw==", + "requires": { + "colorette": "^1.2.2", + "nanoid": "^3.1.20", + "source-map": "^0.6.1" + } + } + } + }, + "postcss-selector-matches": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz", + "integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==", + "requires": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "postcss-selector-not": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz", + "integrity": "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==", + "requires": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "postcss-selector-parser": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", + "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", + "requires": { + "cssesc": "^3.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1", + "util-deprecate": "^1.0.2" + } + }, + "postcss-svgo": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz", + "integrity": "sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==", + "requires": { + "is-svg": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "requires": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + } + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + }, + "postcss-values-parser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz", + "integrity": "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==", + "requires": { + "flatten": "^1.0.2", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + }, + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", + "dev": true + }, + "prettier": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz", + "integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==", + "dev": true + }, + "prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "requires": { + "fast-diff": "^1.1.2" + } + }, + "pretty-bytes": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-1.0.4.tgz", + "integrity": "sha1-CiLoIQYJrTVUL4yNXSFZr/B1HIQ=", + "dev": true, + "requires": { + "get-stdin": "^4.0.1", + "meow": "^3.1.0" + } + }, + "pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", + "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "requires": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + } + }, + "pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "requires": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "react-is": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz", + "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==" + } + } + }, + "pretty-ms": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-7.0.1.tgz", + "integrity": "sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==", + "dev": true, + "requires": { + "parse-ms": "^2.1.0" + } + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" + }, + "progress-stream": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/progress-stream/-/progress-stream-1.2.0.tgz", + "integrity": "sha1-LNPP6jO6OonJwSHsM0er6asSX3c=", + "dev": true, + "requires": { + "speedometer": "~0.1.2", + "through2": "~0.2.3" + } + }, + "promise": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.1.0.tgz", + "integrity": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==", + "requires": { + "asap": "~2.0.6" + } + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + }, + "prompts": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", + "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" + } + }, + "proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=", + "dev": true, + "optional": true + }, + "proxy-addr": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", + "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", + "requires": { + "forwarded": "~0.1.2", + "ipaddr.js": "1.9.1" + } + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" + }, + "query-string": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", + "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", + "requires": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, + "queue-microtask": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.2.tgz", + "integrity": "sha512-dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg==" + }, + "quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "dev": true + }, + "raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "requires": { + "performance-now": "^2.1.0" + } + }, + "random-path": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/random-path/-/random-path-0.1.2.tgz", + "integrity": "sha512-4jY0yoEaQ5v9StCl5kZbNIQlg1QheIDBrdkDn53EynpPb9FgO6//p3X/tgMnrC45XN6QZCzU1Xz/+pSSsJBpRw==", + "dev": true, + "optional": true, + "requires": { + "base32-encode": "^0.1.0 || ^1.0.0", + "murmur-32": "^0.1.0 || ^0.2.0" + } + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + } + } + }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true + } + } + }, + "rc-align": { + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/rc-align/-/rc-align-4.0.9.tgz", + "integrity": "sha512-myAM2R4qoB6LqBul0leaqY8gFaiECDJ3MtQDmzDo9xM9NRT/04TvWOYd2YHU9zvGzqk9QXF6S9/MifzSKDZeMw==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "dom-align": "^1.7.0", + "rc-util": "^5.3.0", + "resize-observer-polyfill": "^1.5.1" + } + }, + "rc-cascader": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/rc-cascader/-/rc-cascader-1.4.2.tgz", + "integrity": "sha512-JVuLGrSi+3G8DZyPvlKlGVWJjhoi9NTz6REHIgRspa5WnznRkKGm2ejb0jJtz0m2IL8Q9BG4ZA2sXuqAu71ltQ==", + "requires": { + "@babel/runtime": "^7.12.5", + "array-tree-filter": "^2.1.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.0.1", + "warning": "^4.0.1" + } + }, + "rc-checkbox": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/rc-checkbox/-/rc-checkbox-2.3.2.tgz", + "integrity": "sha512-afVi1FYiGv1U0JlpNH/UaEXdh6WUJjcWokj/nUN2TgG80bfG+MDdbfHKlLcNNba94mbjy2/SXJ1HDgrOkXGAjg==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1" + } + }, + "rc-collapse": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/rc-collapse/-/rc-collapse-3.1.0.tgz", + "integrity": "sha512-EwpNPJcLe7b+5JfyaxM9ZNnkCgqArt3QQO0Cr5p5plwz/C9h8liAmjYY5I4+hl9lAjBqb7ZwLu94+z+rt5g1WQ==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.3.4", + "rc-util": "^5.2.1", + "shallowequal": "^1.1.0" + } + }, + "rc-dialog": { + "version": "8.5.2", + "resolved": "https://registry.npmjs.org/rc-dialog/-/rc-dialog-8.5.2.tgz", + "integrity": "sha512-3n4taFcjqhTE9uNuzjB+nPDeqgRBTEGBfe46mb1e7r88DgDo0lL4NnxY/PZ6PJKd2tsCt+RrgF/+YeTvJ/Thsw==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-motion": "^2.3.0", + "rc-util": "^5.6.1" + } + }, + "rc-drawer": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/rc-drawer/-/rc-drawer-4.3.1.tgz", + "integrity": "sha512-GMfFy4maqxS9faYXEhQ+0cA1xtkddEQzraf6SAdzWbn444DrrLogwYPk1NXSpdXjLCLxgxOj9MYtyYG42JsfXg==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-util": "^5.7.0" + } + }, + "rc-dropdown": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/rc-dropdown/-/rc-dropdown-3.2.0.tgz", + "integrity": "sha512-j1HSw+/QqlhxyTEF6BArVZnTmezw2LnSmRk6I9W7BCqNCKaRwleRmMMs1PHbuaG8dKHVqP6e21RQ7vPBLVnnNw==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-trigger": "^5.0.4" + } + }, + "rc-field-form": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/rc-field-form/-/rc-field-form-1.20.0.tgz", + "integrity": "sha512-jkzsIfXR7ywEYdeAtktt1aLff88wxIPDLpq7KShHNl4wlsWrCE+TzkXBfjvVzYOVZt5GGrD8YDqNO/q6eaR/eA==", + "requires": { + "@babel/runtime": "^7.8.4", + "async-validator": "^3.0.3", + "rc-util": "^5.8.0" + } + }, + "rc-image": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/rc-image/-/rc-image-5.2.4.tgz", + "integrity": "sha512-kWOjhZC1OoGKfvWqtDoO9r8WUNswBwnjcstI6rf7HMudz0usmbGvewcWqsOhyaBRJL9+I4eeG+xiAoxV1xi75Q==", + "requires": { + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-dialog": "~8.5.0", + "rc-util": "^5.0.6" + } + }, + "rc-input-number": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/rc-input-number/-/rc-input-number-7.0.2.tgz", + "integrity": "sha512-9AcD3/D18Oa41xZnBFvJ0fdp6AJkf/en8uKi8E69Ct+sh64qIYbWUXeh1PXhJgrCHIoNNT8OWaTebypT4/d3ZA==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.0.1" + } + }, + "rc-mentions": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/rc-mentions/-/rc-mentions-1.5.3.tgz", + "integrity": "sha512-NG/KB8YiKBCJPHHvr/QapAb4f9YzLJn7kDHtmI1K6t7ZMM5YgrjIxNNhoRKKP9zJvb9PdPts69Hbg4ZMvLVIFQ==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6", + "rc-menu": "^8.0.1", + "rc-textarea": "^0.3.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.0.1" + } + }, + "rc-menu": { + "version": "8.10.6", + "resolved": "https://registry.npmjs.org/rc-menu/-/rc-menu-8.10.6.tgz", + "integrity": "sha512-RVkd8XChwSmVOdNULbqLNnABthRZWnhqct1Q74onEXTClsXvsLADMhlIJtw/umglVSECM+14TJdIli9rl2Bzlw==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "mini-store": "^3.0.1", + "rc-motion": "^2.0.1", + "rc-trigger": "^5.1.2", + "rc-util": "^5.7.0", + "resize-observer-polyfill": "^1.5.0", + "shallowequal": "^1.1.0" + } + }, + "rc-motion": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/rc-motion/-/rc-motion-2.4.1.tgz", + "integrity": "sha512-TWLvymfMu8SngPx5MDH8dQ0D2RYbluNTfam4hY/dNNx9RQ3WtGuZ/GXHi2ymLMzH+UNd6EEFYkOuR5JTTtm8Xg==", + "requires": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-util": "^5.2.1" + } + }, + "rc-notification": { + "version": "4.5.5", + "resolved": "https://registry.npmjs.org/rc-notification/-/rc-notification-4.5.5.tgz", + "integrity": "sha512-YIfhTSw+h5GsSdgMnuMx24wqiPlg3FeamuOlkh9RkyHx+SeZVAKzQ0juy2NGvPEF2hDWi5xTqxUqLdo0L2AmGg==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.2.0", + "rc-util": "^5.0.1" + } + }, + "rc-overflow": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/rc-overflow/-/rc-overflow-1.0.2.tgz", + "integrity": "sha512-GXj4DAyNxm4f57LvXLwhJaZoJHzSge2l2lQq64MZP7NJAfLpQqOLD+v9JMV9ONTvDPZe8kdzR+UMmkAn7qlzFA==", + "requires": { + "@babel/runtime": "^7.11.1", + "classnames": "^2.2.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.5.1" + } + }, + "rc-pagination": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/rc-pagination/-/rc-pagination-3.1.6.tgz", + "integrity": "sha512-Pb2zJEt8uxXzYCWx/2qwsYZ3vSS9Eqdw0cJBli6C58/iYhmvutSBqrBJh51Z5UzYc5ZcW5CMeP5LbbKE1J3rpw==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1" + } + }, + "rc-picker": { + "version": "2.5.10", + "resolved": "https://registry.npmjs.org/rc-picker/-/rc-picker-2.5.10.tgz", + "integrity": "sha512-d2or2jql9SSY8CaRPybpbKkXBq3bZ6g88UKyWQZBLTCrc92Xm87RfRC/P3UEQo/CLmia3jVF7IXVi1HmNe2DZA==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "date-fns": "^2.15.0", + "moment": "^2.24.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.4.0", + "shallowequal": "^1.1.0" + } + }, + "rc-progress": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/rc-progress/-/rc-progress-3.1.3.tgz", + "integrity": "sha512-Jl4fzbBExHYMoC6HBPzel0a9VmhcSXx24LVt/mdhDM90MuzoMCJjXZAlhA0V0CJi+SKjMhfBoIQ6Lla1nD4QNw==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.6" + } + }, + "rc-rate": { + "version": "2.9.1", + "resolved": "https://registry.npmjs.org/rc-rate/-/rc-rate-2.9.1.tgz", + "integrity": "sha512-MmIU7FT8W4LYRRHJD1sgG366qKtSaKb67D0/vVvJYR0lrCuRrCiVQ5qhfT5ghVO4wuVIORGpZs7ZKaYu+KMUzA==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.0.1" + } + }, + "rc-resize-observer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rc-resize-observer/-/rc-resize-observer-1.0.0.tgz", + "integrity": "sha512-RgKGukg1mlzyGdvzF7o/LGFC8AeoMH9aGzXTUdp6m+OApvmRdUuOscq/Y2O45cJA+rXt1ApWlpFoOIioXL3AGg==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-util": "^5.0.0", + "resize-observer-polyfill": "^1.5.1" + } + }, + "rc-select": { + "version": "12.1.7", + "resolved": "https://registry.npmjs.org/rc-select/-/rc-select-12.1.7.tgz", + "integrity": "sha512-sLZlfp+U7Typ+jPM5gTi8I4/oJalRw8kyhxZZ9Q4mEfO2p+otd1Chmzhh+wPraBY3IwE0RZM2/x1Leg/kQKk/w==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.0.1", + "rc-overflow": "^1.0.0", + "rc-trigger": "^5.0.4", + "rc-util": "^5.0.1", + "rc-virtual-list": "^3.2.0" + } + }, + "rc-slider": { + "version": "9.7.1", + "resolved": "https://registry.npmjs.org/rc-slider/-/rc-slider-9.7.1.tgz", + "integrity": "sha512-r9r0dpFA3PEvxBhIfVi1lVzxuSogWxeY+tGvi2AqMM1rPgaOXQ7WbtT+9kVFkJ9K8TntA/vYPgiCCKfN29KTkw==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-tooltip": "^5.0.1", + "rc-util": "^5.0.0", + "shallowequal": "^1.1.0" + } + }, + "rc-steps": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/rc-steps/-/rc-steps-4.1.3.tgz", + "integrity": "sha512-GXrMfWQOhN3sVze3JnzNboHpQdNHcdFubOETUHyDpa/U3HEKBZC3xJ8XK4paBgF4OJ3bdUVLC+uBPc6dCxvDYA==", + "requires": { + "@babel/runtime": "^7.10.2", + "classnames": "^2.2.3", + "rc-util": "^5.0.1" + } + }, + "rc-switch": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/rc-switch/-/rc-switch-3.2.2.tgz", + "integrity": "sha512-+gUJClsZZzvAHGy1vZfnwySxj+MjLlGRyXKXScrtCTcmiYNPzxDFOxdQ/3pK1Kt/0POvwJ/6ALOR8gwdXGhs+A==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-util": "^5.0.1" + } + }, + "rc-table": { + "version": "7.13.3", + "resolved": "https://registry.npmjs.org/rc-table/-/rc-table-7.13.3.tgz", + "integrity": "sha512-oP4fknjvKCZAaiDnvj+yzBaWcg+JYjkASbeWonU1BbrLcomkpKvMUgPODNEzg0QdXA9OGW0PO86h4goDSW06Kg==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.4.0", + "shallowequal": "^1.1.0" + } + }, + "rc-tabs": { + "version": "11.7.3", + "resolved": "https://registry.npmjs.org/rc-tabs/-/rc-tabs-11.7.3.tgz", + "integrity": "sha512-5nd2NVss9TprPRV9r8N05SjQyAE7zDrLejxFLcbJ+BdLxSwnGnk3ws/Iq0smqKZUnPQC0XEvnpF3+zlllUUT2w==", + "requires": { + "@babel/runtime": "^7.11.2", + "classnames": "2.x", + "rc-dropdown": "^3.1.3", + "rc-menu": "^8.6.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.5.0" + } + }, + "rc-textarea": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/rc-textarea/-/rc-textarea-0.3.4.tgz", + "integrity": "sha512-ILUYx831ZukQPv3m7R4RGRtVVWmL1LV4ME03L22mvT56US0DGCJJaRTHs4vmpcSjFHItph5OTmhodY4BOwy81A==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.1", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.7.0" + } + }, + "rc-tooltip": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/rc-tooltip/-/rc-tooltip-5.1.0.tgz", + "integrity": "sha512-pFqD1JZwNIpbdcefB7k5xREoHAWM/k3yQwYF0iminbmDXERgq4rvBfUwIvlCqqZSM7HDr9hYeYr6ZsVNaKtvCQ==", + "requires": { + "@babel/runtime": "^7.11.2", + "rc-trigger": "^5.0.0" + } + }, + "rc-tree": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/rc-tree/-/rc-tree-4.1.5.tgz", + "integrity": "sha512-q2vjcmnBDylGZ9/ZW4F9oZMKMJdbFWC7um+DAQhZG1nqyg1iwoowbBggUDUaUOEryJP+08bpliEAYnzJXbI5xQ==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-motion": "^2.0.1", + "rc-util": "^5.0.0", + "rc-virtual-list": "^3.0.1" + } + }, + "rc-tree-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/rc-tree-select/-/rc-tree-select-4.3.0.tgz", + "integrity": "sha512-EEXB9dKBsJNJuKIU5NERZsaJ71GDGIj5uWLl7A4XiYr2jXM4JICfScvvp3O5jHMDfhqmgpqNc0z90mHkgh3hKg==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "2.x", + "rc-select": "^12.0.0", + "rc-tree": "^4.0.0", + "rc-util": "^5.0.5" + } + }, + "rc-trigger": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/rc-trigger/-/rc-trigger-5.2.3.tgz", + "integrity": "sha512-6Fokao07HUbqKIDkDRFEM0AGZvsvK0Fbp8A/KFgl1ngaqfO1nY037cISCG1Jm5fxImVsXp9awdkP7Vu5cxjjog==", + "requires": { + "@babel/runtime": "^7.11.2", + "classnames": "^2.2.6", + "rc-align": "^4.0.0", + "rc-motion": "^2.0.0", + "rc-util": "^5.5.0" + } + }, + "rc-upload": { + "version": "4.2.0-alpha.0", + "resolved": "https://registry.npmjs.org/rc-upload/-/rc-upload-4.2.0-alpha.0.tgz", + "integrity": "sha512-44mVeg9+FwcHVLheYovApS/Q676/dHglRbb9vEYcgqGoR0poP0ssYZ9mtmKxdgr2g5EJe7nGFljbfnyEmluCqQ==", + "requires": { + "@babel/runtime": "^7.10.1", + "classnames": "^2.2.5", + "rc-util": "^5.2.0" + } + }, + "rc-util": { + "version": "5.9.4", + "resolved": "https://registry.npmjs.org/rc-util/-/rc-util-5.9.4.tgz", + "integrity": "sha512-pzFmYZsKLJ1p+Uv4NqA4aNBaFh8/hOQxOOxA5G4TiyPboa0o/PjminxUCKvoSwVJVW5YgleSM2XPCTpTV6DCsQ==", + "requires": { + "@babel/runtime": "^7.12.5", + "react-is": "^16.12.0", + "shallowequal": "^1.1.0" + } + }, + "rc-virtual-list": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/rc-virtual-list/-/rc-virtual-list-3.2.6.tgz", + "integrity": "sha512-8FiQLDzm3c/tMX0d62SQtKDhLH7zFlSI6pWBAPt+TUntEqd3Lz9zFAmpvTu8gkvUom/HCsDSZs4wfV4wDPWC0Q==", + "requires": { + "classnames": "^2.2.6", + "rc-resize-observer": "^1.0.0", + "rc-util": "^5.0.7" + } + }, + "rcedit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/rcedit/-/rcedit-2.3.0.tgz", + "integrity": "sha512-h1gNEl9Oai1oijwyJ1WYqYSXTStHnOcv1KYljg/8WM4NAg3H1KBK3azIaKkQ1WQl+d7PoJpcBMscPfLXVKgCLQ==", + "dev": true + }, + "react": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.1.tgz", + "integrity": "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "react-app-polyfill": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-2.0.0.tgz", + "integrity": "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==", + "requires": { + "core-js": "^3.6.5", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.7", + "whatwg-fetch": "^3.4.1" + } + }, + "react-dev-utils": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.4.tgz", + "integrity": "sha512-dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A==", + "requires": { + "@babel/code-frame": "7.10.4", + "address": "1.1.2", + "browserslist": "4.14.2", + "chalk": "2.4.2", + "cross-spawn": "7.0.3", + "detect-port-alt": "1.1.6", + "escape-string-regexp": "2.0.0", + "filesize": "6.1.0", + "find-up": "4.1.0", + "fork-ts-checker-webpack-plugin": "4.1.6", + "global-modules": "2.0.0", + "globby": "11.0.1", + "gzip-size": "5.1.1", + "immer": "8.0.1", + "is-root": "2.1.0", + "loader-utils": "2.0.0", + "open": "^7.0.2", + "pkg-up": "3.1.0", + "prompts": "2.4.0", + "react-error-overlay": "^6.0.9", + "recursive-readdir": "2.2.2", + "shell-quote": "1.7.2", + "strip-ansi": "6.0.0", + "text-table": "0.2.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "browserslist": { + "version": "4.14.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz", + "integrity": "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==", + "requires": { + "caniuse-lite": "^1.0.30001125", + "electron-to-chromium": "^1.3.564", + "escalade": "^3.0.2", + "node-releases": "^1.1.61" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + } + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "globby": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==" + }, + "immer": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz", + "integrity": "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==" + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "react-dom": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz", + "integrity": "sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.1" + } + }, + "react-error-overlay": { + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.9.tgz", + "integrity": "sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==" + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "react-perfect-scrollbar": { + "version": "1.5.8", + "resolved": "https://registry.npmjs.org/react-perfect-scrollbar/-/react-perfect-scrollbar-1.5.8.tgz", + "integrity": "sha512-bQ46m70gp/HJtiBOF3gRzBISSZn8FFGNxznTdmTG8AAwpxG1bJCyn7shrgjEvGSQ5FJEafVEiosY+ccER11OSA==", + "requires": { + "perfect-scrollbar": "^1.5.0", + "prop-types": "^15.6.1" + } + }, + "react-redux": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.2.tgz", + "integrity": "sha512-8+CQ1EvIVFkYL/vu6Olo7JFLWop1qRUeb46sGtIMDCSpgwPQq8fPLpirIB0iTqFe9XYEFPHssdX8/UwN6pAkEA==", + "requires": { + "@babel/runtime": "^7.12.1", + "hoist-non-react-statics": "^3.3.2", + "loose-envify": "^1.4.0", + "prop-types": "^15.7.2", + "react-is": "^16.13.1" + } + }, + "react-refresh": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz", + "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==" + }, + "react-resize-detector": { + "version": "6.6.3", + "resolved": "https://registry.npmjs.org/react-resize-detector/-/react-resize-detector-6.6.3.tgz", + "integrity": "sha512-L4T4NGua6FnxA3/GRhmm3t1UQx0Wcu7a5evlD6wvCj06OdI+JdMDhngzhk9fpqTiXmsZfdk4DR+vavFIJyfHfQ==", + "requires": { + "@types/resize-observer-browser": "^0.1.5", + "lodash.debounce": "^4.0.8", + "lodash.throttle": "^4.1.1", + "resize-observer-polyfill": "^1.5.1" + } + }, + "react-router": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.2.0.tgz", + "integrity": "sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==", + "requires": { + "@babel/runtime": "^7.1.2", + "history": "^4.9.0", + "hoist-non-react-statics": "^3.1.0", + "loose-envify": "^1.3.1", + "mini-create-react-context": "^0.4.0", + "path-to-regexp": "^1.7.0", + "prop-types": "^15.6.2", + "react-is": "^16.6.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + } + }, + "react-router-dom": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.2.0.tgz", + "integrity": "sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==", + "requires": { + "@babel/runtime": "^7.1.2", + "history": "^4.9.0", + "loose-envify": "^1.3.1", + "prop-types": "^15.6.2", + "react-router": "5.2.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + } + }, + "react-scripts": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-4.0.3.tgz", + "integrity": "sha512-S5eO4vjUzUisvkIPB7jVsKtuH2HhWcASREYWHAQ1FP5HyCv3xgn+wpILAEWkmy+A+tTNbSZClhxjT3qz6g4L1A==", + "requires": { + "@babel/core": "7.12.3", + "@pmmmwh/react-refresh-webpack-plugin": "0.4.3", + "@svgr/webpack": "5.5.0", + "@typescript-eslint/eslint-plugin": "^4.5.0", + "@typescript-eslint/parser": "^4.5.0", + "babel-eslint": "^10.1.0", + "babel-jest": "^26.6.0", + "babel-loader": "8.1.0", + "babel-plugin-named-asset-import": "^0.3.7", + "babel-preset-react-app": "^10.0.0", + "bfj": "^7.0.2", + "camelcase": "^6.1.0", + "case-sensitive-paths-webpack-plugin": "2.3.0", + "css-loader": "4.3.0", + "dotenv": "8.2.0", + "dotenv-expand": "5.1.0", + "eslint": "^7.11.0", + "eslint-config-react-app": "^6.0.0", + "eslint-plugin-flowtype": "^5.2.0", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-jest": "^24.1.0", + "eslint-plugin-jsx-a11y": "^6.3.1", + "eslint-plugin-react": "^7.21.5", + "eslint-plugin-react-hooks": "^4.2.0", + "eslint-plugin-testing-library": "^3.9.2", + "eslint-webpack-plugin": "^2.5.2", + "file-loader": "6.1.1", + "fs-extra": "^9.0.1", + "fsevents": "^2.1.3", + "html-webpack-plugin": "4.5.0", + "identity-obj-proxy": "3.0.0", + "jest": "26.6.0", + "jest-circus": "26.6.0", + "jest-resolve": "26.6.0", + "jest-watch-typeahead": "0.6.1", + "mini-css-extract-plugin": "0.11.3", + "optimize-css-assets-webpack-plugin": "5.0.4", + "pnp-webpack-plugin": "1.6.4", + "postcss-flexbugs-fixes": "4.2.1", + "postcss-loader": "3.0.0", + "postcss-normalize": "8.0.1", + "postcss-preset-env": "6.7.0", + "postcss-safe-parser": "5.0.2", + "prompts": "2.4.0", + "react-app-polyfill": "^2.0.0", + "react-dev-utils": "^11.0.3", + "react-refresh": "^0.8.3", + "resolve": "1.18.1", + "resolve-url-loader": "^3.1.2", + "sass-loader": "^10.0.5", + "semver": "7.3.2", + "style-loader": "1.3.0", + "terser-webpack-plugin": "4.2.3", + "ts-pnp": "1.2.0", + "url-loader": "4.1.1", + "webpack": "4.44.2", + "webpack-dev-server": "3.11.1", + "webpack-manifest-plugin": "2.2.0", + "workbox-webpack-plugin": "5.1.4" + }, + "dependencies": { + "@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.3.tgz", + "integrity": "sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==", + "requires": { + "ansi-html": "^0.0.7", + "error-stack-parser": "^2.0.6", + "html-entities": "^1.2.1", + "native-url": "^0.2.6", + "schema-utils": "^2.6.5", + "source-map": "^0.7.3" + } + }, + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + }, + "resolve": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.18.1.tgz", + "integrity": "sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==", + "requires": { + "is-core-module": "^2.0.0", + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", + "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" + }, + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + }, + "type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "optional": true, + "peer": true + } + } + }, + "react-table-drag-select": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/react-table-drag-select/-/react-table-drag-select-0.3.1.tgz", + "integrity": "sha512-+aOYkpbQ1YlEpDoMhdD+S+GVY5lG1+YN60YIt6pVRuEkU24G8BgGAy9+R+JXX+Izw3Nv7Jq8+kKoCPhBrKgaiw==", + "requires": { + "clone": "^2.1.1", + "deep-is": "^0.1.3", + "react": "^15.5.4" + }, + "dependencies": { + "react": { + "version": "15.7.0", + "resolved": "https://registry.npmjs.org/react/-/react-15.7.0.tgz", + "integrity": "sha512-5/MMRYmpmM0sMTHGLossnJCrmXQIiJilD6y3YN3TzAwGFj6zdnMtFv6xmi65PHKRV+pehIHpT7oy67Sr6s9AHA==", + "requires": { + "create-react-class": "^15.6.0", + "fbjs": "^0.8.9", + "loose-envify": "^1.1.0", + "object-assign": "^4.1.0", + "prop-types": "^15.5.10" + } + } + } + }, + "react-transition-group": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz", + "integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==", + "requires": { + "dom-helpers": "^3.4.0", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2", + "react-lifecycles-compat": "^3.0.4" + } + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + } + } + }, + "read-pkg-up": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", + "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", + "requires": { + "find-up": "^2.0.0", + "read-pkg": "^2.0.0" + }, + "dependencies": { + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "requires": { + "locate-path": "^2.0.0" + } + }, + "load-json-file": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", + "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "strip-bom": "^3.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "requires": { + "error-ex": "^1.2.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + }, + "path-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", + "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", + "requires": { + "pify": "^2.0.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + }, + "read-pkg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", + "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", + "requires": { + "load-json-file": "^2.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^2.0.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + } + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + } + } + }, + "readdirp": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", + "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "optional": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "recharts": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.0.8.tgz", + "integrity": "sha512-38Pc1Z3UaNdi+zv1O5CQs1vCv2ZHo8sZ2c8UaTFydNKNO07uNVc3411TYRDOqMj0SZCwhoEW7uTHNhWBTkPmaQ==", + "requires": { + "@types/d3-scale": "^3.0.0", + "@types/d3-shape": "^2.0.0", + "classnames": "^2.2.5", + "d3-interpolate": "^2.0.1", + "d3-scale": "^3.2.3", + "d3-shape": "^2.0.0", + "eventemitter3": "^4.0.1", + "lodash": "^4.17.19", + "react-is": "16.10.2", + "react-resize-detector": "^6.6.0", + "react-smooth": "^1.0.6", + "recharts-scale": "^0.4.2", + "reduce-css-calc": "^2.1.7" + }, + "dependencies": { + "react-is": { + "version": "16.10.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.10.2.tgz", + "integrity": "sha512-INBT1QEgtcCCgvccr5/86CfD71fw9EPmDxgiJX4I2Ddr6ZsV6iFXsuby+qWJPtmNuMY0zByTsG4468P7nHuNWA==" + }, + "react-smooth": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-1.0.6.tgz", + "integrity": "sha512-B2vL4trGpNSMSOzFiAul9kFAsxTukL9Wyy9EXtkQy3GJr6sZqW9e1nShdVOJ3hRYamPZ94O17r3Q0bjSw3UYtg==", + "requires": { + "lodash": "~4.17.4", + "prop-types": "^15.6.0", + "raf": "^3.4.0", + "react-transition-group": "^2.5.0" + } + } + } + }, + "recharts-scale": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/recharts-scale/-/recharts-scale-0.4.4.tgz", + "integrity": "sha512-e7MCnuD1+gtY9N7TYxzB+QXvi4s30kvNqVbI1p5m4rf47GusEQaEHxi8zvlZkdOOZ90UhpGHcnkYlyYkUJ2JoQ==", + "requires": { + "decimal.js-light": "^2.4.1" + } + }, + "recursive-readdir": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", + "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", + "requires": { + "minimatch": "3.0.4" + } + }, + "redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", + "dev": true, + "requires": { + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + } + }, + "reduce-css-calc": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz", + "integrity": "sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==", + "requires": { + "css-unit-converter": "^1.1.1", + "postcss-value-parser": "^3.3.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + } + } + }, + "redux": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.0.5.tgz", + "integrity": "sha512-VSz1uMAH24DM6MF72vcojpYPtrTUu3ByVWfPL1nPfVRb5mZVTve5GnNCUV53QM/BZ66xfWrm0CTWoM+Xlz8V1w==", + "requires": { + "loose-envify": "^1.4.0", + "symbol-observable": "^1.2.0" + } + }, + "redux-thunk": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.3.0.tgz", + "integrity": "sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw==" + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "regenerate-unicode-properties": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz", + "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==", + "requires": { + "regenerate": "^1.4.0" + } + }, + "regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" + }, + "regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" + }, + "regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "regexpp": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", + "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==" + }, + "regexpu-core": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz", + "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==", + "requires": { + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" + } + }, + "regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==" + }, + "regjsparser": { + "version": "0.6.7", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.7.tgz", + "integrity": "sha512-ib77G0uxsA2ovgiYbCVGx4Pv3PSttAx2vIwidqQzbL2U5S4Q+j00HdSAneSBuyVcMvEnTXMjiGgB+DlXozVhpQ==", + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + } + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + }, + "renderkid": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.5.tgz", + "integrity": "sha512-ccqoLg+HLOHq1vdfYNm4TBeaCDIi1FLt3wGojTDSvdewUv65oTmI3cnT2E4hRjl1gzKZIPK+KZrXzlUYKnR+vQ==", + "requires": { + "css-select": "^2.0.2", + "dom-converter": "^0.2", + "htmlparser2": "^3.10.1", + "lodash": "^4.17.20", + "strip-ansi": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "repeat-element": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + }, + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "dev": true, + "requires": { + "is-finite": "^1.0.0" + } + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + } + } + }, + "request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "requires": { + "lodash": "^4.17.19" + } + }, + "request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", + "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", + "requires": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "dependencies": { + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + } + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + }, + "reselect": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.0.0.tgz", + "integrity": "sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA==" + }, + "resize-observer-polyfill": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", + "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "resolve-alpn": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.0.0.tgz", + "integrity": "sha512-rTuiIEqFmGxne4IovivKSDzld2lWW9QCjqv80SYjPgf+gS35eaCAjaP54CCwGAwBtnCsvNLYtqxe1Nw+i6JEmA==", + "dev": true + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "requires": { + "resolve-from": "^5.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + } + }, + "resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "dev": true, + "requires": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "dependencies": { + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + }, + "resolve-package": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-package/-/resolve-package-1.0.1.tgz", + "integrity": "sha1-aG9wsYi9fWdfW7xCgszaBgq7nSc=", + "dev": true, + "requires": { + "get-installed-path": "^2.0.3" + } + }, + "resolve-pathname": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", + "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" + }, + "resolve-url-loader": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.2.tgz", + "integrity": "sha512-QEb4A76c8Mi7I3xNKXlRKQSlLBwjUV/ULFMP+G7n3/7tJZ8MG5wsZ3ucxP1Jz8Vevn6fnJsxDx9cIls+utGzPQ==", + "requires": { + "adjust-sourcemap-loader": "3.0.0", + "camelcase": "5.3.1", + "compose-function": "3.0.3", + "convert-source-map": "1.7.0", + "es6-iterator": "2.0.3", + "loader-utils": "1.2.3", + "postcss": "7.0.21", + "rework": "1.0.1", + "rework-visit": "1.0.0", + "source-map": "0.6.1" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^2.0.0", + "json5": "^1.0.1" + } + }, + "postcss": { + "version": "7.0.21", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.21.tgz", + "integrity": "sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ==", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "dev": true, + "requires": { + "lowercase-keys": "^1.0.0" + } + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" + }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + }, + "rework": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz", + "integrity": "sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=", + "requires": { + "convert-source-map": "^0.3.3", + "css": "^2.0.0" + }, + "dependencies": { + "convert-source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz", + "integrity": "sha1-8dgClQr33SYxof6+BZZVDIarMZA=" + } + } + }, + "rework-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", + "integrity": "sha1-mUWygD8hni96ygCtuLyfZA+ELJo=" + }, + "rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=" + }, + "rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=" + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "roarr": { + "version": "2.15.4", + "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz", + "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==", + "dev": true, + "optional": true, + "requires": { + "boolean": "^3.0.1", + "detect-node": "^2.0.4", + "globalthis": "^1.0.1", + "json-stringify-safe": "^5.0.1", + "semver-compare": "^1.0.0", + "sprintf-js": "^1.1.2" + } + }, + "rollup": { + "version": "1.32.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-1.32.1.tgz", + "integrity": "sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==", + "requires": { + "@types/estree": "*", + "@types/node": "*", + "acorn": "^7.1.0" + } + }, + "rollup-plugin-babel": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz", + "integrity": "sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "rollup-pluginutils": "^2.8.1" + } + }, + "rollup-plugin-terser": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-5.3.1.tgz", + "integrity": "sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==", + "requires": { + "@babel/code-frame": "^7.5.5", + "jest-worker": "^24.9.0", + "rollup-pluginutils": "^2.8.2", + "serialize-javascript": "^4.0.0", + "terser": "^4.6.2" + }, + "dependencies": { + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + } + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "requires": { + "randombytes": "^2.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "rollup-pluginutils": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", + "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", + "requires": { + "estree-walker": "^0.6.1" + }, + "dependencies": { + "estree-walker": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", + "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==" + } + } + }, + "rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==" + }, + "run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "requires": { + "aproba": "^1.1.1" + } + }, + "rxjs": { + "version": "6.6.6", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.6.tgz", + "integrity": "sha512-/oTwee4N4iWzAMAL9xdGKjkEHmIwupR3oXbQjCKywF1BeFohswF3vZdogbmEF6pZkOsXTzWkrZszrWpQTByYVg==", + "dev": true, + "requires": { + "tslib": "^1.9.0" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "requires": { + "remove-trailing-separator": "^1.0.1" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "sanitize.css": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-10.0.0.tgz", + "integrity": "sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==" + }, + "sass-loader": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-10.1.1.tgz", + "integrity": "sha512-W6gVDXAd5hR/WHsPicvZdjAWHBcEJ44UahgxcIE196fW2ong0ZHMPO1kZuI5q0VlvMQZh32gpv69PLWQm70qrw==", + "requires": { + "klona": "^2.0.4", + "loader-utils": "^2.0.0", + "neo-async": "^2.6.2", + "schema-utils": "^3.0.0", + "semver": "^7.3.2" + }, + "dependencies": { + "schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "requires": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "requires": { + "xmlchars": "^2.2.0" + } + }, + "scheduler": { + "version": "0.20.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz", + "integrity": "sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "scroll-into-view-if-needed": { + "version": "2.2.27", + "resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.27.tgz", + "integrity": "sha512-BKiRstRm4u1bZvw+Wu9TxXhyMZ9fskb/9fbuSGuRzwHhlbKlDetL4dBdYaPfQbEFTttQmpkNtFH7sQpk4rZf9w==", + "requires": { + "compute-scroll-into-view": "^1.0.16" + } + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + }, + "selfsigned": { + "version": "1.10.8", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.8.tgz", + "integrity": "sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w==", + "requires": { + "node-forge": "^0.10.0" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=", + "dev": true, + "optional": true + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + } + } + }, + "serialize-error": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz", + "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==", + "dev": true, + "optional": true, + "requires": { + "type-fest": "^0.13.1" + }, + "dependencies": { + "type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", + "dev": true, + "optional": true + } + } + }, + "serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + } + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shallowequal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", + "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" + }, + "shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "optional": true + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + } + } + }, + "single-line-log": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/single-line-log/-/single-line-log-1.1.2.tgz", + "integrity": "sha1-wvg/Jzo+GhbtsJlWYdoO1e8DM2Q=", + "dev": true, + "requires": { + "string-width": "^1.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "sockjs": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz", + "integrity": "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==", + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + }, + "dependencies": { + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + } + } + }, + "sockjs-client": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.0.tgz", + "integrity": "sha512-8Dt3BDi4FYNrCFGTL/HtwVzkARrENdwOUf1ZoW/9p3M8lZdFT35jVdrHza+qgxuG9H3/shR4cuX/X9umUrjP8Q==", + "requires": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.4.7" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "requires": { + "is-plain-obj": "^1.0.0" + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==" + }, + "sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + }, + "spawn-command": { + "version": "0.0.2-1", + "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz", + "integrity": "sha1-YvXpRmmBwbeW3Fkpk34RycaSG9A=", + "dev": true + }, + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz", + "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==" + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "speedometer": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/speedometer/-/speedometer-0.1.4.tgz", + "integrity": "sha1-mHbb0qFp0xFUAtSObqYynIgWpQ0=", + "dev": true + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz", + "integrity": "sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==", + "dev": true, + "optional": true + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "requires": { + "minipass": "^3.1.1" + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + }, + "stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==", + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + } + } + }, + "stackframe": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz", + "integrity": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==" + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "stream-buffers": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz", + "integrity": "sha1-kdX1Ew0c75bc+n9yaUUYh0HQnuQ=", + "dev": true, + "optional": true + }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "string-convert": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/string-convert/-/string-convert-0.2.1.tgz", + "integrity": "sha1-aYLMMEn7tM2F+LJFaLnZvznu/5c=" + }, + "string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + } + }, + "string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + }, + "string-width": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz", + "integrity": "sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + } + }, + "string.prototype.matchall": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.4.tgz", + "integrity": "sha512-pknFIWVachNcyqRfaQSeu/FUfpvJTe4uskUSZ9Wc1RijsPuzbZ8TyYT8WCNnntCjUEqQ3vUHMAfVj2+wLAisPQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2", + "has-symbols": "^1.0.1", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.3.1", + "side-channel": "^1.0.4" + } + }, + "string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "requires": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + }, + "strip-comments": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz", + "integrity": "sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==", + "requires": { + "babel-extract-comments": "^1.0.0", + "babel-plugin-transform-object-rest-spread": "^6.26.0" + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + }, + "strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "dev": true, + "requires": { + "get-stdin": "^4.0.1" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + }, + "strip-outer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", + "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, + "style-loader": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz", + "integrity": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==", + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.0" + } + }, + "stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "sudo-prompt": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-9.2.1.tgz", + "integrity": "sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==", + "dev": true + }, + "sumchecker": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz", + "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==", + "dev": true, + "requires": { + "debug": "^4.1.0" + } + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-hyperlinks": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz", + "integrity": "sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==", + "requires": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + }, + "svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "symbol-observable": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", + "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==" + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + }, + "table": { + "version": "6.0.7", + "resolved": "https://registry.npmjs.org/table/-/table-6.0.7.tgz", + "integrity": "sha512-rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g==", + "requires": { + "ajv": "^7.0.2", + "lodash": "^4.17.20", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.0" + }, + "dependencies": { + "ajv": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-7.2.1.tgz", + "integrity": "sha512-+nu0HDv7kNSOua9apAVc979qd932rrZeb3WOvoiD31A/p1mIE5/9bN2027pE2rOPYEdS3UHzsvof4hY+lM9/WQ==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + }, + "tar": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz", + "integrity": "sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA==", + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + } + }, + "temp": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz", + "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==", + "dev": true, + "optional": true, + "requires": { + "mkdirp": "^0.5.1", + "rimraf": "~2.6.2" + }, + "dependencies": { + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, + "optional": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=" + }, + "tempy": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz", + "integrity": "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==", + "requires": { + "temp-dir": "^1.0.0", + "type-fest": "^0.3.1", + "unique-string": "^1.0.0" + }, + "dependencies": { + "type-fest": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", + "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==" + } + } + }, + "terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "requires": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + } + }, + "terser": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", + "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + } + }, + "terser-webpack-plugin": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz", + "integrity": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==", + "requires": { + "cacache": "^15.0.5", + "find-cache-dir": "^3.3.1", + "jest-worker": "^26.5.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1", + "terser": "^5.3.4", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", + "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "requires": { + "semver": "^6.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + }, + "dependencies": { + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + } + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "requires": { + "find-up": "^4.0.0" + } + }, + "schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "requires": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "terser": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.6.1.tgz", + "integrity": "sha512-yv9YLFQQ+3ZqgWCUk+pvNJwgUTdlIxUk1WTN+RnaFJe2L7ipG2csPT0ra2XRm7Cs8cxN7QXmK1rFzEwYEQkzXw==", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.19" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + } + } + } + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + }, + "throat": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==" + }, + "throttleit": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-0.0.2.tgz", + "integrity": "sha1-z+34jmDADdlpe2H90qg0OptoDq8=", + "dev": true + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "through2": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.2.3.tgz", + "integrity": "sha1-6zKE2k6jEbbMis42U3SKUqvyWj8=", + "dev": true, + "requires": { + "readable-stream": "~1.1.9", + "xtend": "~2.1.1" + }, + "dependencies": { + "object-keys": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz", + "integrity": "sha1-KKaq50KN0sOpLz2V8hM13SBOAzY=", + "dev": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "dev": true + }, + "xtend": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz", + "integrity": "sha1-bv7MKk2tjmlixJAbM3znuoe10os=", + "dev": true, + "requires": { + "object-keys": "~0.4.0" + } + } + } + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "requires": { + "setimmediate": "^1.0.4" + } + }, + "timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" + }, + "tiny-each-async": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/tiny-each-async/-/tiny-each-async-2.0.3.tgz", + "integrity": "sha1-jru/1tYpXxNwAD+7NxYq/loKUdE=", + "dev": true, + "optional": true + }, + "tiny-invariant": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz", + "integrity": "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" + }, + "tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "tmp-promise": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-3.0.2.tgz", + "integrity": "sha512-OyCLAKU1HzBjL6Ev3gxUeraJNlbNingmi8IrHHEsYH8LTmEuhvYfqvhn2F/je+mjf4N58UmZ96OMEy1JanSCpA==", + "dev": true, + "optional": true, + "requires": { + "tmp": "^0.2.0" + }, + "dependencies": { + "tmp": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", + "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", + "dev": true, + "optional": true, + "requires": { + "rimraf": "^3.0.0" + } + } + } + }, + "tmpl": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", + "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=" + }, + "tn1150": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/tn1150/-/tn1150-0.1.0.tgz", + "integrity": "sha1-ZzUD0k1WuH3ouMd/7j/AhT1ZoY0=", + "dev": true, + "optional": true, + "requires": { + "unorm": "^1.4.1" + } + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-readable-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", + "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", + "dev": true + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + }, + "toggle-selection": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", + "integrity": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=" + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" + }, + "tough-cookie": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", + "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", + "requires": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.1.2" + }, + "dependencies": { + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + } + }, + "tr46": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz", + "integrity": "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==", + "requires": { + "punycode": "^2.1.1" + } + }, + "tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "dev": true + }, + "trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", + "dev": true + }, + "trim-repeated": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", + "integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.2" + } + }, + "tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + }, + "ts-pnp": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", + "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==" + }, + "tsconfig-paths": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz", + "integrity": "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==", + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + } + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "requires": { + "tslib": "^1.8.1" + } + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" + }, + "tunnel": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", + "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==", + "dev": true, + "optional": true + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + }, + "type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "typescript": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.2.3.tgz", + "integrity": "sha512-qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw==" + }, + "ua-parser-js": { + "version": "0.7.24", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.24.tgz", + "integrity": "sha512-yo+miGzQx5gakzVK3QFfN0/L9uVhosXBBO7qmnk7c2iw1IhL212wfA3zbnI54B0obGwC/5NWub/iT9sReMx+Fw==" + }, + "unbox-primitive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.0.tgz", + "integrity": "sha512-P/51NX+JXyxK/aigg1/ZgyccdAxm5K1+n8+tvqSntjOivPt19gvm1VC49RWYetsiub8WViUchdxl/KWHHB0kzA==", + "requires": { + "function-bind": "^1.1.1", + "has-bigints": "^1.0.0", + "has-symbols": "^1.0.0", + "which-boxed-primitive": "^1.0.1" + } + }, + "unicode-canonical-property-names-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", + "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==" + }, + "unicode-match-property-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", + "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", + "requires": { + "unicode-canonical-property-names-ecmascript": "^1.0.4", + "unicode-property-aliases-ecmascript": "^1.0.4" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz", + "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==" + }, + "unicode-property-aliases-ecmascript": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz", + "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==" + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + } + } + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=" + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "unique-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", + "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", + "requires": { + "crypto-random-string": "^1.0.0" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + }, + "unorm": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/unorm/-/unorm-1.6.0.tgz", + "integrity": "sha512-b2/KCUlYZUeA7JFUuRJZPUtr4gZvBh7tavtv4fvk4+KV9pfGiR6CQAQAWl49ZpR3ts2dk4FYkP7EIgDJoiOLDA==", + "dev": true, + "optional": true + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + } + } + }, + "url-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "requires": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "requires": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "url-parse": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.1.tgz", + "integrity": "sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q==", + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "dev": true, + "requires": { + "prepend-http": "^2.0.0" + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" + }, + "username": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/username/-/username-5.1.0.tgz", + "integrity": "sha512-PCKbdWw85JsYMvmCv5GH3kXmM66rCd9m1hBEDutPNv94b/pqCMT4NtcKyeWYvLFiE8b+ha1Jdl8XAaUdPn5QTg==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "mem": "^4.3.0" + } + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "requires": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "optional": true + }, + "v8-compile-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", + "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + }, + "v8-to-istanbul": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.0.tgz", + "integrity": "sha512-uXUVqNUCLa0AH1vuVxzi+MI4RfxEOKt9pBgKwHbgH7st8Kv2P1m+jvWNnektzBh5QShF3ODgKmUFCf38LnVz1g==", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + } + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "value-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", + "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + }, + "vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "requires": { + "browser-process-hrtime": "^1.0.0" + } + }, + "w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "requires": { + "xml-name-validator": "^3.0.0" + } + }, + "wait-on": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-5.3.0.tgz", + "integrity": "sha512-DwrHrnTK+/0QFaB9a8Ol5Lna3k7WvUR4jzSKmz0YaPBpuN2sACyiPVKVfj6ejnjcajAcvn3wlbTyMIn9AZouOg==", + "dev": true, + "requires": { + "axios": "^0.21.1", + "joi": "^17.3.0", + "lodash": "^4.17.21", + "minimist": "^1.2.5", + "rxjs": "^6.6.3" + } + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", + "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "requires": { + "makeerror": "1.0.x" + } + }, + "warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "requires": { + "loose-envify": "^1.0.0" + } + }, + "watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + } + }, + "watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "optional": true, + "requires": { + "chokidar": "^2.1.8" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "optional": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "optional": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "optional": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "optional": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "optional": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "optional": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "optional": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "optional": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "optional": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "optional": true + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "optional": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "optional": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "optional": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "optional": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "optional": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", + "dev": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==" + }, + "webpack": { + "version": "4.44.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz", + "integrity": "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.3.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "requires": { + "yallist": "^3.0.2" + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "requires": { + "randombytes": "^2.1.0" + } + }, + "ssri": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", + "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", + "requires": { + "figgy-pudding": "^3.5.1" + } + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==" + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + } + }, + "webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "dependencies": { + "mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==" + } + } + }, + "webpack-dev-server": { + "version": "3.11.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.1.tgz", + "integrity": "sha512-u4R3mRzZkbxQVa+MBWi2uVpB5W59H3ekZAJsQlKUTdl7Elcah2EhygTPLmeFXybQkf9i2+L0kn7ik9SnXa6ihQ==", + "requires": { + "ansi-html": "0.0.7", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==" + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "requires": { + "find-up": "^3.0.0" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "requires": { + "resolve-from": "^3.0.0" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "ws": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", + "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", + "requires": { + "async-limiter": "~1.0.0" + } + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==" + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + } + } + }, + "webpack-manifest-plugin": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz", + "integrity": "sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==", + "requires": { + "fs-extra": "^7.0.0", + "lodash": ">=3.5 <5", + "object.entries": "^1.1.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + } + }, + "webpack-merge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.2.2.tgz", + "integrity": "sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==", + "dev": true, + "requires": { + "lodash": "^4.17.15" + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "requires": { + "iconv-lite": "0.4.24" + } + }, + "whatwg-fetch": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", + "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + }, + "whatwg-url": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.4.0.tgz", + "integrity": "sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^2.0.2", + "webidl-conversions": "^6.1.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "requires": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + }, + "wide-align": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", + "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", + "dev": true, + "requires": { + "string-width": "^1.0.2 || 2" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" + }, + "workbox-background-sync": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-5.1.4.tgz", + "integrity": "sha512-AH6x5pYq4vwQvfRDWH+vfOePfPIYQ00nCEB7dJRU1e0n9+9HMRyvI63FlDvtFT2AvXVRsXvUt7DNMEToyJLpSA==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-broadcast-update": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-5.1.4.tgz", + "integrity": "sha512-HTyTWkqXvHRuqY73XrwvXPud/FN6x3ROzkfFPsRjtw/kGZuZkPzfeH531qdUGfhtwjmtO/ZzXcWErqVzJNdXaA==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-build": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-5.1.4.tgz", + "integrity": "sha512-xUcZn6SYU8usjOlfLb9Y2/f86Gdo+fy1fXgH8tJHjxgpo53VVsqRX0lUDw8/JuyzNmXuo8vXX14pXX2oIm9Bow==", + "requires": { + "@babel/core": "^7.8.4", + "@babel/preset-env": "^7.8.4", + "@babel/runtime": "^7.8.4", + "@hapi/joi": "^15.1.0", + "@rollup/plugin-node-resolve": "^7.1.1", + "@rollup/plugin-replace": "^2.3.1", + "@surma/rollup-plugin-off-main-thread": "^1.1.1", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^8.1.0", + "glob": "^7.1.6", + "lodash.template": "^4.5.0", + "pretty-bytes": "^5.3.0", + "rollup": "^1.31.1", + "rollup-plugin-babel": "^4.3.3", + "rollup-plugin-terser": "^5.3.1", + "source-map": "^0.7.3", + "source-map-url": "^0.4.0", + "stringify-object": "^3.3.0", + "strip-comments": "^1.0.2", + "tempy": "^0.3.0", + "upath": "^1.2.0", + "workbox-background-sync": "^5.1.4", + "workbox-broadcast-update": "^5.1.4", + "workbox-cacheable-response": "^5.1.4", + "workbox-core": "^5.1.4", + "workbox-expiration": "^5.1.4", + "workbox-google-analytics": "^5.1.4", + "workbox-navigation-preload": "^5.1.4", + "workbox-precaching": "^5.1.4", + "workbox-range-requests": "^5.1.4", + "workbox-routing": "^5.1.4", + "workbox-strategies": "^5.1.4", + "workbox-streams": "^5.1.4", + "workbox-sw": "^5.1.4", + "workbox-window": "^5.1.4" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + }, + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + } + } + }, + "workbox-cacheable-response": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-5.1.4.tgz", + "integrity": "sha512-0bfvMZs0Of1S5cdswfQK0BXt6ulU5kVD4lwer2CeI+03czHprXR3V4Y8lPTooamn7eHP8Iywi5QjyAMjw0qauA==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-core": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-5.1.4.tgz", + "integrity": "sha512-+4iRQan/1D8I81nR2L5vcbaaFskZC2CL17TLbvWVzQ4qiF/ytOGF6XeV54pVxAvKUtkLANhk8TyIUMtiMw2oDg==" + }, + "workbox-expiration": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-5.1.4.tgz", + "integrity": "sha512-oDO/5iC65h2Eq7jctAv858W2+CeRW5e0jZBMNRXpzp0ZPvuT6GblUiHnAsC5W5lANs1QS9atVOm4ifrBiYY7AQ==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-google-analytics": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-5.1.4.tgz", + "integrity": "sha512-0IFhKoEVrreHpKgcOoddV+oIaVXBFKXUzJVBI+nb0bxmcwYuZMdteBTp8AEDJacENtc9xbR0wa9RDCnYsCDLjA==", + "requires": { + "workbox-background-sync": "^5.1.4", + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4", + "workbox-strategies": "^5.1.4" + } + }, + "workbox-navigation-preload": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-5.1.4.tgz", + "integrity": "sha512-Wf03osvK0wTflAfKXba//QmWC5BIaIZARU03JIhAEO2wSB2BDROWI8Q/zmianf54kdV7e1eLaIEZhth4K4MyfQ==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-precaching": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-5.1.4.tgz", + "integrity": "sha512-gCIFrBXmVQLFwvAzuGLCmkUYGVhBb7D1k/IL7pUJUO5xacjLcFUaLnnsoVepBGAiKw34HU1y/YuqvTKim9qAZA==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-range-requests": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-5.1.4.tgz", + "integrity": "sha512-1HSujLjgTeoxHrMR2muDW2dKdxqCGMc1KbeyGcmjZZAizJTFwu7CWLDmLv6O1ceWYrhfuLFJO+umYMddk2XMhw==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-routing": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-5.1.4.tgz", + "integrity": "sha512-8ljknRfqE1vEQtnMtzfksL+UXO822jJlHTIR7+BtJuxQ17+WPZfsHqvk1ynR/v0EHik4x2+826Hkwpgh4GKDCw==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-strategies": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-5.1.4.tgz", + "integrity": "sha512-VVS57LpaJTdjW3RgZvPwX0NlhNmscR7OQ9bP+N/34cYMDzXLyA6kqWffP6QKXSkca1OFo/v6v7hW7zrrguo6EA==", + "requires": { + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4" + } + }, + "workbox-streams": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-5.1.4.tgz", + "integrity": "sha512-xU8yuF1hI/XcVhJUAfbQLa1guQUhdLMPQJkdT0kn6HP5CwiPOGiXnSFq80rAG4b1kJUChQQIGPrq439FQUNVrw==", + "requires": { + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4" + } + }, + "workbox-sw": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-5.1.4.tgz", + "integrity": "sha512-9xKnKw95aXwSNc8kk8gki4HU0g0W6KXu+xks7wFuC7h0sembFnTrKtckqZxbSod41TDaGh+gWUA5IRXrL0ECRA==" + }, + "workbox-webpack-plugin": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-5.1.4.tgz", + "integrity": "sha512-PZafF4HpugZndqISi3rZ4ZK4A4DxO8rAqt2FwRptgsDx7NF8TVKP86/huHquUsRjMGQllsNdn4FNl8CD/UvKmQ==", + "requires": { + "@babel/runtime": "^7.5.5", + "fast-json-stable-stringify": "^2.0.0", + "source-map-url": "^0.4.0", + "upath": "^1.1.2", + "webpack-sources": "^1.3.0", + "workbox-build": "^5.1.4" + } + }, + "workbox-window": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-5.1.4.tgz", + "integrity": "sha512-vXQtgTeMCUq/4pBWMfQX8Ee7N2wVC4Q7XYFqLnfbXJ2hqew/cU1uMTD2KqGEgEpE4/30luxIxgE+LkIa8glBYw==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "requires": { + "errno": "~0.1.7" + } + }, + "worker-rpc": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz", + "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==", + "requires": { + "microevent.ts": "~0.1.1" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "ws": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.4.tgz", + "integrity": "sha512-Qm8k8ojNQIMx7S+Zp8u/uHOx7Qazv3Yv4q68MiWWWOJhiwG5W3x7iqmRtJo8xxrciZUY4vRxUTJCKuRnF28ZZw==", + "requires": {} + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + }, + "xmlbuilder": { + "version": "9.0.7", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz", + "integrity": "sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=", + "dev": true + }, + "xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + }, + "xmldom": { + "version": "0.1.31", + "resolved": "https://registry.npmjs.org/xmldom/-/xmldom-0.1.31.tgz", + "integrity": "sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ==", + "dev": true + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + }, + "y18n": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.5.tgz", + "integrity": "sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.7", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.7.tgz", + "integrity": "sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw==", + "dev": true + }, + "yarn-or-npm": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/yarn-or-npm/-/yarn-or-npm-3.0.1.tgz", + "integrity": "sha512-fTiQP6WbDAh5QZAVdbMQkecZoahnbOjClTQhzv74WX5h2Uaidj1isf9FDes11TKtsZ0/ZVfZsqZ+O3x6aLERHQ==", + "dev": true, + "requires": { + "cross-spawn": "^6.0.5", + "pkg-dir": "^4.2.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", + "dev": true, + "requires": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..f6a0621 --- /dev/null +++ b/package.json @@ -0,0 +1,112 @@ +{ + "name": "speedy-tuner", + "description": "Speeduino Tuning Software", + "version": "0.1.0", + "private": true, + "license": "MIT", + "homepage": "./", + "main": "src/electron.js", + "scripts": { + "start": "craco start", + "dev": "concurrently \"npm start\" \"wait-on http://localhost:3000 && electron .\"", + "web:build": "craco build", + "electron:compile": "tsc -p tsconfig.custom.json", + "electron:start": "npm run electron:compile && electron-forge start", + "electron:package": "npm run web:build && npm run electron:compile && electron-forge package", + "electron:make": "npm run web:build && npm run electron:compile && electron-forge make", + "ini:compile": "tsc -p tsconfig.custom.json", + "ini:start": "npm run ini:compile && node src/parser/ini.js", + "ini:watch": "npx onchange src/parser/ini.ts -- npm run ini:start", + "test": "craco test", + "lint": "eslint src/", + "lint-fix": "eslint --fix src/", + "eject": "react-scripts eject" + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + }, + "dependencies": { + "@reduxjs/toolkit": "^1.5.0", + "antd": "^4.14.0", + "electron-squirrel-startup": "^1.0.0", + "js-yaml": "^4.0.0 ", + "mlg-converter": "^0.1.5", + "parsimmon": "^1.16.0", + "react": "^17.0.1", + "react-dom": "^17.0.1", + "react-perfect-scrollbar": "^1.5.8", + "react-redux": "^7.2.2", + "react-router-dom": "^5.2.0", + "react-scripts": "^4.0.3", + "react-table-drag-select": "^0.3.1", + "recharts": "^2.0.8" + }, + "devDependencies": { + "@craco/craco": "^6.1.1", + "@electron-forge/cli": "^6.0.0-beta.54", + "@electron-forge/maker-deb": "^6.0.0-beta.54", + "@electron-forge/maker-dmg": "^6.0.0-beta.54", + "@electron-forge/maker-rpm": "^6.0.0-beta.54", + "@electron-forge/maker-squirrel": "^6.0.0-beta.54", + "@electron-forge/maker-zip": "^6.0.0-beta.54", + "@types/js-yaml": "^4.0.0", + "@types/node": "^14.14.35", + "@types/parsimmon": "^1.10.6", + "@types/react": "^17.0.3", + "@types/react-dom": "^17.0.2", + "@types/react-redux": "^7.1.16", + "@types/react-router-dom": "^5.1.7", + "concurrently": "^6.0.0", + "electron": "^12.0.1", + "eslint": "^7.22.0", + "eslint-config-airbnb": "^18.2.1", + "eslint-config-airbnb-base": "^14.2.1", + "eslint-config-prettier": "^8.1.0", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-jsx-a11y": "^6.4.1", + "eslint-plugin-prettier": "^3.3.1", + "less-loader": "^6.1.0", + "prettier": "^2.2.1", + "typescript": "^4.1.5", + "wait-on": "^5.3.0" + }, + "config": { + "forge": { + "packagerConfig": { + "name": "SpeedyTuner", + "icon": "./public/icons/icon" + }, + "makers": [ + { + "name": "@electron-forge/maker-squirrel", + "config": { + "name": "SpeedyTuner" + } + }, + { + "name": "@electron-forge/maker-zip", + "platforms": [ + "darwin" + ] + }, + { + "name": "@electron-forge/maker-deb", + "config": {} + }, + { + "name": "@electron-forge/maker-rpm", + "config": {} + } + ] + } + } +} diff --git a/public/icons/icon.icns b/public/icons/icon.icns new file mode 100644 index 0000000..a643556 Binary files /dev/null and b/public/icons/icon.icns differ diff --git a/public/icons/icon.ico b/public/icons/icon.ico new file mode 100644 index 0000000..6c2a079 Binary files /dev/null and b/public/icons/icon.ico differ diff --git a/public/icons/icon.png b/public/icons/icon.png new file mode 100644 index 0000000..caff0a6 Binary files /dev/null and b/public/icons/icon.png differ diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..c088eeb --- /dev/null +++ b/public/index.html @@ -0,0 +1,17 @@ + + + + + + + + + + + SpeedyTuner + + + +
+ + diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 0000000..aca0620 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,20 @@ +{ + "short_name": "SpeedyTuner", + "name": "Speeduino Tuning Software", + "icons": [ + { + "src": "/icons/icon.ico", + "type": "image/x-icon", + "sizes": "256x256" + }, + { + "src": "/icons/icon.png", + "type": "image/png", + "sizes": "512x512" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#222629", + "background_color": "#222629" +} diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..b21f088 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: / diff --git a/public/tunes/202012.ini b/public/tunes/202012.ini new file mode 100644 index 0000000..a8f1718 --- /dev/null +++ b/public/tunes/202012.ini @@ -0,0 +1,5027 @@ +;------------------------------------------------------------------------------- +#unset CAN_COMMANDS +#unset enablehardware_test + +[MegaTune] + MTversion = 2.25 + + queryCommand = "Q" + signature = "speeduino 202012" + versionInfo = "S" ;This info is what is displayed to user + +[TunerStudio] + iniSpecVersion = 3.64 + +;------------------------------------------------------------------------------- + +[SettingGroups] + ; the referenceName will over-ride previous, so if you are creating a + ; settingGroup with a reference name of lambdaSensor, it will replace the + ; setting group defined in the settingGroups.xml of the TunerStudio config + ; folder. If is is an undefined referenceName, it will be added. + ; keyword = referenceName, DisplayName + + ;settingGroup = boostUnits, "Boost table units" + ;settingOption = DEFAULT, "kPa" + ;settingOption = BOOSTPSI, "PSI" + settingGroup = enablehardware_test, "Enable Hardware Test Page" + + settingGroup = resetcontrol_group, "Reset Control Features" + settingOption = resetcontrol_standard, "Basic Options Only" + settingOption = resetcontrol_adv, "Advanced Features (16u2 Firmware Update Required)" + +[PcVariables] + ; valid types: boolean, double, int, list + ; + ; no offset as they are local variables. + ; entry format the same as Constants, except there is no offset. + ; arrays are not yet supported. + ; name = class, type, shape, units, scale, translate, lo, hi, digits + ; name = type, min, max; + ; + ; type List: value will be index. + tsCanId = bits, U08, [0:3], "CAN ID 0", "CAN ID 1", "CAN ID 2", "CAN ID 3", "CAN ID 4", "CAN ID 5", "CAN ID 6", "CAN ID 7", "CAN ID 8", "CAN ID 9", "CAN ID 10","CAN ID 11","CAN ID 12","CAN ID 13","CAN ID 14","INVALID" + rpmhigh = scalar, U16, "rpm", 1, 0, 0, 30000, 0 + rpmwarn = scalar, U16, "rpm", 1, 0, 0, 30000, 0 + rpmdang = scalar, U16, "rpm", 1, 0, 0, 30000, 0 + maphigh = scalar, U16, "kPa", 1, 0, 0, 30000, 0 + mapwarn = scalar, U16, "kPa", 1, 0, 0, 30000, 0 + mapdang = scalar, U16, "kPa", 1, 0, 0, 30000, 0 + +#if LAMBDA + wueAFR = array, S16, [10], "Lambda", { 0.1 / stoich }, 0.000, -0.300, 0.300, 3 +#else + wueAFR = array, S16, [10], "AFR", 0.1, 0.0, -4.0, 4.0, 1 +#endif + wueRecommended = array, U08, [10], "%", 1.0, 0.0, 100, 255.0, 0 + + idleUnits = bits, U08, [0:2], "None", "On/Off", "Duty Cycle", "Duty Cycle", "Steps", "Steps" + + boardFuelOutputs = array, U08, [128], " ", 1.0, 0, 0, 255, 0, noMsqSave + boardIgnOutputs = array, U08, [128], " ", 1.0, 0, 0, 255, 0, noMsqSave + + #define loadSourceNames = "MAP", "TPS", "IMAP/EMAP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + #define loadSourceUnits = "kPa", "% TPS", "%", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + algorithmNames = bits, U08, [0:2], $loadSourceNames + ;algorithmUnits = bits, U08, [0:2], $loadSourceUnits + algorithmUnits = bits, U08, [0:2], "kPa", "% TPS", "%", "% TPS", "INVALID", "INVALID", "INVALID", "INVALID" + algorithmLimits= array, U16, [8], "", 1.0, 0, 0, 511, 0, noMsqSave + fuel2SwitchUnits = bits, U08, [0:2], "rpm", "kPa", "% TPS", "%", "% TPS", "INVALID", "INVALID", "INVALID" + #define all_IO_Pins = "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + #define IO_Pins_no_def = "INVALID", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + #define bitwise_def = "Disabled", "AND", "OR", "XOR" + #define comparator_def = "==", "!=", ">", ">=", "<", "<=", "INVALID", "INVALID" + #define comp_IO_Pins = "Disabled", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + #define fullStatus_def_1= "seconds", "status bits", "Engine status", "syncLossCounter", "MAP (Kpa)", "INVALID", "IAT / MAT", "coolant", "batCorrection", "battery voltage x10", "O2", "egoCorrection", "iatCorrection", "wueCorrection", "RPM", "INVALID", "AEamount/2", "GammaE", "INVALID", "VE1", "VE2", "AFR Target", "TPS DOT", "Advance", "TPS", "loopsPerSecond", "INVALID", "free RAM", "INVALID", "boostTarget/2", "Boost duty", "spark bits", "RPM DOT" + #define fullStatus_def_2= "INVALID", "ethanolPct", "flexCorrection", "flexIgnCorrection", "idle Load", "testOutputs", "O2_2", "baro", "Aux in 1", "INVALID", "Aux in 2", "INVALID", "Aux in 3", "INVALID", "Aux in 4", "INVALID", "Aux in 5", "INVALID", "Aux in 6", "INVALID", "Aux in 7", "INVALID", "Aux in 8", "INVALID", "Aux in 9", "INVALID", "Aux in 10", "INVALID", "Aux in 11", "INVALID", "Aux in 12", "INVALID", "Aux in 13", "INVALID", "Aux in 14" + #define fullStatus_def_3= "INVALID", "Aux in 15", "INVALID", "Aux in 16", "INVALID", "TPS ADC", "Error code", "Pulsewidth 1", "INVALID", "Pulsewidth 2", "INVALID", "Pulsewidth 3", "INVALID", "Pulsewidth 4", "INVALID", "status bits 3", "engineProtectStatus", "Fuel load", "INVALID", "Ignition load", "INVALID", "dwell", "INVALID", "idle C.L. target", "MAP DOT", "VVT1 Angle", "VVT1 Target", "VVT1 duty", "flexBoostCorrection", "INVALID", "baro Correction" + #define fullStatus_def_4= "Current VE", "ASE Value", "vss", "INVALID", "Gear", "Fuel Pressure", "Oil Pressure", "INVALID", "WMI duty", "WMI empty", "VVT2 angle", "VVT2 target", "VVT2 duty", "outputs status", "Fuel temp", "Fuel temp correction", "Advance 1", "Advance 2" + #define fullStatus_def = $fullStatus_def_1, $fullStatus_def_2, $fullStatus_def_3, $fullStatus_def_4 + + boostTableLabels = bits, U08, [0:1], "Duty Cycle %", "kPa" + prgm_out_selection = bits, U08, [0:2], "1", "2", "3", "4", "5", "6", "7", "8" + + fuelLoadMax = scalar, U08, "", 1, 0, 0, 511, 0 + ignLoadMax = scalar, U08, "", 1, 0, 0, 511, 0 + AUXin00Alias = string, ASCII, 20 + AUXin01Alias = string, ASCII, 20 + AUXin02Alias = string, ASCII, 20 + AUXin03Alias = string, ASCII, 20 + AUXin04Alias = string, ASCII, 20 + AUXin05Alias = string, ASCII, 20 + AUXin06Alias = string, ASCII, 20 + AUXin07Alias = string, ASCII, 20 + AUXin08Alias = string, ASCII, 20 + AUXin09Alias = string, ASCII, 20 + AUXin10Alias = string, ASCII, 20 + AUXin11Alias = string, ASCII, 20 + AUXin12Alias = string, ASCII, 20 + AUXin13Alias = string, ASCII, 20 + AUXin14Alias = string, ASCII, 20 + AUXin15Alias = string, ASCII, 20 + + prgm_out00Alias = string, ASCII, 20 + prgm_out01Alias = string, ASCII, 20 + prgm_out02Alias = string, ASCII, 20 + prgm_out03Alias = string, ASCII, 20 + prgm_out04Alias = string, ASCII, 20 + prgm_out05Alias = string, ASCII, 20 + prgm_out06Alias = string, ASCII, 20 + prgm_out07Alias = string, ASCII, 20 + + ;Define aliases for all the triggers. Naming pattern matches that used in decoders.ino + #define trigger_missingTooth = 0 + #define trigger_BasicDistributor = 1 + #define trigger_DualWheel = 2 + #define trigger_GM7X = 3 + #define trigger_4G63 = 4 + #define trigger_24X = 5 + #define trigger_Jeep2000 = 6 + #define trigger_Audi135 = 7 + #define trigger_HondaD17 = 8 + #define trigger_Miata9905 = 9 + #define trigger_MazdaAU = 10 + #define trigger_non360 = 11 + #define trigger_Nissan360 = 12 + #define trigger_Subaru67 = 13 + #define trigger_Daihatsu = 14 + #define trigger_Harley = 15 + #define trigger_ThirtySixMinus222 = 16 + #define trigger_ThirtySixMinus21 = 17 + #define trigger_420a = 18 + +[Constants] + + ;---------------------------------------------------------------------------- + ; Constants Definition + ; -------------------- + ; + ; Scalar Values + ; ------------- + ; The scaling and translation values are used as follows: + ; msValue = userValue / scale - translate + ; userValue = (msValue + translate) * scale + ; + ; + ; Temperatures are fine, check out the Fielding IAC example (fastIdleT). + ; + ; Array Values + ; ------------ + ; Arrays are specified just like scalars, except that they have a "shape" + ; entry in the fourth parameter. The shape allows you to define lists or + ; tables, for example [8] defines a list with eight values and [2x4] defines + ; a table with eight values (two rows and four columns). Tables may be + ; stored in either "X-" or "Y-order." X-order means that memory is layed + ; out like. + ; + ; [x1,y1] [x2,y1]...[xn,y1] [x1,y2]... + ; + ; Y-order would be + ; + ; [x1,y1] [x1,y2]...[x1,yn] [x2,y1]... + ; + ; To use the TableEditor, you must define two lists and a table, and + ; the lengths of the lists must correspond to the shape of the table. + ; + ; Bit Fields + ; ---------- + ; Bits are numbered 0-7, the rightmost being bit zero. The basic + ; data word that stores bit fields must be unsigned. + ; + ; You need NOT supply the correct number of labels matching the + ; number of bits you've specified (one bit requires 2 values, two + ; bits requires 4 values and so on). If you neglect to supply enough + ; labels, they will be synthesized using the sequence "1", "2" and so + ; on based upon their position in the sequence (the cltType and matType + ; will end up with identical lists). + ; + ; If you specify a label as "INVALID" (all upper case), then it will + ; not be displayed in the combo box, so you can leave out values that + ; make no sense. + ; + ;---------------------------------------------------------------------------- + + endianness = little + nPages = 14 + pageSize = 128, 288, 288, 128, 288, 128, 240, 192, 192, 192, 288, 192, 128, 288 + + ; New commands + pageIdentifier = "\$tsCanId\x01", "\$tsCanId\x02", "\$tsCanId\x03", "\$tsCanId\x04", "\$tsCanId\x05", "\$tsCanId\x06", "\$tsCanId\x07", "\$tsCanId\x08", "\$tsCanId\x09", "\$tsCanId\x0A", "\$tsCanId\x0B", "\$tsCanId\x0C", "\$tsCanId\x0D", "\$tsCanId\x0E" + burnCommand = "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i" + pageReadCommand = "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c" + pageValueWrite = "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v" + pageChunkWrite = "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v", "w%2i%2o%2c%v" + crc32CheckCommand = "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i" + + blockingFactor = 256 + tableBlockingFactor = 2048 + delayAfterPortOpen=1000 + ;validateArrayBounds = true + blockReadTimeout = 2000 + ;tsWriteBlocks = on + interWriteDelay = 1 ;Ignored when tsWriteBlocks is on + pageActivationDelay = 10 + restrictSquirtRelationship = false ;This requires TS 3.1 or above + + ;New for TS 3.0.08ish upwards, define lists of standard I/O options + + #define PIN_OUT10inv = "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + #define PIN_OUT16inv = "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + #define PIN_16inv = "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + + #define ANALOG_PIN = "A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", $PIN_16inv, $PIN_16inv, $PIN_16inv + #define DIGITAL_PIN = "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + #define ANALOG_DIG_PIN_LIST = $DIGITAL_PIN, $ANALOG_PIN + #define tsCanId_list = "CAN ID 0", "CAN ID 1", "CAN ID 2", "CAN ID 3", "CAN ID 4", "CAN ID 5", "CAN ID 6", "CAN ID 7", "CAN ID 8", "CAN ID 9", "CAN ID 10","CAN ID 11","CAN ID 12","CAN ID 13","CAN ID 14","INVALID" + #define CAN_ADDRESS_HEX_inv255 = $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT10inv, "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + #define CAN_ADDRESS_HEX_00XX = "INVALID", "0x001", "0x002", "0x003", "0x004", "0x005", "0x006", "0x007", "0x008", "0x009", "0x00A", "0x00B", "0x00C", "0x00D", "0x00E", "0x00F", "0x010", "0x011", "0x012", "0x013", "0x014", "0x015", "0x016", "0x017", "0x018", "0x019", "0x01A", "0x01B", "0x01C", "0x01D", "0x01E", "0x01F", "0x020", "0x021", "0x022", "0x023", "0x024", "0x025", "0x026", "0x027", "0x028", "0x029", "0x02A", "0x02B", "0x02C", "0x02D", "0x02E", "0x02F", "0x030", "0x031", "0x032", "0x033", "0x034", "0x035", "0x036", "0x037", "0x038", "0x039", "0x03A", "0x03B", "0x03C", "0x03D", "0x03E", "0x03F", "0x040", "0x041", "0x042", "0x043", "0x044", "0x045", "0x046", "0x047", "0x048", "0x049", "0x04A", "0x04B", "0x04C", "0x04D", "0x04E", "0x04F", "0x050", "0x051", "0x052", "0x053", "0x054", "0x055", "0x056", "0x057", "0x058", "0x059", "0x05A", "0x05B", "0x05C", "0x05D", "0x05E", "0x05F" ,"0x060", "0x061", "0x062", "0x063", "0x064", "0x065", "0x066", "0x067", "0x068", "0x069", "0x06A", "0x06B", "0x06C", "0x06D", "0x06E", "0x06F", "0x070", "0x071", "0x072", "0x073", "0x074", "0x075", "0x076", "0x077", "0x078", "0x079", "0x07A", "0x07B", "0x07C", "0x07D", "0x07E", "0x07F", "0x080", "0x081", "0x082", "0x083", "0x084", "0x085", "0x086", "0x087", "0x088", "0x089", "0x08A", "0x08B", "0x08C", "0x08D", "0x08E", "0x08F" ,"0x090", "0x091", "0x092", "0x093", "0x094", "0x095", "0x096", "0x097", "0x098", "0x099", "0x09A", "0x09B", "0x09C", "0x09D", "0x09E", "0x09F", "0x0A0", "0x0A1", "0x0A2", "0x0A3", "0x0A4", "0x0A5", "0x0A6", "0x0A7", "0x0A8", "0x0A9", "0x0AA", "0x0AB", "0x0AC", "0x0AD", "0x0AE", "0x0AF", "0x0B0", "0x0B1", "0x0B2", "0x0B3", "0x0B4", "0x0B5", "0x0B6", "0x0B7", "0x0B8", "0x0B9", "0x0BA", "0x0BB", "0x0BC", "0x0BD", "0x0BE", "0x0BF" ,"0x0C0", "0x0C1", "0x0C2", "0x0C3", "0x0C4", "0x0C5", "0x0C6", "0x0C7", "0x0C8", "0x0C9", "0x0CA", "0x0CB", "0x0CC", "0x0CD", "0x0CE", "0x0CF", "0x0D0", "0x0D1", "0x0D2", "0x0D3", "0x0D4", "0x0D5", "0x0D6", "0x0D7", "0x0D8", "0x0D9", "0x0DA", "0x0DB", "0x0DC", "0x0DD", "0x0DE", "0x0DF", "0x0E0", "0x0E1", "0x0E2", "0x0E3", "0x0E4", "0x0E5", "0x0E6", "0x0E7", "0x0E8", "0x0E9", "0x0EA", "0x0EB", "0x0EC", "0x0ED", "0x0EE", "0x0EF" ,"0x0F0", "0x0F1", "0x0F2", "0x0F3", "0x0F4", "0x0F5", "0x0F6", "0x0F7", "0x0F8", "0x0F9", "0x0FA", "0x0FB", "0x0FC", "0x0FD", "0x0FE", "0x0FF" + #define CAN_ADDRESS_HEX_01XX = "0x100", "0x101", "0x102", "0x103", "0x104", "0x105", "0x106", "0x107", "0x108", "0x109", "0x10A", "0x10B", "0x10C", "0x10D", "0x10E", "0x10F", "0x110", "0x111", "0x112", "0x113", "0x114", "0x115", "0x116", "0x117", "0x118", "0x119", "0x11A", "0x11B", "0x11C", "0x11D", "0x11E", "0x11F", "0x120", "0x121", "0x122", "0x123", "0x124", "0x125", "0x126", "0x127", "0x128", "0x129", "0x12A", "0x12B", "0x12C", "0x12D", "0x12E", "0x12F", "0x130", "0x131", "0x132", "0x133", "0x134", "0x135", "0x136", "0x137", "0x138", "0x139", "0x13A", "0x13B", "0x13C", "0x13D", "0x13E", "0x13F", "0x140", "0x141", "0x142", "0x143", "0x144", "0x145", "0x146", "0x147", "0x148", "0x149", "0x14A", "0x14B", "0x14C", "0x14D", "0x14E", "0x14F", "0x150", "0x151", "0x152", "0x153", "0x154", "0x155", "0x156", "0x157", "0x158", "0x159", "0x15A", "0x15B", "0x15C", "0x15D", "0x15E", "0x15F" ,"0x160", "0x161", "0x162", "0x163", "0x164", "0x165", "0x166", "0x167", "0x168", "0x169", "0x16A", "0x16B", "0x16C", "0x16D", "0x16E", "0x16F", "0x170", "0x171", "0x172", "0x173", "0x174", "0x175", "0x176", "0x177", "0x178", "0x179", "0x17A", "0x17B", "0x17C", "0x17D", "0x17E", "0x17F", "0x180", "0x181", "0x182", "0x183", "0x184", "0x185", "0x186", "0x187", "0x188", "0x189", "0x18A", "0x18B", "0x18C", "0x18D", "0x18E", "0x18F" ,"0x190", "0x191", "0x192", "0x193", "0x194", "0x195", "0x196", "0x197", "0x198", "0x199", "0x19A", "0x19B", "0x19C", "0x19D", "0x19E", "0x19F", "0x1A0", "0x1A1", "0x1A2", "0x1A3", "0x1A4", "0x1A5", "0x1A6", "0x1A7", "0x1A8", "0x1A9", "0x1AA", "0x1AB", "0x1AC", "0x1AD", "0x1AE", "0x1AF", "0x1B0", "0x1B1", "0x1B2", "0x1B3", "0x1B4", "0x1B5", "0x1B6", "0x1B7", "0x1B8", "0x1B9", "0x1BA", "0x1BB", "0x1BC", "0x1BD", "0x1BE", "0x1BF" ,"0x1C0", "0x1C1", "0x1C2", "0x1C3", "0x1C4", "0x1C5", "0x1C6", "0x1C7", "0x1C8", "0x1C9", "0x1CA", "0x1CB", "0x1CC", "0x1CD", "0x1CE", "0x1CF", "0x1D0", "0x1D1", "0x1D2", "0x1D3", "0x1D4", "0x1D5", "0x1D6", "0x1D7", "0x1D8", "0x1D9", "0x1DA", "0x1DB", "0x1DC", "0x1DD", "0x1DE", "0x1DF", "0x1E0", "0x1E1", "0x1E2", "0x1E3", "0x1E4", "0x1E5", "0x1E6", "0x1E7", "0x1E8", "0x1E9", "0x1EA", "0x1EB", "0x1EC", "0x1ED", "0x1EE", "0x1EF" ,"0x1F0", "0x1F1", "0x1F2", "0x1F3", "0x1F4", "0x1F5", "0x1F6", "0x1F7", "0x1F8", "0x1F9", "0x1FA", "0x1FB", "0x1FC", "0x1FD", "0x1FE", "0x1FF" + #define CAN_ADDRESS_HEX_02XX = "0x200", "0x201", "0x202", "0x203", "0x204", "0x205", "0x206", "0x207", "0x208", "0x209", "0x20A", "0x20B", "0x20C", "0x20D", "0x20E", "0x20F", "0x210", "0x211", "0x212", "0x213", "0x214", "0x215", "0x216", "0x217", "0x218", "0x219", "0x21A", "0x21B", "0x21C", "0x21D", "0x21E", "0x21F", "0x220", "0x221", "0x222", "0x223", "0x224", "0x225", "0x226", "0x227", "0x228", "0x229", "0x22A", "0x22B", "0x22C", "0x22D", "0x22E", "0x22F", "0x230", "0x231", "0x232", "0x233", "0x234", "0x235", "0x236", "0x237", "0x238", "0x239", "0x23A", "0x23B", "0x23C", "0x23D", "0x23E", "0x23F", "0x240", "0x241", "0x242", "0x243", "0x244", "0x245", "0x246", "0x247", "0x248", "0x249", "0x24A", "0x24B", "0x24C", "0x24D", "0x24E", "0x24F", "0x250", "0x251", "0x252", "0x253", "0x254", "0x255", "0x256", "0x257", "0x258", "0x259", "0x25A", "0x25B", "0x25C", "0x25D", "0x25E", "0x25F" ,"0x260", "0x261", "0x262", "0x263", "0x264", "0x265", "0x266", "0x267", "0x268", "0x269", "0x26A", "0x26B", "0x26C", "0x26D", "0x26E", "0x26F", "0x270", "0x271", "0x272", "0x273", "0x274", "0x275", "0x276", "0x277", "0x278", "0x279", "0x27A", "0x27B", "0x27C", "0x27D", "0x27E", "0x27F", "0x280", "0x281", "0x282", "0x283", "0x284", "0x285", "0x286", "0x287", "0x288", "0x289", "0x28A", "0x28B", "0x28C", "0x28D", "0x28E", "0x28F" ,"0x290", "0x291", "0x292", "0x293", "0x294", "0x295", "0x296", "0x297", "0x298", "0x299", "0x29A", "0x29B", "0x29C", "0x29D", "0x29E", "0x29F", "0x2A0", "0x2A1", "0x2A2", "0x2A3", "0x2A4", "0x2A5", "0x2A6", "0x2A7", "0x2A8", "0x2A9", "0x2AA", "0x2AB", "0x2AC", "0x2AD", "0x2AE", "0x2AF", "0x2B0", "0x2B1", "0x2B2", "0x2B3", "0x2B4", "0x2B5", "0x2B6", "0x2B7", "0x2B8", "0x2B9", "0x2BA", "0x2BB", "0x2BC", "0x2BD", "0x2BE", "0x2BF" ,"0x2C0", "0x2C1", "0x2C2", "0x2C3", "0x2C4", "0x2C5", "0x2C6", "0x2C7", "0x2C8", "0x2C9", "0x2CA", "0x2CB", "0x2CC", "0x2CD", "0x2CE", "0x2CF", "0x2D0", "0x2D1", "0x2D2", "0x2D3", "0x2D4", "0x2D5", "0x2D6", "0x2D7", "0x2D8", "0x2D9", "0x2DA", "0x2DB", "0x2DC", "0x2DD", "0x2DE", "0x2DF", "0x2E0", "0x2E1", "0x2E2", "0x2E3", "0x2E4", "0x2E5", "0x2E6", "0x2E7", "0x2E8", "0x2E9", "0x2EA", "0x2EB", "0x2EC", "0x2ED", "0x2EE", "0x2EF" ,"0x2F0", "0x2F1", "0x2F2", "0x2F3", "0x2F4", "0x2F5", "0x2F6", "0x2F7", "0x2F8", "0x2F9", "0x2FA", "0x2FB", "0x2FC", "0x2FD", "0x2FE", "0x2FF" + #define CAN_ADDRESS_HEX_03XX = "0x300", "0x301", "0x302", "0x303", "0x304", "0x305", "0x306", "0x307", "0x308", "0x309", "0x30A", "0x30B", "0x30C", "0x30D", "0x30E", "0x30F", "0x310", "0x311", "0x312", "0x313", "0x314", "0x315", "0x316", "0x317", "0x318", "0x319", "0x31A", "0x31B", "0x31C", "0x31D", "0x31E", "0x31F", "0x320", "0x321", "0x322", "0x323", "0x324", "0x325", "0x326", "0x327", "0x328", "0x329", "0x32A", "0x32B", "0x32C", "0x32D", "0x32E", "0x32F", "0x330", "0x331", "0x332", "0x333", "0x334", "0x335", "0x336", "0x337", "0x338", "0x339", "0x33A", "0x33B", "0x33C", "0x33D", "0x33E", "0x33F", "0x340", "0x341", "0x342", "0x343", "0x344", "0x345", "0x346", "0x347", "0x348", "0x349", "0x34A", "0x34B", "0x34C", "0x34D", "0x34E", "0x34F", "0x350", "0x351", "0x352", "0x353", "0x354", "0x355", "0x356", "0x357", "0x358", "0x359", "0x35A", "0x35B", "0x35C", "0x35D", "0x35E", "0x35F" ,"0x360", "0x361", "0x362", "0x363", "0x364", "0x365", "0x366", "0x367", "0x368", "0x369", "0x36A", "0x36B", "0x36C", "0x36D", "0x36E", "0x36F", "0x370", "0x371", "0x372", "0x373", "0x374", "0x375", "0x376", "0x377", "0x378", "0x379", "0x37A", "0x37B", "0x37C", "0x37D", "0x37E", "0x37F", "0x380", "0x381", "0x382", "0x383", "0x384", "0x385", "0x386", "0x387", "0x388", "0x389", "0x38A", "0x38B", "0x38C", "0x38D", "0x38E", "0x38F" ,"0x390", "0x391", "0x392", "0x393", "0x394", "0x395", "0x396", "0x397", "0x398", "0x399", "0x39A", "0x39B", "0x39C", "0x39D", "0x39E", "0x39F", "0x3A0", "0x3A1", "0x3A2", "0x3A3", "0x3A4", "0x3A5", "0x3A6", "0x3A7", "0x3A8", "0x3A9", "0x3AA", "0x3AB", "0x3AC", "0x3AD", "0x3AE", "0x3AF", "0x3B0", "0x3B1", "0x3B2", "0x3B3", "0x3B4", "0x3B5", "0x3B6", "0x3B7", "0x3B8", "0x3B9", "0x3BA", "0x3BB", "0x3BC", "0x3BD", "0x3BE", "0x3BF" ,"0x3C0", "0x3C1", "0x3C2", "0x3C3", "0x3C4", "0x3C5", "0x3C6", "0x3C7", "0x3C8", "0x3C9", "0x3CA", "0x3CB", "0x3CC", "0x3CD", "0x3CE", "0x3CF", "0x3D0", "0x3D1", "0x3D2", "0x3D3", "0x3D4", "0x3D5", "0x3D6", "0x3D7", "0x3D8", "0x3D9", "0x3DA", "0x3DB", "0x3DC", "0x3DD", "0x3DE", "0x3DF", "0x3E0", "0x3E1", "0x3E2", "0x3E3", "0x3E4", "0x3E5", "0x3E6", "0x3E7", "0x3E8", "0x3E9", "0x3EA", "0x3EB", "0x3EC", "0x3ED", "0x3EE", "0x3EF" ,"0x3F0", "0x3F1", "0x3F2", "0x3F3", "0x3F4", "0x3F5", "0x3F6", "0x3F7", "0x3F8", "0x3F9", "0x3FA", "0x3FB", "0x3FC", "0x3FD", "0x3FE", "0x3FF" + #define CAN_ADDRESS_HEX_04XX = "0x400", "0x401", "0x402", "0x403", "0x404", "0x405", "0x406", "0x407", "0x408", "0x409", "0x40A", "0x40B", "0x40C", "0x40D", "0x40E", "0x40F", "0x410", "0x411", "0x412", "0x413", "0x414", "0x415", "0x416", "0x417", "0x418", "0x419", "0x41A", "0x41B", "0x41C", "0x41D", "0x41E", "0x41F", "0x420", "0x421", "0x422", "0x423", "0x424", "0x425", "0x426", "0x427", "0x428", "0x429", "0x42A", "0x42B", "0x42C", "0x42D", "0x42E", "0x42F", "0x430", "0x431", "0x432", "0x433", "0x434", "0x435", "0x436", "0x437", "0x438", "0x439", "0x43A", "0x43B", "0x43C", "0x43D", "0x43E", "0x43F", "0x440", "0x441", "0x442", "0x443", "0x444", "0x445", "0x446", "0x447", "0x448", "0x449", "0x44A", "0x44B", "0x44C", "0x44D", "0x44E", "0x44F", "0x450", "0x451", "0x452", "0x453", "0x454", "0x455", "0x456", "0x457", "0x458", "0x459", "0x45A", "0x45B", "0x45C", "0x45D", "0x45E", "0x45F" ,"0x460", "0x461", "0x462", "0x463", "0x464", "0x465", "0x466", "0x467", "0x468", "0x469", "0x46A", "0x46B", "0x46C", "0x46D", "0x46E", "0x46F", "0x470", "0x471", "0x472", "0x473", "0x474", "0x475", "0x476", "0x477", "0x478", "0x479", "0x47A", "0x47B", "0x47C", "0x47D", "0x47E", "0x47F", "0x480", "0x481", "0x482", "0x483", "0x484", "0x485", "0x486", "0x487", "0x488", "0x489", "0x48A", "0x48B", "0x48C", "0x48D", "0x48E", "0x48F" ,"0x490", "0x491", "0x492", "0x493", "0x494", "0x495", "0x496", "0x497", "0x498", "0x499", "0x49A", "0x49B", "0x49C", "0x49D", "0x49E", "0x49F", "0x4A0", "0x4A1", "0x4A2", "0x4A3", "0x4A4", "0x4A5", "0x4A6", "0x4A7", "0x4A8", "0x4A9", "0x4AA", "0x4AB", "0x4AC", "0x4AD", "0x4AE", "0x4AF", "0x4B0", "0x4B1", "0x4B2", "0x4B3", "0x4B4", "0x4B5", "0x4B6", "0x4B7", "0x4B8", "0x4B9", "0x4BA", "0x4BB", "0x4BC", "0x4BD", "0x4BE", "0x4BF" ,"0x4C0", "0x4C1", "0x4C2", "0x4C3", "0x4C4", "0x4C5", "0x4C6", "0x4C7", "0x4C8", "0x4C9", "0x4CA", "0x4CB", "0x4CC", "0x4CD", "0x4CE", "0x4CF", "0x4D0", "0x4D1", "0x4D2", "0x4D3", "0x4D4", "0x4D5", "0x4D6", "0x4D7", "0x4D8", "0x4D9", "0x4DA", "0x4DB", "0x4DC", "0x4DD", "0x4DE", "0x4DF", "0x4E0", "0x4E1", "0x4E2", "0x4E3", "0x4E4", "0x4E5", "0x4E6", "0x4E7", "0x4E8", "0x4E9", "0x4EA", "0x4EB", "0x4EC", "0x4ED", "0x4EE", "0x4EF" ,"0x4F0", "0x4F1", "0x4F2", "0x4F3", "0x4F4", "0x4F5", "0x4F6", "0x4F7", "0x4F8", "0x4F9", "0x4FA", "0x4FB", "0x4FC", "0x4FD", "0x4FE", "0x4FF" + #define CAN_ADDRESS_HEX_05XX = "0x500", "0x501", "0x502", "0x503", "0x504", "0x505", "0x506", "0x507", "0x508", "0x509", "0x50A", "0x50B", "0x50C", "0x50D", "0x50E", "0x50F", "0x510", "0x511", "0x512", "0x513", "0x514", "0x515", "0x516", "0x517", "0x518", "0x519", "0x51A", "0x51B", "0x51C", "0x51D", "0x51E", "0x51F", "0x520", "0x521", "0x522", "0x523", "0x524", "0x525", "0x526", "0x527", "0x528", "0x529", "0x52A", "0x52B", "0x52C", "0x52D", "0x52E", "0x52F", "0x530", "0x531", "0x532", "0x533", "0x534", "0x535", "0x536", "0x537", "0x538", "0x539", "0x53A", "0x53B", "0x53C", "0x53D", "0x53E", "0x53F", "0x540", "0x541", "0x542", "0x543", "0x544", "0x545", "0x546", "0x547", "0x548", "0x549", "0x54A", "0x54B", "0x54C", "0x54D", "0x54E", "0x54F", "0x550", "0x551", "0x552", "0x553", "0x554", "0x555", "0x556", "0x557", "0x558", "0x559", "0x55A", "0x55B", "0x55C", "0x55D", "0x55E", "0x55F" ,"0x560", "0x561", "0x562", "0x563", "0x564", "0x565", "0x566", "0x567", "0x568", "0x569", "0x56A", "0x56B", "0x56C", "0x56D", "0x56E", "0x56F", "0x570", "0x571", "0x572", "0x573", "0x574", "0x575", "0x576", "0x577", "0x578", "0x579", "0x57A", "0x57B", "0x57C", "0x57D", "0x57E", "0x57F", "0x580", "0x581", "0x582", "0x583", "0x584", "0x585", "0x586", "0x587", "0x588", "0x589", "0x58A", "0x58B", "0x58C", "0x58D", "0x58E", "0x58F" ,"0x590", "0x591", "0x592", "0x593", "0x594", "0x595", "0x596", "0x597", "0x598", "0x599", "0x59A", "0x59B", "0x59C", "0x59D", "0x59E", "0x59F", "0x5A0", "0x5A1", "0x5A2", "0x5A3", "0x5A4", "0x5A5", "0x5A6", "0x5A7", "0x5A8", "0x5A9", "0x5AA", "0x5AB", "0x5AC", "0x5AD", "0x5AE", "0x5AF", "0x5B0", "0x5B1", "0x5B2", "0x5B3", "0x5B4", "0x5B5", "0x5B6", "0x5B7", "0x5B8", "0x5B9", "0x5BA", "0x5BB", "0x5BC", "0x5BD", "0x5BE", "0x5BF" ,"0x5C0", "0x5C1", "0x5C2", "0x5C3", "0x5C4", "0x5C5", "0x5C6", "0x5C7", "0x5C8", "0x5C9", "0x5CA", "0x5CB", "0x5CC", "0x5CD", "0x5CE", "0x5CF", "0x5D0", "0x5D1", "0x5D2", "0x5D3", "0x5D4", "0x5D5", "0x5D6", "0x5D7", "0x5D8", "0x5D9", "0x5DA", "0x5DB", "0x5DC", "0x5DD", "0x5DE", "0x5DF", "0x5E0", "0x5E1", "0x5E2", "0x5E3", "0x5E4", "0x5E5", "0x5E6", "0x5E7", "0x5E8", "0x5E9", "0x5EA", "0x5EB", "0x5EC", "0x5ED", "0x5EE", "0x5EF" ,"0x5F0", "0x5F1", "0x5F2", "0x5F3", "0x5F4", "0x5F5", "0x5F6", "0x5F7", "0x5F8", "0x5F9", "0x5FA", "0x5FB", "0x5FC", "0x5FD", "0x5FE", "0x5FF" + #define CAN_ADDRESS_HEX_06XX = "0x600", "0x601", "0x602", "0x603", "0x604", "0x605", "0x606", "0x607", "0x608", "0x609", "0x60A", "0x60B", "0x60C", "0x60D", "0x60E", "0x60F", "0x610", "0x611", "0x612", "0x613", "0x614", "0x615", "0x616", "0x617", "0x618", "0x619", "0x61A", "0x61B", "0x61C", "0x61D", "0x61E", "0x61F", "0x620", "0x621", "0x622", "0x623", "0x624", "0x625", "0x626", "0x627", "0x628", "0x629", "0x62A", "0x62B", "0x62C", "0x62D", "0x62E", "0x62F", "0x630", "0x631", "0x632", "0x633", "0x634", "0x635", "0x636", "0x637", "0x638", "0x639", "0x63A", "0x63B", "0x63C", "0x63D", "0x63E", "0x63F", "0x640", "0x641", "0x642", "0x643", "0x644", "0x645", "0x646", "0x647", "0x648", "0x649", "0x64A", "0x64B", "0x64C", "0x64D", "0x64E", "0x64F", "0x650", "0x651", "0x652", "0x653", "0x654", "0x655", "0x656", "0x657", "0x658", "0x659", "0x65A", "0x65B", "0x65C", "0x65D", "0x65E", "0x65F" ,"0x660", "0x661", "0x662", "0x663", "0x664", "0x665", "0x666", "0x667", "0x668", "0x669", "0x66A", "0x66B", "0x66C", "0x66D", "0x66E", "0x66F", "0x670", "0x671", "0x672", "0x673", "0x674", "0x675", "0x676", "0x677", "0x678", "0x679", "0x67A", "0x67B", "0x67C", "0x67D", "0x67E", "0x67F", "0x680", "0x681", "0x682", "0x683", "0x684", "0x685", "0x686", "0x687", "0x688", "0x689", "0x68A", "0x68B", "0x68C", "0x68D", "0x68E", "0x68F" ,"0x690", "0x691", "0x692", "0x693", "0x694", "0x695", "0x696", "0x697", "0x698", "0x699", "0x69A", "0x69B", "0x69C", "0x69D", "0x69E", "0x69F", "0x6A0", "0x6A1", "0x6A2", "0x6A3", "0x6A4", "0x6A5", "0x6A6", "0x6A7", "0x6A8", "0x6A9", "0x6AA", "0x6AB", "0x6AC", "0x6AD", "0x6AE", "0x6AF", "0x6B0", "0x6B1", "0x6B2", "0x6B3", "0x6B4", "0x6B5", "0x6B6", "0x6B7", "0x6B8", "0x6B9", "0x6BA", "0x6BB", "0x6BC", "0x6BD", "0x6BE", "0x6BF" ,"0x6C0", "0x6C1", "0x6C2", "0x6C3", "0x6C4", "0x6C5", "0x6C6", "0x6C7", "0x6C8", "0x6C9", "0x6CA", "0x6CB", "0x6CC", "0x6CD", "0x6CE", "0x6CF", "0x6D0", "0x6D1", "0x6D2", "0x6D3", "0x6D4", "0x6D5", "0x6D6", "0x6D7", "0x6D8", "0x6D9", "0x6DA", "0x6DB", "0x6DC", "0x6DD", "0x6DE", "0x6DF", "0x6E0", "0x6E1", "0x6E2", "0x6E3", "0x6E4", "0x6E5", "0x6E6", "0x6E7", "0x6E8", "0x6E9", "0x6EA", "0x6EB", "0x6EC", "0x6ED", "0x6EE", "0x6EF" ,"0x6F0", "0x6F1", "0x6F2", "0x6F3", "0x6F4", "0x6F5", "0x6F6", "0x6F7", "0x6F8", "0x6F9", "0x6FA", "0x6FB", "0x6FC", "0x6FD", "0x6FE", "0x6FF" + #define CAN_ADDRESS_HEX_07XX = "0x700", "0x701", "0x702", "0x703", "0x704", "0x705", "0x706", "0x707", "0x708", "0x709", "0x70A", "0x70B", "0x70C", "0x70D", "0x70E", "0x70F", "0x710", "0x711", "0x712", "0x713", "0x714", "0x715", "0x716", "0x717", "0x718", "0x719", "0x71A", "0x71B", "0x71C", "0x71D", "0x71E", "0x71F", "0x720", "0x721", "0x722", "0x723", "0x724", "0x725", "0x726", "0x727", "0x728", "0x729", "0x72A", "0x72B", "0x72C", "0x72D", "0x72E", "0x72F", "0x730", "0x731", "0x732", "0x733", "0x734", "0x735", "0x736", "0x737", "0x738", "0x739", "0x73A", "0x73B", "0x73C", "0x73D", "0x73E", "0x73F", "0x740", "0x741", "0x742", "0x743", "0x744", "0x745", "0x746", "0x747", "0x748", "0x749", "0x74A", "0x74B", "0x74C", "0x74D", "0x74E", "0x74F", "0x750", "0x751", "0x752", "0x753", "0x754", "0x755", "0x756", "0x757", "0x758", "0x759", "0x75A", "0x75B", "0x75C", "0x75D", "0x75E", "0x75F" ,"0x760", "0x761", "0x762", "0x763", "0x764", "0x765", "0x766", "0x767", "0x768", "0x769", "0x76A", "0x76B", "0x76C", "0x76D", "0x76E", "0x76F", "0x770", "0x771", "0x772", "0x773", "0x774", "0x775", "0x776", "0x777", "0x778", "0x779", "0x77A", "0x77B", "0x77C", "0x77D", "0x77E", "0x77F", "0x780", "0x781", "0x782", "0x783", "0x784", "0x785", "0x786", "0x787", "0x788", "0x789", "0x78A", "0x78B", "0x78C", "0x78D", "0x78E", "0x78F" ,"0x790", "0x791", "0x792", "0x793", "0x794", "0x795", "0x796", "0x797", "0x798", "0x799", "0x79A", "0x79B", "0x79C", "0x79D", "0x79E", "0x79F", "0x7A0", "0x7A1", "0x7A2", "0x7A3", "0x7A4", "0x7A5", "0x7A6", "0x7A7", "0x7A8", "0x7A9", "0x7AA", "0x7AB", "0x7AC", "0x7AD", "0x7AE", "0x7AF", "0x7B0", "0x7B1", "0x7B2", "0x7B3", "0x7B4", "0x7B5", "0x7B6", "0x7B7", "0x7B8", "0x7B9", "0x7BA", "0x7BB", "0x7BC", "0x7BD", "0x7BE", "0x7BF" ,"0x7C0", "0x7C1", "0x7C2", "0x7C3", "0x7C4", "0x7C5", "0x7C6", "0x7C7", "0x7C8", "0x7C9", "0x7CA", "0x7CB", "0x7CC", "0x7CD", "0x7CE", "0x7CF", "0x7D0", "0x7D1", "0x7D2", "0x7D3", "0x7D4", "0x7D5", "0x7D6", "0x7D7", "0x7D8", "0x7D9", "0x7DA", "0x7DB", "0x7DC", "0x7DD", "0x7DE", "0x7DF", "0x7E0", "0x7E1", "0x7E2", "0x7E3", "0x7E4", "0x7E5", "0x7E6", "0x7E7", "0x7E8", "0x7E9", "0x7EA", "0x7EB", "0x7EC", "0x7ED", "0x7EE", "0x7EF" ,"0x7F0", "0x7F1", "0x7F2", "0x7F3", "0x7F4", "0x7F5", "0x7F6", "0x7F7", "0x7F8", "0x7F9", "0x7FA", "0x7FB", "0x7FC", "0x7FD", "0x7FE", "0x7FF" + #define CAN_ADDRESS_HEX = $CAN_ADDRESS_HEX_01XX, $CAN_ADDRESS_HEX_02XX, $CAN_ADDRESS_HEX_03XX, $CAN_ADDRESS_HEX_04XX, $CAN_ADDRESS_HEX_05XX, $CAN_ADDRESS_HEX_06XX, $CAN_ADDRESS_HEX_07XX, $CAN_ADDRESS_HEX_inv255 + + + + +;-------------------------------------------------- +;Start Page 1 +;Page 1 is all general settings. Note that some of these (algorithm and ignAlgorithm) MUST come before their use in the bitStringValue() calls in the fuel and ignition tables +;-------------------------------------------------- +page = 1 + aseTaperTime = scalar, U08, 0, "S", 0.1, 0.0, 0.0, 25.5, 1 + aeColdPct = scalar, U08, 1, "%", 1.0, 0, 100, 255, 0 ;AE cold adjustment % +#if CELSIUS + aeColdTaperMin = scalar, U08, 2, "C", 1.0, -40, -40, 215, 0 ;AE cold adjustment, taper start clt (full adjustment) +#else + aeColdTaperMin = scalar, U08, 2, "F", 1.8, -22.23, -40, 215, 0 ;AE cold adjustment, taper start clt (full adjustment) +#endif + + aeMode = bits, U08, 3, [0:1], "TPS", "MAP", "INVALID", "INVALID" + battVCorMode = bits, U08, 3, [2:2], "Whole PW", "Open Time only" + SoftLimitMode = bits, U08, 3, [3:3], "Fixed", "Relative " + useTachoSweep = bits, U08, 3, [4:4], "Off", "On" + aeApplyMode = bits, U08, 3, [5:5], "PW Multiplier", "PW Adder" + multiplyMAP = bits, U08, 3, [6:7], "Off", "Baro", "Fixed", "INVALID" + wueRates = array, U08, 4, [10], "%", 1.0, 0.0, 0.0, 255, 0 + crankingPct = scalar, U08, 14, "%", 1.0, 0.0, 0.0, 255, 0 + pinLayout = bits, U08, 15, [0:7], "INVALID", "Speeduino v0.2", "Speeduino v0.3", "Speeduino v0.4", "INVALID", "INVALID", "01-05 MX5 PNP", "INVALID", "96-97 MX5 PNP", "NA6 MX5 PNP", "Turtana PCB", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "Plazomat I/O 0.1", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "Daz V6 Shield 0.1", "BMW PnP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "NO2C", "UA4C", "INVALID", "INVALID", "INVALID", "DIY-EFI CORE4 v1.0", "INVALID", "INVALID", "INVALID", "INVALID", "dvjcodec Teensy RevA", "dvjcodec Teensy RevB", "INVALID", "INVALID", "INVALID", "Drop Bear", "INVALID", "INVALID", "INVALID", "INVALID", "Black STM32F407VET6 V0.1", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + tachoPin = bits, U08, 16, [0:5], "Board Default", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + tachoDiv = bits, U08, 16, [6:7], "Normal", "Half", "INVALID", "INVALID" + tachoDuration = scalar, U08, 17, "ms", 1.0, 0.0, 1.0, 6.0, 0 + maeThresh = scalar, U08, 18, "kPa/s", 1.0, 0.0, 0.0, 255, 0 ;MAP threshold for triggering AE + taeThresh = scalar, U08, 19, "%/s", 1.0, 0.0, 0.0, 255, 0 ;TPS threshold for triggering AE + aeTime = scalar, U08, 20, "ms", 10, 0.0, 0.0, 2550, 0 + + ; Display (Options for what the display is showing) + display = bits, U08, 21, [0:2], "Unused", "Adafruit 128x32", "Generic 128x32", "Adafruit 128x64", "Generic 128x64", "INVALID", "INVALID", "INVALID" + display1 = bits, U08, 21, [3:5], "RPM", "PW", "Advance", "VE", "GammaE", "TPS", "IAT", "CLT" + display2 = bits, U08, 21, [6:7], "O2", "Voltage", "CPU", "Mem" + + display3 = bits, U08, 22, [0:2], "RPM", "PW", "Advance", "VE", "GammaE", "TPS", "IAT", "CLT" + display4 = bits, U08, 22, [3:4], "O2", "Voltage", "CPU", "Mem" + display5 = bits, U08, 22, [5:7], "RPM", "PW", "Advance", "VE", "GammaE", "TPS", "IAT", "CLT" + + displayB1 = bits, U08, 23, [0:3], "RPM", "PW", "Advance", "VE", "GammaE", "TPS", "IAT", "CLT" + displayB2 = bits, U08, 23, [4:7], "RPM", "PW", "Advance", "VE", "GammaE", "TPS", "IAT", "CLT" + + reqFuel = scalar, U08, 24, "ms", 0.1, 0.0, 0.0, 25.5, 1 + divider = scalar, U08, 25, "", 1.0, 0.0 + alternate = bits, U08, 26, [0:0], "Simultaneous", "Alternating" + multiplyMAP1 = bits, U08, 26, [1:1], "No", "Yes" + includeAFR = bits, U08, 26, [2:2], "No", "Yes" + hardCutType = bits, U08, 26, [3:3], "Full", "Rolling" + ignAlgorithm = bits, U08, 26, [4:6], $loadSourceNames + indInjAng = bits, U08, 26, [7:7], "Disabled", "Enabled" + injOpen = scalar, U08, 27, "ms", 0.1, 0.0, 0.1, 25.5, 1 + injAng = array, U16, 28, [4], "deg", 1.0, 0.0, 0.0, 720, 0 + + ; Config1 + mapSample = bits, U08, 36, [0:1], "Instantaneous", "Cycle Average", "Cycle Minimum", "Event Average" + twoStroke = bits, U08, 36, [2:2], "Four-stroke", "Two-stroke" + injType = bits, U08, 36, [3:3], "Port", "Throttle Body" + nCylinders = bits, U08, 36, [4:7], "INVALID","1","2","3","4","5","6","INVALID","8","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID" + + ; Config2 + algorithm = bits, U08, 37, [0:2], $loadSourceNames ;Has to be called algorithm for the req fuel calculator to work :( + fixAngEnable = bits, U08, 37, [3:3], "Off", "On" + nInjectors = bits, U08, 37, [4:7], "INVALID","1","2","3","4","5","6","INVALID","8","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID" + + ; Config3 + engineType = bits, U08, 38, [0:0], "Even fire", "Odd fire" + flexEnabled = bits, U08, 38, [1:1], "Off", "On" + legacyMAP = bits, U08, 38, [2:2], "No", "Yes" ;Whether to use the older legacy MAP reading that had the pullup enabled + baroCorr = bits, U08, 38, [3:3], "Off", "On" + injLayout = bits, U08, 38, [4:5], "Paired", "Semi-Sequential", "INVALID", "Sequential" + perToothIgn = bits, U08, 38, [6:6], "No", "Yes" + dfcoEnabled = bits, U08, 38, [7:7], "Off", "On" + +#if CELSIUS + aeColdTaperMax = scalar, U08, 39, "C", 1.0, -40, -40, 215, 0 ;AE cold adjustment, taper start clt (full adjustment) +#else + aeColdTaperMax = scalar, U08, 39, "F", 1.8, -22.23, -40, 215, 0 ;AE cold adjustment, taper end clt (no adjustment) +#endif + + dutyLim = scalar, U08, 40, "%", 1.0, 0.0, 0.0, 95.0, 0 + flexFreqLow = scalar, U08, 41, "Hz", 1.0, 0.0, 0.0, 250.0, 0 + flexFreqHigh = scalar, U08, 42, "Hz", 1.0, 0.0, 0.0, 250.0, 0 + + boostMaxDuty = scalar, U08, 43, "%", 1.0, 0.0, 0.0, 100.0, 0 + tpsMin = scalar, U08, 44, "ADC", 1.0, 0.0, 0.0, 255.0, 0 + tpsMax = scalar, U08, 45, "ADC", 1.0, 0.0, 0.0, 255.0, 0 + mapMin = scalar, S08, 46, "kpa", 1.0, 0.0, -100, 127.0, 0 + mapMax = scalar, U16, 47, "kpa", 1.0, 0.0, 0.0, 25500, 0 + fpPrime = scalar, U08, 49, "s", 1.0, 0.0, 0.0, 255.0, 0 + stoich = scalar, U08, 50, ":1", 0.1, 0.0, 0.0, 25.5, 1 + oddfire2 = scalar, U16, 51, "deg", 1.0, 0.0, 0.0, 720, 0 ; * ( 2 byte) + oddfire3 = scalar, U16, 53, "deg", 1.0, 0.0, 0.0, 720, 0 ; * ( 2 byte) + oddfire4 = scalar, U16, 55, "deg", 1.0, 0.0, 0.0, 720, 0 ; * ( 2 byte) + + idleUpPin = bits, U08, 57, [0:5], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + idleUpPolarity= bits, U08, 57, [6:6], "Normal", "Inverted" + idleUpEnabled = bits, U08, 57, [7:7], "Off", "On" + idleUpAdder = scalar, U08, 58, "% / Steps", 1.0, 0.0, 0.0, 250.0, 0 + aeTaperMin = scalar, U08, 59, "RPM", 100, 0.0, 1000, 10000, 0 + aeTaperMax = scalar, U08, 60, "RPM", 100, 0.0, 2000, 10000, 0 + + iacCLminDuty = scalar, U08, 61, "%", 1.0, 0.0, 0.0, 100.0, 0 ; Minimum and maximum duty cycles when using closed loop idle + iacCLmaxDuty = scalar, U08, 62, "%", 1.0, 0.0, 0.0, 100.0, 0 + boostMinDuty = scalar, U08, 63, "%", 1.0, 0.0, 0.0, 100.0, 0 ; Minimum and maximum duty cycles for boost control + + baroMin = scalar, S08, 64, "kpa", 1.0, 0.0, -100, 127.0, 0 + baroMax = scalar, U16, 65, "kpa", 1.0, 0.0, 0.0, 25500, 0 + EMAPMin = scalar, S08, 67, "kpa", 1.0, 0.0, -100, 127.0, 0 + EMAPMax = scalar, U16, 68, "kpa", 1.0, 0.0, 0.0, 25500, 0 + + fanWhenOff = bits, U08, 70, [0:0], "No", "Yes" + fanWhenCranking = bits, U08, 70, [1:1], "No", "Yes" + unused_fan_bits = bits, U08, 70,[2:6] + incorporateAFR = bits, U08, 70, [7:7], "No", "Yes" + + asePct = array, U08, 71, [4], "%", 1.0, 0.0, 0, 155, 0 + aseCount = array, U08, 75, [4], "s", 1.0, 0.0, 0.0, 255, 0 ; Values for the afterstart enrichment curve +#if CELSIUS + aseBins = array, U08, 79, [4], "C", 1.0, -40, -40, 215, 0 +#else + aseBins = array, U08, 79, [4], "F", 1.8, -22.23, -40, 215, 0 +#endif + primePulse = array, U08, 83, [4], "ms", 0.5, 0.0, 0.0, 127.5, 1 +#if CELSIUS + primeBins = array, U08, 87, [4], "C", 1.0, -40, -40, 215, 0 +#else + primeBins = array, U08, 87, [4], "F", 1.8, -22.23, -40, 215, 0 +#endif + CTPSPin = bits, U08, 91, [0:5], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + CTPSPolarity = bits, U08, 91, [6:6], "Normal", "Inverted" + CTPSEnabled = bits, U08, 91, [7:7], "Off", "On" + idleAdvEnabled = bits, U08, 92, [0:1], "Off", "Added", "Switched", "INVALID" + idleAdvAlgorithm = bits, U08, 92, [2:2], "TPS", "CTPS" + idleAdvDelay = bits, U08, 92, [3:7], "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "INVALID", "INVALID" + idleAdvRPM = scalar, U08, 93, "rpm", 100, 0.0, 100, 25500, 0 + idleAdvTPS = scalar, U08, 94, "%", 1, 0, 0, 120, 0 + + injAngRPM = array, U08, 95, [4], "RPM", 100, 0.0, 100, 10000, 0 + idleTaperTime = scalar, U08, 99, "S", 0.1, 0.0, 0.0, 25.5, 1 + dfcoDelay = scalar, U08, 100, "S", 0.1, 0.0, 0.0, 25.5, 1 ;Remainder of DFCO settings are in page 4 +#if CELSIUS + dfcoMinCLT = scalar, U08, 101, "C", 1.0, -40, -40, 215, 0 +#else + dfcoMinCLT = scalar, U08, 101, "F", 1.8, -22.23, -40, 215, 0 +#endif + + ;VSS settings + vssMode = bits, U08, 102, [0:1], "Off", "INVALID", "Pulses per KM", "Pulses per mile" ;INVALID value will be CAN + ;vssPullup = bits, U08, 102, [1:1], "Off", "On" + vssPin = bits, U08, 102, [2:7], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + vssPulsesPerKm= scalar, U16, 103, "pulses", 1.0, 0.0, 0.0, 25500, 0 + vssSmoothing = scalar, U08, 105, "%", 1.0, 0, 0, 255, 0 + vssRatio1 = scalar, U16, 106, "km/h per 1000rpm", 0.1, 0, 0, 99.9, 1 + vssRatio2 = scalar, U16, 108, "km/h per 1000rpm", 0.1, 0, 0, 99.9, 1 + vssRatio3 = scalar, U16, 110, "km/h per 1000rpm", 0.1, 0, 0, 99.9, 1 + vssRatio4 = scalar, U16, 112, "km/h per 1000rpm", 0.1, 0, 0, 99.9, 1 + vssRatio5 = scalar, U16, 114, "km/h per 1000rpm", 0.1, 0, 0, 99.9, 1 + vssRatio6 = scalar, U16, 116, "km/h per 1000rpm", 0.1, 0, 0, 99.9, 1 + + ;Idle up output (AC Fan) seettings + idleUpOutputEnabled = bits, U08, 118, [0:0], "Off", "On" + idleUpOutputInv = bits, U08, 118, [1:1], "No", "Yes" + idleUpOutputPin = bits, U08, 118, [2:7], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + + tachoSweepMaxRPM = scalar, U08, 119, "RPM", 100, 0.0, 100, 10000, 0 + primingDelay = scalar, U08, 120, "S", 0.1, 0.0, 0.0, 25.5, 1 + + iacTPSlimit = scalar, U08, 121, "%", 1, 0, 0, 100, 0 + iacRPMlimitHysteresis = scalar, U08, 122, "RPM", 10, 0 10 2500, 0 + + unused2_95 = array, U08, 121, [5], "%", 1.0, 0.0, 0.0, 255, 0 + +;Page 2 is the fuel map and axis bins only +page = 2 + ; name = bits, type, offset, bits + ; name = array, type, offset, shape, units, scale, translate, lo, hi, digits + ; name = scalar, type, offset, units, scale, translate, lo, hi, digits + veTable = array, U08, 0, [16x16],"%", 1.0, 0.0, 0.0, 255.0, 0 + rpmBins = array, U08, 256, [ 16], "RPM", 100.0, 0.0, 100.0, 25500.0, 0 + fuelLoadBins = array, U08, 272, [ 16], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + ;fuelLoadBins = array, U08, 272, [ 16], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, { arrayValue(rpmBins , algorithm) }, 0 + +;-------------------------------------------------- +;Start Ignition table (Page 3) +;-------------------------------------------------- +page = 3 + advTable1 = array, U08, 0,[16x16], "deg", 1.0, -40, -40, 215.0, 0 + rpmBins2 = array, U08, 256,[ 16], "RPM", 100.0, 0.0, 100, 25500, 0 + mapBins1= array, U08, 272, [ 16], { bitStringValue(algorithmUnits , ignAlgorithm) }, 2.0, 0.0, 0.0, {ignLoadMax}, 0 ; This name has to be used in order for the table to show up in MLVs table. I can't find the regexs that make this work :( + +;-------------------------------------------------- +;Start Page 4 +;These are primarily ignition related settings (Previously part of page 2) +;-------------------------------------------------- +page = 4 + TrigAng = scalar, S16, 0, "Deg", 1, 0, -360, 360, 0 + FixAng = scalar, S08, 2, "Deg", 1, 0, -64, 64, 0 ; Allow negative values here + CrankAng = scalar, U08, 3, "Deg", 1, 0, -10, 80, 0 + TrigAngMul = scalar, U08, 4, "", 1, 0, 0, 88, 0 ; Multiplier for tooth counts that don't evenly divide into 360 + TrigEdge = bits, U08, 5,[0:0], "RISING", "FALLING" + TrigSpeed = bits, U08, 5,[1:1], "Crank Speed", "Cam Speed" + IgInv = bits, U08, 5,[2:2], "Going Low", "Going High" + TrigPattern= bits, U08, 5,[3:7], "Missing Tooth", "Basic Distributor", "Dual Wheel", "GM 7X", "4G63 / Miata / 3000GT", "GM 24X", "Jeep 2000", "Audi 135", "Honda D17", "Miata 99-05", "Mazda AU", "Non-360 Dual", "Nissan 360", "Subaru 6/7", "Daihatsu +1", "Harley EVO", "36-2-2-2", "36-2-1", "DSM 420a", "Weber-Marelli", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + TrigEdgeSec= bits, U08, 6,[0:0], "RISING", "FALLING" + fuelPumpPin= bits , U08, 6,[1:6], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + useResync = bits, U08, 6,[7:7], "No", "Yes" + sparkDur = scalar, U08, 7, "ms", 0.1, 0, 0, 25.5, 1 ; Spark duration + trigPatternSec = bits, U08, 8,[0:7], "Single tooth cam", "4-1 cam", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + +;Reset Control + bootloaderCaps = scalar, U08, 9, "level", 1, 0, 0, 255, 0 +#if resetcontrol_adv + resetControl = bits, U08, 10,[0:1], "Disabled", "Prevent When Running", "Prevent Always", "Serial Command" +#else + resetControl = bits, U08, 10,[0:1], "Disabled", "INVALID", "INVALID", "Serial Command" +#endif + resetControlPin = bits, U08, 10,[2:7], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + + SkipCycles = scalar, U08, 11, "cycles", 1, 0, 0, 255, 0 + + ; name = array, type, offset, shape, units, scale, translate, lo, hi, digits + ; name = scalar, type, offset, units, scale, translate, lo, hi, digits +;Dwell control + boostType = bits, U08, 12, [0:0], "Open Loop", "Closed Loop" + useDwellLim = bits, U08, 12, [1:1], "Off", "On" + sparkMode = bits, U08, 12, [2:4], "Wasted Spark", "Single Channel", "Wasted COP", "Sequential", "Rotary", "INVALID", "INVALID", "INVALID" + TrigFilter = bits, U08, 12, [5:6], "Off", "Weak", "Medium", "Aggressive" + ignCranklock = bits, U08, 12, [7:7], "Off", "On" + dwellcrank = scalar, U08, 13, "ms", 0.1, 0, 0, 25, 1 + dwellrun = scalar, U08, 14, "ms", 0.1, 0, 0, 8, 1 ;running dwell variable railed to 8 - who needs more than 8ms? + numTeeth = scalar, U08, 15, "teeth", 1.0, 0.0, 0.0, 255, 0 + missingTeeth = scalar, U08, 16, "teeth", 1.0, 0.0, 0.0, 255, 0 + + crankRPM = scalar, U08, 17, "rpm", 10, 0.0, 100, 1000, 0 + tpsflood = scalar, U08, 18, "%", 1.0, 0.0, 0.0, 255.0, 0 + +;Rev Limits + SoftRevLim = scalar, U08, 19, "rpm", 100, 0.0, 100, 25500, 0 + SoftLimRetard = scalar, U08, 20, "deg", 1.0, 0.0, 0.0, 80, 0 + SoftLimMax = scalar, U08, 21, "s", 0.1, 0.0, 0.0, 25.5, 1 + HardRevLim = scalar, U08, 22, "rpm", 100, 0.0, 100, 25500, 0 + +;TPS based acceleration enrichment + taeBins = array, U08, 23, [ 4], "%/s", 10.0, 0.0, 0.00, 2550.0, 0 + taeRates = array, U08, 27, [ 4], "%", 1.0, 0.0, 0.00, 255.0, 0 ; 4 bytes +;WUE Bins (Needed somewhere to put these + #if CELSIUS + wueBins = array, U08, 31, [10], "C", 1.0, -40, -40, 102.0, 0 + #else + wueBins = array, U08, 31, [10], "F", 1.8, -22.23, -40, 215.0, 0 + #endif +;Dwell config options + dwellLim = scalar, U08, 41, "ms", 1, 0, 0, 32, 0 + dwellRates = array, U08, 42, [6], "%", 1.0, 0.0, 0.00, 255.0, 0 + +;IAT (Inlet air temp) timing retard + #if CELSIUS + iatRetBins = array, U08, 48, [ 6], "C", 1.0, 0.0, 0.00, 255.0, 0 + #else + iatRetBins = array, U08, 48, [ 6], "F", 1.8, 17.77, 0.00, 255.0, 0 ; No -40 degree offset here + #endif + iatRetRates = array, U08, 54, [ 6], "deg", 1.0, 0.0, 0.00, 255.0, 0 +;Decelleration Fuel Cut Off (DFCO) + dfcoRPM = scalar, U08, 60, "RPM", 10.0, 0.0, 100, 2550, 0 + dfcoHyster = scalar, U08, 61, "RPM", 1.0, 0.0, 100, 255.0, 0 + dfcoTPSThresh= scalar, U08, 62, "%", 1.0, 0.0, 0, 100.0, 0 +;Cranking ignition bypass + ignBypassEnable = bits, U08, 63, [0:0], "Off", "On" + ignBypassPin = bits, U08, 63, [1:6], "INVALID", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + ignBypassHiLo = bits, U08, 63, [7:7], "LOW", "HIGH" +;Analog input filter levels (Note max values are 254 so that default values of 255 can be overwirtten on bootup) + ADCFILTER_TPS = scalar, U08, 64, "%", 1.0, 0.0, 0, 240, 0 + ADCFILTER_CLT = scalar, U08, 65, "%", 1.0, 0.0, 0, 240, 0 + ADCFILTER_IAT = scalar, U08, 66, "%", 1.0, 0.0, 0, 240, 0 + ADCFILTER_O2 = scalar, U08, 67, "%", 1.0, 0.0, 0, 240, 0 + ADCFILTER_BAT = scalar, U08, 68, "%", 1.0, 0.0, 0, 240, 0 + ADCFILTER_MAP = scalar, U08, 69, "%", 1.0, 0.0, 0, 240, 0 + ADCFILTER_BARO = scalar, U08, 70, "%", 1.0, 0.0, 0, 240, 0 + +;CLT (Coolant temp) timing Advance/Retard + #if CELSIUS + cltAdvBins = array, U08, 71, [ 6], "C", 1.0, -40, -40, 102.0, 0 + #else + cltAdvBins = array, U08, 71, [ 6], "F", 1.8, -22.23, -40, 215.0, 0 ; No -40 degree offset here + #endif + cltAdvValues = array, S08, 77, [ 6], "deg", 1.0, -15, -15, 15, 0 + +;MAP based acceleration enrichment + maeBins = array, U08, 83, [ 4], "kpa/s", 10.0, 0.0, 0.00, 2550.0, 0 + maeRates = array, U08, 87, [ 4], "%", 1.0, 0.0, 0.00, 255.0, 0 ; 4 bytes + + batVoltCorrect = scalar, S08, 91, "v", 0.1, 0.0, -2, 2, 1 ;Battery reading calibration value. Note: Signed value + +;Baro fuel correction + baroFuelBins = array, U08, 92, [8], "kPa", 1.0, 0, 70, 120, 0 ; Bins for the Baro correction curve + baroFuelValues = array, U08, 100, [8], "%", 1.0, 0, 0, 255, 0 ; % Values for same + +;Idle timing advance + idleAdvBins = array, U08, 108, [6], "RPM", 10.0, -50, -500, 500, 0 + idleAdvValues = array, U08, 114, [6], "deg", 1.0, -15, -15, 50, 0 + + engineProtectMaxRPM = scalar, U08, 120, "rpm", 100, 0.0, 100, 25500, 0 + + unused4_120 = array, U08, 121, [7], "%", 1.0, 0.0, 0.0, 255, 0 +;-------------------------------------------------- + +;Start AFR page +;-------------------------------------------------- +page = 5 +#if LAMBDA + ; TODO: enable this later! + ;afrTable = array, U08, 0,[16x16], "Lambda", { 0.1 / stoich }, 0.0000, 0.00, 2.00, 3 +#else + afrTable = array, U08, 0,[16x16], "AFR", 0.1, 0.0, 7, 25.5, 1 +#endif + + rpmBinsAFR = array, U08, 256,[ 16], "RPM", 100.0, 0.0, 100, 25500, 0 + loadBinsAFR = array, U08, 272,[ 16], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + +;-------------------------------------------------- +;Start page 6 +; Page 6 is all settings associated with O2/AFR +;-------------------------------------------------- +page = 6 + egoAlgorithm = bits , U08, 0, [0:1], "Simple", "INVALID", "PID", "No correction" ; * ( 1 byte) + egoType = bits , U08, 0, [2:3], "Disabled", "Narrow Band", "Wide Band", "INVALID" ; egoOption + boostEnabled = bits, U08, 0, [4:4], "Off", "On" + vvtEnabled = bits, U08, 0, [5:5], "Off", "On" + engineProtectType = bits, U08, 0, [6:7], "Off", "Spark Only", "Fuel Only","Both" + + egoKP = scalar, U08, 1, "%", 1.0, 0.0, 0.0, 200.0, 0 ; * ( 1 byte) + egoKI = scalar, U08, 2, "%", 1.0, 0.0, 0.0, 200.0, 0 ; * ( 1 byte) + egoKD = scalar, U08, 3, "%", 1.0, 0.0, 0.0, 200.0, 0 ; * ( 1 byte) + #if CELSIUS + egoTemp = scalar, U08, 4, "C", 1.0, -40, -40, 102.0, 0 + #else + egoTemp = scalar, U08, 4, "F", 1.8, -22.23, -40, 215.0, 0 + #endif + egoCount = scalar, U08, 5, "", 4.0, 0.0, 4.0, 255.0, 0 ; * ( 1 byte) + vvtMode = bits, U08, 6, [0:1], "On/Off", "Open Loop", "Closed loop", "INVALID" + vvtLoadSource = bits, U08, 6, [2:3], "MAP", "TPS", "INVALID", "INVALID" + vvtPWMdir = bits, U08, 6, [4:4], "Advance", "Retard" + vvtCLUseHold = bits, U08, 6, [5:5], "No", "Yes" + vvtCLAlterFuelTiming = bits, U08, 6, [6:6], "No", "Yes" + boostCutEnabled = bits, U08, 6, [7:7], "Off", "On" + egoLimit = scalar, U08, 7, "", 1, 0, 0, 16, 0 + ego_min = scalar, U08, 8, "AFR", 0.1, 0.0, 7, 25, 1 + ego_max = scalar, U08, 9, "AFR", 0.1, 0.0, 7, 25, 1 + ego_sdelay = scalar, U08, 10, "sec", 1, 0, 0, 120, 0 + egoRPM = scalar, U08, 11, "rpm", 100, 0.0, 100, 25500, 0 + egoTPSMax = scalar, U08, 12, "%", 1, 0, 0, 120, 0 + vvt1Pin = bits , U08, 13, [0:5], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + useExtBaro = bits, U08, 13, [6:6], "No", "Yes" + boostMode = bits, U08, 13, [7:7], "Simple", "Full" + boostPin = bits, U08, 14, [0:5], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + VVTasOnOff = bits, U08, 14, [6:6], "No", "Yes" + useEMAP = bits, U08, 14, [7:7], "No", "Yes" + brvBins = array, U08, 15, [6], "V", 0.1, 0, 6, 24, 1 ; Bins for the battery reference voltage + injBatRates = array, U08, 21, [6], "%", 1, 0, 0, 255, 0 ;Values for injector pulsewidth vs voltage + #if CELSIUS + airDenBins = array, U08, 27, [9], "C", 1.0, -40, -40, 215, 0 ; Bins for the air density correction curve + #else + airDenBins = array, U08, 27, [9], "F", 1.8, -22.23, -40, 215, 0 ; Bins for the air density correction curve + #endif + airDenRates = array, U08, 36, [9], "%", 1.0, 0.0, 0, 255, 0 ; Values for the air density correction curve + +; PWM Frequencies + boostFreq = scalar, U08, 45, "Hz", 2.0, 0.0, 10, 511, 0 + vvtFreq = scalar, U08, 46, "Hz", 2.0, 0.0, 10, 511, 0 + idleFreq = scalar, U08, 47, "Hz", 2.0, 0.0, 10, 511, 0 + +; Launch Control + launchPin = bits , U08, 48, [0:5], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + launchEnable= bits, U08, 48, [6:6], "No", "Yes" + launchHiLo = bits, U08, 48, [7:7], "LOW", "HIGH" + + lnchSoftLim = scalar, U08, 49, "rpm", 100, 0.0, 100, 25500, 0 + lnchRetard = scalar, S08, 50, "deg", 1.0, 0.0, -30, 40, 0 + lnchHardLim = scalar, U08, 51, "rpm", 100, 0.0, 100, 25500, 0 + lnchFuelAdd = scalar, U08, 52, "%", 1.0, 0.0, 0.0, 80, 0 + + idleKP = scalar, U08, 53, "%", 0.03125, 0.0, 0.0, 7.96, 2 ; * ( 1 byte) + idleKI = scalar, U08, 54, "%", 0.03125, 0.0, 0.0, 7.96, 2 ; * ( 1 byte) + idleKD = scalar, U08, 55, "%", 0.00781, 0.0, 0.0, 1.99, 3 ; * ( 1 byte) + boostLimit = scalar, U08, 56, "kPa", 2.0, 0.0, 0.0, 511.0, 0 + boostKP = scalar, U08, 57, "%", 1.0, 0.0, 0.0, 200.0, 0 ; * ( 1 byte) + boostKI = scalar, U08, 58, "%", 1.0, 0.0, 0.0, 200.0, 0 ; * ( 1 byte) + boostKD = scalar, U08, 59, "%", 1.0, 0.0, 0.0, 200.0, 0 ; * ( 1 byte) + + lnchPullRes = bits, U08, 60, [0:1], "Float" , "Pullup", "INVALID", "INVALID" + fuelTrimEnabled= bits, U08, 60, [2:2], "No", "Yes" + flatSEnable = bits, U08, 60, [3:3], "No", "Yes" +; Baro Sensor pin + baroPin = bits, U08, 60, [4:7], "A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15" + +; Flat shift + flatSSoftWin = scalar, U08, 61, "rpm", 100, 0.0, 100, 25500, 0 + flatSRetard = scalar, U08, 62, "deg", 1.0, 0.0, 0.0, 80, 0 + flatSArm = scalar, U08, 63, "rpm", 100, 0.0, 100, 25500, 0 + + iacCLValues = array, U08, 64, [10], "RPM", 10.0, 0.0, 0, 2550, 0 + iacOLStepVal = array, U08, 74, [10], "Steps", 3, 0, 0, 765, 0 + iacOLPWMVal = array, U08, 84, [10], "Duty %", 1.0, 0, 0, 100, 0 + #if CELSIUS + iacBins = array, U08, 94, [10], "C", 1.0, -40, -40, 215, 0 + #else + iacBins = array, U08, 94, [10], "F", 1.8, -22.23, -40, 215, 0 + #endif + iacCrankSteps= array, U08, 104, [4], "Steps", 3, 0, 0, 765, 0 + iacCrankDuty = array, U08, 108, [4], "Duty %", 1.0, 0, 0, 100, 0 + #if CELSIUS + iacCrankBins = array, U08, 112, [4], "C", 1.0, -40, -40, 215, 0 + #else + iacCrankBins = array, U08, 112, [4], "F", 1.8, -22.23, -40, 215, 0 + #endif + + iacAlgorithm = bits , U08, 116, [0:2], "None", "On/Off", "PWM Open loop", "PWM Closed loop", "Stepper Open Loop", "Stepper Closed Loop", "PWM Closed+Open loop", "INVALID" + iacStepTime = bits , U08, 116, [3:5], "INVALID","1", "2", "3", "4", "5", "6","INVALID" + iacChannels = bits, U08, 116, [6:6], "1", "2" + iacPWMdir = bits , U08, 116, [7:7], "Normal", "Reverse" + + #if CELSIUS + iacFastTemp = scalar, U08, 117, "C", 1.0, -40, -40, 215, 0 + #else + iacFastTemp = scalar, U08, 117, "F", 1.8, -22.23, -40, 215, 0 + #endif + + iacStepHome = scalar, U08, 118, "Steps", 3, 0, 0, 765, 0 + iacStepHyster= scalar, U08, 119, "Steps", 1, 1.0, 1.0, 10, 0 + + ; Begin fan control vairables + fanInv = bits, U08, 120, [0:0], "No", "Yes" + fanEnable = bits, U08, 120, [1:1], "Off", "On/Off" + fanPin = bits, U08, 120, [2:7], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + #if CELSIUS + fanSP = scalar, U08, 121, "C", 1.0, -40, -40, 215.0, 0 + fanHyster = scalar, U08, 122, "C", 1.0, 0.0, 0.0, 40, 0 + #else + fanSP = scalar, U08, 121, "F", 1.8, -22.23, -40, 215.0, 0 + fanHyster = scalar, U08, 122, "F", 1.0, 0.0, 0.0, 40, 0 + #endif + fanFreq = scalar, U08 , 123, "Hz", 2.0, 0.0, 10, 511, 0 + #if CELSIUS + fanPWMBins = array, U08, 124, [4], "C", 1.0, -40, -40, 215, 0 + #else + fanPWMBins = array, U08, 124, [4], "F", 1.8, -22.23, -40, 215, 0 + #endif + +;-------------------------------------------------- +;Boost and vvt maps (Page 7) +;-------------------------------------------------- +page = 7 + boostTable = array, U08, 0,[8x8], { bitStringValue( boostTableLabels, boostType ) }, 2.0, 0.0, 0, {boostTableLimit}, 0 + rpmBinsBoost = array, U08, 64,[ 8], "RPM", 100.0, 0.0, 100, 25500, 0 + tpsBinsBoost = array, U08, 72,[ 8], "TPS", 1.0, 0.0, 0.0, 255.0, 0 + vvtTable = array, U08, 80,[8x8], "%", 1.0, 0.0, 0, 100, 0 + rpmBinsVVT = array, U08, 144,[ 8], "RPM", 100.0, 0.0, 100, 25500, 0 + loadBinsVVT = array, U08, 152,[ 8], { bitStringValue(algorithmUnits , vvtLoadSource) }, 1.0, 0.0, 0.0, 255.0, 0 +;Fuel staging Table + stagingTable = array, U08, 160, [8x8], "%", 1.0, 0.0, 0.0, 100.0, 0 + rpmBinsStaging= array, U08, 224, [ 8], "RPM", 100.0, 0.0, 100.0, 25500.0, 0 + loadBinsStaging= array, U08, 232, [ 8], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + +;-------------------------------------------------- +;Sequential fuel trim tables (Page 8) +;-------------------------------------------------- +page = 8 + fuelTrim1Table = array, U08, 0,[6x6], "%", 1.0, -128, -50, 50, 0 + fuelTrim1rpmBins = array, U08, 36,[ 6], "RPM", 100.0, 0.0, 0, 25500, 0 + fuelTrim1loadBins = array, U08, 42,[ 6], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + + fuelTrim2Table = array, U08, 48,[6x6], "%", 1.0, -128, -50, 50, 0 + fuelTrim2rpmBins = array, U08, 84,[ 6], "RPM", 100.0, 0.0, 0, 25500, 0 + fuelTrim2loadBins = array, U08, 90,[ 6], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + + fuelTrim3Table = array, U08, 96,[6x6], "%", 1.0, -128, -50, 50, 0 + fuelTrim3rpmBins = array, U08, 132,[ 6], "RPM", 100.0, 0.0, 0, 25500, 0 + fuelTrim3loadBins = array, U08, 138,[ 6], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + + fuelTrim4Table = array, U08, 144,[6x6], "%", 1.0, -128, -50, 50, 0 + fuelTrim4rpmBins = array, U08, 180,[ 6], "RPM", 100.0, 0.0, 0, 25500, 0 + fuelTrim4loadBins = array, U08, 186,[ 6], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + +;-------------------------------------------------- +;CANBUS control and Auxillary io(Page 9) +;-------------------------------------------------- +page = 9 + enable_secondarySerial = bits, U08, 0, [0:0], "Disable", "Enable" + intcan_available = bits, U08, 0, [1:1], "Disable", "Enable" + enable_intcan = bits, U08, 0, [2:2], "Disable", "Enable" + + caninput_sel0a = bits, U08, 1, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel0b = bits, U08, 1, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel0extsourcea = bits, U08, 1, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel0extsourceb = bits, U08, 1, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel0extsourcec = bits, U08, 1, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel1a = bits, U08, 2, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel1b = bits, U08, 2, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel1extsourcea = bits, U08, 2, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel1extsourceb = bits, U08, 2, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel1extsourcec = bits, U08, 2, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel2a = bits, U08, 3, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel2b = bits, U08, 3, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel2extsourcea = bits, U08, 3, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel2extsourceb = bits, U08, 3, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel2extsourcec = bits, U08, 3, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel3a = bits, U08, 4, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel3b = bits, U08, 4, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel3extsourcea = bits, U08, 4, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel3extsourceb = bits, U08, 4, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel3extsourcec = bits, U08, 4, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel4a = bits, U08, 5, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel4b = bits, U08, 5, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel4extsourcea = bits, U08, 5, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel4extsourceb = bits, U08, 5, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel4extsourcec = bits, U08, 5, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel5a = bits, U08, 6, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel5b = bits, U08, 6, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel5extsourcea = bits, U08, 6, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel5extsourceb = bits, U08, 6, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel5extsourcec = bits, U08, 6, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel6a = bits, U08, 7, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel6b = bits, U08, 7, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel6extsourcea = bits, U08, 7, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel6extsourceb = bits, U08, 7, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel6extsourcec = bits, U08, 7, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel7a = bits, U08, 8, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel7b = bits, U08, 8, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel7extsourcea = bits, U08, 8, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel7extsourceb = bits, U08, 8, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel7extsourcec = bits, U08, 8, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel8a = bits, U08, 9, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel8b = bits, U08, 9, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel8extsourcea = bits, U08, 9, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel8extsourceb = bits, U08, 9, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel8extsourcec = bits, U08, 9, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel9a = bits, U08, 10, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel9b = bits, U08, 10, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel9extsourcea = bits, U08, 10, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel9extsourceb = bits, U08, 10, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel9extsourcec = bits, U08, 10, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel10a = bits, U08, 11, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel10b = bits, U08, 11, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel10extsourcea = bits, U08, 11, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel10extsourceb = bits, U08, 11, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel10extsourcec = bits, U08, 11, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel11a = bits, U08, 12, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel11b = bits, U08, 12, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel11extsourcea = bits, U08, 12, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel11extsourceb = bits, U08, 12, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel11extsourcec = bits, U08, 12, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel12a = bits, U08, 13, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel12b = bits, U08, 13, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel12extsourcea = bits, U08, 13, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel12extsourceb = bits, U08, 13, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel12extsourcec = bits, U08, 13, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel13a = bits, U08, 14, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel13b = bits, U08, 14, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel13extsourcea = bits, U08, 14, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel13extsourceb = bits, U08, 14, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel13extsourcec = bits, U08, 14, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel14a = bits, U08, 15, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel14b = bits, U08, 15, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel14extsourcea = bits, U08, 15, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel14extsourceb = bits, U08, 15, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel14extsourcec = bits, U08, 15, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel15a = bits, U08, 16, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel15b = bits, U08, 16, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel15extsourcea = bits, U08, 16, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel15extsourceb = bits, U08, 16, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel15extsourcec = bits, U08, 16, [7:7], "INVALID", "Via Internal CAN" + + caninput_source_can_address0 = bits, U16, 17, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address1 = bits, U16, 19, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address2 = bits, U16, 21, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address3 = bits, U16, 23, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address4 = bits, U16, 25, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address5 = bits, U16, 27, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address6 = bits, U16, 29, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address7 = bits, U16, 31, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address8 = bits, U16, 33, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address9 = bits, U16, 35, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address10 = bits, U16, 37, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address11 = bits, U16, 39, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address12 = bits, U16, 41, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address13 = bits, U16, 43, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address14 = bits, U16, 45, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address15 = bits, U16, 47, [0:10], $CAN_ADDRESS_HEX + + caninput_source_start_byte0 = bits, U08, 49, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte1 = bits, U08, 50, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte2 = bits, U08, 51, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte3 = bits, U08, 52, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte4 = bits, U08, 53, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte5 = bits, U08, 54, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte6 = bits, U08, 55, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte7 = bits, U08, 56, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte8 = bits, U08, 57, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte9 = bits, U08, 58, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte10 = bits, U08, 59, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte11 = bits, U08, 60, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte12 = bits, U08, 61, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte13 = bits, U08, 62, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte14 = bits, U08, 63, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte15 = bits, U08, 64, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + + caninput_source_num_bytes0 = bits, U16, 65, [0:0], "1", "2" + caninput_source_num_bytes1 = bits, U16, 65, [1:1], "1", "2" + caninput_source_num_bytes2 = bits, U16, 65, [2:2], "1", "2" + caninput_source_num_bytes3 = bits, U16, 65, [3:3], "1", "2" + caninput_source_num_bytes4 = bits, U16, 65, [4:4], "1", "2" + caninput_source_num_bytes5 = bits, U16, 65, [5:5], "1", "2" + caninput_source_num_bytes6 = bits, U16, 65, [6:6], "1", "2" + caninput_source_num_bytes7 = bits, U16, 65, [7:7], "1", "2" + caninput_source_num_bytes8 = bits, U16, 65, [8:8], "1", "2" + caninput_source_num_bytes9 = bits, U16, 65, [9:9], "1", "2" + caninput_source_num_bytes10 = bits, U16, 65, [10:10], "1", "2" + caninput_source_num_bytes11 = bits, U16, 65, [11:11], "1", "2" + caninput_source_num_bytes12 = bits, U16, 65, [12:12], "1", "2" + caninput_source_num_bytes13 = bits, U16, 65, [13:13], "1", "2" + caninput_source_num_bytes14 = bits, U16, 65, [14:14], "1", "2" + caninput_source_num_bytes15 = bits, U16, 65, [15:15], "1", "2" + + unused10_67 = scalar, U08, 67, "", 1, 0, 0, 255, 0 + unused10_68 = scalar, U08, 68, "", 1, 0, 0, 255, 0 + + enable_intcandata_out = bits, U08, 69, [0:0], "Off", "On" + canoutput_sel0 = bits, U08, 70, [0:0], "Off", "On" + canoutput_sel1 = bits, U08, 71, [0:0], "Off", "On" + canoutput_sel2 = bits, U08, 72, [0:0], "Off", "On" + canoutput_sel3 = bits, U08, 73, [0:0], "Off", "On" + canoutput_sel4 = bits, U08, 74, [0:0], "Off", "On" + canoutput_sel5 = bits, U08, 75, [0:0], "Off", "On" + canoutput_sel6 = bits, U08, 76, [0:0], "Off", "On" + canoutput_sel7 = bits, U08, 77, [0:0], "Off", "On" + canoutput_param_group = array , U16, 78, [ 8], "", 1, 0, 0, 65535, 0 + canoutput_param_start_byte0 = bits, U08, 94, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + canoutput_param_start_byte1 = bits, U08, 95, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + canoutput_param_start_byte2 = bits, U08, 96, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + canoutput_param_start_byte3 = bits, U08, 97, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + canoutput_param_start_byte4 = bits, U08, 98, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + canoutput_param_start_byte5 = bits, U08, 99, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + canoutput_param_start_byte6 = bits, U08, 100, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + canoutput_param_start_byte7 = bits, U08, 101, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + canoutput_param_num_bytes0 = bits, U08, 102, [0:1], "INVALID", "1", "2", "INVALID" + canoutput_param_num_bytes1 = bits, U08, 103, [0:1], "INVALID", "1", "2", "INVALID" + canoutput_param_num_bytes2 = bits, U08, 104, [0:1], "INVALID", "1", "2", "INVALID" + canoutput_param_num_bytes3 = bits, U08, 105, [0:1], "INVALID", "1", "2", "INVALID" + canoutput_param_num_bytes4 = bits, U08, 106, [0:1], "INVALID", "1", "2", "INVALID" + canoutput_param_num_bytes5 = bits, U08, 107, [0:1], "INVALID", "1", "2", "INVALID" + canoutput_param_num_bytes6 = bits, U08, 108, [0:1], "INVALID", "1", "2", "INVALID" + canoutput_param_num_bytes7 = bits, U08, 109, [0:1], "INVALID", "1", "2", "INVALID" + + unused10_110 = scalar, U08, 110, "", 1, 0, 0, 255, 0 + unused10_111 = scalar, U08, 111, "", 1, 0, 0, 255, 0 + unused10_112 = scalar, U08, 112, "", 1, 0, 0, 255, 0 + unused10_113 = scalar, U08, 113, "", 1, 0, 0, 255, 0 + + speeduino_tsCanId = bits, U08, 114, [0:3], $tsCanId_list + true_address = bits, U16, 115, [0:10], $CAN_ADDRESS_HEX + realtime_base_address = bits, U16, 117, [0:10], $CAN_ADDRESS_HEX + obd_address = bits, U16, 119, [0:10], $CAN_ADDRESS_HEX + + Auxin0pina = bits, U08, 121, [0:5], $ANALOG_PIN + Auxin1pina = bits, U08, 122, [0:5], $ANALOG_PIN + Auxin2pina = bits, U08, 123, [0:5], $ANALOG_PIN + Auxin3pina = bits, U08, 124, [0:5], $ANALOG_PIN + Auxin4pina = bits, U08, 125, [0:5], $ANALOG_PIN + Auxin5pina = bits, U08, 126, [0:5], $ANALOG_PIN + Auxin6pina = bits, U08, 127, [0:5], $ANALOG_PIN + Auxin7pina = bits, U08, 128, [0:5], $ANALOG_PIN + Auxin8pina = bits, U08, 129, [0:5], $ANALOG_PIN + Auxin9pina = bits, U08, 130, [0:5], $ANALOG_PIN + Auxin10pina = bits, U08, 131, [0:5], $ANALOG_PIN + Auxin11pina = bits, U08, 132, [0:5], $ANALOG_PIN + Auxin12pina = bits, U08, 133, [0:5], $ANALOG_PIN + Auxin13pina = bits, U08, 134, [0:5], $ANALOG_PIN + Auxin14pina = bits, U08, 135, [0:5], $ANALOG_PIN + Auxin15pina = bits, U08, 136, [0:5], $ANALOG_PIN + + Auxin0pinb = bits, U08, 137, [0:5], $DIGITAL_PIN + Auxin1pinb = bits, U08, 138, [0:5], $DIGITAL_PIN + Auxin2pinb = bits, U08, 139, [0:5], $DIGITAL_PIN + Auxin3pinb = bits, U08, 140, [0:5], $DIGITAL_PIN + Auxin4pinb = bits, U08, 141, [0:5], $DIGITAL_PIN + Auxin5pinb = bits, U08, 142, [0:5], $DIGITAL_PIN + Auxin6pinb = bits, U08, 143, [0:5], $DIGITAL_PIN + Auxin7pinb = bits, U08, 144, [0:5], $DIGITAL_PIN + Auxin8pinb = bits, U08, 145, [0:5], $DIGITAL_PIN + Auxin9pinb = bits, U08, 146, [0:5], $DIGITAL_PIN + Auxin10pinb = bits, U08, 147, [0:5], $DIGITAL_PIN + Auxin11pinb = bits, U08, 148, [0:5], $DIGITAL_PIN + Auxin12pinb = bits, U08, 149, [0:5], $DIGITAL_PIN + Auxin13pinb = bits, U08, 150, [0:5], $DIGITAL_PIN + Auxin14pinb = bits, U08, 151, [0:5], $DIGITAL_PIN + Auxin15pinb = bits, U08, 152, [0:5], $DIGITAL_PIN + + iacStepperInv = bits, U08, 153, [0:0], "No", "Yes" + iacCoolTime = bits, U08, 153, [1:3], "0", "1", "2", "3", "4", "5", "6","INVALID" + blankfield = bits, U08, 153, [4:4], "","" + + unused10_153 = bits, U08, 153, [5:7], "" + + iacMaxSteps = scalar, U08, 154, "Steps", 3, 0, 0, {iacStepHome-3}, 0 + + unused10_154 = array, U08, 155, [37], "", 1, 0, 0, 255, 0 + +page = 10 +#if CELSIUS + crankingEnrichBins = array, U08, 0, [4], "C", 1.0, -40, -40, 215, 0 +#else + crankingEnrichBins = array, U08, 0, [4], "F", 1.8, -22.23, -40, 215, 0 +#endif + crankingEnrichValues= array, U08, 4, [4], "%", 5.0, 0.0, 0, 1275, 0 ; Values for the cranking enrichment curve + + rotaryType = bits , U08, 8, [0:1], "FC", "FD", "RX8", "INVALID" + stagingEnabled = bits , U08, 8, [2:2], "Off","On" + stagingMode = bits , U08, 8, [3:3], "Table","Automatic" + EMAPPin = bits, U08, 8, [4:7], "A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15" + + rotarySplitValues = array, U08, 9, [8], "degrees", 1.0, 0.0, 0.0, 40, 0 + rotarySplitBins = array, U08, 17, [8], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + + boostSens = scalar, U16, 25, "", 1, 0, 0, 5000, 0 + boostIntv = scalar, U08, 27, "ms", 1, 0, 0, 250, 0 + stagedInjSizePri = scalar, U16, 28, "cc/min", 1, 0, 0, 1500, 0 + stagedInjSizeSec = scalar, U16, 30, "cc/min", 1, 0, 0, 1500, 0 + lnchCtrlTPS = scalar, U08, 32, "%TPS", 1, 0, 0, 100, 0 + + flexBoostBins = array, U08, 33, [6], "%", 1.0, 0.0, 0.0, 250.0, 0 + ; The boost range is obviously arbitrary since int16_t has ~32k in both directions + flexBoostAdj = array, S16, 39, [6], "kPa", 1.0, 0.0, -500.0, 500.0, 0 + flexFuelBins = array, U08, 51, [6], "%", 1.0, 0.0, 0.0, 250.0, 0 + flexFuelAdj = array, U08, 57, [6], "%", 1.0, 0.0, 0.0, 250.0, 0 + flexAdvBins = array, U08, 63, [6], "%", 1.0, 0.0, 0.0, 250.0, 0 + flexAdvAdj = array, U08, 69, [6], "Deg", 1.0, -40, -40, 215.0, 0 + + n2o_enable = bits , U08, 75, [0:1], "Off","1 Stage","2 stage", "INVALID" + n2o_arming_pin = bits , U08, 75, [2:7], $IO_Pins_no_def +#if CELSIUS + n2o_minCLT = scalar, U08, 76, "C", 1.0, -40, -40, 215, 0 +#else + n2o_minCLT = scalar, U08, 76, "F", 1.8, -22.23, -40, 215, 0 +#endif + n2o_maxMAP = scalar, U08, 77, "kPa", 2.0, 0.0, 0.0, 511.0, 0 + n2o_minTPS = scalar, U08, 78, "%TPS", 1.0, 0.0, 0.0, 100, 0 + n2o_maxAFR = scalar, U08, 79, "AFR", 0.1, 0.0, 0.0, 25.5, 1 + + n2o_stage1_pin = bits , U08, 80, [0:5], $IO_Pins_no_def + n2o_pin_polarity = bits , U08, 80, [6:6], "HIGH", "LOW" + n2o_unused = bits , U08, 80, [7:7], "No", "Yes" + n2o_stage1_minRPM = scalar, U08, 81, "RPM", 100, 0.0, 1000, 10000, 0 + n2o_stage1_maxRPM = scalar, U08, 82, "RPM", 100, 0.0, 1000, 10000, 0 + n2o_stage1_adderMin = scalar, U08, 83, "ms", 0.1, 0, 0, 25.5, 1 + n2o_stage1_adderMax = scalar, U08, 84, "ms", 0.1, 0, 0, 25.5, 1 + n2o_stage1_retard = scalar, U08, 85, "Deg", 1.0, 0.0, 0.0, 250.0, 0 + + n2o_stage2_pin = bits , U08, 86, [0:5], $IO_Pins_no_def + n2o_stage2_unused = bits , U08, 86, [6:7], "No", "Yes", "INVALID", "INVALID" + n2o_stage2_minRPM = scalar, U08, 87, "RPM", 100, 0.0, 1000, 10000, 0 + n2o_stage2_maxRPM = scalar, U08, 88, "RPM", 100, 0.0, 1000, 10000, 0 + n2o_stage2_adderMin = scalar, U08, 89, "ms", 0.1, 0, 0, 32, 1 + n2o_stage2_adderMax = scalar, U08, 90, "ms", 0.1, 0, 0, 32, 1 + n2o_stage2_retard = scalar, U08, 91, "Deg", 1.0, 0.0, 0.0, 250.0, 0 + + ; Knock settings + knock_mode = bits , U08, 92, [0:1], "Off","Digital","Analog", "INVALID" + knock_pin = bits , U08, 92, [2:7], "INVALID", "INVALID", "2", "3", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "18", "19", "20", "21", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + + knock_trigger = bits , U08, 93, [0:0], "HIGH", "LOW" + knock_pullup = bits , U08, 93, [1:1], "Off", "Internal pullup" + knock_limiterDisable= bits , U08, 93, [2:2], "No", "Yes" + knock_unused = bits , U08, 93, [3:4], "INVALID", "1", "2", "3" + + ;Knock detection / filters + knock_count = bits , U08, 93, [5:7], "INVALID", "1", "2", "3", "4", "5", "6", "7" + knock_threshold = scalar, U08, 94, "Volts", 0.1, 0.0, 0.0, 5.0, 1 + knock_maxMAP = scalar, U08, 95, "kPa", 2.0, 0.0, 0.0, 511.0, 0 + knock_maxRPM = scalar, U08, 96, "RPM", 100.0, 0.0, 0, 10000, 0 + knock_window_rpms = array, U08, 97, [6], "RPM", 100.0, 0.0, 0, 10000, 0 + knock_window_angle = array, U08, 103, [6], "deg", 1.0, -50, -50, 100, 0 + knock_window_dur = array, U08, 109, [6], "deg", 1.0, 0.0, 0, 100, 0 ;Knock window duration + + ;Retard and recovery + knock_maxRetard = scalar, U08, 115, "Deg", 1.0, 0.0, 0.0, 50, 0 + knock_firstStep = scalar, U08, 116, "Deg", 1.0, 0.0, 0.0, 50, 0 + knock_stepSize = scalar, U08, 117, "Deg", 1.0, 0.0, 0.0, 50, 0 + knock_stepTime = scalar, U08, 118, "Sec", 0.1, 0.0, 0.0, 2.5, 1 + + knock_duration = scalar, U08, 119, "Sec", 0.1, 0.0, 0.0, 2.5, 1 ;//Time after knock retard starts that it should start recovering + knock_recoveryStepTime = scalar, U08, 120, "Sec", 0.1, 0.0, 0.0, 2.5, 1 + knock_recoveryStep = scalar, U08, 121, "Deg", 1.0, 0.0, 0.0, 50, 0 + + ;Things for the 2nd fuel table + fuel2Algorithm = bits, U08, 122, [0:2], $loadSourceNames + fuel2Mode = bits, U08, 122, [3:5], "Off", "Multiplied %", "Added", "Switched - Conditional", "Switched - Input based","INVALID","INVALID","INVALID" + fuel2SwitchVariable = bits, U08, 122, [6:7], "RPM", "MAP", "TPS", "ETH%" + fuel2SwitchValue = scalar, U16, 123, { bitStringValue(fuel2SwitchUnits, fuel2SwitchVariable) }, 1.0, 0.0, 0.0, 9000, 0 + fuel2InputPin = bits , U08, 125, [0:5], $IO_Pins_no_def + fuel2InputPolarity = bits , U08, 125, [6:6], "LOW", "HIGH" + fuel2InputPullup = bits , U08, 125, [7:7], "No", "Yes" + + ;All related to the closed loop VVT control + vvtCLholdDuty = scalar, U08, 126, "%", 1.0, 0.0, 0.0, 100.0, 0 + vvtCLKP = scalar, U08, 127, "%", 0.03125, 0.0, 0.0, 7.96, 2 ; * ( 1 byte) + vvtCLKI = scalar, U08, 128, "%", 0.03125, 0.0, 0.0, 7.96, 2 ; * ( 1 byte) + vvtCLKD = scalar, U08, 129, "%", 0.00781, 0.0, 0.0, 1.99, 3 ; * ( 1 byte) + vvtCLMinAng = scalar, S16, 130, "deg", 1.0, 0.0, -360.0, 360.0, 0 ; * ( 2 bytes) + vvtCLMaxAng = scalar, S16, 132, "deg", 1.0, 0.0, -360.0, 360.0, 0 ; * ( 2 bytes) + + crankingEnrichTaper = scalar, U08, 134, "s", 0.1, 0.0, 0.0, 25.5, 1 + + ;Pressure transducers + fuelPressureEnable = bits, U08, 135, [0:0], "Off", "On" + oilPressureEnable = bits, U08, 135, [1:1], "Off", "On" + oilPressureProtEnbl = bits, U08, 135, [2:2], "Off", "On" + + fuelPressurePin = bits, U08, 136, [0:3], "A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15" + oilPressurePin = bits, U08, 136, [4:7], "A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15" + + fuelPressureMin = scalar, S08, 137, "psi", 1.0, 0.0, -100, 127, 0 ;Note signed int + fuelPressureMax = scalar, U08, 138, "psi", 1.0, 0.0, 0.0, 255, 0 + oilPressureMin = scalar, S08, 139, "psi", 1.0, 0.0, -100, 127, 0 ;Note signed int + oilPressureMax = scalar, U08, 140, "psi", 1.0, 0.0, 0.0, 255, 0 + + oilPressureProtRPM = array, U08, 141, [ 4], "RPM", 100.0, 0.0, 100.0, 25500, 0 + oilPressureProtMins = array, U08, 145, [ 4], "psi", 1.0, 0.0, 0.0, 255, 0 + + wmiEnabled = bits, U08, 149, [0:0], "Off", "On" + wmiMode = bits, U08, 149, [1:2], "Simple", "Proportional", "Openloop", "Closedloop" + + wmiAdvEnabled = bits, U08, 149, [7:7], "Off", "On" + + wmiTPS = scalar, U08, 150, "%TPS", 1.0, 0.0, 0.0, 100, 0 + wmiRPM = scalar, U08, 151, "RPM", 100.0, 0.0, 0, 10000, 0 + wmiMAP = scalar, U08, 152, "kPa", 2.0, 0.0, 0.0, 511.0, 0 + wmiMAP2 = scalar, U08, 153, "kPa", 2.0, 0.0, 0.0, 511.0, 0 +#if CELSIUS + wmiIAT = scalar, U08, 154, "C", 1.0, -40, -40, 215, 0 +#else + wmiIAT = scalar, U08, 154, "F", 1.8, -22.23, -40, 215, 0 +#endif + wmiOffset = scalar, S08, 155, "ms", 1.0, 0.0, -12.7, 12.7, 0 ;Note signed int + + wmiIndicatorEnabled = bits, U08, 156, [0:0], "Off", "On" + wmiIndicatorPin = bits, U08, 156, [1:6], "Board Default", $DIGITAL_PIN + wmiIndicatorPolarity = bits , U08, 156, [7:7], "Normal", "Inverted" + + wmiEmptyEnabled = bits, U08, 157, [0:0], "Off", "On" + wmiEmptyPin = bits, U08, 157, [1:6], "Board Default", $DIGITAL_PIN + wmiEmptyPolarity = bits , U08, 157, [7:7], "Normal", "Inverted" + + wmiEnabledPin = bits, U08, 158, [0:5], "Board Default", $DIGITAL_PIN + + wmiAdvBins = array, U08, 159, [6], "kPa", 2.0, 0.0, 0.0, 511.0, 0 + wmiAdvAdj = array, U08, 165, [6], "Deg", 1.0, -40, -40, 215.0, 0 + + vvtCLminDuty = scalar, U08, 171, "%", 1.0, 0.0, 0.0, 100.0, 0 ; Minimum and maximum duty cycles when using closed loop + vvtCLmaxDuty = scalar, U08, 172, "%", 1.0, 0.0, 0.0, 100.0, 0 + vvt2Pin = bits , U08, 173, [0:5], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + + ;Fuel temperature correction + #if CELSIUS + fuelTempBins = array, U08, 174, [6], "C", 1.0, -40, -40, 215, 0 + #else + fuelTempBins = array, U08, 174, [6], "F", 1.8, -22.23, -40, 215, 0 + #endif + fuelTempValues = array, U08, 180, [6], "%", 1.0, 0.0, 0, 255, 0 + + ;Things for the 2nd spark table + spark2Algorithm = bits, U08, 186, [0:2], $loadSourceNames + spark2Mode = bits, U08, 186, [3:5], "Off", "Multiplied %", "Added", "Switched - Conditional", "Switched - Input based","INVALID","INVALID","INVALID" + spark2SwitchVariable = bits, U08, 186, [6:7], "RPM", "MAP", "TPS", "ETH%" + spark2SwitchValue = scalar, U16, 187, { bitStringValue(fuel2SwitchUnits, spark2SwitchVariable) }, 1.0, 0.0, 0.0, 9000, 0 + spark2InputPin = bits , U08, 189, [0:5], $IO_Pins_no_def + spark2InputPolarity = bits , U08, 189, [6:6], "LOW", "HIGH" + spark2InputPullup = bits , U08, 189, [7:7], "No", "Yes" + + unused11_190_191 = array, U08, 90, [2], "RPM", 100.0, 0.0, 100, 25500, 0 + +;Page 11 is the fuel map and axis bins only +page = 11 + ; name = bits, type, offset, bits + ; name = array, type, offset, shape, units, scale, translate, lo, hi, digits + ; name = scalar, type, offset, units, scale, translate, lo, hi, digits + veTable2 = array, U08, 0, [16x16],"%", 1.0, 0.0, 0.0, 255.0, 0 + fuelRPM2Bins = array, U08, 256, [ 16], "RPM", 100.0, 0.0, 0.0, 25500.0, 0 + fuelLoad2Bins = array, U08, 272, [ 16], { bitStringValue(algorithmUnits , fuel2Algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + + +;-------------------------------------------------- +;Water methanol inejction maps (Page 12) +;-------------------------------------------------- +page = 12 + wmiTable = array, U08, 0,[8x8], "%", 1.0, 0.0, 0.0, 255.0, 0 + rpmBinsWMI = array, U08, 64,[ 8], "RPM", 100.0, 0.0, 100, 25500, 0 + mapBinsWMI = array, U08, 72,[ 8], "kPa", 2.0, 0.0, 0.0, 511.0, 0 + +;Page 13 is the programmable outputs +page = 13 + outputInverted0 = bits, U08, 0, [0:0], "Active high", "Active low" + outputInverted1 = bits, U08, 0, [1:1], "Active high", "Active low" + outputInverted2 = bits, U08, 0, [2:2], "Active high", "Active low" + outputInverted3 = bits, U08, 0, [3:3], "Active high", "Active low" + outputInverted4 = bits, U08, 0, [4:4], "Active high", "Active low" + outputInverted5 = bits, U08, 0, [5:5], "Active high", "Active low" + outputInverted6 = bits, U08, 0, [6:6], "Active high", "Active low" + outputInverted7 = bits, U08, 0, [7:7], "Active high", "Active low" + unused12_1 = scalar, U08, 1, "bits", 1.000, 0.000 + outputPin = array, U08, 2, [ 8], "", 1.0, 0.0, 0.0, 255.0, 0 + outputPin0 = bits, U08, 2, [0:7], $comp_IO_Pins + outputPin1 = bits, U08, 3, [0:7], $comp_IO_Pins + outputPin2 = bits, U08, 4, [0:7], $comp_IO_Pins + outputPin3 = bits, U08, 5, [0:7], $comp_IO_Pins + outputPin4 = bits, U08, 6, [0:7], $comp_IO_Pins + outputPin5 = bits, U08, 7, [0:7], $comp_IO_Pins + outputPin6 = bits, U08, 8, [0:7], $comp_IO_Pins + outputPin7 = bits, U08, 9, [0:7], $comp_IO_Pins + outputDelay = array, U08, 10, [ 8], "S", 0.1, 0.0, 0.0, 25.5, 1 + firstDataIn = array, U08, 18, [ 8], "", 1.0, 0.0, 0.0, 65535.0, 0 + firstDataIn0= bits, U08, 18, [0:7], $fullStatus_def + firstDataIn1= bits, U08, 19, [0:7], $fullStatus_def + firstDataIn2= bits, U08, 20, [0:7], $fullStatus_def + firstDataIn3= bits, U08, 21, [0:7], $fullStatus_def + firstDataIn4= bits, U08, 22, [0:7], $fullStatus_def + firstDataIn5= bits, U08, 23, [0:7], $fullStatus_def + firstDataIn6= bits, U08, 24, [0:7], $fullStatus_def + firstDataIn7= bits, U08, 25, [0:7], $fullStatus_def + secondDataIn = array, U08, 26, [ 8], "", 1.0, 0.0, 0.0, 65535.0, 0 + secondDataIn0= bits, U08, 26, [0:7], $fullStatus_def + secondDataIn1= bits, U08, 27, [0:7], $fullStatus_def + secondDataIn2= bits, U08, 28, [0:7], $fullStatus_def + secondDataIn3= bits, U08, 29, [0:7], $fullStatus_def + secondDataIn4= bits, U08, 30, [0:7], $fullStatus_def + secondDataIn5= bits, U08, 31, [0:7], $fullStatus_def + secondDataIn6= bits, U08, 32, [0:7], $fullStatus_def + secondDataIn7= bits, U08, 33, [0:7], $fullStatus_def + unused13_35_49 = array, U08, 34, [ 16],"%", 1.0, 0.0, 0.0, 100.0, 0 + firstTarget = array, S16, 50, [ 8], "", 1.0, 0.0, -32768.0, 32768.0, 0 + secondTarget = array, S16, 66, [ 8], "", 1.0, 0.0, -32768.0, 32768.0, 0 + firstCompType0 = bits, U08, 82, [0:2], $comparator_def + secondCompType0 = bits, U08, 82, [3:5], $comparator_def + bitwise0 = bits, U08, 82, [6:7], $bitwise_def + firstCompType1 = bits, U08, 83, [0:2], $comparator_def + secondCompType1 = bits, U08, 83, [3:5], $comparator_def + bitwise1 = bits, U08, 83, [6:7], $bitwise_def + firstCompType2 = bits, U08, 84, [0:2], $comparator_def + secondCompType2 = bits, U08, 84, [3:5], $comparator_def + bitwise2 = bits, U08, 84, [6:7], $bitwise_def + firstCompType3 = bits, U08, 85, [0:2], $comparator_def + secondCompType3 = bits, U08, 85, [3:5], $comparator_def + bitwise3 = bits, U08, 85, [6:7], $bitwise_def + firstCompType4 = bits, U08, 86, [0:2], $comparator_def + secondCompType4 = bits, U08, 86, [3:5], $comparator_def + bitwise4 = bits, U08, 86, [6:7], $bitwise_def + firstCompType5 = bits, U08, 87, [0:2], $comparator_def + secondCompType5 = bits, U08, 87, [3:5], $comparator_def + bitwise5 = bits, U08, 87, [6:7], $bitwise_def + firstCompType6 = bits, U08, 88, [0:2], $comparator_def + secondCompType6 = bits, U08, 88, [3:5], $comparator_def + bitwise6 = bits, U08, 88, [6:7], $bitwise_def + firstCompType7 = bits, U08, 89, [0:2], $comparator_def + secondCompType7 = bits, U08, 89, [3:5], $comparator_def + bitwise7 = bits, U08, 89, [6:7], $bitwise_def + candID = array, U16, 90, [ 8], "", 1.0, 0.0, 0.0, 255.0, 0 + unused12_106_127= array, U08, 106, [ 22], "%", 1.0, 0.0, 0.0, 255, 0 + +;-------------------------------------------------- +;Second ignition map (Page 14) +;-------------------------------------------------- +page = 14 + advTable2 = array, U08, 0,[16x16], "deg", 1.0, -40, -40, 215.0, 0 + rpmBins3 = array, U08, 256,[ 16], "RPM", 100.0, 0.0, 100, 25500, 0 + mapBins2 = array, U08, 272, [ 16], { bitStringValue(algorithmUnits , ignAlgorithm) }, 2.0, 0.0, 0.0, {ignLoadMax}, 0 ; This name has to be used in order for the table to show up in MLVs table. I can't find the regexs that make this work :( + + + +;------------------------------------------------------------------------------- + +[EventTriggers] + triggeredPageRefresh = 1, { vssRefresh > 0 } + +[ConstantsExtensions] + requiresPowerCycle = nCylinders + requiresPowerCycle = pinLayout + requiresPowerCycle = fanPin + requiresPowerCycle = reqFuel + requiresPowerCycle = numTeeth + requiresPowerCycle = missingTeeth + requiresPowerCycle = trigPatternSec + requiresPowerCycle = injOpen + requiresPowerCycle = IgInv + requiresPowerCycle = fanInv + requiresPowerCycle = boostEnabled + requiresPowerCycle = vvtEnabled +; requiresPowerCycle = vvtChannels + requiresPowerCycle = boostFreq + requiresPowerCycle = vvtFreq + requiresPowerCycle = idleFreq + requiresPowerCycle = sparkMode + requiresPowerCycle = launchPin + requiresPowerCycle = launchEnable + requiresPowerCycle = launchHiLo + requiresPowerCycle = flexEnabled + requiresPowerCycle = vssMode + requiresPowerCycle = oddfire2 + requiresPowerCycle = oddfire3 + requiresPowerCycle = oddfire4 + requiresPowerCycle = iacCLminDuty + requiresPowerCycle = iacCLmaxDuty + requiresPowerCycle = useExtBaro + requiresPowerCycle = useEMAP + requiresPowerCycle = baroPin + requiresPowerCycle = rotaryType + requiresPowerCycle = stagedInjSizePri + requiresPowerCycle = stagedInjSizeSec + requiresPowerCycle = stagingEnabled + requiresPowerCycle = resetControl + requiresPowerCycle = resetControlPin + requiresPowerCycle = n2o_enable + requiresPowerCycle = n2o_arming_pin + requiresPowerCycle = n2o_pin_polarity + requiresPowerCycle = knock_mode + requiresPowerCycle = knock_pin + requiresPowerCycle = knock_trigger + requiresPowerCycle = knock_pullup + requiresPowerCycle = idleUpEnabled + requiresPowerCycle = idleUpOutputEnabled + requiresPowerCycle = CTPSEnabled + requiresPowerCycle = CTPSPin + requiresPowerCycle = CTPSPolarity + requiresPowerCycle = legacyMAP + requiresPowerCycle = fuel2InputPin + requiresPowerCycle = fuel2InputPolarity + requiresPowerCycle = wmiEnabled + requiresPowerCycle = wmiEmptyEnabled + requiresPowerCycle = wmiEmptyPin + requiresPowerCycle = wmiEmptyPolarity + requiresPowerCycle = wmiIndicatorEnabled + requiresPowerCycle = wmiIndicatorPin + requiresPowerCycle = wmiIndicatorPolarity + requiresPowerCycle = vvtCLminDuty + requiresPowerCycle = vvtCLmaxDuty + + requiresPowerCycle = caninput_sel0a + requiresPowerCycle = caninput_sel0b + requiresPowerCycle = caninput_sel1a + requiresPowerCycle = caninput_sel1b + requiresPowerCycle = caninput_sel2a + requiresPowerCycle = caninput_sel2b + requiresPowerCycle = caninput_sel3a + requiresPowerCycle = caninput_sel3b + requiresPowerCycle = caninput_sel4a + requiresPowerCycle = caninput_sel4b + requiresPowerCycle = caninput_sel5a + requiresPowerCycle = caninput_sel5b + requiresPowerCycle = caninput_sel6a + requiresPowerCycle = caninput_sel6b + requiresPowerCycle = caninput_sel7a + requiresPowerCycle = caninput_sel7b + requiresPowerCycle = caninput_sel8a + requiresPowerCycle = caninput_sel8b + requiresPowerCycle = caninput_sel9a + requiresPowerCycle = caninput_sel9b + requiresPowerCycle = caninput_sel10a + requiresPowerCycle = caninput_sel10b + requiresPowerCycle = caninput_sel11a + requiresPowerCycle = caninput_sel11b + requiresPowerCycle = caninput_sel12a + requiresPowerCycle = caninput_sel12b + requiresPowerCycle = caninput_sel13a + requiresPowerCycle = caninput_sel13b + requiresPowerCycle = caninput_sel14a + requiresPowerCycle = caninput_sel14b + requiresPowerCycle = caninput_sel15a + requiresPowerCycle = caninput_sel15b + requiresPowerCycle = outputPin + + defaultValue = pinLayout, 1 + defaultValue = TrigPattern, 0 + defaultValue = useResync, 1 + defaultValue = trigPatternSec, 0 + defaultValue = sparkMode, 0 + defaultValue = injAng, 355 355 355 355 + defaultValue = injAngRPM, 500 2000 4500 6500 + defaultValue = nInjectors, 4 + defaultValue = dutyLim, 80 + defaultValue = mapMin, 10 + defaultValue = mapMax, 260 + defaultValue = baroMin, 10 + defaultValue = baroMax, 260 + defaultValue = useEMAP, 0 + defaultValue = EMAPMin, 10 + defaultValue = EMAPMax, 260 + defaultValue = fpPrime, 3 + defaultValue = TrigFilter, 0 + defaultValue = ignCranklock,0 + defaultValue = multiplyMAP, 0 + defaultValue = includeAFR, 0 + defaultValue = incorporateAFR, 0 + defaultValue = stoich, 14.7 + defaultValue = flexEnabled, 0 + defaultValue = oddfire2, 0 + defaultValue = oddfire3, 0 + defaultValue = oddfire4, 0 + defaultValue = flexFreqLow, 50 + defaultValue = flexFreqHigh,150 + defaultValue = fuelPumpPin, 0 + defaultValue = fanPin, 0 + defaultValue = iacCLminDuty,0 + defaultValue = iacCLmaxDuty,100 + defaultValue = iacTPSlimit, 5 + defaultValue = iacRPMlimitHysteresis, 200 + defaultValue = boostMinDuty,0 + defaultValue = boostMaxDuty,100 + defaultValue = boostSens, 2000 + defaultValue = boostIntv, 30 + defaultValue = sparkDur, 1.0 + defaultValue = fixAngEnable,0 + defaultValue = n2o_enable, 0 + defaultValue = speeduino_tsCanId, 0 + defaultValue = true_address, 256 + defaultValue = realtime_base_address, 336 + defaultValue = VVTasOnOff, 0 + defaultValue = stagingEnabled, 0 + defaultValue = lnchCtrlTPS, 0 + defaultValue = resetControl, 0 + defaultValue = bootloaderCaps, 0 + defaultValue = aeTaperMin, 1000 + defaultValue = aeTaperMax, 5000 + defaultValue = aeColdPct, 100 + defaultValue = aeColdTaperMin, 0 + defaultValue = aeColdTaperMax, 60 + defaultValue = aeMode, 0 ;Set aeMode to TPS + defaultValue = batVoltCorrect, 0 + defaultValue = aeApplyMode, 0 + defaultValue = legacyMAP, 0 + defaultValue = battVCorMode, 1 + defaultValue = idleAdvEnabled, 0 ;Idle advance control turned off + defaultValue = aseTaperTime, 0.0 + defaultValue = dfcoDelay, 0.1 + defaultValue = idleTaperTime, 1.0 + defaultValue = dfcoDelay, 0.1 + defaultValue = dfcoMinCLT, 25 + defaultValue = crankingEnrichTaper, 0.1 + defaultValue = boostCutEnabled, 1 + defaultValue = primingDelay, 0.5 + defaultValue = vvtCLminDuty, 0 + defaultValue = vvtCLmaxDuty, 80 ;80% is a completely arbitrary amount for the max duty cycle, but seems inline with most VVT documentation + + ;Default pins + defaultValue = fanPin, 0 + defaultValue = vvt1Pin, 0 + defaultValue = launchPin, 0 + defaultValue = boostPin, 0 + defaultValue = fuelPumpPin, 0 + defaultValue = tachoPin, 0 + defaultValue = tachoDuration, 2 + defaultValue = useTachoSweep, 0 + defaultValue = tachoSweepMaxRPM, 6000 + defaultValue = perToothIgn, 0 + defaultValue = resetControlPin, 0 + + ;Default ADC filter values + defaultValue = ADCFILTER_TPS, 50 + defaultValue = ADCFILTER_CLT, 180 + defaultValue = ADCFILTER_IAT, 180 + defaultValue = ADCFILTER_O2, 100 + defaultValue = ADCFILTER_BAT, 128 + defaultValue = ADCFILTER_MAP, 20 ;This is only used on Instantaneous MAP readings and is intentionally very weak to allow for faster response + defaultValue = ADCFILTER_BARO, 64 + ;Force the controller priority for the filters (Controller knows best here when in doubt) + controllerPriority = ADCFILTER_TPS + controllerPriority = ADCFILTER_CLT + controllerPriority = ADCFILTER_IAT + controllerPriority = ADCFILTER_O2 + controllerPriority = ADCFILTER_BAT + controllerPriority = ADCFILTER_MAP + controllerPriority = ADCFILTER_BARO + ;Again, force the setting from the controller for the trigger edges. This is particularly useful for the Oct 2018 update where the names of the dges changed + controllerPriority = TrigEdge + controllerPriority = TrigEdgeSec + ;VSS Ratios and calibration need controller priority so they can be set with the command buttons + controllerPriority = vssPulsesPerKm + controllerPriority = vssRatio1 + controllerPriority = vssRatio2 + controllerPriority = vssRatio3 + controllerPriority = vssRatio4 + controllerPriority = vssRatio5 + controllerPriority = vssRatio6 + + ;These are the limits for each of the load algorithms (Refer to the PC Variables section) + ;Order is: MAP TPS IMAP/EMAP ITB UNUSED UNUSED UNUSED UNUSED + defaultValue = algorithmLimits, 511 100 511 511 100 100 100 100 + defaultValue = fuelLoadMax, 511 + defaultValue = ignLoadMax, 511 + defaultValue = fuelLoadMax, 511 + defaultValue = ignLoadMax, 511 + + ;VSS related settings + defaultValue = vssRatio1, 10.0 + defaultValue = vssRatio2, 16.0 + defaultValue = vssRatio3, 22.0 + defaultValue = vssRatio4, 28.0 + defaultValue = vssRatio5, 34.0 + defaultValue = vssRatio6, 40.0 + controllerPriority = vssRatio1 + controllerPriority = vssRatio2 + controllerPriority = vssRatio3 + controllerPriority = vssRatio4 + controllerPriority = vssRatio5 + controllerPriority = vssRatio6 + defaultValue = vssPulsesPerKm, 3000 + defaultValue = vssSmoothing, 50 + + ;pinLayout = bits, U08, 15, [0:7], "Speeduino v0.1", "Speeduino v0.2", "Speeduino v0.3", "Speeduino v0.4", "INVALID", "INVALID", "01-05 MX5 PNP", "INVALID", "96-97 MX5 PNP", "NA6 MX5 PNP", "Turtana PCB", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "Plazomat I/O 0.1", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "Daz V6 Shield 0.1", "BMW PnP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "NO2C", "UA4C", "INVALID", "INVALID", "INVALID", "DIY-EFI CORE4 v1.0", "INVALID", "INVALID", "INVALID", "INVALID", "dvjcodec Teensy RevA", "dvjcodec Teensy RevB", "INVALID", "INVALID", "INVALID", "DropBear", "INVALID", "INVALID", "INVALID", "INVALID", "Black STM32F407VET6 V0.1", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + defaultValue = boardFuelOutputs, 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 6 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 8 4 4 4 4 8 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 + defaultValue = boardIgnOutputs, 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 6 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 8 4 4 4 4 8 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 + + controllerPriority = bootloaderCaps + + defaultValue = AUXin00Alias, Aux0 + defaultValue = AUXin01Alias, Aux1 + defaultValue = AUXin02Alias, Aux2 + defaultValue = AUXin03Alias, Aux3 + defaultValue = AUXin04Alias, Aux4 + defaultValue = AUXin05Alias, Aux5 + defaultValue = AUXin06Alias, Aux6 + defaultValue = AUXin07Alias, Aux7 + defaultValue = AUXin08Alias, Aux8 + defaultValue = AUXin09Alias, Aux9 + defaultValue = AUXin10Alias, Aux10 + defaultValue = AUXin11Alias, Aux11 + defaultValue = AUXin12Alias, Aux12 + defaultValue = AUXin13Alias, Aux13 + defaultValue = AUXin14Alias, Aux14 + defaultValue = AUXin15Alias, Aux15 + + defaultValue = prgm_out00Alias, PrgmOut0 + defaultValue = prgm_out01Alias, PrgmOut1 + defaultValue = prgm_out02Alias, PrgmOut2 + defaultValue = prgm_out03Alias, PrgmOut3 + defaultValue = prgm_out04Alias, PrgmOut4 + defaultValue = prgm_out05Alias, PrgmOut5 + defaultValue = prgm_out06Alias, PrgmOut6 + defaultValue = prgm_out07Alias, PrgmOut7 + + defaultValue = rpmwarn, 3000 + defaultValue = rpmdang, 5000 + defaultValue = rpmhigh, 8000 + + defaultValue = mapwarn, 200 + defaultValue = mapdang, 245 + defaultValue = maphigh, 255 + +#if LAMBDA + defaultValue = wueAFR, -0.136 -0.102 -0.082 -0.068 -0.054 -0.041 -0.027 -0.014 -0.007 0.000 +#else + defaultValue = wueAFR, -2.0 -1.5 -1.2 -1.0 -0.8 -0.6 -0.4 -0.2 -0.1 0.0 +#endif + +[Menu] + + ;---------------------------------------------------------------------------- + ; There are five pre-defined values that may be used to define your menus. + ; The first four allow access to the "standard" dialog boxes, the last one + ; merely draws a separator (horizontal line) in the menu. + ; + ; std_constants + ; std_enrichments + ; std_realtime + ; std_warmup + ; + ; std_separator + ; + ; If you use any of the std_constants, std_enrichments or std_warmup + ; editors, they may be optionally suffixed with a page number (only + ; useful for multi-page code variants), which causes them to edit the + ; specified page. If you leave off the page specifier, they edit logical + ; page one as specified in the Constants section. + ; + ; There are four special menu names, which when used append to the standard + ; menus of the same name instead of creating a new one. The menu names + ; are "File", "Communications", "Tools" and "Help". + ; + ;---------------------------------------------------------------------------- + +menuDialog = main + + menu = "Settings" + subMenu = engine_constants, "Engine Constants" + subMenu = injChars, "Injector Characteristics" + subMenu = triggerSettings, "Trigger Setup" + ;subMenu = OLED, "OLED Setup" + subMenu = airdensity_curve, "IAT Density" + subMenu = baroFuel_curve, "Barometric Correction" + subMenu = reset_control, "Reset Control" + + subMenu = std_separator + subMenu = gaugeLimits, "Gauge Limits" + + subMenu = std_separator + subMenu = io_summary, "I/O Summary" + subMenu = std_separator + subMenu = prgm_out_config, "Programmable outputs" + + menu = "&Tuning" + subMenu = std_realtime, "Realtime Display" + subMenu = accelEnrichments, "Acceleration Enrichment" + subMenu = egoControl, "AFR/O2", 3 + subMenu = RevLimiterS, "Engine Protection", 2 + subMenu = flexFueling, "Flex Fuel", 2 + subMenu = veTableDialog, "VE Table", 0 + subMenu = sparkTbl, "Spark Table", 2 + subMenu = afrTable1Tbl, "AFR Table", 5 + subMenu = std_separator + subMenu = fuelTable2Dialog, "Second fuel Table", 11 + subMenu = sparkTable2Dialog, "Second spark Table", 14 + subMenu = inj_trimad, "Sequential fuel trim", 9 + subMenu = stagingTableDialog, "Staged Injection", 10, { nCylinders <= 4 } ; Can't do staging on more than 4 cylinder engines + subMenu = std_separator + subMenu = fuelTemp_curve, "Fuel Temp Correction", { flexEnabled } + + menu = "&Spark" + subMenu = sparkSettings, "Spark Settings" + subMenu = sparkTbl, "Spark Table", 2 + subMenu = dwellSettings, "Dwell settings" + subMenu = dwell_correction_curve, "Dwell Compensation" + subMenu = iat_retard_curve, "IAT Retard" + subMenu = clt_advance_curve, "Cold Advance" + ;subMenu = knockSettings, "Knock Settings" + subMenu = rotary_ignition, "Rotary Ignition", { sparkMode == 4 } + + menu = "&Startup/Idle" + subMenu = crankPW, "Cranking Settings" + subMenu = primePW, "Priming Pulsewidth" + subMenu = warmup, "Warmup Enrichment" + subMenu = ASE, "Afterstart Enrichment (ASE)" + subMenu = std_separator + subMenu = idleSettings, "Idle Control" + subMenu = iacClosedLoop_curve, "Idle - RPM targets", 7, { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || idleAdvEnabled >= 1 } + subMenu = iacPwm_curve, "Idle - PWM Duty Cycle", 7, { iacAlgorithm == 2 || iacAlgorithm == 6} + subMenu = iacPwmCrank_curve, "Idle - PWM Cranking Duty Cycle", 7, { iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6} + subMenu = iacStep_curve, "Idle - Stepper Motor", 7, { iacAlgorithm == 4 } + subMenu = iacStepCrank_curve, "Idle - Stepper Motor Cranking", 7, { iacAlgorithm == 4 || iacAlgorithm == 5 } + subMenu = std_separator + subMenu = idleUpSettings, "Idle Up Settings", { iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 4 || iacAlgorithm == 5 || iacAlgorithm == 6 } + subMenu = std_separator + subMenu = idleAdvanceSettings, "Idle Advance Settings" + + menu = "&Accessories" + subMenu = fanSettings, "Thermo Fan" + subMenu = LaunchControl, "Launch Control / Flat Shift" + subMenu = fuelpump, "Fuel Pump" + subMenu = NitrousControl, "Nitrous" + subMenu = vssSettings, "VSS and Gear detection" + subMenu = std_separator + subMenu = boostSettings, "Boost Control" + subMenu = boostLoad, "Boost Targets/Load", 8, { boostEnabled } + subMenu = std_separator + subMenu = vvtSettings, "VVT Control" + subMenu = vvtTbl, "VVT duty cycle", 8, { vvtEnabled } + subMenu = std_separator + subMenu = wmiSettings, "WMI Control", { !vvtEnabled } + subMenu = wmiTbl, "WMI duty cycle", 8, { !vvtEnabled && wmiEnabled && wmiMode > 1 } + subMenu = std_separator + subMenu = tacho, "Tacho Output" + + subMenu = std_separator + + #if CAN_COMMANDS + subMenu = can_serial3IO, "Canbus/Secondary Serial IO Interface" + subMenu = std_separator + subMenu = Canin_config, "External Auxillary Input Channel Configuration", {enable_secondarySerial || (enable_intcan && intcan_available)} + subMenu = Auxin_config, "Local Auxillary Input Channel Configuration" + ;subMenu = std_separator + ;subMenu = Canout_config, "Canbus Output Configuration" + #else + subMenu = serial3IO, "Canbus/Secondary Serial IO Interface" + subMenu = std_separator + subMenu = Canin_config, "External Auxillary Input Channel Configuration", {enable_secondarySerial || (enable_intcan && intcan_available)} + subMenu = Auxin_config, "Local Auxillary Input Channel Configuration" + #endif + subMenu = pressureSensors, "Fuel/Oil pressure" + + menuDialog = main + menu = "Tools" + subMenu = mapCal, "Calibrate Pressure Sensors" + subMenu = batCal, "Calibrate Voltage Reading" + subMenu = std_ms2gentherm, "Calibrate Temperature Sensors", 0 + subMenu = std_ms2geno2, "Calibrate AFR Sensor", { egoType > 0 } + subMenu = sensorFilters, "Set analog sensor filters" + + ;menu = "Data Logging" + ;subMenu = sdcard_datalog, "SD Card Datalogging" + ;subMenu = std_ms3SdConsole, "Browse / Import SD Card" + + menuDialog = main + menu = "3D &Tuning Maps" + subMenu = veTable1Map, "Fuel Table" + subMenu = sparkMap, "Spark Table", 3 + subMenu = afrTable1Map, "AFR Target Table" + +#if enablehardware_test + menuDialog = main + menu = "Hardware Testing" + subMenu = outputtest1, "Test Output Hardware" + subMenu = stm32cmd, "STM32 Commands" +#endif + + menu = "Help" + subMenu = helpGeneral, "Speeduino Help" +;------------------------------------------------------------------------------- + +[SettingContextHelp] +; constantName = "Help Text" +; These provide the context help in the dialog when these variables are used + nCylinders = "Cylinder count" + alternate = "Whether or not the injectors should be fired at the same time. This setting is ignored when Sequential is selected below, however it will still affect the req_fuel value." + engineType = "Engines with an equal number of degrees between all firings (This is most engines) should select Even fire. Some 2 and 6 cylinder engines are Odd fire however." + twoStroke = "Four-Stroke (most engines), Two-stroke." + nInjectors = "Number of primary injectors." + mapSample = "The method used for calculating the MAP reading\nFor 1-2 Cylinder engines, Cycle Minimum is recommended.\nFor more than 2 cylinders Cycle Average is recommended" + stoich = "The stoichiometric ration of the fuel being used. For flex fuel, choose the primary fuel" + injLayout = "The injector layout and timing to be used. Options are: \n 1. Paired - 2 injectors per output. Outputs active is equal to half the number of cylinders. Outputs are timed over 1 crank revolution. \n 2. Semi-sequential: Same as paired except that injector channels are mirrored (1&4, 2&3) meaning the number of outputs used are equal to the number of cylinders. Only valid for 4 cylinders or less. \n 3. Banked: 2 outputs only used. \n 4. Sequential: 1 injector per output and outputs used equals the number of cylinders. Injection is timed over full cycle. " + + TrigPattern = "The type of input trigger decoder to be used." + useResync = "If enabled, sync will be rechecked once every full cycle from the cam input. This is good for accuracy, however if your cam input is noisy then this can cause issues." + trigPatternSec = "Cam mode/type also known as Secondary Trigger Pattern." + numTeeth = "Number of teeth on Primary Wheel." + TrigSpeed = "Primary trigger speed." + missingTeeth = "Number of Missing teeth on Primary Wheel." + TrigAng = "The Angle ATDC when tooth No:1 on the primary wheel passes the primary sensor. The range of this field is -360 to +360 degrees." + TrigAngMul = "A multiplier used by non-360 degree tooth wheels (i.e. Wheels where the tooth count doesn't divide evenly into 360. Usage: (360 * ) / tooth_count = Whole number" + SkipCycles = "The number of revolutions that will be skipped during cranking before the injectors and coils are fired." + TrigEdge = "The Trigger edge of the primary sensor.\nLeading.\nTrailing." + TrigEdgeSec = "The Trigger edge of the secondary (Cam) sensor.\nLeading.\nTrailing." + TrigFilter = "Tuning of the trigger filter algorithm. The more aggressive the setting, the more noise will be removed, however this increases the chance of some true readings being filtered out (False positive). Medium is safe for most setups. Only select 'Aggressive' if no other options are working" + + sparkMode = "Wasted Spark: Ignition outputs are on the channels <= half the number of cylinders. Eg 4 cylinder outputs on IGN1 and IGN2.\nSingle Channel: All ignition pulses are output on IGN1.\nWasted COP: Ignition pulses are output on all ignition channels up to the number of cylinders. Eg 4 cylinder outputs on all ignition channels. Note that your board needs to have same number of igntion outputs as cylinders to be able to run this" + IgInv = "Whether the spark fires when the ignition signal goes high or goes low. Nearly all ignition systems use 'Going Low' but please verify this as damage to coils can result from the incorrect selection. (NOTE: THIS IS NOT MEGASQUIRT. THIS SETTING IS USUALLY THE OPPOSITE OF WHAT THEY USE!)" + sparkDur = "The duration of the spark at full dwell. Typically around 1ms" + fixAngEnable = "If enabled, timing will be locked/fixed and the ignition map will be ignored. Note that this value will be overriden by the fixed cranking value when cranking" + FixAng = "Timing will be locked at this value if the above is enabled" + + crankRPM = "The cranking RPM threshold. When RPM is lower than this value (and above 0) the system will be considered to be cranking" + tpsflood = "Keep throttle over this value to disable the priming pulse and cranking fuel. Used to prevent flood or clear already flooded engine" + + fanInv = "" + fanHyster = "The number of degrees of hysteresis to be used in controlling the fan. Recommended values are between 2 and 5" + fanWhenCranking = "Whether the fan should be disabled or continue running when the engine is cranking" + fanWhenOff = "Whether the fan will continue to run when the engine is turned off" + fanPin = "The Arduino pin that the fan control signal will output on. This is NOT necesarrily the same as the connector pin on any particlar board" + fanSP = "The trigger temperature for the fan. Fan will be enabled above this temp" + + vssPulsesPerKm = "The number of pulses on the VSS signal per KM/Mile" + vssSmoothing = "A smoothing factor to help reduce noise in the VSS signal. Typical values are between 0 and 50" + + aeTime = "The duration of the acceleration enrichment" + aseTaperTime = "Transition time to disable ASE" + iacChannels = "The number of output channels used for PWM valves. Select 1 for 2-wire valves or 2 for 3-wire valves." + iacStepTime = "Duration of each stepping pulse. Values that are too low can cause the motor to behave erratically or not at all. See the manual for suggested step times" + iacCoolTime = "Cool time between each step. Set to zero if you don't want any cooling at all" + + iacStepHome = "Homing steps to perform on startup. Must be greater than the fully open steps value" + iacMaxSteps = "Maximum number of steps the IAC can be moved away from the home position. Should always be less than Homing steps." + iacStepHyster = "The minimum number of steps to move in any one go." + iacAlgorithm = "Selects method of idle control.\nNone = no idle control valve.\nOn/Off valve.\nPWM valve (2,3 wire).\nStepper Valve (4,6,8 wire)." + iacPWMdir = "Normal PWM valves increase RPM with higher duty. If RPM decreases with higher duty then select Reverse" + iacCLminDuty = "When using closed loop idle control, this is the minimum duty cycle that the PID loop will allow. Combined with the maximum value, this specifies the working range of your idle valve" + iacCLmaxDuty = "When using closed loop idle control, this is the maximum duty cycle that the PID loop will allow. Combined with the minimum value, this specifies the working range of your idle valve" + iacTPSlimit = "When using OL+CL idle control, if the TPS is higher than this value closed loop idle resets the integeral of the PID (To prevent RPM dips comming back to idle)" + iacRPMlimitHysteresis = "When using closed loop idle control, if the closed loop Target RPM + this value is higher than the actual RPM, closed loop idle resets the integeral of the PID (To prevent RPM dips comming back to idle)" + iacFastTemp = "Below this temperature, the idle output will be high (On). Above this temperature, it will turn off." + idleUpPolarity = "Normal polarity is a ground switch where an earthed signal activates the Idle Up. The internal pullup will be enabled with Normal polarity. \n Inverted may be used if a 5v signal is used to enable the Idle Up." + CTPSPolarity = "Normal polarity is a ground switch where an earthed signal activates the closed throttle position. The internal pullup will be enabled with Normal polarity. \n Inverted may be used if a 5v signal is used to enable the closed throttle position." + idleUpAdder = "The amount (In either Duty Cycle % or Steps (Depending on the idle control method in use), that the idle control will increase by when Idle Up is active" + idleAdvEnabled = "Added setting adds curve values to current spark table values when user defined idle is active. \n Switched setting overrides spark table values and uses curve values for idle ignition timing." + idleAdvAlgorithm = "Use Throttle position sensor (TPS) or closed throttle position sensor (CTPS) to detect idle state." + idleAdvDelay = "The number of seconds after sync is achieved before the idle advance control begins" + idleTaperTime = "Soft time transition from crank to running PWM targets" + + oddfire2 = "The ATDC angle of channel 2 for oddfire engines. This is relative to the TDC angle of channel 1" + oddfire3 = "The ATDC angle of channel 3 for oddfire engines. This is relative to the TDC angle of channel 1 (NOT channel 2)" + oddfire4 = "The ATDC angle of channel 4 for oddfire engines. This is relative to the TDC angle of channel 1 (NOT channel 3)" + + aeColdPct = "Acceleration enrichment adjustment for cold engine. Cold adjustment % is tapered between start and end temperatures.\n100% = no adjustment." + aeColdTaperMin = "AE cold adjustment taper start temperature. When coolant is below this value, full cold adjustment is applied." + aeColdTaperMax = "AE cold adjustment taper end temperature. When coolant is above this value, no cold adjustment is applied." + dfcoRPM = "The RPM above which DFCO will be active. Typically set a few hundred RPM above maximum idle speed" + dfcoHyster = "Hysteresis for DFCO RPM. 200-300 RPM is typical for this, however a higher value may be needed if the RPM is fluctuating around the cutout speed" + dfcoTPSThresh = "The TPS value below which DFCO will be active. Typical value is 5%-10%, but higher may be needed if TPS signal is noisy" + dfcoDelay = "Delay for activate DFCO." + dfcoMinCLT = "Minimum temperature to enable DFCO." + + launchPin = "The ARDUINO pin that the clutch switch is connected to. This is NOT the pin on the connector, but the pin it relates to on the arduino" + launchHiLo = "Whether the signal is High or Low when the clutch pedal is engaged. For a ground switching input (Most clutch switches), this should be LOW" + lnchPullRes = "Whether the internal pullup resistor is enabled or left floating. For a ground switching input (Most clutch switches), select Pullup. For a 0v-5v input, select Floating" + ignBypassPin = "The ARDUINO pin that the ignition bypass is connected to. This is NOT the pin on the connector, but the pin it relates to on the arduino" + ignBypassEnable = "If turned on, a ground signal will be output during cranking on the specified pin. This is used to bypass the Speeduino ignition control during cranking." + ignCranklock = "On certain low resolution ignition patterns, the cranking timing can be locked to occur when a pulse is recieved." + + multiplyMAP = "If enabled, the MAP reading is included directly into the pulsewidth calculation by multiplying the VE lookup value by the MAP:Baro ratio. This results in a flatter VE table that can be easier to tune in some instances. VE table must be retuned when this value is changed." + legacyMAP = "Use the legacy method of reading the MAP sensor that was used prior to the 201905 firmware. This should ONLY be enabled if you are upgrading from a firmware earlier than this" + includeAFR = "When enabled, the current AFR reading is incorporated directly in the pulsewidth calculation as a percentage of the current target ratio. VE table must be retuned when this value is changed. " + incorporateAFR = "When enabled, the AFR stoich/AFR target -ratio is incorporated directly in the pulsewidth calculation. When enabled, AFR target table affects pulsewidth even with EGO disabled. VE table must be retuned when this value is changed." + useExtBaro = "By Default, Speeduino will measure barometric pressure upon startup. Optionally however, a 2nd pressure sensor can be used to perform live barometric readings whilst the system is on." + + flexEnabled = "Turns on readings from the Flex sensor and enables the below adjustments" + flexFreqLow = "The frequency of the sensor at 0% ethanol (50Hz for standard GM/Continental sensor)" + flexFreqHigh = "The frequency of the sensor at 100% ethanol (150Hz for standard GM/Continental sensor)" + flexFuelAdj = "Fuel % to be used for the current ethanol % (Typically 100% @ 0%, 163% @ 100%)" + flexAdvAdj = "Additional advance (in degrees) for the current ethanol % (Typically 0 @ 0%, 10-20 @ 100%)" + flexBoostAdj = "Adjustment, in kPa, to the boost target for the current ethanol %. Negative values are allowed to lower boost at lower ethanol % if necessary." + + n2o_arming_pin = "Pin that the nitrous arming/enagement switch is on." + n2o_pin_polarity = "Whether Nitrous is active (Armed) when the pin is LOW or HIGH. If LOW is selected, the internal pullup will be used." + + flatSArm = "The RPM switch point that determines whether an eganged clutch is for launch control or flat shift. Below this figure, an engaged clutch is considered to be for launch, above this figure an active clutch input will be considered a flat shift. This should be set at least several hundred RPM above idle" + flatSSoftWin = "The number of RPM below the flat shift point where the softlimit will be applied (aka Soft limit window). Recommended values are 200-1000" + flatSRetard = "The absolute timing (BTDC) that will be used when within the soft limit window" + engineProtectType = "Whether the engine protect an rev limiter will cut the fuel, the ignition or both" + hardCutType = "How the cuts should be performed for rev/launch limits. Full cut will stop all fuel/ignition events, Rolling cut will step through all ignition outputs, only cutting a limited number per revolution" + SoftLimitMode = "Fixed: the soft limiter will retard the ignition advance to the specified value.\nRelative: current timing advance will be retarted by the specified amount" + HardRevLim = "The hard rev limit is the point that the fuel or ignition (or both) will be cut completely to reduce increasing RPMs" + engineProtectMaxRPM = "The RPM point that engine protections will engage from. Below this RPM value, engine protections will NOT be active" + + fuel2InputPin = "The Arduino pin that is being used to trigger the second fuel table to be active" + fuel2InputPolarity = "Whether the 2nd fuel table should be active when input is high or low. This should be LOW for a typical ground switching input" + fuel2InputPullup = "Whether to use the built in PULLUP for the switching input. This should be Yes for a typical ground switching input" + + enable_secondarySerial = "This Enables the secondary serial port . Secondary serial is serial3 on mega2560 processor, and Serial2 on STM32 and Teensy processor " + + cltAdvValues = "This curve can be used to advance ignition timing when engine is warming up. This can also be used to warm up the catalytic converters in cold start by retarding timing. Or even as safety feature to retard timing when engine is too hot to prevent knock." + + ;speeduino_tsCanId = "This is the TsCanId that the Speeduino ECU will respond to. This should match the main controller CAN ID in project properties if it is connected directy to TunerStudio, Otherwise the device ID if connected via CAN passthrough" + true_address = "This is the 11bit Can address of the Speeduino ECU " + realtime_base_address = "This is the 11bit CAN address of the realtime data broadcast from the Speeduino ECU. This MUST be at least 0x16 greater than the true address" + ;obd_address = "The 11bit Can address that the Speeduino ECU responds to for OBD2 diagnostic requests" + AUXin00Alias = "The Ascii alias asigned to Aux input channel 0" + AUXin01Alias = "The Ascii alias asigned to Aux input channel 1" + AUXin02Alias = "The Ascii alias asigned to Aux input channel 2" + AUXin03Alias = "The Ascii alias asigned to Aux input channel 3" + AUXin04Alias = "The Ascii alias asigned to Aux input channel 4" + AUXin05Alias = "The Ascii alias asigned to Aux input channel 5" + AUXin06Alias = "The Ascii alias asigned to Aux input channel 6" + AUXin07Alias = "The Ascii alias asigned to Aux input channel 7" + AUXin08Alias = "The Ascii alias asigned to Aux input channel 8" + AUXin09Alias = "The Ascii alias asigned to Aux input channel 9" + AUXin10Alias = "The Ascii alias asigned to Aux input channel 10" + AUXin11Alias = "The Ascii alias asigned to Aux input channel 11" + AUXin12Alias = "The Ascii alias asigned to Aux input channel 12" + AUXin13Alias = "The Ascii alias asigned to Aux input channel 13" + AUXin14Alias = "The Ascii alias asigned to Aux input channel 14" + AUXin15Alias = "The Ascii alias asigned to Aux input channel 15" + + caninput_sel0a = "This Enables local analog/digital on input channel 0 " + caninput_sel1a = "This Enables local analog/digital on input channel 1 " + caninput_sel2a = "This Enables local analog/digital on input channel 2 " + caninput_sel3a = "This Enables local analog/digital on input channel 3 " + caninput_sel4a = "This Enables local analog/digital on input channel 4 " + caninput_sel5a = "This Enables local analog/digital on input channel 5 " + caninput_sel6a = "This Enables local analog/digital on input channel 6 " + caninput_sel7a = "This Enables local analog/digital on input channel 7 " + caninput_sel8a = "This Enables local analog/digital on input channel 8 " + caninput_sel9a = "This Enables local analog/digital on input channel 9 " + caninput_sel10a = "This Enables local analog/digital on input channel 10 " + caninput_sel11a = "This Enables local analog/digital on input channel 11 " + caninput_sel12a = "This Enables local analog/digital on input channel 12 " + caninput_sel13a = "This Enables local analog/digital on input channel 13 " + caninput_sel14a = "This Enables local analog/digital on input channel 14 " + caninput_sel15a = "This Enables local analog/digital on input channel 15 " + + nCylinders = "Cylinder count" + alternate = "Whether or not the injectors should be fired at the same time. This setting is ignored when Sequential is selected below, however it will still affect the req_fuel value." + engineType = "Engines with an equal number of degrees between all firings (This is most engines) should select Even fire. Some 2 and 6 cylinder engines are Odd fire however." + twoStroke = "Four-Stroke (most engines), Two-stroke." + nInjectors = "Number of primary injectors." + mapSample = "The method used for calculating the MAP reading\nFor 1-2 Cylinder engines, Cycle Minimum is recommended.\nFor more than 2 cylinders Cycle Average is recommended" + stoich = "The stoichiometric ration of the fuel being used. For flex fuel, choose the primary fuel" + injLayout = "The injector layout and timing to be used. Options are: \n 1. Paired - 2 injectors per output. Outputs active is equal to half the number of cylinders. Outputs are timed over 1 crank revolution. \n 2. Semi-sequential: Same as paired except that injector channels are mirrored (1&4, 2&3) meaning the number of outputs used are equal to the number of cylinders. Only valid for 4 cylinders or less. \n 3. Banked: 2 outputs only used. \n 4. Sequential: 1 injector per output and outputs used equals the number of cylinders. Injection is timed over full cycle. " + + TrigPattern = "The type of input trigger decoder to be used." + useResync = "If enabled, sync will be rechecked once every full cycle from the cam input. This is good for accuracy, however if your cam input is noisy then this can cause issues." + trigPatternSec = "Cam mode/type also known as Secondary Trigger Pattern." + numTeeth = "Number of teeth on Primary Wheel." + TrigSpeed = "Primary trigger speed." + missingTeeth = "Number of Missing teeth on Primary Wheel." + TrigAng = "The Angle ATDC when tooth No:1 on the primary wheel passes the primary sensor. The range of this field is -360 to +360 degrees." + TrigAngMul = "A multiplier used by non-360 degree tooth wheels (i.e. Wheels where the tooth count doesn't divide evenly into 360. Usage: (360 * ) / tooth_count = Whole number" + SkipCycles = "The number of revolutions that will be skipped during cranking before the injectors and coils are fired." + TrigEdge = "The Trigger edge of the primary sensor.\nLeading.\nTrailing." + TrigEdgeSec = "The Trigger edge of the secondary (Cam) sensor.\nLeading.\nTrailing." + TrigFilter = "Tuning of the trigger filter algorithm. The more aggressive the setting, the more noise will be removed, however this increases the chance of some true readings being filtered out (False positive). Medium is safe for most setups. Only select 'Aggressive' if no other options are working" + + sparkMode = "Wasted Spark: Ignition outputs are on the channels <= half the number of cylinders. Eg 4 cylinder outputs on IGN1 and IGN2.\nSingle Channel: All ignition pulses are output on IGN1.\nWasted COP: Ignition pulses are output on all ignition channels up to the number of cylinders. Eg 4 cylinder outputs on all ignition channels. Note that your board needs to have same number of igntion outputs as cylinders to be able to run this" + IgInv = "Whether the spark fires when the ignition signal goes high or goes low. Nearly all ignition systems use 'Going Low' but please verify this as damage to coils can result from the incorrect selection. (NOTE: THIS IS NOT MEGASQUIRT. THIS SETTING IS USUALLY THE OPPOSITE OF WHAT THEY USE!)" + sparkDur = "The duration of the spark at full dwell. Typically around 1ms" + fixAngEnable = "If enabled, timing will be locked/fixed and the ignition map will be ignored. Note that this value will be overriden by the fixed cranking value when cranking" + FixAng = "Timing will be locked at this value if the above is enabled" + + crankRPM = "The cranking RPM threshold. When RPM is lower than this value (and above 0) the system will be considered to be cranking" + tpsflood = "Keep throttle over this value to disable the priming pulse and cranking fuel. Used to prevent flood or clear already flooded engine" + fpPrime = "Duration to power fuel pump on to ensure fuel line pressure." + primingDelay = "Delay to priming after fuel pump is on, used to wait fuel line get pressurized correctly." + + fanInv = "" + fanHyster = "The number of degrees of hysteresis to be used in controlling the fan. Recommended values are between 2 and 5" + + aeTime = "The duration of the acceleration enrichment" + aseTaperTime = "Transition time to disable ASE" + iacChannels = "The number of output channels used for PWM valves. Select 1 for 2-wire valves or 2 for 3-wire valves." + iacStepTime = "Duration of each stepping pulse. Values that are too low can cause the motor to behave erratically or not at all. See the manual for suggested step times" + iacCoolTime = "Cool time between each step. Set to zero if you don't want any cooling at all" + iacStepHome = "Homing steps to perform on startup. Must be greater than the fully open steps value" + iacMaxSteps = "Maximum number of steps the IAC can be moved away from the home position. Should always be less than Homing steps." + iacStepHyster = "The minimum number of steps to move in any one go." + iacAlgorithm = "Selects method of idle control.\nNone = no idle control valve.\nOn/Off valve.\nPWM valve (2,3 wire).\nStepper Valve (4,6,8 wire)." + iacPWMdir = "Normal PWM valves increase RPM with higher duty. If RPM decreases with higher duty then select Reverse" + iacCLminDuty = "When using closed loop idle control, this is the minimum duty cycle that the PID loop will allow. Combined with the maximum value, this specifies the working range of your idle valve" + iacCLmaxDuty = "When using closed loop idle control, this is the maximum duty cycle that the PID loop will allow. Combined with the minimum value, this specifies the working range of your idle valve" + iacFastTemp = "Below this temperature, the idle output will be high (On). Above this temperature, it will turn off." + idleUpPolarity = "Normal polarity is a ground switch where an earthed signal activates the Idle Up. The internal pullup will be enabled with Normal polarity. \n Inverted may be used if a 5v signal is used to enable the Idle Up." + idleUpOutputEnabled = "Enable an output that is toggled by the idle up input pin. An example use is driving an AC fan relay." + idleUpOutputInv = "No = When the idle up pin is high the output is active (grounding), when the idle up pin is low the output is inactive. Yes = When the idle up pin is high the output is inactive, when the idle up pin is low the output is active (grounding)." + CTPSPolarity = "Normal polarity is a ground switch where an earthed signal activates the closed throttle position. The internal pullup will be enabled with Normal polarity. \n Inverted may be used if a 5v signal is used to enable the closed throttle position." + idleUpAdder = "The amount (In either Duty Cycle % or Steps (Depending on the idle control method in use), that the idle control will increase by when Idle Up is active" + idleAdvEnabled = "Added setting adds curve values to current spark table values when user defined idle is active. \n Switched setting overrides spark table values and uses curve values for idle ignition timing." + idleAdvAlgorithm= "Use Throttle position sensor (TPS) or closed throttle position sensor (CTPS) to detect idle state." + idleAdvDelay = "The number of seconds after sync is achieved before the idle advance control begins" + idleTaperTime = "Soft time transition from crank to running PWM targets" + + oddfire2 = "The ATDC angle of channel 2 for oddfire engines. This is relative to the TDC angle of channel 1" + oddfire3 = "The ATDC angle of channel 3 for oddfire engines. This is relative to the TDC angle of channel 1 (NOT channel 2)" + oddfire4 = "The ATDC angle of channel 4 for oddfire engines. This is relative to the TDC angle of channel 1 (NOT channel 3)" + + aeColdPct = "Acceleration enrichment adjustment for cold engine. Cold adjustment % is tapered between start and end temperatures.\n100% = no adjustment." + aeColdTaperMin = "AE cold adjustment taper start temperature. When coolant is below this value, full cold adjustment is applied." + aeColdTaperMax = "AE cold adjustment taper end temperature. When coolant is above this value, no cold adjustment is applied." + dfcoRPM = "The RPM above which DFCO will be active. Typically set a few hundred RPM above maximum idle speed" + dfcoHyster = "Hysteresis for DFCO RPM. 200-300 RPM is typical for this, however a higher value may be needed if the RPM is fluctuating around the cutout speed" + dfcoTPSThresh = "The TPS value below which DFCO will be active. Typical value is 5%-10%, but higher may be needed if TPS signal is noisy" + dfcoDelay = "Delay for activate DFCO." + dfcoMinCLT = "Minimum temperature to enable DFCO." + crankingEnrichTaper = "Taper time from cranking enrichment to ASE or run (after engine has started)." + + launchPin = "The ARDUINO pin that the clutch switch is connected to. This is NOT the pin on the connector, but the pin it relates to on the arduino" + launchHiLo = "Whether the signal is High or Low when the clutch pedal is engaged. For a ground switching input (Most clutch switches), this should be LOW" + lnchPullRes = "Whether the internal pullup resistor is enabled or left floating. For a ground switching input (Most clutch switches), select Pullup. For a 0v-5v input, select Floating" + lnchCtrlTPS = "The minimum RPM that launch control will engage at" + lnchSoftLim = "The RPM point that the launch control ignition timing adjustment will engage (When under launch conditions). Should be below the hard rev limit RPM" + lnchRetard = "When under launch conditions (Eg Clutch engaged) the ignition timing will be set to this when above the Soft rev limit. This will override any other ignition modifiers" + lnchHardLim = "The RPM point above which the fuel and/or ignition will be cut when launch is active (Eg Clutch engaged). See the Engine Protection dialog to set whether it is fuel, ignition or both that are cut." + lnchFuelAdd = "The additional fuel % that will be added during Soft and Hard launch conditions. Set to 0 for no fuel modifier." + ignBypassPin = "The ARDUINO pin that the ignition bypass is connected to. This is NOT the pin on the connector, but the pin it relates to on the arduino" + ignBypassEnable = "If turned on, a ground signal will be output during cranking on the specified pin. This is used to bypass the Speeduino ignition control during cranking." + ignCranklock = "On certain low resolution ignition patterns, the cranking timing can be locked to occur when a pulse is recieved." + + multiplyMAP = "If enabled, the MAP reading is included directly into the pulsewidth calculation by multiplying the VE lookup value by either the MAP:Baro ratio or MAP/100.\n This results in a flatter VE table that can be easier to tune in some instances. The MAP/100 option is generally used for compatibiilty with fuel tables from other ECUs. MAP:Baro ratio is recommended for new tunes. \n VE table must be retuned when this value is changed." + legacyMAP = "Use the legacy method of reading the MAP sensor that was used prior to the 201905 firmware. This should ONLY be enabled if you are upgrading from a firmware earlier than this" + includeAFR = "When enabled, the current AFR reading is incorporated directly in the pulsewidth calculation as a percentage of the current target ratio. VE table must be retuned when this value is changed. " + useExtBaro = "By Default, Speeduino will measure barometric pressure upon startup. Optionally however, a 2nd pressure sensor can be used to perform live barometric readings whilst the system is on." + + flexEnabled = "Turns on readings from the Flex sensor and enables the below adjustments" + flexFreqLow = "The frequency of the sensor at 0% ethanol (50Hz for standard GM/Continental sensor)" + flexFreqHigh = "The frequency of the sensor at 100% ethanol (150Hz for standard GM/Continental sensor)" + flexFuelAdj = "Fuel % to be used for the current ethanol % (Typically 100% @ 0%, 163% @ 100%)" + flexAdvAdj = "Additional advance (in degrees) for the current ethanol % (Typically 0 @ 0%, 10-20 @ 100%)" + flexBoostAdj = "Adjustment, in kPa, to the boost target for the current ethanol %. Negative values are allowed to lower boost at lower ethanol % if necessary." + + n2o_arming_pin = "Pin that the nitrous arming/enagement switch is on." + n2o_pin_polarity= "Whether Nitrous is active (Armed) when the pin is LOW or HIGH. If LOW is selected, the internal pullup will be used." + + flatSArm = "The RPM switch point that determines whether an eganged clutch is for launch control or flat shift. Below this figure, an engaged clutch is considered to be for launch, above this figure an active clutch input will be considered a flat shift. This should be set at least several hundred RPM above idle" + flatSSoftWin = "The number of RPM below the flat shift point where the softlimit will be applied (aka Soft limit window). Recommended values are 200-1000" + flatSRetard = "The absolute timing (BTDC) that will be used when within the soft limit window" + hardCutType = "How hard cuts should be performed for rev/launch limits. Full cut will stop all ignition events, Rolling cut will step through all ignition outputs, only cutting 1 per revolution" + + fuel2InputPin = "The Arduino pin that is being used to trigger the second fuel table to be active" + fuel2InputPolarity = "Whether the 2nd fuel table should be active when input is high or low. This should be LOW for a typical ground switching input" + fuel2InputPullup= "Whether to use the built in PULLUP for the switching input. This should be Yes for a typical ground switching input" + + enable_secondarySerial = "This Enables the secondary serial port . Secondary serial is serial3 on mega2560 processor, and Serial2 on STM32 and Teensy processor " + + cltAdvValues = "This curve can be used to advance ignition timing when engine is warming up. This can also be used to warm up the catalytic converters in cold start by retarding timing. Or even as safety feature to retard timing when engine is too hot to prevent knock." + + ;speeduino_tsCanId = "This is the TsCanId that the Speeduino ECU will respond to. This should match the main controller CAN ID in project properties if it is connected directy to TunerStudio, Otherwise the device ID if connected via CAN passthrough" + true_address = "This is the 11bit Can address of the Speeduino ECU " + realtime_base_address = "This is the 11bit CAN address of the realtime data broadcast from the Speeduino ECU. This MUST be at least 0x16 greater than the true address" + ;obd_address = "The 11bit Can address that the Speeduino ECU responds to for OBD2 diagnostic requests" + AUXin00Alias = "The Ascii alias asigned to Aux input channel 0" + AUXin01Alias = "The Ascii alias asigned to Aux input channel 1" + AUXin02Alias = "The Ascii alias asigned to Aux input channel 2" + AUXin03Alias = "The Ascii alias asigned to Aux input channel 3" + AUXin04Alias = "The Ascii alias asigned to Aux input channel 4" + AUXin05Alias = "The Ascii alias asigned to Aux input channel 5" + AUXin06Alias = "The Ascii alias asigned to Aux input channel 6" + AUXin07Alias = "The Ascii alias asigned to Aux input channel 7" + AUXin08Alias = "The Ascii alias asigned to Aux input channel 8" + AUXin09Alias = "The Ascii alias asigned to Aux input channel 9" + AUXin10Alias = "The Ascii alias asigned to Aux input channel 10" + AUXin11Alias = "The Ascii alias asigned to Aux input channel 11" + AUXin12Alias = "The Ascii alias asigned to Aux input channel 12" + AUXin13Alias = "The Ascii alias asigned to Aux input channel 13" + AUXin14Alias = "The Ascii alias asigned to Aux input channel 14" + AUXin15Alias = "The Ascii alias asigned to Aux input channel 15" + + caninput_sel0a = "This Enables local analog/digital on input channel 0 " + caninput_sel1a = "This Enables local analog/digital on input channel 1 " + caninput_sel2a = "This Enables local analog/digital on input channel 2 " + caninput_sel3a = "This Enables local analog/digital on input channel 3 " + caninput_sel4a = "This Enables local analog/digital on input channel 4 " + caninput_sel5a = "This Enables local analog/digital on input channel 5 " + caninput_sel6a = "This Enables local analog/digital on input channel 6 " + caninput_sel7a = "This Enables local analog/digital on input channel 7 " + caninput_sel8a = "This Enables local analog/digital on input channel 8 " + caninput_sel9a = "This Enables local analog/digital on input channel 9 " + caninput_sel10a = "This Enables local analog/digital on input channel 10 " + caninput_sel11a = "This Enables local analog/digital on input channel 11 " + caninput_sel12a = "This Enables local analog/digital on input channel 12 " + caninput_sel13a = "This Enables local analog/digital on input channel 13 " + caninput_sel14a = "This Enables local analog/digital on input channel 14 " + caninput_sel15a = "This Enables local analog/digital on input channel 15 " + + caninput_sel0b = "This Enables External CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 0 " + caninput_sel1b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 1 " + caninput_sel2b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 2 " + caninput_sel3b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 3 " + caninput_sel4b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 4 " + caninput_sel5b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 5 " + caninput_sel6b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 6 " + caninput_sel7b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 7 " + caninput_sel8b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 8 " + caninput_sel9b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 9 " + caninput_sel10b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 10 " + caninput_sel11b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 11 " + caninput_sel12b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 12 " + caninput_sel13b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 13 " + caninput_sel14b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 14 " + caninput_sel15b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 15 " + + caninput_source_can_address0 = "The source 11bit CAN address of the data for channel 0" + caninput_source_can_address1 = "The source 11bit CAN address of the data for channel 1" + caninput_source_can_address2 = "The source 11bit CAN address of the data for channel 2" + caninput_source_can_address3 = "The source 11bit CAN address of the data for channel 3" + caninput_source_can_address4 = "The source 11bit CAN address of the data for channel 4" + caninput_source_can_address5 = "The source 11bit CAN address of the data for channel 5" + caninput_source_can_address6 = "The source 11bit CAN address of the data for channel 6" + caninput_source_can_address7 = "The source 11bit CAN address of the data for channel 7" + caninput_source_can_address8 = "The source 11bit CAN address of the data for channel 8 " + caninput_source_can_address9 = "The source 11bit CAN address of the data for channel 9" + caninput_source_can_address10 = "The source 11bit CAN address of the data for channel 10" + caninput_source_can_address11 = "The source 11bit CAN address of the data for channel 11" + caninput_source_can_address12 = "The source 11bit CAN address of the data for channel 12" + caninput_source_can_address13 = "The source 11bit CAN address of the data for channel 13" + caninput_source_can_address14 = "The source 11bit CAN address of the data for channel 14" + caninput_source_can_address15 = "The source 11bit CAN address of the data for channel 15" + caninput_source_start_byte0 = "The Starting byte the data begins at for channel 0" + caninput_source_start_byte1 = "The Starting byte the data begins at for channel 1" + caninput_source_start_byte2 = "The Starting byte the data begins at for channel 2" + caninput_source_start_byte3 = "The Starting byte the data begins at for channel 3" + caninput_source_start_byte4 = "The Starting byte the data begins at for channel 4" + caninput_source_start_byte5 = "The Starting byte the data begins at for channel 5" + caninput_source_start_byte6 = "The Starting byte the data begins at for channel 6" + caninput_source_start_byte7 = "The Starting byte the data begins at for channel 7" + caninput_source_start_byte8 = "The Starting byte the data begins at for channel 8" + caninput_source_start_byte9 = "The Starting byte the data begins at for channel 9" + caninput_source_start_byte10 = "The Starting byte the data begins at for channel 10" + caninput_source_start_byte11 = "The Starting byte the data begins at for channel 11" + caninput_source_start_byte12 = "The Starting byte the data begins at for channel 12" + caninput_source_start_byte13 = "The Starting byte the data begins at for channel 13" + caninput_source_start_byte14 = "The Starting byte the data begins at for channel 14" + caninput_source_start_byte15 = "The Starting byte the data begins at for channel 15" + caninput_source_num_bytes0 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes1 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes2 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes3 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes4 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes5 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes6 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes7 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes8 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes9 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes10 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes11 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes12 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes13 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes14 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes15 = "The number of bytes the data is made from starting at selected start byte number" + + cmdEnableTestMode = "Click this to enable test mode. This will not be available if the engine is running" + cmdStopTestMode = "Click this to disable test mode" + cmdtestinj150dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestinj250dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestinj350dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestinj450dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestinj550dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestinj650dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestinj750dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestinj850dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestspk150dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestspk250dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestspk350dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestspk450dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + + ADCFILTER_TPS = "Recommended value: 50" + ADCFILTER_CLT = "Recommended value: 180" + ADCFILTER_IAT = "Recommended value: 180" + ADCFILTER_O2 = "Recommended value: 128" + ADCFILTER_BAT = "Recommended value: 128" + ADCFILTER_MAP = "This setting is only available when using the Instantaneious MAP sampling method. Recommended value: 20" + ADCFILTER_BARO = "This setting is only available when using an external Baro sensor. Recommended value: 64" + + boostIntv = "The closed loop control interval will run every this many ms. Generally values between 50% and 100% of the valve frequency work best" + VVTasOnOff = "Whether or not the VVT table should be treated as on and off control only. If you are using the VVT map to control a switch, this should be Yes. If you are using the VVT control to drive a PWM signal, this should be No" + + stagedInjSizePri= "Size of the primary injectors. The sum of the Pri and Sec injectors values MUST match the value used in the req_fuel calculation" + stagedInjSizeSec= "Size of the secondary injectors. The sum of the Pri and Sec injectors values MUST match the value used in the req_fuel calculation" + #if resetcontrol_adv + resetControl = "How to control the Arduino's automatic reset feature. NOTE: Some of these settings require modifying your hardware and replacing the Arduino bootloader. See the Wiki for more details.\n\nDisabled: Allow the Arduino to reset when a new serial connection is made.\n\nPrevent When Running: Hold the control pin high while the engine is running.\n\nPrevent Always: Always hold the control pin high.\n\nSerial Command: Normally hold the control pin high, but pull it low when the 'U' serial command is issued and reset upon receiving more data." + #else + resetControl = "If set to Serial Command, normally hold the control pin high but pull it low when the 'U' serial command is issued and reset upon receiving more data. The control pin should be connected to the Arduino's reset pin." + #endif + resetControlPin = "The Arduino pin used to control resets." + + battVCorMode = "The Battery Voltage Correction value from the table below can either be applied on the whole injection Pulse Width value, or only on the Open Time value." + +[UserDefined] + +; Enhanced TunerStudio dialogs can be defined here +; MegaTune will over look this section +; These dialogs will over-ride those in the UserDefined Section +; User defined ar loaded first, then if one by the same name is defiend here, +; it will replace the MegaTune definition + +; dialog = name, Title, Layout +; +; valid options for layout are xAxis, yAxis, border +; for an xAxis, each field added will be added from right to left +; A yAxis layout will add fields from top to bottom +; A border layout will expect an additional constraint to determine placement +; valid border constraints are north, South, East, West, Center +; all 5 do not need to be filled. + +; The field name can be either a constant reference, or a reference to another +; dialog which will be added. +; dialogs can be nested and can be mixed with fields + + dialog = engine_constants_southwest, "Speeduino Board" + field = "Stoichiometric ratio", stoich + field = "Injector Layout", injLayout + field = "Board Layout", pinLayout + field = "MAP Sample method", mapSample + + dialog = engine_constants_west, "" + panel = std_injection, North + panel = engine_constants_southwest + + dialog = engine_constants_northeast, "Oddfire Angles" + field = "Channel 2 angle", oddfire2, { engineType == 1 } + field = "Channel 3 angle", oddfire3, { engineType == 1 && nCylinders >= 3 } + field = "Channel 4 angle", oddfire4, { engineType == 1 && nCylinders >= 4 } + + dialog = engine_constants_east, "" + panel = engine_constants_northeast, North + field = "" + + dialog = engine_constants_warning, "" + field = "!Warning: The board you have selected may not have enough channels for sequential fuel!", {}, {}, { injLayout == 3 && !sequentialFuelAvailable } + + dialog = engine_constants, "", border + topicHelp = "https://wiki.speeduino.com/en/configuration/Engine_Constants" + panel = engine_constants_warning, North + panel = engine_constants_west, West + panel = engine_constants_east, East + +; Flex fuel stuff + dialog = flexFuelSettings, "", yAxis + field = "Flex Fuel Sensor ", flexEnabled + field = "Low (E0) ", flexFreqLow, { flexEnabled } + field = "High (E100) ", flexFreqHigh, { flexEnabled } + + dialog = flexFuelWest, "" + panel = flex_fuel_curve, { flexEnabled } + panel = flex_adv_curve, { flexEnabled } + + dialog = flexFuelEast, "" + panel = flex_boost_curve, { flexEnabled && boostEnabled } + + ;dialog = flexCurves, "", indexCard + dialog = flexCurves, "", xAxis + panel = flexFuelWest, West + panel = flexFuelEast, East + + dialog = flexFueling, "Fuel Sensor Settings", border + topicHelp = "https://wiki.speeduino.com/en/configuration/Flex_Fuel" + ;panel = flexFuelWest, West + panel = flexFuelSettings, North + panel = flexCurves, South + +; Knock control settings + dialog = knock_windows, "Knock Windows", xAxis + panel = knock_window_angle_curve, West, { knock_mode } + panel = knock_window_duration_curve, East, { knock_mode } + + dialog = knock_settings_west, "Settings", yAxis + field = "Knock Mode", knock_mode + field = "Knock Pin", knock_pin, { knock_mode } + field = "Knock active when pin is", knock_trigger, { knock_mode == 1 } + field = "Use pullup", knock_pullup, { knock_mode == 1 } + + dialog = knock_settings_east, "Detection and Response" + field = "#Detection" + field = "Knock count required", knock_count, { knock_mode == 1} + field = "Knock threshold required", knock_threshold, { knock_mode == 2} + field = "Maximum MAP", knock_maxMAP, { knock_mode } + field = "Maximum RPM", knock_maxRPM, { knock_mode } + + ;Retard and recovery + field = "#Retard" + field = "Total retard", knock_maxRetard, { knock_mode } + field = "First step size", knock_firstStep, { knock_mode } + field = "Other step size", knock_stepSize, { knock_mode } + field = "Step time", knock_stepTime, { knock_mode } + + field = "#Recovery" + field = "Retard duration", knock_duration, { knock_mode } ;Time before retard starts ending + field = "Recovery step time", knock_recoveryStepTime, { knock_mode } ;Time between each recovery step + field = "Recovery step size", knock_recoveryStep, { knock_mode } + + dialog = knock_settings_top, "", xAxis + panel = knock_settings_west, West + panel = knock_settings_east, East + + dialog = knockSettings, "", border + topicHelp = "http://speeduino.com/wiki/index.php/Knock" + panel = knock_settings_top, North + panel = knock_windows, South + + dialog = vss_gear_1, "", xAxis + field = "Speed ratio 1", vssRatio1 + commandButton = "Set Gear 1", cmdVSSratio1, { vssMode > 1 } + dialog = vss_gear_2, "", xAxis + field = "Speed ratio 2", vssRatio2 + commandButton = "Set Gear 2", cmdVSSratio2, { vssMode > 1 } + dialog = vss_gear_3, "", xAxis + field = "Speed ratio 3", vssRatio3 + commandButton = "Set Gear 3", cmdVSSratio3, { vssMode > 1 } + dialog = vss_gear_4, "", xAxis + field = "Speed ratio 4", vssRatio4 + commandButton = "Set Gear 4", cmdVSSratio4, { vssMode > 1 } + dialog = vss_gear_5, "", xAxis + field = "Speed ratio 5", vssRatio5 + commandButton = "Set Gear 5", cmdVSSratio5, { vssMode > 1 } + dialog = vss_gear_6, "", xAxis + field = "Speed ratio 6", vssRatio6 + commandButton = "Set Gear 6", cmdVSSratio6, { vssMode > 1 } + + dialog = vss_gear_detection, "Gear Detection", yAxis + field = "After setting 'Pulses per km/mile' above" + field = "Drive in each gear (any speed) and press appropriate button" + panel = vss_gear_1 + panel = vss_gear_2 + panel = vss_gear_3 + panel = vss_gear_4 + panel = vss_gear_5 + panel = vss_gear_6 + + dialog = vss_calibration, "VSS Calibration" + field = "Pulses Per KM", vssPulsesPerKm, { vssMode > 1 } + commandButton = "60km/h auto-calibrate", cmdVSS60kmh, { vssMode > 1 } + field = "Smoothing Factor", vssSmoothing, { vssMode > 1 } + + dialog = vssSettings, "", yAxis + topicHelp = "https://wiki.speeduino.com/en/configuration/VSS" + field = "VSS Input Mode", vssMode + field = "VSS Pin", vssPin, { vssMode > 1 } + ;field = "Use Pullup", vssPullup, { vssMode > 1 } + + panel = vss_calibration + panel = vss_gear_detection + + dialog = tacho, "Tacho" + field = "Output pin", tachoPin + field = "Output speed", tachoDiv + field = "Pulse duration", tachoDuration + field = "Tacho sweep on boot", useTachoSweep + field = "Tacho sweep Max RPM", tachoSweepMaxRPM, { useTachoSweep } + + dialog = accelEnrichments_aeSettings, "" + field = "Enrichment mode", aeMode + field = "Enrichment method", aeApplyMode + field = "TPSdot Threshold", taeThresh, { aeMode == 0 } + field = "MAPdot Threshold", maeThresh, { aeMode == 1 } + field = "Accel Time", aeTime + field = "Taper Start RPM", aeTaperMin + field = "Taper End RPM", aeTaperMax + + dialog = accelEnrichments_coldAdj, "Acceleration Enrichment cold adjustment" + field = "Cold adjustment", aeColdPct + field = "Cold adjustment taper start temperature", aeColdTaperMin + field = "Cold adjustment taper end temperature", aeColdTaperMax + + dialog = accelEnrichments_south, "Decelleration Fuel Cutoff (DFCO)" + field = "Enabled", dfcoEnabled + field = "TPS Threshold", dfcoTPSThresh, { dfcoEnabled } + field = "Minimum engine temperature", dfcoMinCLT, { dfcoEnabled } + field = "Cutoff delay", dfcoDelay, { dfcoEnabled } + field = "Cutoff RPM", dfcoRPM, { dfcoEnabled } + field = "RPM Hysteresis", dfcoHyster, { dfcoEnabled } + + dialog = accelEnrichments_north_south, "" + liveGraph = pump_ae_Graph, "AE Graph" + graphLine = afr + graphLine = TPSdot, "%", -2000, 2000, auto, auto + graphLine = MAPdot, "%", -2000, 2000, auto, auto + + dialog = accelEnrichments_north, "", xAxis + panel = time_accel_tpsdot_curve, { aeMode == 0 } + panel = time_accel_mapdot_curve, { aeMode == 1 } + + dialog = accelEnrichments_center, "Acceleration Enrichment", xAxis + panel = accelEnrichments_aeSettings + panel = accelEnrichments_coldAdj + + dialog = accelEnrichments, "Acceleration Enrichment" + topicHelp = "http://speeduino.com/wiki/index.php/Acceleration_Wizard" + panel = accelEnrichments_north, North + panel = accelEnrichments_north_south, Center + panel = accelEnrichments_center, Center + panel = accelEnrichments_south, South + + dialog = veTableDialog_north, "" + panel = veTable1Tbl + + dialog = veTableDialog_south, "" + field = "Multiply VE value by MAP ratio", multiplyMAP + field = "Multiply by ratio of AFR to Target AFR", includeAFR, { egoType == 2 && !incorporateAFR || (incorporateAFR==includeAFR) } + field = "Multiply by ratio of stoich AFR/target AFR (incorporate AFR)", incorporateAFR, { !includeAFR || (incorporateAFR==includeAFR) } + + dialog = veTableDialog, "VE Table" + panel = veTableDialog_north, North + panel = veTableDialog_south, South + + dialog = fuelTable2Dialog_switch, "Switch Conditions", xAxis + field = "Use secondary table when:", fuel2SwitchVariable + field = "is greater than:", fuel2SwitchValue + + dialog = fuelTable2Dialog_input, "Input Options", yAxis + field = "Use secondary table when pin", fuel2InputPin + field = "Is", fuel2InputPolarity + field = "Use internal pullup on pin", fuel2InputPullup, { fuel2InputPolarity == 0 } + + dialog = fuelTable2Dialog_north, "" + field = "Secondary fuel table mode", fuel2Mode + field = "Load source", fuel2Algorithm, { fuel2Mode } + panel = fuelTable2Dialog_switch, { fuel2Mode == 3 } + panel = fuelTable2Dialog_input, { fuel2Mode == 4 } + + dialog = fuelTable2Dialog_south, "" + panel = fuelTable2Tbl + + dialog = fuelTable2Dialog, "Fuel Table 2" + panel = fuelTable2Dialog_north, North + panel = fuelTable2Dialog_south, South, { fuel2Mode } + + dialog = sparkTable2Dialog_switch, "Switch Conditions", xAxis + field = "Use secondary table when:", spark2SwitchVariable + field = "is greater than:", spark2SwitchValue + + dialog = sparkTable2Dialog_input, "Input Options", yAxis + field = "Use secondary table when pin", spark2InputPin + field = "Is", spark2InputPolarity + field = "Use internal pullup on pin", spark2InputPullup, { spark2InputPolarity == 0 } + + dialog = sparkTable2Dialog_north, "" + field = "Secondary advance table mode", spark2Mode + field = "Load source", spark2Algorithm, { spark2Mode } + panel = sparkTable2Dialog_switch, { spark2Mode == 3 } + panel = sparkTable2Dialog_input, { spark2Mode == 4 } + + dialog = sparkTable2Dialog_south, "" + panel = spark2Tbl + + dialog = sparkTable2Dialog, "Spark Table 2" + panel = sparkTable2Dialog_north, North + panel = sparkTable2Dialog_south, South, { spark2Mode } + + dialog = injAngleDialog, "Injector close angles" + panel = injector_timing_curve + + dialog = injOpenTimeDialog, "Injector opening time" + field = "Injector Open Time", injOpen + field = "Battery Voltage Correction Mode", battVCorMode + panel = injector_voltage_curve + + dialog = injChars, "Injector Characteristics" + topicHelp = "https://wiki.speeduino.com/en/configuration/Injector_Characteristics" + field = "Injector Duty Limit", dutyLim + panel = injOpenTimeDialog + panel = injAngleDialog + + dialog = egoControl, "" + topicHelp = "https://wiki.speeduino.com/en/configuration/O2" + field = "Sensor Type", egoType + field = "#Please ensure you calibrate your O2 sensor in the Tools menu", { egoType } + field = "Algorithm", egoAlgorithm, { egoType } + field = "Ignition Events per Step", egoCount, { egoType && (egoAlgorithm < 3) } + field = "Controller Auth +/-", egoLimit, { egoType && (egoAlgorithm < 3) } + field = "Only correct above:", ego_min, { egoType && (egoAlgorithm < 3) } + field = "and correct below:", ego_max, { egoType && (egoAlgorithm < 3) } + + field = "Active Above Coolant", egoTemp, { egoType && (egoAlgorithm < 3) } + field = "Active Above RPM", egoRPM, { egoType && (egoAlgorithm < 3) } + field = "Active Below TPS", egoTPSMax, { egoType && (egoAlgorithm < 3) } + field = "EGO delay after start", ego_sdelay, { (egoAlgorithm < 3) } + field = "PID Proportional Gain", egoKP, { egoType && (egoAlgorithm == 2) } + field = "PID Integral", egoKI, { egoType && (egoAlgorithm == 2) } + field = "PID Derivative", egoKD, { egoType && (egoAlgorithm == 2) } + + dialog = fanSettings,"Fan Settings",7 + topicHelp = "https://wiki.speeduino.com/en/configuration/Thermo_fan" + field = "Fan Mode", fanEnable + field = "Allow fan when off", fanWhenOff, { fanEnable } + field = "Allow fan when cranking", fanWhenCranking, { fanEnable } + field = "Fan output pin", fanPin, { fanEnable } + field = "Fan Output Inverted", fanInv , { fanEnable } + field = "Fan switching temperature", fanSP, { fanEnable } + field = "Fan hysteresis", fanHyster, { fanEnable } + + dialog = stepper_idle, "Stepper Idle" + field = "Step time (ms)", iacStepTime, { iacAlgorithm == 4 || iacAlgorithm == 5 } + field = "Cool time (ms)", iacCoolTime, { iacAlgorithm == 4 || iacAlgorithm == 5 } + field = "Home steps", iacStepHome, { iacAlgorithm == 4 || iacAlgorithm == 5 } + field = "Minimum Steps", iacStepHyster, { iacAlgorithm == 4 || iacAlgorithm == 5 } + field = "Don't exceed", iacMaxSteps, { iacAlgorithm == 4 || iacAlgorithm == 5 } + field = "Stepper Inverted", iacStepperInv, { iacAlgorithm == 4 || iacAlgorithm == 5 } + + dialog = pwm_idle, "PWM Idle" + field = "Number of outputs", iacChannels, { iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6} + field = "Idle valve frequency", idleFreq, { iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6} + field = "Idle valve direction", iacPWMdir, { iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6} + + dialog = closedloop_idle, "Closed loop Idle" + field = "P", idleKP, { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6} + field = "I", idleKI, { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6} + field = "D", idleKD, { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6} + field = "Minimum valve duty", iacCLminDuty, { iacAlgorithm == 3 || iacAlgorithm == 6} + field = "Maximum valve duty", iacCLmaxDuty, { iacAlgorithm == 3 || iacAlgorithm == 6} + field = "Integeral reset above TPS", iacTPSlimit { iacAlgorithm == 6 } + field = "Integeral reset RPM Hysteresis", iacRPMlimitHysteresis { iacAlgorithm == 6 } + + dialog = idleSettings, "Idle Settings" + topicHelp = "https://wiki.speeduino.com/en/configuration/Idle" + field = "Idle control type", iacAlgorithm + field = "Crank to run taper", idleTaperTime, { iacAlgorithm == 2 || iacAlgorithm == 4 } + field = "#Fast Idle" + field = "Fast idle temp", iacFastTemp, { iacAlgorithm == 1 } + panel = pwm_idle + panel = stepper_idle + panel = closedloop_idle + + dialog = idleUpInputSettingsPanel, "Idle Up Input Settings", yAxis + field = "Idle Up Enabled", idleUpEnabled + field = "Idle Up Pin", idleUpPin, { idleUpEnabled } + field = "Idle Up Pin Polarity", idleUpPolarity, { idleUpEnabled } + field = "Idle Up Amount", idleUpAdder, { idleUpEnabled } + + dialog = idleUpOutputSettingsPanel, "Idle Up Output Settings", yAxis + field = "Idle Up Output Enabled", idleUpOutputEnabled, { idleUpEnabled } + field = "Idle Up Output Inverted", idleUpOutputInv, { idleUpEnabled && idleUpOutputEnabled + field = "Idle Up Output Pin", idleUpOutputPin, { idleUpEnabled && idleUpOutputEnabled } + + dialog = idleUpSettings, "Idle Up Settings" + panel = idleUpInputSettingsPanel + panel = idleUpOutputSettingsPanel + + dialog = fuelpump, "Fuel pump" + field = "Fuel pump pin", fuelPumpPin + field = "Fuel pump prime duration", fpPrime + + dialog = crankingEnrichDialog, "Cranking Enrichment", yAxis + panel = cranking_enrich_curve + field = "#Note" + field = "Values are specified as modifiers to the normal fueling. Eg 100% = No change." + + dialog = crankingIgnOptions, "Cranking Timing", yAxis + field = "Cranking advance Angle", CrankAng, { ignCranklock == 0 } + field = "Cranking bypass", ignBypassEnable + field = "Bypass output pin", ignBypassPin { ignBypassEnable } + field = "Fix cranking timing with trigger", ignCranklock, { TrigPattern == 1 || TrigPattern == 4 || TrigPattern == 10 || TrigPattern == 9 } + + dialog = crankingOptions, "", yAxis + field = "Cranking RPM (Max)", crankRPM + field = "Flood Clear level", tpsflood + field = "Fuel pump prime duration", fpPrime + field = "Injectors priming delay", primingDelay + field = "Cranking enrichment taper time", crankingEnrichTaper + + dialog = primePW, "Priming Pulsewidth" + panel = priming_pw_curve + + dialog = crankPW, "Cranking Settings", yAxis + topicHelp = "https://wiki.speeduino.com/en/configuration/Cranking" + panel = crankingOptions, North + panel = crankingEnrichDialog, Center + panel = crankingIgnOptions, South + + dialog = ASE_amount, "Enrichment amount (%)", yAxis + field = "Defines the fuel enrichment percentage after start." + field = "This is needed to keep engine running after start" + field = "Common values are 5% when engine is hot to 50% when engine is cold." + panel = afterstart_enrichment_curve + + dialog = ASE_time, "Duration (s)", yAxis + field = "How long time the After Start Enrichment is applied in seconds." + field = "Usually this is varies from 1-2s when engine is hot up to 20s on a cold engine." + field = "Transition time to disable", aseTaperTime + panel = afterstart_enrichment_time + + dialog = ASE, "Afterstart Enrichment(ASE)", yAxis + field = "#Time and duration curves share common coolant values" + panel = ASE_amount + panel = ASE_time + + dialog = triggerSettings,"Trigger Settings",4 + topicHelp = "https://wiki.speeduino.com/en/decoders" + field = "Trigger Pattern", TrigPattern + field = "Primary base teeth", numTeeth, { TrigPattern == 0 || TrigPattern == 2 || TrigPattern == 11 || TrigPattern == 18 || TrigPattern == 19 } + field = "Primary trigger speed", TrigSpeed, { TrigPattern == 0 } + field = "Missing teeth", missingTeeth, { TrigPattern == 0 } + field = "Trigger angle multiplier", TrigAngMul, { TrigPattern == 11 } + field = "Trigger Angle ", TrigAng + field = "This number represents the angle ATDC when " + field = "tooth #1 passes the primary sensor." + field = "" + field = "Skip Revolutions", SkipCycles + field = "Note: This is the number of revolutions that will be skipped during" + field = "cranking before the injectors and coils are fired" + field = "Trigger edge", TrigEdge { TrigPattern != 4 } ;4G63 uses both edges + field = "Secondary trigger edge", TrigEdgeSec, { (TrigPattern == 0 && TrigSpeed == 0) || TrigPattern == 2 || TrigPattern == 9 || TrigPattern == 12 || TrigPattern == 18 || TrigPattern == 19 } ;Missing tooth, dual wheel and Miata 9905, weber-marelli + field = "Missing Tooth Secondary type" trigPatternSec, { (TrigPattern == 0&& TrigSpeed == 0) } + field = "Trigger Filter", TrigFilter, { TrigPattern != 13 } + field = "Re-sync every cycle", useResync, { TrigPattern == 2 || TrigPattern == 4 || TrigPattern == 7 || TrigPattern == 12 || TrigPattern == 9 || TrigPattern == 13 || TrigPattern == 18 || TrigPattern == 19 } ;Dual wheel, 4G63, Audi 135, Nissan 360, Miata 99-05, weber-marelli + + dialog = lockSparkSettings, "Locked timing" + field = "Enabled Fixed/Locked timing", fixAngEnable + field = "Fixed Angle", FixAng, { fixAngEnable } + field = "#Note: During cranking the fixed/locked timing angle is overriden by the Cranking advance angle value above" + + dialog = newIgnitionMode, "New Ignition Mode" + field = "This option is currently will improve accuracy on most compatible triggers" + field = "However if timing issues are encountered, please disable this" + field = "Use new ignition mode", perToothIgn + + dialog = sparkSettings,"Spark Settings",4 + topicHelp = "https://wiki.speeduino.com/en/configuration/Spark_Settings" + field = "!Warning: The board you have selected may not have enough channels for sequential ignition!", {}, {}, { sparkMode == 3 && !sequentialIgnitionAvailable } + field = "Ignition load source", ignAlgorithm + field = "Spark output mode", sparkMode + field = "Cranking advance Angle", CrankAng + field = "Spark Outputs triggers", IgInv + panel = lockSparkSettings + panel = newIgnitionMode, {TrigPattern == 0 || TrigPattern == 1 || TrigPattern == 2 || TrigPattern == 3 || TrigPattern == 4 || TrigPattern == 9 || TrigPattern == 12 || TrigPattern == 13 || TrigPattern == 18 || TrigPattern == 19} ;Only works for missing tooth, distributor, dual wheel, GM 7X, 4g63, Miata 99-05, nissan 360, Subaru 6/7, 420a, weber-marelli + + dialog = dwellSettings, "Dwell Settings", 4 + topicHelp = "https://wiki.speeduino.com/en/configuration/Dwell" + field = " Cranking dwell", dwellcrank + field = " Running dwell", dwellrun + field = " Spark duration", sparkDur + field = "" + field = "#Note" + field = "The above times are for 12V. Voltage correction" + field = "is applied. At higher voltages the time is reduced" + field = "and when low it is increased" + field = "" + field = "Overdwell protection" + field = "Use Overdwell protection", useDwellLim + field = "Max dwell time", dwellLim, { useDwellLim } + field = "Note: Set the maximum dwell time at least 3ms above" + field = "your desired dwell time (Including cranking)" + + dialog = idleAdvanceSettings_east + field = "Idle advance mode", idleAdvEnabled + field = "Idle detect mode", idleAdvAlgorithm, { idleAdvEnabled >= 1 } + field = "Delay before idle control starts (s)",idleAdvDelay, { idleAdvEnabled >= 1 } + field = "Active Below RPM", idleAdvRPM, { idleAdvEnabled >= 1 } + field = "Active Below TPS", idleAdvTPS, { idleAdvEnabled >= 1 && idleAdvAlgorithm == 0 } + field = "Closed Throttle Sensor Enabled", CTPSEnabled, { idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 } + field = "Closed Throttle Sensor Pin", CTPSPin, { idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 && CTPSEnabled == 1 } + field = "Closed Throttle Sensor Pin Polarity", CTPSPolarity, { idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 && CTPSEnabled == 1 } + + dialog = idleAdvanceSettings,"Idle Advance Settings", xAxis + topicHelp = "https://wiki.speeduino.com/en/configuration/IdleAdvance" + panel = idleAdvanceSettings_east + panel = idle_advance_curve, { idleAdvEnabled >= 1 } + panel = iacClosedLoop_curve, { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || idleAdvEnabled >= 1 } + + + dialog = rotary_ignition, "Rotary Ignition", 4 + field = "Ignition Configuration", rotaryType + panel = rotaryTrailing_curve + + dialog = boostCut, "Boost Cut" + field = "Enable Boost limit", boostCutEnabled + field = "Boost Limit", boostLimit, { boostCutEnabled } + + dialog = boostLoad, "" + field = "Mode", boostType + field = "In open loop mode, the values in this table are duty cycle %" + field = "In closed loop mode, the values are boost targets in kPa" + panel = boostTbl + + dialog = revLimiterDialog, "Rev Limiter" + field = "Rev Limiter" + field = "!Soft limiter only available with ignition cut", {}, {}, { engineProtectType == 2 } + field = "Soft rev limit", SoftRevLim, { engineProtectType == 1 || engineProtectType == 3 } ;Only available for the protection modes that include ignition. + field = "Soft limiter mode", SoftLimitMode, { engineProtectType == 1 || engineProtectType == 3 } ;Only available for the protection modes that include ignition. + field = "Soft limit timing", SoftLimRetard, { engineProtectType == 1 || engineProtectType == 3 } ;Only available for the protection modes that include ignition. + field = "Soft limit max time", SoftLimMax, { engineProtectType == 1 || engineProtectType == 3 } ;Only available for the protection modes that include ignition. + field = "Hard Rev limit", HardRevLim + + dialog = oilPressureProtection, "Oil Pressure" + field = "Oil Pressure Protection", oilPressureProtEnbl, { oilPressureEnable } + panel = oil_pressure_prot_curve, { oilPressureEnable && oilPressureProtEnbl } + + indicatorPanel = protectIndicatorPanel, 1, { 1 } + indicator = { engineProtectStatus}, "Engine Protect OFF", "Engine Protect ON", green, black, red, black + indicator = { engineProtectRPM }, "Rev Limiter Off", "Rev Limiter ON", green, black, red, black + indicator = { engineProtectMAP }, "Boost Limit OFF", "Boost Limit ON", green, black, red, black + indicator = { engineProtectOil }, "Oil Pres. Protect OFF","Oil Pres. Protect ON",green, black, red, black + indicator = { engineProtectAFR }, "AFR Protect OFF", "AFR Protect ON", green, black, red, black + + dialog = engineProtectionWest, "" + field = "Protection Cut", engineProtectType + field = "Engine Protection RPM min", engineProtectMaxRPM, { engineProtectType } + field = "Cut method", hardCutType, { engineProtectType == 1 || engineProtectType == 3 } ;Only available for the protection modes that include ignition. + panel = protectIndicatorPanel, { engineProtectType } + + dialog = RevLimiterS, "Engine Protection and Limiters", xAxis + topicHelp = "https://wiki.speeduino.com/en/configuration/Rev_Limits" + panel = engineProtectionWest + panel = revLimiterDialog, { engineProtectType } + panel = boostCut, { engineProtectType } + panel = oilPressureProtection, { engineProtectType } + + + dialog = clutchInput, "Clutch input" + field = "Clutch Input Pin", launchPin, { launchEnable || flatSEnable } + field = "Clutch enabled when signal is",launchHiLo, { launchEnable || flatSEnable } + field = "Clutch Pullup Resistor", lnchPullRes, { launchEnable || flatSEnable } + field = "Launch / Flat Shift switch RPM",flatSArm, { launchEnable || flatSEnable } + + dialog = LaunchControl, "Launch Control / Flat shift", 6 + topicHelp = "https://wiki.speeduino.com/en/configuration/Launch_Flatshift" + panel = clutchInput + ; Launch control + field = "Launch Control" + field = "Enable Launch", launchEnable + field = "TPS threshold", lnchCtrlTPS, { launchEnable } + field = "Soft rev limit", lnchSoftLim, { launchEnable } + field = "Soft limit absolute timing", lnchRetard, { launchEnable } + field = "Hard rev limit", lnchHardLim, { launchEnable } + field = "Fuel adder during launch", lnchFuelAdd, { launchEnable } + + ; Flat shift + field = "Flat Shift" + field = "Enable flat shift", flatSEnable + field = "Soft rev window", flatSSoftWin, { flatSEnable } + field = "Soft limit absolute timing", flatSRetard, { flatSEnable } + + dialog = NitrousStage1, "Stage 1" + field = "Nitrous Output Pin", n2o_stage1_pin + field = "Minimum Engage RPM", n2o_stage1_minRPM + field = "Maximum Engage RPM", n2o_stage1_maxRPM + field = "Fuel adder @ Min RPM", n2o_stage1_adderMin + field = "Fuel adder @ Max RPM", n2o_stage1_adderMax + field = "Ignition retard when active", n2o_stage1_retard + + dialog = NitrousStage2, "Stage 2" + field = "Nitrous Output Pin", n2o_stage2_pin + field = "Minimum Engage RPM", n2o_stage2_minRPM + field = "Maximum Engage RPM", n2o_stage2_maxRPM + field = "Fuel adder @ Min RPM", n2o_stage2_adderMin + field = "Fuel adder @ Max RPM", n2o_stage2_adderMax + field = "Ignition retard when active", n2o_stage2_retard + + dialog = NitrousMain, "Settings" + field = "Nitrous Mode", n2o_enable + field = "Arming Pin", n2o_arming_pin, { n2o_enable > 0 } + field = "Nitrous is armed when pin is", n2o_pin_polarity,{ n2o_enable > 0 } + field = "Minimum CLT", n2o_minCLT, { n2o_enable > 0 } + field = "Minimum TPS", n2o_minTPS, { n2o_enable > 0 } + field = "Maximum MAP", n2o_maxMAP, { n2o_enable > 0 } + field = "Leanest AFR", n2o_maxAFR, { n2o_enable > 0 } + + dialog = NitrousControl, "Nitrous" + topicHelp = "https://wiki.speeduino.com/en/configuration/Nitrous_Control" + panel = NitrousMain, North + panel = NitrousStage1, West, { n2o_enable > 0 } + panel = NitrousStage2, East, { n2o_enable > 1 } + + + dialog = OLED, "OLED Display", 2 + field = "Display Type", display + field = "#Note" + field = "ECU must be rebooted after changing above value" + field = "Field 1", display1, { display } + field = "Field 2", display2, { display } + field = "Field 3", display3, { display } + field = "Field 4", display4, { display } + ;field = "Bar 1", displayB1, { display } + ;field = "Bar 2", displayB2, { display > 2 } + + dialog = batCal, "Calibrate voltage reading" + topicHelp = "https://wiki.speeduino.com/en/configuration/Sensor_Calibration" + slider = "Battery Voltage reading offset", batVoltCorrect, horizontal + + dialog = mapCal, "Calibrate MAP" + topicHelp = "https://wiki.speeduino.com/en/configuration/Sensor_Calibration" + field = "#MAP Sensor" + settingSelector = "Common Pressure Sensors" + settingOption = "MPX4115/MPXH6115", mapMin=10, mapMax=118 ; https://www.nxp.com/docs/en/data-sheet/MPX4115.pdf Vout = VCC * (0.009*P - 0.095) + settingOption = "MPX4250", mapMin=10, mapMax=260 ; https://www.nxp.com/docs/en/data-sheet/MPX4250A.pdf Vout = VCC x (P x 0.004 – 0.04) + settingOption = "GM 1-BAR", mapMin=10, mapMax=105 ; https://speeduino.com/wiki/index.php/File:GM_Table.gif + settingOption = "GM 2-BAR", mapMin=9, mapMax=208 ; https://speeduino.com/wiki/index.php/File:GM_Table.gif + settingOption = "GM 3-BAR", mapMin=1, mapMax=315 ; VOUT = VS*(.00318*P-.00353) + settingOption = "MPXH6300", mapMin=1, mapMax=315 ; https://www.nxp.com/docs/en/data-sheet/MPXH6300A.pdf VOUT = VS*(.00318*P-.00353) + settingOption = "MPX5700", mapMin=-31, mapMax=746 ; https://www.nxp.com/docs/en/data-sheet/MPX5700.pdf Vout = VS*(0.0012858*P+0.04) + settingOption = "MPX6400", mapMin=3, mapMax=416 ; https://www.nxp.com/docs/en/data-sheet/MPXH6400A.pdf VOUT = VS x (0.002421xP–0.00842) + settingOption = "Denso 079800", mapMin=0, mapMax=173 ; http://speeduino.com/forum/viewtopic.php?f=18&t=510&p=7023#p7021 + settingOption = "VW/Audi/Porsche 250kPa", mapMin=26, mapMax=250 ; http://speeduino.com/forum/viewtopic.php?p=17502#p17502 + settingOption = "Bosch 3 Bar TMAP", mapMin=-6, mapMax=323 + + field = "kPa At 0.0 Volts", mapMin + field = "kPa At 5.0 Volts", mapMax + field = "Use legacy MAP reading",legacyMAP + + field = "#Baro Sensor" + field = "Use external Baro sensor", useExtBaro + field = "Analog pin to use for ext. Baro sensor", baroPin, { useExtBaro } + + settingSelector = "Common Pressure Sensors", { useExtBaro } + settingOption = "MPX4115/MPXH6115", baroMin=10, baroMax=118 ; https://www.nxp.com/docs/en/data-sheet/MPX4115.pdf Vout = VCC * (0.009*P - 0.095) + settingOption = "MPX4250", baroMin=10, baroMax=260 ; https://www.nxp.com/docs/en/data-sheet/MPX4250A.pdf Vout = VCC x (P x 0.004 – 0.04) + settingOption = "GM 1-BAR", baroMin=10, baroMax=105 ; https://speeduino.com/wiki/index.php/File:GM_Table.gif + settingOption = "GM 2-BAR", baroMin=9, baroMax=208 ; https://speeduino.com/wiki/index.php/File:GM_Table.gif + settingOption = "GM 3-BAR", baroMin=1, baroMax=315 ; VOUT = VS*(.00318*P-.00353) + settingOption = "MPXH6300", baroMin=1, baroMax=315 ; https://www.nxp.com/docs/en/data-sheet/MPXH6300A.pdf VOUT = VS*(.00318*P-.00353) + settingOption = "MPX5700", baroMin=-31, baroMax=746 ; https://www.nxp.com/docs/en/data-sheet/MPX5700.pdf Vout = VS*(0.0012858*P+0.04) + settingOption = "MPX6400", baroMin=3, baroMax=416 ; https://www.nxp.com/docs/en/data-sheet/MPXH6400A.pdf VOUT = VS x (0.002421xP–0.00842) + settingOption = "Denso 079800", baroMin=0, baroMax=173 ; http://speeduino.com/forum/viewtopic.php?f=18&t=510&p=7023#p7021 + settingOption = "VW/Audi/Porsche 250kPa", baroMin=26, baroMax=250 ; http://speeduino.com/forum/viewtopic.php?p=17502#p17502 + settingOption = "Bosch 3 Bar TMAP", mapMin=-6, mapMax=323 + + field = "kPa At 0.0 Volts", baroMin, { useExtBaro } + field = "kPa At 5.0 Volts", baroMax, { useExtBaro } + + field = "#EMAP Sensor" + field = "Use EMAP sensor", useEMAP + field = "Analog pin to use for ext. Baro sensor", EMAPPin, { useEMAP } + + settingSelector = "Common Pressure Sensors", { useEMAP } + settingOption = "MPX4115", EMAPMin=10, EMAPMax=118 ; https://www.nxp.com/docs/en/data-sheet/MPX4115.pdf + settingOption = "MPX4250", EMAPMin=10, EMAPMax=260 ; https://www.nxp.com/docs/en/data-sheet/MPX4250A.pdf Vout = VCC x (P x 0.004 – 0.04) + settingOption = "GM 1-BAR", EMAPMin=10, EMAPMax=105 ; https://speeduino.com/wiki/index.php/File:GM_Table.gif + settingOption = "GM 2-BAR", EMAPMin=9, EMAPMax=208 ; https://speeduino.com/wiki/index.php/File:GM_Table.gif + settingOption = "GM 3-BAR", EMAPMin=1, EMAPMax=315 ; VOUT = VS*(.00318*P-.00353) + settingOption = "MPXH6300", EMAPMin=1, EMAPMax=315 ; https://www.nxp.com/docs/en/data-sheet/MPXH6300A.pdf VOUT = VS*(.00318*P-.00353) + settingOption = "MPX5700", EMAPMin=-31, EMAPMax=746 ; https://www.nxp.com/docs/en/data-sheet/MPX5700.pdf Vout = VS*(0.0012858*P+0.04) + settingOption = "MPX6400", EMAPMin=3, EMAPMax=416 ; https://www.nxp.com/docs/en/data-sheet/MPXH6400A.pdf VOUT = VS x (0.002421xP–0.00842) + settingOption = "Denso 079800", EMAPMin=0, EMAPMax=173 ; http://speeduino.com/forum/viewtopic.php?f=18&t=510&p=7023#p7021 + settingOption = "VW/Audi/Porsche 250kPa", EMAPMin=26, EMAPMax=250 ; http://speeduino.com/forum/viewtopic.php?p=17502#p17502 + + field = "kPa At 0.0 Volts", EMAPMin, { useEMAP } + field = "kPa At 5.0 Volts", EMAPMax, { useEMAP } + + dialog = sensorFilters, "Analog sensor filters" + field = "The values here set the amount of filtering to apply to each analog input" + field = "Higher values result in stronger filtering, but slower response times for readings" + field = "#Most setups will NOT require changes to the default filter values" + field = "" + slider = "Throttle Position Sensor", ADCFILTER_TPS, horizontal + slider = "Coolant Sensor", ADCFILTER_CLT, horizontal + slider = "Inlet Air Temp sensor", ADCFILTER_IAT, horizontal + slider = "O2 sensor", ADCFILTER_O2, horizontal + slider = "Battery voltage", ADCFILTER_BAT, horizontal + slider = "MAP sensor", ADCFILTER_MAP, horizontal + slider = "Baro sensor", ADCFILTER_BARO, horizontal, { useExtBaro > 0 } + + dialog = fuelPressureSettings + field = "Enabled", fuelPressureEnable + field = "Pin", fuelPressurePin, { fuelPressureEnable } + settingSelector = "Common Sensors", { fuelPressureEnable } + settingOption = "0-100 PSI", fuelPressureMin=-3, fuelPressureMax=103 ; Vout = VCC x (P x .97 / 200 + 0.5) + settingOption = "0-150 PSI", fuelPressureMin=-18, fuelPressureMax=168 ; Vout = VCC x (P x 0.8 / 150 + 0.1) https://aftermarketindustries.com.au/image/cache/data/aftermarket%20industries%20fuel%20pressure%20sensor%20data%202-500x500.png + field = "Pressure at 0v", fuelPressureMin, { fuelPressureEnable } + field = "Pressure at 5v", fuelPressureMax, { fuelPressureEnable } + + dialog = fuelPressureDialog, "Fuel Pressure", xAxis + gauge = fuelPressureGauge + panel = fuelPressureSettings + + dialog = oilPressureSettings + field = "Enabled", oilPressureEnable + field = "Pin", oilPressurePin, { oilPressureEnable } + settingSelector = "Common Sensors", { oilPressureEnable } + settingOption = "0-100 PSI", oilPressureMin=-3, oilPressureMax=103 ; Vout = VCC x (P x .97 / 200 + 0.5) + settingOption = "0-150 PSI", oilPressureMin=-18, oilPressureMax=168 ; Vout = VCC x (P x 0.8 / 150 + 0.1) https://aftermarketindustries.com.au/image/cache/data/aftermarket%20industries%20fuel%20pressure%20sensor%20data%202-500x500.png + field = "Pressure at 0v", oilPressureMin, { oilPressureEnable } + field = "Pressure at 5v", oilPressureMax, { oilPressureEnable } + + dialog = oilPressureDialog, "Oil Pressure", xAxis + gauge = oilPressureGauge + panel = oilPressureSettings + + dialog = pressureSensors, "Pressure Transducers" + topicHelp = "https://wiki.speeduino.com/en/configuration/Sensor_Calibration" + panel = fuelPressureDialog + panel = oilPressureDialog + + dialog = boostSettings, "Boost Control" + topicHelp = "https://wiki.speeduino.com/en/configuration/Boost_Control" + field = "Boost Control Enabled", boostEnabled + field = "Boost control type", boostType, { boostEnabled } + field = "Boost output pin", boostPin, { boostEnabled } + field = "Boost solenoid freq.", boostFreq, { boostEnabled } + + field = "Valve minimum duty cycle", boostMinDuty, { boostEnabled && boostType == 1 } + field = "Valve maximum duty cycle", boostMaxDuty, { boostEnabled && boostType == 1 } + panel = boostCut + field = "Closed Loop settings" + field = "Control mode", boostMode, { boostEnabled && boostType == 1 } + slider = "Sensitivity", boostSens, horizontal, { boostEnabled && boostType == 1 } + field = "Control interval", boostIntv, { boostEnabled && boostType == 1 } + field = "P", boostKP, { boostEnabled && boostMode && boostType == 1 } + field = "I", boostKI, { boostEnabled && boostMode && boostType == 1 } + field = "D", boostKD, { boostEnabled && boostMode && boostType == 1 } + + dialog = vvtClosedLoop, "Closed loop" + field = "Hold duty used", vvtCLUseHold + field = "Hold duty", vvtCLholdDuty, { vvtCLUseHold } + field = "Adjust fuel timing", vvtCLAlterFuelTiming + field = "Cam angle @ 0% duty", vvtCLMinAng + field = "" + field = "Proportional Gain", vvtCLKP + field = "Integral Gain", vvtCLKI + field = "Differential Gain", vvtCLKD + field = "Minimum valve duty", vvtCLminDuty, { vvtEnabled && vvtMode == 2 } + field = "Maximum valve duty", vvtCLmaxDuty, { vvtEnabled && vvtMode == 2 } + + + dialog = vvtSettings, "VVT Control" + field = "VVT Control Enabled", vvtEnabled + field = "VVT Mode", vvtMode, { vvtEnabled } + field = "#Please note that close loop is currently experimental for Miata patterns ONLY" + field = "Load source", vvtLoadSource, { vvtEnabled } + field = "Use VVT map as On / Off only", VVTasOnOff, { vvtEnabled && vvtMode != 2 } + field = "VVT output pin", vvt1Pin, { vvtEnabled } + field = "VVT solenoid freq.", vvtFreq, { vvtEnabled } + field = "Increased duty direction", vvtPWMdir, { vvtEnabled } + panel = vvtClosedLoop, { vvtEnabled && vvtMode == 2 } + + dialog = wmiSettings, "WMI Control" + field = "#Experimental!" + field = "WMI Control Enabled", wmiEnabled + field = "WMI Mode", wmiMode, { wmiEnabled } + field = "WMI min TPS", wmiTPS, { wmiEnabled } + field = "WMI min RPM", wmiRPM , { wmiEnabled } + field = "WMI min MAP", wmiMAP, { wmiEnabled } + field = "WMI max MAP", wmiMAP2, { wmiEnabled && wmiMode == 1} + field = "WMI min IAT", wmiIAT, { wmiEnabled } + field = "WMI offset", wmiOffset, { wmiEnabled && wmiMode == 3} + field = "" + field = "WMI PWM output pin", vvt1Pin, { wmiEnabled } + field = "WMI PWM freq.", vvtFreq, { wmiEnabled } + field = "" + field = "WMI enabled output pin", wmiEnabledPin, { wmiEnabled } + field = "" + field = "WMI tank empty input", wmiEmptyEnabled, { wmiEnabled } + field = "WMI tank empty pin", wmiEmptyPin, { wmiEnabled } + field = "WMI tank empty polarity", wmiEmptyPolarity, { wmiEnabled } + field = "" + field = "WMI tank indicator output", wmiIndicatorEnabled, { wmiEnabled } + field = "WMI tank indicator pin", wmiIndicatorPin, { wmiEnabled } + field = "WMI tank indicator polarity", wmiIndicatorPolarity, { wmiEnabled } + field = "" + field = "Iginition advance correction", wmiAdvEnabled, { wmiEnabled } + panel = wmi_adv_curve, { wmiEnabled && wmiAdvEnabled } + + dialog = warmup, "Warmup Enrichment (WUE) - Percent Multiplier" + panel = warmup_curve + field = "Final enrichment value must be 100%." + field = "" + + ;Fuel trim composite dialog + dialog = inj_trim1TblTitle, "Channel #1" + panel = fuelTrimTable1Tbl, { fuelTrimEnabled } + dialog = inj_trim2TblTitle, "Channel #2" + panel = fuelTrimTable2Tbl, { fuelTrimEnabled } + dialog = inj_trim3TblTitle, "Channel #3" + panel = fuelTrimTable3Tbl, { fuelTrimEnabled } + dialog = inj_trim4TblTitle, "Channel #4" + panel = fuelTrimTable4Tbl, { fuelTrimEnabled } + + dialog = inj_trimadt, "", xAxis + panel = inj_trim1TblTitle + panel = inj_trim2TblTitle + dialog = inj_trimadb, "", xAxis + panel = inj_trim3TblTitle + panel = inj_trim4TblTitle + + dialog = inj_trim_enable, "" + field = "Individual fuel trim enabled", fuelTrimEnabled, { injLayout == 3 && nCylinders <= 4 } + + dialog = inj_trimad,"Injector Cyl 1-4 Trims", yAxis + panel = inj_trim_enable, North + panel = inj_trimadt, Center + panel = inj_trimadb, South + + ;;Injector staging + dialog = stagingTableDialog_north, "" + field = "Staging enabled", stagingEnabled + field = "Staging mode", stagingMode + field = "Size of primary injectors", stagedInjSizePri, { stagingEnabled } + field = "Size of secondary injectors", stagedInjSizeSec, { stagingEnabled } + + dialog = stagingTableDialog_south, "" + panel = stagingTbl, { stagingMode == 0 } + + dialog = stagingTableDialog, "Staged injection" + topicHelp = "https://wiki.speeduino.com/en/configuration/Staged_Injection" + panel = stagingTableDialog_north, North + panel = stagingTableDialog_south, South + + dialog = outputtest_warningmessage, "" + field = "WARNING! USE AT YOUR OWN RISK. INCORRECT USE WILL DAMAGE YOUR HARDWARE!" + field = "Do not attempt to use this page whilst your engine is running!" + field = "Forcing the Injector or Spark outputs could cause flooding of your engine or permanent damage to ignition coils!" + + + dialog = enableoutputtestbuttons, "Enable Test Controls", xAxis + ;commandButton = "Label Text", command, { Enabled Condition }, optionalFlags + + ; The rem > 0 expression is just for testing.. It works when the arduino is on the Stim with rpm. + ; a status bit there would be the expected real expression + commandButton = "Enable Test Mode", cmdEnableTestMode,{!testenabled && !testactive } + + ; if clickOnCloseIfEnabled is set, then the command assigned to this button will be run on the + ; dialog close, but only if the enable condition is true + ; valid click flags are: + ; clickOnCloseIfEnabled - the command will be sent on dialog close if active condition is true + ; clickOnCloseIfDisabled - the command will be sent on dialog close if active condition is false + ; clickOnClose - the command will be sent on dialog close always + commandButton = "Stop Test Mode", cmdStopTestMode,{testactive}, clickOnCloseIfEnabled + + dialog = outputtestinj1, "Injector CH1", yAxis + commandButton = "Off", cmdtestinj1off,{testactive} + commandButton = "50% DC", cmdtestinj150dc,{!testenabled && testactive} + commandButton = "On", cmdtestinj1on,{!testenabled & testactive} + dialog = outputtestinj2, "Injector CH2", yAxis + commandButton = "Off", cmdtestinj2off,{testactive && nFuelChannels >= 2 } + commandButton = "50% DC", cmdtestinj250dc,{!testenabled && testactive && nFuelChannels >= 2 } + commandButton = "On", cmdtestinj2on,{ !testenabled && testactive && nFuelChannels >= 2 } + dialog = outputtestinj3, "Injector CH3", yAxis + commandButton = "Off", cmdtestinj3off,{ testactive && nFuelChannels >= 3 } + commandButton = "50% DC", cmdtestinj350dc,{!testenabled && testactive && nFuelChannels >= 3 } + commandButton = "On", cmdtestinj3on,{ !testenabled && testactive && nFuelChannels >= 3 } + dialog = outputtestinj4, "Injector CH4", yAxis + commandButton = "Off", cmdtestinj4off,{ testactive && nFuelChannels >= 4 } + commandButton = "50% DC", cmdtestinj450dc,{!testenabled && testactive && nFuelChannels >= 4 } + commandButton = "On", cmdtestinj4on ,{ !testenabled && testactive && nFuelChannels >= 4 } + dialog = outputtestinj5, "Injector CH5", yAxis + commandButton = "Off", cmdtestinj5off,{ testactive && nFuelChannels >= 5 } + commandButton = "50% DC", cmdtestinj550dc,{!testenabled && testactive && nFuelChannels >= 5 } + commandButton = "On", cmdtestinj5on,{ !testenabled && testactive && nFuelChannels >= 5 } + dialog = outputtestinj6, "Injector CH6", yAxis + commandButton = "Off", cmdtestinj6off,{ testactive && nFuelChannels >= 6 } + commandButton = "50% DC", cmdtestinj650dc,{!testenabled && testactive && nFuelChannels >= 6 } + commandButton = "On", cmdtestinj6on ,{ !testenabled & testactive && nFuelChannels >= 6 } + dialog = outputtestinj7, "Injector CH7", yAxis + commandButton = "Off", cmdtestinj7off,{ testactive && nFuelChannels >= 7 } + commandButton = "50% DC", cmdtestinj750dc,{!testenabled && testactive && nFuelChannels >= 7 } + commandButton = "On", cmdtestinj7on,{ !testenabled && testactive && nFuelChannels >= 7 } + dialog = outputtestinj8, "Injector CH8", yAxis + commandButton = "Off", cmdtestinj8off,{ testactive && nFuelChannels >= 8 } + commandButton = "50% DC", cmdtestinj850dc,{!testenabled && testactive && nFuelChannels >= 8 } + commandButton = "On", cmdtestinj8on ,{ !testenabled & testactive && nFuelChannels >= 8 } + + dialog = outputtest_injectors, "Injector Driver Output Test", xAxis + panel = outputtestinj1 + panel = outputtestinj2 + panel = outputtestinj3 + panel = outputtestinj4 + panel = outputtestinj5 + panel = outputtestinj6 + panel = outputtestinj7 + panel = outputtestinj8 + + dialog = outputtestspk1, "Spark CH1 ", yAxis + commandButton = "Off", cmdtestspk1off,{testactive} + commandButton = "50% DC", cmdtestspk150dc,{!testenabled && testactive} + commandButton = "On", cmdtestspk1on,{!testenabled && testactive} + dialog = outputtestspk2, "Spark CH2", yAxis + commandButton = "Off", cmdtestspk2off,{testactive && nIgnChannels >= 2 } + commandButton = "50% DC", cmdtestspk250dc,{!testenabled && testactive && nIgnChannels >= 2 } + commandButton = "On", cmdtestspk2on,{ !testenabled && testactive && nIgnChannels >= 2 } + dialog = outputtestspk3, "Spark CH3", yAxis + commandButton = "Off", cmdtestspk3off,{testactive && nIgnChannels >= 3 } + commandButton = "50% DC", cmdtestspk350dc,{!testenabled && testactive && nIgnChannels >= 3 } + commandButton = "On", cmdtestspk3on,{ !testenabled && testactive && nIgnChannels >= 3 } + dialog = outputtestspk4, "Spark CH4", yAxis + commandButton = "Off", cmdtestspk4off,{testactive && nIgnChannels >= 4 } + commandButton = "50% DC", cmdtestspk450dc,{!testenabled && testactive && nIgnChannels >= 4} + commandButton = "On", cmdtestspk4on,{ !testenabled && testactive && nIgnChannels >= 4 } + dialog = outputtestspk5, "Spark CH5", yAxis + commandButton = "Off", cmdtestspk5off,{testactive && nIgnChannels >= 5 } + commandButton = "50% DC", cmdtestspk550dc,{!testenabled && testactive && nIgnChannels >= 5} + commandButton = "On", cmdtestspk5on,{ !testenabled && testactive && nIgnChannels >= 5 } + dialog = outputtestspk6, "Spark CH6", yAxis + commandButton = "Off", cmdtestspk6off,{testactive && nIgnChannels >= 6 } + commandButton = "50% DC", cmdtestspk650dc,{!testenabled && testactive && nIgnChannels >= 6} + commandButton = "On", cmdtestspk6on,{ !testenabled && testactive && nIgnChannels >= 6 } + dialog = outputtestspk7, "Spark CH7", yAxis + commandButton = "Off", cmdtestspk7off,{testactive && nIgnChannels >= 7 } + commandButton = "50% DC", cmdtestspk750dc,{!testenabled && testactive && nIgnChannels >= 7} + commandButton = "On", cmdtestspk7on,{ !testenabled && testactive && nIgnChannels >= 7 } + dialog = outputtestspk8, "Spark CH8", yAxis + commandButton = "Off", cmdtestspk8off,{testactive && nIgnChannels >= 8 } + commandButton = "50% DC", cmdtestspk850dc,{!testenabled && testactive && nIgnChannels >= 8} + commandButton = "On", cmdtestspk8on,{ !testenabled && testactive && nIgnChannels >= 8 } + + dialog = outputtest_spark, "Spark Driver Output Test", xAxis + panel = outputtestspk1 + panel = outputtestspk2 + panel = outputtestspk3 + panel = outputtestspk4 + panel = outputtestspk5 + panel = outputtestspk6 + panel = outputtestspk7 + panel = outputtestspk8 + + dialog = outputtest1,"Test Output Hardware" + topicHelp = "https://wiki.speeduino.com/en/Hardware_testing_page" + panel = enableoutputtestbuttons + panel = outputtest_injectors + panel = outputtest_spark + ;panel = outputtest_io2 + panel = outputtest_warningmessage + + dialog = stm32cmd, "STM32 Commands", yAxis + commandButton = "Reboot to system", cmdstm32reboot + commandButton = "Reboot to bootloader", cmdstm32bootloader + + dialog = Auxin_north + displayOnlyField = #"Secondary Serial ENABLED", blankfield, {enable_secondarySerial},{enable_secondarySerial} + displayOnlyField = !"Secondary Serial DISABLED", blankfield, {enable_secondarySerial == 0},{enable_secondarySerial == 0} + displayOnlyField = #"Internal CANBUS ENABLED", blankfield, {enable_intcan && intcan_available},{enable_intcan && intcan_available} + displayOnlyField = !"Internal CANBUS DISABLED", blankfield, {enable_intcan == 0 && intcan_available},{enable_intcan == 0 && intcan_available} + displayOnlyField = !"Internal CANBUS NOT AVAILABLE to MCU", blankfield, {enable_intcan == 1 && intcan_available == 0},{enable_intcan == 1 && intcan_available == 0} + displayOnlyField = !"Internal CANBUS NOT AVAILABLE to MCU", blankfield, {enable_intcan == 0 && intcan_available == 0},{enable_intcan == 0 && intcan_available == 0} + field = " If Secondary Serial or Internal CANBUS is DISABLED then any input channel assigned to that external source will NOT function" + + dialog = canAuxinput_alias, "", yAxis + field = "Input Alias" + field = "", AUXin00Alias , {(caninput_sel0a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin01Alias , {(caninput_sel1a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin02Alias , {(caninput_sel2a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin03Alias , {(caninput_sel3a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin04Alias , {(caninput_sel4a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin05Alias , {(caninput_sel5a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin06Alias , {(caninput_sel6a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin07Alias , {(caninput_sel7a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin08Alias , {(caninput_sel8a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin09Alias , {(caninput_sel9a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin10Alias , {(caninput_sel10a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin11Alias , {(caninput_sel11a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin12Alias , {(caninput_sel12a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin13Alias , {(caninput_sel13a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin14Alias , {(caninput_sel14a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin15Alias , {(caninput_sel15a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + + dialog = caninput_sel, "" + ;CAN inputs + field = " CAN Input Channel on/off" + field = "CAN Input 0", caninput_sel0a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 0", caninput_sel0b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 1", caninput_sel1a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 1", caninput_sel1b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 2", caninput_sel2a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 2", caninput_sel2b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 3", caninput_sel3a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 3", caninput_sel3b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 4", caninput_sel4a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 4", caninput_sel4b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 5", caninput_sel5a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 5", caninput_sel5b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 6", caninput_sel6a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 6", caninput_sel6b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 7", caninput_sel7a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 7", caninput_sel7b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 8", caninput_sel8a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 8", caninput_sel8b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 9", caninput_sel9a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 9", caninput_sel9b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 10", caninput_sel10a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 10", caninput_sel10b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 11", caninput_sel11a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 11", caninput_sel11b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 12", caninput_sel12a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 12", caninput_sel12b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 13", caninput_sel13a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 13", caninput_sel13b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 14", caninput_sel14a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 14", caninput_sel14b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 15", caninput_sel15a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 15", caninput_sel15b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + + dialog = caninput_parameter_group, "", yAxis + field = " Source CAN Address" + field = "", caninput_source_can_address0, { (caninput_sel0a == 1 || caninput_sel0b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address1, { (caninput_sel1a == 1 || caninput_sel1b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address2, { (caninput_sel2a == 1 || caninput_sel2b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address3, { (caninput_sel3a == 1 || caninput_sel3b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address4, { (caninput_sel4a == 1 || caninput_sel4b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address5, { (caninput_sel5a == 1 || caninput_sel5b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address6, { (caninput_sel6a == 1 || caninput_sel6b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address7, { (caninput_sel7a == 1 || caninput_sel7b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address8, { (caninput_sel8a == 1 || caninput_sel8b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address9, { (caninput_sel9a == 1 || caninput_sel9b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address10, { (caninput_sel10a == 1 || caninput_sel10b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address11, { (caninput_sel11a == 1 || caninput_sel11b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address12, { (caninput_sel12a == 1 || caninput_sel12b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address13, { (caninput_sel13a == 1 || caninput_sel13b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address14, { (caninput_sel14a == 1 || caninput_sel14b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address15, { (caninput_sel15a == 1 || caninput_sel15b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + + dialog = caninput_parameter_start_byte, "", yAxis + field = " source data start byte" + field = "", caninput_source_start_byte0, { (caninput_sel0a == 1 || caninput_sel0b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte1, { (caninput_sel1a == 1 || caninput_sel1b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte2, { (caninput_sel2a == 1 || caninput_sel2b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte3, { (caninput_sel3a == 1 || caninput_sel3b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte4, { (caninput_sel4a == 1 || caninput_sel4b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte5, { (caninput_sel5a == 1 || caninput_sel5b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte6, { (caninput_sel6a == 1 || caninput_sel6b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte7, { (caninput_sel7a == 1 || caninput_sel7b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte8, { (caninput_sel8a == 1 || caninput_sel8b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte9, { (caninput_sel9a == 1 || caninput_sel9b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte10, { (caninput_sel10a == 1 || caninput_sel10b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte11, { (caninput_sel11a == 1 || caninput_sel11b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte12, { (caninput_sel12a == 1 || caninput_sel12b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte13, { (caninput_sel13a == 1 || caninput_sel13b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte14, { (caninput_sel14a == 1 || caninput_sel14b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte15, { (caninput_sel15a == 1 || caninput_sel15b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + + dialog = caninput_parameter_num_byte, "", yAxis + field = "Input Parameter Number of Bytes" + field = "", caninput_source_num_bytes0, { (caninput_sel0a == 1 || caninput_sel0b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes1, { (caninput_sel1a == 1 || caninput_sel1b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes2, { (caninput_sel2a == 1 || caninput_sel2b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes3, { (caninput_sel3a == 1 || caninput_sel3b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes4, { (caninput_sel4a == 1 || caninput_sel4b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes5, { (caninput_sel5a == 1 || caninput_sel5b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes6, { (caninput_sel6a == 1 || caninput_sel6b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes7, { (caninput_sel7a == 1 || caninput_sel7b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes8, { (caninput_sel8a == 1 || caninput_sel8b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes9, { (caninput_sel9a == 1 || caninput_sel9b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes10, { (caninput_sel10a == 1 || caninput_sel10b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes11, { (caninput_sel11a == 1 || caninput_sel11b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes12, { (caninput_sel12a == 1 || caninput_sel12b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes13, { (caninput_sel13a == 1 || caninput_sel13b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes14, { (caninput_sel14a == 1 || caninput_sel14b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes15, { (caninput_sel15a == 1 || caninput_sel15b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + + dialog = caninput_serial_can, "", yAxis + field = "Serial/CAN" + field = "", caninput_sel0extsourcea, {(caninput_sel0a == 1 || caninput_sel0b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel0extsourceb, {(caninput_sel0a == 1 || caninput_sel0b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel0extsourcec, {(caninput_sel0a == 1 || caninput_sel0b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel1extsourcea, {(caninput_sel1a == 1 || caninput_sel1b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel1extsourceb, {(caninput_sel1a == 1 || caninput_sel1b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel1extsourcec, {(caninput_sel1a == 1 || caninput_sel1b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel2extsourcea, {(caninput_sel2a == 1 || caninput_sel2b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel2extsourceb, {(caninput_sel2a == 1 || caninput_sel2b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel2extsourcec, {(caninput_sel2a == 1 || caninput_sel2b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel3extsourcea, {(caninput_sel3a == 1 || caninput_sel3b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel3extsourceb, {(caninput_sel3a == 1 || caninput_sel3b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel3extsourcec, {(caninput_sel3a == 1 || caninput_sel3b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel4extsourcea, {(caninput_sel4a == 1 || caninput_sel4b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel4extsourceb, {(caninput_sel4a == 1 || caninput_sel4b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel4extsourcec, {(caninput_sel4a == 1 || caninput_sel4b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel5extsourcea, {(caninput_sel5a == 1 || caninput_sel5b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel5extsourceb, {(caninput_sel5a == 1 || caninput_sel5b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel5extsourcec, {(caninput_sel5a == 1 || caninput_sel5b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel6extsourcea, {(caninput_sel6a == 1 || caninput_sel6b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel6extsourceb, {(caninput_sel6a == 1 || caninput_sel6b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel6extsourcec, {(caninput_sel6a == 1 || caninput_sel6b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel7extsourcea, {(caninput_sel7a == 1 || caninput_sel7b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel7extsourceb, {(caninput_sel7a == 1 || caninput_sel7b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel7extsourcec, {(caninput_sel7a == 1 || caninput_sel7b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel8extsourcea, {(caninput_sel8a == 1 || caninput_sel8b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel8extsourceb, {(caninput_sel8a == 1 || caninput_sel8b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel8extsourcec, {(caninput_sel8a == 1 || caninput_sel8b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel9extsourcea, {(caninput_sel9a == 1 || caninput_sel9b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel9extsourceb, {(caninput_sel9a == 1 || caninput_sel9b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel9extsourcec, {(caninput_sel9a == 1 || caninput_sel9b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel10extsourcea, {(caninput_sel10a == 1 || caninput_sel10b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel10extsourceb, {(caninput_sel10a == 1 || caninput_sel10b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel10extsourcec, {(caninput_sel10a == 1 || caninput_sel10b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel11extsourcea, {(caninput_sel11a == 1 || caninput_sel11b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel11extsourceb, {(caninput_sel11a == 1 || caninput_sel11b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel11extsourcec, {(caninput_sel11a == 1 || caninput_sel11b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel12extsourcea, {(caninput_sel12a == 1 || caninput_sel12b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}} + field = "", caninput_sel12extsourceb, {(caninput_sel12a == 1 || caninput_sel12b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel12extsourcec, {(caninput_sel12a == 1 || caninput_sel12b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel13extsourcea, {(caninput_sel13a == 1 || caninput_sel13b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}} + field = "", caninput_sel13extsourceb, {(caninput_sel13a == 1 || caninput_sel13b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel13extsourcec, {(caninput_sel13a == 1 || caninput_sel13b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel14extsourcea, {(caninput_sel14a == 1 || caninput_sel14b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}} + field = "", caninput_sel14extsourceb, {(caninput_sel14a == 1 || caninput_sel14b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel14extsourcec, {(caninput_sel14a == 1 || caninput_sel14b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel15extsourcea, {(caninput_sel15a == 1 || caninput_sel15b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}} + field = "", caninput_sel15extsourceb, {(caninput_sel15a == 1 || caninput_sel15b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel15extsourcec, {(caninput_sel15a == 1 || caninput_sel15b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + + dialog = caninconfig_blank1,"" + field = "" + + dialog = Canin_config1, "", xAxis + panel = canAuxinput_alias + panel = caninconfig_blank1 + panel = caninput_sel + panel = caninconfig_blank1 + panel = caninput_serial_can + panel = caninconfig_blank1 + panel = caninput_parameter_group + panel = caninconfig_blank1 + panel = caninput_parameter_start_byte + panel = caninconfig_blank1 + panel = caninput_parameter_num_byte + + ;dialog = Canin_config2, "External Data Input" + ; field = "Enable External data input", enable_intcandata_in + + dialog = Canin_config, "",yAxis + topicHelp = "http://speeduino.com/wiki/index.php/Secondary_Serial_IO_interface#Read_external_analog_data" + panel = Auxin_north + panel = Canin_config1 + + dialog = canAuxoutput_alias, "", yAxis + field = "Input Alias" + field = "", AUXin00Alias , {canoutput_sel0} + field = "", AUXin01Alias , {canoutput_sel1} + field = "", AUXin02Alias , {canoutput_sel2} + field = "", AUXin03Alias , {canoutput_sel3} + field = "", AUXin04Alias , {canoutput_sel4} + field = "", AUXin05Alias , {canoutput_sel5} + field = "", AUXin06Alias , {canoutput_sel6} + field = "", AUXin07Alias , {canoutput_sel7} + ;field = "", AUXin08Alias , {canoutput_sel8} + ;field = "", AUXin09Alias , {canoutput_sel9} + ;field = "", AUXin10Alias , {canoutput_sel10} + ;field = "", AUXin11Alias , {canoutput_sel11} + ;field = "", AUXin12Alias , {canoutput_sel12} + ;field = "", AUXin13Alias , {canoutput_sel13} + ;field = "", AUXin14Alias , {canoutput_sel14} + ;field = "", AUXin15Alias , {canoutput_sel15} + + dialog = canoutput_sel, "", yAxis + ;CAN outputs + field = "CAN Output Channel on/off" + field = "CAN Output 0", canoutput_sel0, { enable_intcandata_out} + field = "CAN Output 1", canoutput_sel1, { enable_intcandata_out } + field = "CAN Output 2", canoutput_sel2, { enable_intcandata_out } + field = "CAN Output 3", canoutput_sel3, { enable_intcandata_out } + field = "CAN Output 4", canoutput_sel4, { enable_intcandata_out } + field = "CAN Output 5", canoutput_sel5, { enable_intcandata_out } + field = "CAN Output 6", canoutput_sel6, { enable_intcandata_out } + field = "CAN Output 7", canoutput_sel7, { enable_intcandata_out } + ; field = "CAN Output 8", canoutput_sel8, { enable_intcandata_out} + ; field = "CAN Output 9", canoutput_sel9, { enable_intcandata_out } + ; field = "CAN Output 10", canoutput_sel10, { enable_intcandata_out } + ; field = "CAN Output 11", canoutput_sel11, { enable_intcandata_out } + ; field = "CAN Output 12", canoutput_sel12, { enable_intcandata_out } + ; field = "CAN Output 13", canoutput_sel13, { enable_intcandata_out } + ; field = "CAN Output 14", canoutput_sel14, { enable_intcandata_out } + ; field = "CAN Output 15", canoutput_sel15, { enable_intcandata_out } + + dialog = canoutput_parameter_group, "", yAxis + field = "Output Parameter Group" + field = "", canoutput_param_group[0], { canoutput_sel0 && enable_intcandata_out } + field = "", canoutput_param_group[1], { canoutput_sel1 && enable_intcandata_out } + field = "", canoutput_param_group[2], { canoutput_sel3 && enable_intcandata_out } + field = "", canoutput_param_group[3], { canoutput_sel3 && enable_intcandata_out } + field = "", canoutput_param_group[4], { canoutput_sel4 && enable_intcandata_out } + field = "", canoutput_param_group[5], { canoutput_sel5 && enable_intcandata_out } + field = "", canoutput_param_group[6], { canoutput_sel6 && enable_intcandata_out } + field = "", canoutput_param_group[7], { canoutput_sel7 && enable_intcandata_out } + ; field = "", canoutput_param_group[8], { canoutput_sel9 && enable_intcandata_out } + ; field = "", canoutput_param_group[9], { canoutput_sel10 && enable_intcandata_out } + ; field = "", canoutput_param_group[10], { canoutput_sel1 && enable_intcandata_out } + ; field = "", canoutput_param_group[11], { canoutput_sel2 && enable_intcandata_out } + ; field = "", canoutput_param_group[12], { canoutput_sel3 && enable_intcandata_out } + ; field = "", canoutput_param_group[13], { canoutput_sel4 && enable_intcandata_out } + ; field = "", canoutput_param_group[14], { canoutput_sel5 && enable_intcandata_out } + ; field = "", canoutput_param_group[15], { canoutput_sel6 && enable_intcandata_out } + + dialog = canoutput_parameter_start_byte, "", yAxis + field = "Output Parameter Start Byte" + field = "", canoutput_param_start_byte0, { canoutput_sel0 && enable_intcandata_out } + field = "", canoutput_param_start_byte1, { canoutput_sel1 && enable_intcandata_out } + field = "", canoutput_param_start_byte2, { canoutput_sel2 && enable_intcandata_out } + field = "", canoutput_param_start_byte3, { canoutput_sel3 && enable_intcandata_out } + field = "", canoutput_param_start_byte4, { canoutput_sel4 && enable_intcandata_out } + field = "", canoutput_param_start_byte5, { canoutput_sel5 && enable_intcandata_out } + field = "", canoutput_param_start_byte6, { canoutput_sel6 && enable_intcandata_out } + field = "", canoutput_param_start_byte7, { canoutput_sel7 && enable_intcandata_out } + ; field = "", canoutput_param_start_byte8, { canoutput_sel8 && enable_intcandata_out } + ; field = "", canoutput_param_start_byte9, { canoutput_sel9 && enable_intcandata_out } + ; field = "", canoutput_param_start_byte10, { canoutput_sel10 && enable_intcandata_out } + ; field = "", canoutput_param_start_byte11, { canoutput_sel11 && enable_intcandata_out } + ; field = "", canoutput_param_start_byte12, { canoutput_sel12 && enable_intcandata_out } + ; field = "", canoutput_param_start_byte13, { canoutput_sel13 && enable_intcandata_out } + ; field = "", canoutput_param_start_byte14, { canoutput_sel14 && enable_intcandata_out } + ; field = "", canoutput_param_start_byte15, { canoutput_sel15 && enable_intcandata_out } + + dialog = canoutput_parameter_num_byte, "", yAxis + field = "Output Parameter Number of Bytes" + field = "", canoutput_param_num_bytes0, { canoutput_sel0 && enable_intcandata_out } + field = "", canoutput_param_num_bytes1, { canoutput_sel1 && enable_intcandata_out } + field = "", canoutput_param_num_bytes2, { canoutput_sel2 && enable_intcandata_out } + field = "", canoutput_param_num_bytes3, { canoutput_sel3 && enable_intcandata_out } + field = "", canoutput_param_num_bytes4, { canoutput_sel4 && enable_intcandata_out } + field = "", canoutput_param_num_bytes5, { canoutput_sel5 && enable_intcandata_out } + field = "", canoutput_param_num_bytes6, { canoutput_sel6 && enable_intcandata_out } + field = "", canoutput_param_num_bytes7, { canoutput_sel7 && enable_intcandata_out } + ; field = "", canoutput_param_num_bytes8, { canoutput_sel8 && enable_intcandata_out } + ; field = "", canoutput_param_num_bytes9, { canoutput_sel9 && enable_intcandata_out } + ; field = "", canoutput_param_num_bytes10, { canoutput_sel10 && enable_intcandata_out } + ; field = "", canoutput_param_num_bytes11, { canoutput_sel11 && enable_intcandata_out } + ; field = "", canoutput_param_num_bytes12, { canoutput_sel12 && enable_intcandata_out } + ; field = "", canoutput_param_num_bytes13, { canoutput_sel13 && enable_intcandata_out } +; field = "", canoutput_param_num_bytes14, { canoutput_sel14 && enable_intcandata_out } + ; field = "", canoutput_param_num_bytes15, { canoutput_sel15 && enable_intcandata_out } + + dialog = canoutconfig_blank1,"" + field = "" + + dialog = Canout_config1, "", xAxis + panel = canAuxoutput_alias + panel = canoutconfig_blank1 + panel = canoutput_sel + panel = canoutconfig_blank1 + panel = canoutput_parameter_group + panel = canoutconfig_blank1 + panel = canoutput_parameter_start_byte + panel = canoutconfig_blank1 + panel = canoutput_parameter_num_byte + + dialog = Canout_config2, "CAN Data Out" + field = "Enable CanBus data Output", enable_intcandata_out + + dialog = Canout_config, "", yAxis + topicHelp = "" + panel = Canout_config2 + panel = Canout_config1 + + dialog = can_serial3IO, "CanBus/Secondary Serial IO interface" + topicHelp = "http://speeduino.com/wiki/index.php/Secondary_Serial_IO_interface" + field = "Enable Second Serial", enable_secondarySerial + field = "Enable Internal Canbus", enable_intcan + ; field = "Speeduino TsCanId", speeduino_tsCanId + field = "True Canbus Address", true_address {enable_secondarySerial||enable_intcan} + field = "NOTE! Realtime Data Base Address MUST be at least 0x16 GREATER than the True Address as they are reserved for future expansion" + field = "Realtime Data Base Can Address", realtime_base_address {enable_secondarySerial||enable_intcan} + field = "Speeduino OBD address", obd_address + + dialog = serial3IO, "Secondary Serial IO interface" + topicHelp = "http://speeduino.com/wiki/index.php/Serial3_IO_interface" + field = "Enable Second Serial", enable_secondarySerial + field = "Enable Internal Canbus", enable_intcan + ; field = "Speeduino TsCanId", speeduino_tsCanId + field = "True Canbus Address", true_address {enable_secondarySerial||enable_intcan} + field = "NOTE! Realtime Data Base Address MUST be at least 0x16 GREATER than the True Address as they are reserved for future expansion" + field = "Realtime Data Base Can Address", realtime_base_address {enable_secondarySerial||enable_intcan} + field = "Speeduino OBD address", obd_address + + dialog = reset_control, "Reset Control" + ; Control type options for custom firmware + field = "Control Type", resetControl + field = "Control Pin", resetControlPin + + dialog = Auxinput_pin_selection, "", yAxis + field = " Source" + displayOnlyField = "Off 0", blankfield, {},{(caninput_sel0a == 0 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel0b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel0b == 0 && (!enable_secondarySerial && (enable_intcan && intcan_available == 1)))} + displayOnlyField = "External Source 0 Via Secondary Serial", blankfield, {},{(caninput_sel0b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel0b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel0extsourceb == 0)} + displayOnlyField = "External Source 0 Via Internal CAN", blankfield, {},{(caninput_sel0b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel0extsourceb == 1) ||(caninput_sel0b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel0extsourcec == 1)} + field = "Local Analog Source 0 Pin No:", Auxin0pina , {}, {(caninput_sel0a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 0 Pin No:", Auxin0pinb , {}, {(caninput_sel0a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 1", blankfield, {},{(caninput_sel1a == 0 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b == 0 && ((enable_secondarySerial && enable_intcan) || (enable_secondarySerial && !enable_intcan) || (!enable_secondarySerial && enable_intcan)))} + displayOnlyField = "External Source 1 Via Secondary Serial", blankfield, {},{(caninput_sel1b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel1b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel1extsourceb == 0)} + displayOnlyField = "External Source 1 Via Internal CAN", blankfield, {},{(caninput_sel1b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel1extsourceb == 1) ||(caninput_sel1b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel1extsourcec == 1)} + field = "Local Analog Source 1 Pin No:", Auxin1pina , {}, {(caninput_sel1a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 1 Pin No:", Auxin1pinb , {}, {(caninput_sel1a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 2", blankfield, {},{(caninput_sel2a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel2b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel2b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel2b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 2 Via Secondary Serial", blankfield, {},{(caninput_sel2b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel2b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel2extsourceb == 0)} + displayOnlyField = "External Source 2 Via Internal CAN", blankfield, {},{(caninput_sel2b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel2extsourceb == 1) ||(caninput_sel2b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel2extsourcec == 1)} + field = "Local Analog Source 2 Pin No:", Auxin2pina , {}, {(caninput_sel2a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 2 Pin No:", Auxin2pinb , {}, {(caninput_sel2a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 3", blankfield, {},{(caninput_sel3a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel3b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel3b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel3b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 3 Via Secondary Serial", blankfield, {},{(caninput_sel3b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel3b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel3extsourceb == 0)} + displayOnlyField = "External Source 3 Via Internal CAN", blankfield, {},{(caninput_sel3b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel3extsourceb == 1) ||(caninput_sel3b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel3extsourcec == 1)} + field = "Local Analog Source 3 Pin No:", Auxin3pina , {}, {(caninput_sel3a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 3 Pin No:", Auxin3pinb , {}, {(caninput_sel3a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 4", blankfield, {},{(caninput_sel4a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel4b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel4b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel4b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 4 Via Secondary Serial", blankfield, {},{(caninput_sel4b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel4b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel4extsourceb == 0)} + displayOnlyField = "External Source 4 Via Internal CAN", blankfield, {},{(caninput_sel4b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel4extsourceb == 1) ||(caninput_sel4b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel4extsourcec == 1)} + field = "Local Analog Source 4 Pin No:", Auxin4pina , {}, {(caninput_sel4a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 4 Pin No:", Auxin4pinb , {}, {(caninput_sel4a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 5", blankfield, {},{(caninput_sel5a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel5b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel5b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel5b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 5 Via Secondary Serial", blankfield, {},{(caninput_sel5b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel5b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel5extsourceb == 0)} + displayOnlyField = "External Source 5 Via Internal CAN", blankfield, {},{(caninput_sel5b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel5extsourceb == 1) ||(caninput_sel5b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel5extsourcec == 1)} + field = "Local Analog Source 5 Pin No:", Auxin5pina , {}, {(caninput_sel5a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 5 Pin No:", Auxin5pinb , {}, {(caninput_sel5a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 6", blankfield, {},{(caninput_sel6a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel6b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel6b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel6b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 6 Via Secondary Serial", blankfield, {},{(caninput_sel6b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel6b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel6extsourceb == 0)} + displayOnlyField = "External Source 6 Via Internal CAN", blankfield, {},{(caninput_sel6b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel6extsourceb == 1) ||(caninput_sel6b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel6extsourcec == 1)} + field = "Local Analog Source 6 Pin No:", Auxin6pina , {}, {(caninput_sel6a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 6 Pin No:", Auxin6pinb , {}, {(caninput_sel6a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 7", blankfield, {},{(caninput_sel7a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel7b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel7b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel7b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 7 Via Secondary Serial", blankfield, {},{(caninput_sel7b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel7b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel7extsourceb == 0)} + displayOnlyField = "External Source 7 Via Internal CAN", blankfield, {},{(caninput_sel7b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel7extsourceb == 1) ||(caninput_sel7b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel7extsourcec == 1)} + field = "Local Analog Source 7 Pin No:", Auxin7pina , {}, {(caninput_sel7a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 7 Pin No:", Auxin7pinb , {}, {(caninput_sel7a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 8", blankfield, {},{(caninput_sel8a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel8b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel8b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel8b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 8 Via Secondary Serial", blankfield, {},{(caninput_sel8b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel8b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel8extsourceb == 0)} + displayOnlyField = "External Source 8 Via Internal CAN", blankfield, {},{(caninput_sel8b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel8extsourceb == 1) ||(caninput_sel8b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel8extsourcec == 1)} + field = "Local Analog Source 8 Pin No:", Auxin8pina , {}, {(caninput_sel8a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 8 Pin No:", Auxin8pinb , {}, {(caninput_sel8a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 9", blankfield, {},{(caninput_sel9a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel9b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel9b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel9b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 9 Via Secondary Serial", blankfield, {},{(caninput_sel9b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel9b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel9extsourceb == 0)} + displayOnlyField = "External Source 9 Via Internal CAN", blankfield, {},{(caninput_sel9b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel9extsourceb == 1) ||(caninput_sel9b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel9extsourcec == 1)} + field = "Local Analog Source 9 Pin No:", Auxin9pina , {}, {(caninput_sel9a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 9 Pin No:", Auxin9pinb , {}, {(caninput_sel9a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 10", blankfield, {},{(caninput_sel10a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel10b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel10b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel10b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 10 Via Secondary Serial", blankfield, {},{(caninput_sel10b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel10b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel10extsourceb == 0)} + displayOnlyField = "External Source 10 Via Internal CAN", blankfield, {},{(caninput_sel10b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel10extsourceb == 1) ||(caninput_sel10b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel10extsourcec == 1)} + field = "Local Analog Source 10 Pin No:", Auxin10pina , {}, {(caninput_sel10a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 10 Pin No:", Auxin10pinb , {}, {(caninput_sel10a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 11", blankfield, {},{(caninput_sel11a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel11b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel11b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel11b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 11 Via Secondary Serial", blankfield, {},{(caninput_sel11b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel11b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel11extsourceb == 0)} + displayOnlyField = "External Source 11 Via Internal CAN", blankfield, {},{(caninput_sel11b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel11extsourceb == 1) ||(caninput_sel11b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel11extsourcec == 1)} + field = "Local Analog Source 11 Pin No:", Auxin11pina , {}, {(caninput_sel11a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 11 Pin No:", Auxin11pinb , {}, {(caninput_sel11a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 12", blankfield, {},{(caninput_sel12a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel12b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel12b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel12b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 12 Via Secondary Serial", blankfield, {},{(caninput_sel12b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel12b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel12extsourceb == 0)} + displayOnlyField = "External Source 12 Via Internal CAN", blankfield, {},{(caninput_sel12b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel12extsourceb == 1) ||(caninput_sel12b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel12extsourcec == 1)} + field = "Local Analog Source 12 Pin No:", Auxin12pina , {}, {(caninput_sel12a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 12 Pin No:", Auxin12pinb , {}, {(caninput_sel12a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 13", blankfield, {},{(caninput_sel13a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel13b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel13b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel13b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 13 Via Secondary Serial", blankfield, {},{(caninput_sel13b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel13b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel13extsourceb == 0)} + displayOnlyField = "External Source 13 Via Internal CAN", blankfield, {},{(caninput_sel13b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel13extsourceb == 1) ||(caninput_sel13b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel13extsourcec == 1)} + field = "Local Analog Source 13 Pin No:", Auxin13pina , {}, {(caninput_sel13a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 13 Pin No:", Auxin13pinb , {}, {(caninput_sel13a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 14", blankfield, {},{(caninput_sel14a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel14b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel14b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel14b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 14 Via Secondary Serial", blankfield, {},{(caninput_sel14b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel14b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel14extsourceb == 0)} + displayOnlyField = "External Source 14 Via Internal CAN", blankfield, {},{(caninput_sel14b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel14extsourceb == 1) ||(caninput_sel14b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel14extsourcec == 1)} + field = "Local Analog Source 14 Pin No:", Auxin14pina , {}, {(caninput_sel14a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 14 Pin No:", Auxin14pinb , {}, {(caninput_sel14a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 15", blankfield, {},{(caninput_sel15a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel15b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel15b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel15b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 15 Via Secondary Serial", blankfield, {},{(caninput_sel15b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel15b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel15extsourceb == 0)} + displayOnlyField = "External Source 15 Via Internal CAN", blankfield, {},{(caninput_sel15b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel15extsourceb == 1) ||(caninput_sel15b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel15extsourcec == 1)} + field = "Local Analog Source 15 Pin No:", Auxin15pina , {}, {(caninput_sel15a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 15 Pin No:", Auxin15pinb , {}, {(caninput_sel15a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + dialog = Auxinput_alias, "", yAxis + field = "Input Alias" + field = "", AUXin00Alias , {(caninput_sel0a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin01Alias , {(caninput_sel1a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin02Alias , {(caninput_sel2a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin03Alias , {(caninput_sel3a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin04Alias , {(caninput_sel4a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin05Alias , {(caninput_sel5a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin06Alias , {(caninput_sel6a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin07Alias , {(caninput_sel7a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin08Alias , {(caninput_sel8a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin09Alias , {(caninput_sel9a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin10Alias , {(caninput_sel10a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin11Alias , {(caninput_sel11a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin12Alias , {(caninput_sel12a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin13Alias , {(caninput_sel13a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin14Alias , {(caninput_sel14a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin15Alias , {(caninput_sel15a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + + dialog = Auxinput_channelenable, "", yAxis + field = " Aux Input Channel Enable" + field = "AUX Input 0", caninput_sel0a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 0", caninput_sel0b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 1", caninput_sel1a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 1", caninput_sel1b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 2", caninput_sel2a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 2", caninput_sel2b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 3", caninput_sel3a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 3", caninput_sel3b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 4", caninput_sel4a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 4", caninput_sel4b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 5", caninput_sel5a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 5", caninput_sel5b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 6", caninput_sel6a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 6", caninput_sel6b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 7", caninput_sel7a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 7", caninput_sel7b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 8", caninput_sel8a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 8", caninput_sel8b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 9", caninput_sel9a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 9", caninput_sel9b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 10", caninput_sel10a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 10", caninput_sel10b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 11", caninput_sel11a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 11", caninput_sel11b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 12", caninput_sel12a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 12", caninput_sel12b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 13", caninput_sel13a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 13", caninput_sel13b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 14", caninput_sel14a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 14", caninput_sel14b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 15", caninput_sel15a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 15", caninput_sel15b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + + dialog = Auxin_south, "Auxillary Input Configuration",xAxis + panel = Auxinput_alias + panel = Auxinput_channelenable + panel = Auxinput_pin_selection + + dialog = Auxin_config, "",yAxis + panel = Auxin_north + panel = Auxin_south + + dialog = gaugeLimits, "Gauge Limits" + field = "#RPM" + field = "Warning", rpmwarn + field = "Danger", rpmdang + field = "High", rpmhigh + field = "#MAP" + field = "Warning", mapwarn + field = "Danger", mapdang + field = "High", maphigh + field = !"Reload project to update gauges" + + dialog = io_summary, "I/O Summary" + displayOnlyField = "fuelPumpPin", fuelPumpPin, {fpPrime} + displayOnlyField = "fanPin", fanPin, {fanEnable} + displayOnlyField = "tachoPin", tachoPin, {tachoDuration} + displayOnlyField = "idleUpPin", idleUpPin, {idleUpEnabled} + displayOnlyField = "idleUpOutputPin", idleUpOutputPin, {idleUpEnabled && idleUpOutputEnabled} + displayOnlyField = "launchPin", launchPin, {launchEnable} + displayOnlyField = "vvt1Pin", vvt1Pin, {vvtEnabled} + displayOnlyField = "vssPin", vssPin, {vssMode > 1} + displayOnlyField = "boostPin", boostPin, {boostEnabled} + displayOnlyField = "baroPin", baroPin,{useExtBaro} + displayOnlyField = "EMAPPin", EMAPPin, {useEMAP} + displayOnlyField = "n2o_arming_pin", n2o_arming_pin, {n2o_enable} + displayOnlyField = "n2o_stage1_pin", n2o_stage1_pin, {n2o_enable} + displayOnlyField = "n2o_stage2_pin", n2o_stage2_pin, {n2o_enable} + ;displayOnlyField = "knock_pin", knock_pin, {knock_mode} + displayOnlyField = "fuel2InputPin", fuel2InputPin, {fuel2Mode} + displayOnlyField = "resetControlPin", resetControlPin, {resetControl} + displayOnlyField = "ignBypassPin", ignBypassPin, {ignBypassEnable} + displayOnlyField = "Programmable out 1", outputPin0, {outputPin[0]} + displayOnlyField = "Programmable out 2", outputPin1, {outputPin[1]} + displayOnlyField = "Programmable out 3", outputPin2, {outputPin[2]} + displayOnlyField = "Programmable out 4", outputPin3, {outputPin[3]} + displayOnlyField = "Programmable out 5", outputPin4, {outputPin[4]} + displayOnlyField = "Programmable out 6", outputPin5, {outputPin[5]} + displayOnlyField = "Programmable out 7", outputPin6, {outputPin[6]} + displayOnlyField = "Programmable out 8", outputPin7, {outputPin[7]} + + dialog = prgm_out_pin_selection_1, "", yAxis + field = "" + field = "", outputInverted0, {outputPin[0]} + field = "", outputInverted1, {outputPin[1]} + field = "", outputInverted2, {outputPin[2]} + field = "", outputInverted3, {outputPin[3]} + field = "", outputInverted4, {outputPin[4]} + field = "", outputInverted5, {outputPin[5]} + field = "", outputInverted6, {outputPin[6]} + field = "", outputInverted7, {outputPin[7]} + + dialog = prgm_out_pin_selection_2, "", yAxis + field = "" + field = "if(", firstDataIn0, {outputPin[0]} + field = "if(", firstDataIn1, {outputPin[1]} + field = "if(", firstDataIn2, {outputPin[2]} + field = "if(", firstDataIn3, {outputPin[3]} + field = "if(", firstDataIn4, {outputPin[4]} + field = "if(", firstDataIn5, {outputPin[5]} + field = "if(", firstDataIn6, {outputPin[6]} + field = "if(", firstDataIn7, {outputPin[7]} + + dialog = prgm_out_pin_selection_3, "", yAxis + field = "" + field = "", firstCompType0, {outputPin[0]} + field = "", firstCompType1, {outputPin[1]} + field = "", firstCompType2, {outputPin[2]} + field = "", firstCompType3, {outputPin[3]} + field = "", firstCompType4, {outputPin[4]} + field = "", firstCompType5, {outputPin[5]} + field = "", firstCompType6, {outputPin[6]} + field = "", firstCompType7, {outputPin[7]} + + dialog = prgm_out_pin_selection_4, "", yAxis + field = "" + field = "", firstTarget[0], {outputPin[0]} + field = "", firstTarget[1], {outputPin[1]} + field = "", firstTarget[2], {outputPin[2]} + field = "", firstTarget[3], {outputPin[3]} + field = "", firstTarget[4], {outputPin[4]} + field = "", firstTarget[5], {outputPin[5]} + field = "", firstTarget[6], {outputPin[6]} + field = "", firstTarget[7], {outputPin[7]} + + dialog = prgm_out_pin_selection_5, "", yAxis + field = "" + field = "if(", firstDataIn[0], {outputPin[0]} + field = "if(", firstDataIn[1], {outputPin[1]} + field = "if(", firstDataIn[2], {outputPin[2]} + field = "if(", firstDataIn[3], {outputPin[3]} + field = "if(", firstDataIn[4], {outputPin[4]} + field = "if(", firstDataIn[5], {outputPin[5]} + field = "if(", firstDataIn[6], {outputPin[6]} + field = "if(", firstDataIn[7], {outputPin[7]} + + dialog = prgm_out_pin_selection_6, "", yAxis + field = "" + field = "", firstCompType0, {outputPin[0]} + field = "", firstCompType1, {outputPin[1]} + field = "", firstCompType2, {outputPin[2]} + field = "", firstCompType3, {outputPin[3]} + field = "", firstCompType4, {outputPin[4]} + field = "", firstCompType5, {outputPin[5]} + field = "", firstCompType6, {outputPin[6]} + field = "", firstCompType7, {outputPin[7]} + + dialog = prgm_out_pin_selection_, "", yAxis + field = "" + field = "", firstTarget[0], {outputPin[0]} + field = "", firstTarget[1], {outputPin[1]} + field = "", firstTarget[2], {outputPin[2]} + field = "", firstTarget[3], {outputPin[3]} + field = "", firstTarget[4], {outputPin[4]} + field = "", firstTarget[5], {outputPin[5]} + field = "", firstTarget[6], {outputPin[6]} + field = "", firstTarget[7], {outputPin[7]} + + dialog = prgm_out_pin_selection_5, "", yAxis + field = "" + field = ")", bitwise0, {outputPin[0]} + field = ")", bitwise1, {outputPin[1]} + field = ")", bitwise2, {outputPin[2]} + field = ")", bitwise3, {outputPin[3]} + field = ")", bitwise4, {outputPin[4]} + field = ")", bitwise5, {outputPin[6]} + field = ")", bitwise6, {outputPin[6]} + field = ")", bitwise7, {outputPin[7]} + + dialog = prgm_out_pin_selection_6, "", yAxis + field = "" + field = "", secondDataIn0, {outputPin[0] && bitwise0} + field = "", secondDataIn1, {outputPin[1] && bitwise1} + field = "", secondDataIn2, {outputPin[2] && bitwise2} + field = "", secondDataIn3, {outputPin[3] && bitwise3} + field = "", secondDataIn4, {outputPin[4] && bitwise4} + field = "", secondDataIn5, {outputPin[5] && bitwise5} + field = "", secondDataIn6, {outputPin[6] && bitwise6} + field = "", secondDataIn7, {outputPin[7] && bitwise7} + + dialog = prgm_out_pin_selection_7, "", yAxis + field = "" + field = "", secondCompType0, {outputPin[0] && bitwise0} + field = "", secondCompType1, {outputPin[1] && bitwise1} + field = "", secondCompType2, {outputPin[2] && bitwise2} + field = "", secondCompType3, {outputPin[3] && bitwise3} + field = "", secondCompType4, {outputPin[4] && bitwise4} + field = "", secondCompType5, {outputPin[5] && bitwise5} + field = "", secondCompType6, {outputPin[6] && bitwise6} + field = "", secondCompType6, {outputPin[7] && bitwise7} + + dialog = prgm_out_pin_selection_8, "", yAxis + field = "" + field = "", secondTarget[0], {outputPin[0] && bitwise0} + field = "", secondTarget[1], {outputPin[1] && bitwise1} + field = "", secondTarget[2], {outputPin[2] && bitwise2} + field = "", secondTarget[3], {outputPin[3] && bitwise3} + field = "", secondTarget[4], {outputPin[4] && bitwise4} + field = "", secondTarget[5], {outputPin[5] && bitwise5} + field = "", secondTarget[6], {outputPin[6] && bitwise6} + field = "", secondTarget[7], {outputPin[7] && bitwise7} + + dialog = prgm_out_pin_selection_9, "", yAxis + field = "" + field = "during", outputDelay[0], {outputPin[0]} + field = "during", outputDelay[1], {outputPin[1]} + field = "during", outputDelay[2], {outputPin[2]} + field = "during", outputDelay[3], {outputPin[3]} + field = "during", outputDelay[4], {outputPin[4]} + field = "during", outputDelay[5], {outputPin[5]} + field = "during", outputDelay[6], {outputPin[6]} + field = "during", outputDelay[7], {outputPin[7]} + + dialog = prgm_out_alias, "", yAxis + field = " Input Alias" + field = "", prgm_out00Alias, {outputPin[0]} + field = "", prgm_out01Alias, {outputPin[1]} + field = "", prgm_out02Alias, {outputPin[2]} + field = "", prgm_out03Alias, {outputPin[3]} + field = "", prgm_out04Alias, {outputPin[4]} + field = "", prgm_out05Alias, {outputPin[5]} + field = "", prgm_out06Alias, {outputPin[6]} + field = "", prgm_out07Alias, {outputPin[7]} + + dialog = prgm_out_channelenable, "", yAxis + field = "Pin No:" + field = "", outputPin0 + field = "", outputPin1 + field = "", outputPin2 + field = "", outputPin3 + field = "", outputPin4 + field = "", outputPin5 + field = "", outputPin6 + field = "", outputPin7 + + dialog = prgm_out_unique, "",xAxis + panel = prgm_out_channelenable + panel = prgm_out_alias + panel = prgm_out_pin_selection_1 + panel = prgm_out_pin_selection_2 + panel = prgm_out_pin_selection_3 + panel = prgm_out_pin_selection_4 + panel = prgm_out_pin_selection_5 + panel = prgm_out_pin_selection_6 + panel = prgm_out_pin_selection_7 + panel = prgm_out_pin_selection_8 + panel = prgm_out_pin_selection_9 + + ;Rule 1 + dialog = prgm_out_rules_1_condition_1, "Condition 1", xAxis + field = "", firstDataIn0, {outputPin[0]} + field = "", firstCompType0, {outputPin[0]} + field = "", firstTarget[0], {outputPin[0]} + dialog = prgm_out_rules_1_condition_2, "Condition 2", xAxis + field = "", secondDataIn0, {outputPin[0] && bitwise0} + field = "", secondCompType0, {outputPin[0] && bitwise0} + field = "", secondTarget[0], {outputPin[0] && bitwise0} + ;Rule 2 + dialog = prgm_out_rules_2_condition_1, "Condition 1", xAxis + field = "", firstDataIn1, {outputPin[1]} + field = "", firstCompType1, {outputPin[1]} + field = "", firstTarget[1], {outputPin[1]} + dialog = prgm_out_rules_2_condition_2, "Condition 2", xAxis + field = "", secondDataIn1, {outputPin[1] && bitwise1} + field = "", secondCompType1, {outputPin[1] && bitwise1} + field = "", secondTarget[1], {outputPin[1] && bitwise1} + ;Rule 3 + dialog = prgm_out_rules_3_condition_1, "Condition 1", xAxis + field = "", firstDataIn2, {outputPin[2]} + field = "", firstCompType2, {outputPin[2]} + field = "", firstTarget[2], {outputPin[2]} + dialog = prgm_out_rules_3_condition_2, "Condition 2", xAxis + field = "", secondDataIn2, {outputPin[2] && bitwise2} + field = "", secondCompType2, {outputPin[2] && bitwise2} + field = "", secondTarget[2], {outputPin[2] && bitwise2} + ;Rule 4 + dialog = prgm_out_rules_4_condition_1, "Condition 1", xAxis + field = "", firstDataIn3, {outputPin[3]} + field = "", firstCompType3, {outputPin[3]} + field = "", firstTarget[3], {outputPin[3]} + dialog = prgm_out_rules_4_condition_2, "Condition 2", xAxis + field = "", secondDataIn3, {outputPin[3] && bitwise3} + field = "", secondCompType3, {outputPin[3] && bitwise3} + field = "", secondTarget[3], {outputPin[3] && bitwise3} + ;Rule 5 + dialog = prgm_out_rules_5_condition_1, "Condition 1", xAxis + field = "", firstDataIn4, {outputPin[4]} + field = "", firstCompType4, {outputPin[4]} + field = "", firstTarget[4], {outputPin[4]} + dialog = prgm_out_rules_5_condition_2, "Condition 2", xAxis + field = "", secondDataIn4, {outputPin[4] && bitwise4} + field = "", secondCompType4, {outputPin[4] && bitwise4} + field = "", secondTarget[4], {outputPin[4] && bitwise4} + ;Rule 6 + dialog = prgm_out_rules_6_condition_1, "Condition 1", xAxis + field = "", firstDataIn5, {outputPin[5]} + field = "", firstCompType5, {outputPin[5]} + field = "", firstTarget[5], {outputPin[5]} + dialog = prgm_out_rules_6_condition_2, "Condition 2", xAxis + field = "", secondDataIn5, {outputPin[5] && bitwise5} + field = "", secondCompType5, {outputPin[5] && bitwise5} + field = "", secondTarget[5], {outputPin[5] && bitwise5} + ;Rule 7 + dialog = prgm_out_rules_7_condition_1, "Condition 1", xAxis + field = "", firstDataIn6, {outputPin[6]} + field = "", firstCompType6, {outputPin[6]} + field = "", firstTarget[6], {outputPin[6]} + dialog = prgm_out_rules_7_condition_2, "Condition 2", xAxis + field = "", secondDataIn6, {outputPin[6] && bitwise6} + field = "", secondCompType6, {outputPin[6] && bitwise6} + field = "", secondTarget[6], {outputPin[6] && bitwise6} + ;Rule 8 + dialog = prgm_out_rules_8_condition_1, "Condition 1", xAxis + field = "", firstDataIn7, {outputPin[7]} + field = "", firstCompType7, {outputPin[7]} + field = "", firstTarget[7], {outputPin[7]} + dialog = prgm_out_rules_8_condition_2, "Condition 2", xAxis + field = "", secondDataIn7, {outputPin[7] && bitwise7} + field = "", secondCompType7, {outputPin[7] && bitwise7} + field = "", secondTarget[7], {outputPin[7] && bitwise7} + + + dialog = prgm_out_rules_1, "Rule 1", yAxis + field = "Output Pin Num", outputPin0 + field = "Rule Alias", prgm_out00Alias, {outputPin[0]} + field = "Output Polarity", outputInverted0, {outputPin[0]} + field = "Activation Delay", outputDelay[0], {outputPin[0]} + field = "2nd Condition", bitwise0, {outputPin[0]} + panel = prgm_out_rules_1_condition_1 + panel = prgm_out_rules_1_condition_2 + + dialog = prgm_out_rules_2, "Rule 2", yAxis + field = "Output Pin Num", outputPin1 + field = "Rule Alias", prgm_out01Alias, {outputPin[1]} + field = "Output Polarity", outputInverted1, {outputPin[1]} + field = "Activation Delay", outputDelay[1], {outputPin[1]} + field = "2nd Condition", bitwise1, {outputPin[1]} + panel = prgm_out_rules_2_condition_1 + panel = prgm_out_rules_2_condition_2 + + dialog = prgm_out_rules_3, "Rule 3", yAxis + field = "Output Pin Num", outputPin2 + field = "Rule Alias", prgm_out02Alias, {outputPin[2]} + field = "Output Polarity", outputInverted2, {outputPin[2]} + field = "Activation Delay", outputDelay[2], {outputPin[2]} + field = "2nd Condition", bitwise2, {outputPin[2]} + panel = prgm_out_rules_3_condition_1 + panel = prgm_out_rules_3_condition_2 + + dialog = prgm_out_rules_4, "Rule 4", yAxis + field = "Output Pin Num", outputPin3 + field = "Rule Alias", prgm_out03Alias, {outputPin[3]} + field = "Output Polarity", outputInverted3, {outputPin[3]} + field = "Activation Delay", outputDelay[3], {outputPin[3]} + field = "2nd Condition", bitwise3, {outputPin[3]} + panel = prgm_out_rules_4_condition_1 + panel = prgm_out_rules_4_condition_2 + + dialog = prgm_out_rules_5, "Rule 5", yAxis + field = "Output Pin Num", outputPin4 + field = "Rule Alias", prgm_out04Alias, {outputPin[4]} + field = "Output Polarity", outputInverted4, {outputPin[4]} + field = "Activation Delay", outputDelay[4], {outputPin[4]} + field = "2nd Condition", bitwise4, {outputPin[4]} + panel = prgm_out_rules_5_condition_1 + panel = prgm_out_rules_5_condition_2 + + dialog = prgm_out_rules_6, "Rule 6", yAxis + field = "Output Pin Num", outputPin5 + field = "Rule Alias", prgm_out05Alias, {outputPin[5]} + field = "Output Polarity", outputInverted5, {outputPin[5]} + field = "Activation Delay", outputDelay[5], {outputPin[5]} + field = "2nd Condition", bitwise5, {outputPin[5]} + panel = prgm_out_rules_6_condition_1 + panel = prgm_out_rules_6_condition_2 + + dialog = prgm_out_rules_7, "Rule 7", yAxis + field = "Output Pin Num", outputPin6 + field = "Rule Alias", prgm_out06Alias, {outputPin[6]} + field = "Output Polarity", outputInverted6, {outputPin[6]} + field = "Activation Delay", outputDelay[6], {outputPin[6]} + field = "2nd Condition", bitwise6, {outputPin[6]} + panel = prgm_out_rules_7_condition_1 + panel = prgm_out_rules_7_condition_2 + + dialog = prgm_out_rules_8, "Rule 8", yAxis + field = "Output Pin Num", outputPin7 + field = "Rule Alias", prgm_out07Alias, {outputPin[7]} + field = "Output Polarity", outputInverted7, {outputPin[7]} + field = "Activation Delay", outputDelay[7], {outputPin[7]} + field = "2nd Condition", bitwise7, {outputPin[7]} + panel = prgm_out_rules_8_condition_1 + panel = prgm_out_rules_8_condition_2 + + dialog = prgm_out_rules_master, "", card + panel = prgm_out_rules_1, Center, { prgm_out_selection == 0 } + panel = prgm_out_rules_2, Center, { prgm_out_selection == 1 } + panel = prgm_out_rules_3, Center, { prgm_out_selection == 2 } + panel = prgm_out_rules_4, Center, { prgm_out_selection == 3 } + panel = prgm_out_rules_5, Center, { prgm_out_selection == 4 } + panel = prgm_out_rules_6, Center, { prgm_out_selection == 5 } + panel = prgm_out_rules_7, Center, { prgm_out_selection == 6 } + panel = prgm_out_rules_8, Center, { prgm_out_selection == 7 } + + dialog = prgm_out_config, "",yAxis + ;panel = prgm_out_unique + field = "Select Rule Number", prgm_out_selection + panel = prgm_out_rules_master + +;------------------------------------------------------------------------------- +; General help text + + help = helpGeneral, "Speeduino Online Manual" + webHelp = "https://wiki.speeduino.com/" + text = "For current WIKI documentation, click the Web Help button," + text = "or visit http://www.speeduino.com/." + text = "
" + text = "
why not visit our forum http://speeduino.com/forum/" +;------------------------------------------------------------------------------ +[ControllerCommands] +; commandName = command1, command2, commandn... +; command in standard ini format, a command name can be assigned to 1 to n commands that will be executed in order. +; This does not include any resultant protocol envelope data, only the response data itself. + +; WARNING!! These commands bypass TunerStudio's normal memory synchronization. If these commands +; alter mapped settings (Constant) memory in the controller, TunerStudio will have an out of sync condition +; and may create error messages. +; It is expected that these commands would not typically alter any ram mapped to a Constant. + +cmdStopTestMode = "E\x01\x00" +cmdEnableTestMode = "E\x01\x01" + +cmdtestinj1on = "E\x02\x01" +cmdtestinj1off = "E\x02\x02" +cmdtestinj150dc = "E\x02\x03" +cmdtestinj2on = "E\x02\x04" +cmdtestinj2off = "E\x02\x05" +cmdtestinj250dc = "E\x02\x06" +cmdtestinj3on = "E\x02\x07" +cmdtestinj3off = "E\x02\x08" +cmdtestinj350dc = "E\x02\x09" +cmdtestinj4on = "E\x02\x0A" +cmdtestinj4off = "E\x02\x0B" +cmdtestinj450dc = "E\x02\x0C" +cmdtestinj5on = "E\x02\x0D" +cmdtestinj5off = "E\x02\x0E" +cmdtestinj550dc = "E\x02\x0F" +cmdtestinj6on = "E\x02\x10" +cmdtestinj6off = "E\x02\x11" +cmdtestinj650dc = "E\x02\x12" +cmdtestinj7on = "E\x02\x13" +cmdtestinj7off = "E\x02\x14" +cmdtestinj750dc = "E\x02\x15" +cmdtestinj8on = "E\x02\x16" +cmdtestinj8off = "E\x02\x17" +cmdtestinj850dc = "E\x02\x18" + +cmdtestspk1on = "E\x03\x01" +cmdtestspk1off = "E\x03\x02" +cmdtestspk150dc = "E\x03\x03" +cmdtestspk2on = "E\x03\x04" +cmdtestspk2off = "E\x03\x05" +cmdtestspk250dc = "E\x03\x06" +cmdtestspk3on = "E\x03\x07" +cmdtestspk3off = "E\x03\x08" +cmdtestspk350dc = "E\x03\x09" +cmdtestspk4on = "E\x03\x0A" +cmdtestspk4off = "E\x03\x0B" +cmdtestspk450dc = "E\x03\x0C" +cmdtestspk5on = "E\x03\x0D" +cmdtestspk5off = "E\x03\x0E" +cmdtestspk550dc = "E\x03\x0F" +cmdtestspk6on = "E\x03\x10" +cmdtestspk6off = "E\x03\x11" +cmdtestspk650dc = "E\x03\x12" +cmdtestspk7on = "E\x03\x13" +cmdtestspk7off = "E\x03\x14" +cmdtestspk750dc = "E\x03\x15" +cmdtestspk8on = "E\x03\x16" +cmdtestspk8off = "E\x03\x17" +cmdtestspk850dc = "E\x03\x18" + +cmdstm32reboot = "E\x32\x00" +cmdstm32bootloader ="E\x32\x01" + +cmdVSS60kmh = "E\x99\x00" +cmdVSSratio1 = "E\x99\x01" +cmdVSSratio2 = "E\x99\x02" +cmdVSSratio3 = "E\x99\x03" +cmdVSSratio4 = "E\x99\x04" +cmdVSSratio5 = "E\x99\x05" +cmdVSSratio6 = "E\x99\x06" + +; ------------------------------------------------------------- +; Help down here +[SettingContextHelp] + + +[CurveEditor] + +;tps-based accel enrichment + curve = time_accel_tpsdot_curve, "TPS based AE" + columnLabel = "TPSdot", "Added" + xAxis = 0, 1200, 6 + yAxis = 0, 250, 4 + xBins = taeBins, TPSdot + yBins = taeRates + +;map-based accel enrichment + curve = time_accel_mapdot_curve, "MAP based AE" + columnLabel = "MAPdot", "Added" + xAxis = 0, 1200, 6 + yAxis = 0, 250, 4 + xBins = maeBins, MAPdot + yBins = maeRates + +; Correction curve for dwell vs battery voltage + curve = dwell_correction_curve, "Dwell voltage correction" + columnLabel = "Voltage", "Dwell" + xAxis = 6, 22, 6 + yAxis = 0, 255, 6 + xBins = brvBins, batteryVoltage + yBins = dwellRates + +; Correction curve for injectors vs battery voltage + curve = injector_voltage_curve, "Injector voltage correction" + columnLabel = "Voltage", "Injector" + xAxis = 6, 22, 6 + yAxis = 0, 255, 6 + xBins = brvBins, batteryVoltage + yBins = injBatRates + +; Curve for injector timign vs RPM + curve = injector_timing_curve, "Injector timing" + columnLabel = "RPM", "Injector" + xAxis = 0, 7000, 6 + yAxis = 0, 720, 5 + xBins = injAngRPM, rpm + yBins = injAng + +; Correction curve for Air Density vs temperature + curve = airdensity_curve, "IAT density correction" + columnLabel = "Air Temperature", "Fuel Amount" + xAxis = -40, 160, 6 + yAxis = 0, 255, 6 + xBins = airDenBins, iat + yBins = airDenRates + +; Correction curve for Barometric pressure fuel adjustment + curve = baroFuel_curve, "Baro fuel correction" + columnLabel = "Baro Pressure", "Fuel Amount" + xAxis = 75, 112, 6 + yAxis = 0, 255, 6 + xBins = baroFuelBins, baro + yBins = baroFuelValues + +; Correction curve for fuel temperature fuel adjustment + curve = fuelTemp_curve, "Fuel temp correction" + columnLabel = "Fuel Temperature", "Fuel Amount" + xAxis = -40, 125, 6 + yAxis = 0, 255, 6 + xBins = fuelTempBins, fuelTemp + yBins = fuelTempValues + +; IAT based ignition timing retard + curve = iat_retard_curve, "IAT timing retard" + columnLabel = "Inlet Air Temp", "Retard" + xAxis = -40, 200, 5 + yAxis = 0, 30, 5 + xBins = iatRetBins, iat + yBins = iatRetRates + +; CLT based ignition timing retard + curve = clt_advance_curve, "Cold Advance" + columnLabel = "Coolant Temp", "Advance" + xAxis = -40, 200, 5 + yAxis = -12.7, 12.7, 5 + xBins = cltAdvBins, coolant + yBins = cltAdvValues + +; Idle RPM target based ignition timing + curve = idle_advance_curve, "Idle Advance" + columnLabel = "RPM Delta", "Advance" + xAxis = -500, 500, 5 + yAxis = -15, 50, 5 + xBins = idleAdvBins, CLIdleDelta + yBins = idleAdvValues + size = 450, 200 + +; Curves for idle control + ; Standard duty table for PWM valves + curve = iacPwm_curve, "IAC PWM Duty" + columnLabel = "Coolant Temperature", "Valve" + #if CELSIUS + xAxis = -40, 215, 6 + #else + xAxis = -40, 315, 6 + #endif + yAxis = 0, 100, 4 + xBins = iacBins, coolant + yBins = iacOLPWMVal + + ; Cranking duty table for PWM valves + curve = iacPwmCrank_curve, "IAC PWM Cranking Duty" + columnLabel = "Coolant Temperature", "Valve" + xAxis = -40, 215, 6 + yAxis = 0, 100, 4 + xBins = iacCrankBins, coolant + yBins = iacCrankDuty + + curve = iacStep_curve, "IAC Stepper Motor" + columnLabel = "Coolant Temperature", "Motor" + #if CELSIUS + xAxis = -40, 215, 6 + #else + xAxis = -40, 315, 6 + #endif + yAxis = 0, 850, 4 + xBins = iacBins, coolant + yBins = iacOLStepVal + + curve = iacStepCrank_curve, "IAC Stepper Motor Cranking" + columnLabel = "Coolant Temperature", "Motor" + xAxis = -40, 120, 6 + yAxis = 0, 850, 4 + xBins = iacCrankBins, coolant + yBins = iacCrankSteps + + curve = iacClosedLoop_curve, "Idle RPM Targets" + columnLabel = "Coolant Temperature", "Motor" + xAxis = -40, 120, 6 + yAxis = 0, 2000, 4 + xBins = iacBins, coolant + yBins = iacCLValues + size = 450, 200 + + curve = rotaryTrailing_curve, "Rotary Trailing Split" + columnLabel = "Engine load", "Split" + yAxis = 0, 40, 4 + xBins = rotarySplitBins, fuelLoad + xAxis = 0, { fuelLoadMax }, 5 + yBins = rotarySplitValues + +; Warmup enrichment curve + curve = warmup_curve, "Warmup Enrichment (WUE) Curve" + columnLabel = "Coolant", "WUE %" + xAxis = -40, 210, 9 + yAxis = 0, 240, 6 + xBins = wueBins, coolant + yBins = wueRates + gauge = cltGauge + +; Cranking enrichment curve + curve = cranking_enrich_curve, "Cranking Enrichment Curve" + columnLabel = "Coolant", "Fuel Modifier" + xAxis = -40, 110, 9 + yAxis = 0, 400, 6 + xBins = crankingEnrichBins, coolant + yBins = crankingEnrichValues + ;gauge = cltGau25 + +; Priming Pulsewidth curve + curve = priming_pw_curve, "Priming Pulsewidth" + columnLabel = "Coolant", "PW" + xAxis = -40, 110, 4 + yAxis = 0, 10, 4 + xBins = primeBins, coolant + yBins = primePulse + gauge = cltGauge + +; Afterstart Enrichment curve + curve = afterstart_enrichment_curve, "ASE - Enrichment %" + columnLabel = "Coolant", "Enrichment" + xAxis = -40, 110, 4 + yAxis = 0, 200, 4 + xBins = aseBins, coolant + yBins = asePct + gauge = cltGauge + size = 50, 250 + +; Afterstart Enrichment time + curve = afterstart_enrichment_time, "ASE - Duration" + columnLabel = "Coolant", "Time" + xAxis = -40, 110, 4 + yAxis = 0, 20, 4 + xBins = aseBins, coolant + yBins = aseCount + gauge = cltGauge + size = 50, 250 + +; Flex fuel correction curves + curve = flex_fuel_curve, "Flex Fuel Adjustments" + columnLabel = "Ethanol", "Fuel" + xAxis = 0, 100, 10 + yAxis = 50, 250, 5 + xBins = flexFuelBins, flex + yBins = flexFuelAdj + size = 400, 200 + + curve = flex_adv_curve, "Flex Timing Advance" + columnLabel = "Ethanol", "Advance" + xAxis = 0, 100, 10 + yAxis = 0, 50, 5 + xBins = flexAdvBins, flex + yBins = flexAdvAdj + size = 400, 200 + + curve = flex_boost_curve, "Flex Boost Adjustments" + columnLabel = "Ethanol", "Boost" + xAxis = 0, 100, 10 + yAxis = -100, 200, 5 + xBins = flexBoostBins, flex + yBins = flexBoostAdj + size = 400, 200 + +;Knock sensor windows + curve = knock_window_angle_curve, "Knock Window" + columnLabel = "RPM", "Window Start" + xAxis = 0, 8000, 9 + yAxis = -100, 100, 11 + xBins = knock_window_rpms, rpm + yBins = knock_window_angle + size = 400, 200 + + curve = knock_window_duration_curve, "Knock Window Duration" + columnLabel = "RPM", "Window Duration" + xAxis = 0, 8000, 9 + yAxis = 0, 100, 10 + xBins = knock_window_rpms, rpm + yBins = knock_window_dur + size = 400, 200 + +; Oil Pressure protection curve + curve = oil_pressure_prot_curve, "Oil Pressure Protection" + columnLabel = "RPM", "Minimum PSI" + xAxis = 0, 8000, 9 + yAxis = 0, 150, 3 + xBins = oilPressureProtRPM, rpm + yBins = oilPressureProtMins + size = 400, 200 + +; Warmup enrichment VEAL AFR adjustment curves + curve = warmup_afr_curve, "Target Adjustment" + columnLabel = "Coolant", "Offset" + xAxis = -40, 210, 9 +#if LAMBDA + yAxis = -0.3, 0.1, 5 +#else + yAxis = -4, 1, 5 +#endif + xBins = wueBins, coolant + yBins = wueAFR + + curve = warmup_analyzer_curve, "Warmup Enrichment" + columnLabel = "Coolant", "Current WUE", "Coolant", "Recommended WUE" + xAxis = -40, 210, 9 + yAxis = 100, 255, 6 + xBins = wueBins, coolant + yBins = wueRates + yBins = wueRecommended + lineLabel = "Current WUE" + lineLabel = "Recommended WUE" + + + curve = wmi_adv_curve, "WMI Timing Advance" + columnLabel = "kPa", "Advance" + xAxis = 0, 511, 20 + yAxis = 0, 50, 5 + xBins = wmiAdvBins, map + yBins = wmiAdvAdj + size = 400, 200 + + +[TableEditor] + ; table_id, map3d_id, "title", page + table = veTable1Tbl, veTable1Map, "VE Table", 2 + topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + ; constant, variable + xBins = rpmBins, rpm + yBins = fuelLoadBins, fuelLoad + xyLabels = "RPM", "Fuel Load: " + zBins = veTable + + gridHeight = 2.0 + gridOrient = 250, 0, 340 + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTable2Tbl, fuel2Map, "Fuel Table 2", 11 + topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + xBins = fuelRPM2Bins, rpm + yBins = fuelLoad2Bins, fuelLoad2 + xyLabels = "RPM", "Fuel Load: " + zBins = veTable2 + + gridHeight = 2.0 + gridOrient = 250, 0, 340 + upDownLabel = "(RICHER)", "(LEANER)" + + table = sparkTbl, sparkMap, "Ignition Advance Table", 3 + xBins = rpmBins2, rpm + ;yBins = ignLoadBins, ignLoad + yBins = mapBins1, ignLoad + xyLabels = "RPM", "Ignition Load: " + zBins = advTable1 + gridHeight = 3.0 + upDownLabel = "ADVANCING", "RETARDING" + + table = spark2Tbl, spark2Map, "Second Ignition Advance Table", 14 + xBins = rpmBins3, rpm + ;yBins = ignLoadBins, ignLoad + yBins = mapBins2, ignLoad + xyLabels = "RPM", "Ignition Load: " + zBins = advTable2 + gridHeight = 3.0 + upDownLabel = "ADVANCING", "RETARDING" + + ;table = afrTbl, afrTableMap, "AFR Table", 5 + table = afrTable1Tbl, afrTable1Map, "AFR Table", 5 + xBins = rpmBinsAFR, rpm + yBins = loadBinsAFR, fuelLoad + zBins = afrTable + gridHeight = 1.0 + upDownLabel = "RICHER", "LEANER" + gridOrient = 250, 0, 340 + + ;#if BOOSTPSI + ;table = boostTbl, boostMap, "Boost targets (PSI)", 8 + ;#else + ;table = boostTbl, boostMap, "Boost targets (Absolute kPa)", 8 + ;#endif + table = boostTbl, boostMap, "Boost Duty / Target", 8 + xBins = rpmBinsBoost, rpm + yBins = tpsBinsBoost, throttle + zBins = boostTable + gridHeight = 3.0 + upDownLabel = "HIGHER", "LOWER" + + table = vvtTbl, vvtMap, "VVT control Table", 8 + xBins = rpmBinsVVT, rpm + ;yBins = tpsBinsVVT, throttle + yBins = loadBinsVVT, vvtLoad + zBins = vvtTable + xyLabels = "RPM", "VVT Load: " + gridHeight = 3.0 + upDownLabel = "HIGHER", "LOWER" + + table = wmiTbl, wmiMapMap, "WMI control Table", 8 + xBins = rpmBinsWMI, rpm + yBins = mapBinsWMI, map + zBins = wmiTable + xyLabels = "RPM", "WMI Load: " + gridHeight = 3.0 + upDownLabel = "HIGHER", "LOWER" + + table = stagingTbl, stagingMap, "Fuel Staging Table", 10 + xBins = rpmBinsStaging, rpm + yBins = loadBinsStaging, fuelLoad + zBins = stagingTable + gridHeight = 3.0 + upDownLabel = "HIGHER", "LOWER" + +;--------- Sequential fuel trim maps ----------- + table = fuelTrimTable1Tbl, fuelTrimTable1Map, "Fuel trim Table 1", 9 + topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + xBins = fuelTrim1rpmBins, rpm + yBins = fuelTrim1loadBins, fuelLoad + zBins = fuelTrim1Table + + gridHeight = 2.0 + gridOrient = 250, 0, 340 + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTable2Tbl, fuelTrimTable2Map, "Fuel trim Table 2", 9 + topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + xBins = fuelTrim2rpmBins, rpm + yBins = fuelTrim2loadBins, fuelLoad + zBins = fuelTrim2Table + + gridHeight = 2.0 + gridOrient = 250, 0, 340 + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTable3Tbl, fuelTrimTable3Map, "Fuel trim Table 3", 9 + topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + xBins = fuelTrim3rpmBins, rpm + yBins = fuelTrim3loadBins, fuelLoad + zBins = fuelTrim3Table + + gridHeight = 2.0 + gridOrient = 250, 0, 340 + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTable4Tbl, fuelTrimTable4Map, "Fuel trim Table 4", 9 + topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + xBins = fuelTrim4rpmBins, rpm + yBins = fuelTrim4loadBins, fuelLoad + zBins = fuelTrim4Table + + gridHeight = 2.0 + gridOrient = 250, 0, 340 + upDownLabel = "(RICHER)", "(LEANER)" + + +;------------------------------------------------------------------------------- + +[GaugeConfigurations] + + ;------------------------------------------------------------------------------- + ; Define a gauge's characteristics here, then go to a specific layout + ; block (Tuning or FrontPage) and use the name you've defined here to + ; display that gauge in a particular position. + ; + ; Name = Case-sensitive, user-defined name for this gauge configuration. + ; Var = Case-sensitive name of variable to be displayed, see the + ; OutputChannels block in this file for possible values. + ; Title = Title displayed at the top of the gauge. + ; Units = Units displayed below value on gauge. + ; Lo = Lower scale limit of gauge. + ; Hi = Upper scale limit of gauge. + ; LoD = Lower limit at which danger color is used for gauge background. + ; LoW = Lower limit at which warning color is used. + ; HiW = Upper limit at which warning color is used. + ; HiD = Upper limit at which danger color is used. + ; vd = Decimal places in displayed value + ; ld = Label decimal places for display of Lo and Hi, above. + + gaugeCategory = "Main" + ;Name Var Title Units Lo Hi LoD LoW HiW HiD vd ld + accelEnrichGauge = accelEnrich, "Accel Enrich", "%", 50, 150, -1, -1, 999, 999, 0, 0 + injOpenGauge = inj_open, "Injector Open Time", "mSec", 0.0, 3.0, 0.0, 0.0, 3.0, 3.0, 3, 3 + dutyCycleGauge = dutyCycle, "Duty Cycle", "%", 0, 100, -1, -1, 70, 80, 1, 1 + stgDutyCycleGauge = stgDutyCycle, "Staging Duty Cycle", "%", 0, 100, -1, -1, 70, 80, 1, 1 + egoCorrGauge = egoCorrection, "EGO Correction", "%", 50, 150, 90, 99, 101, 110, 0, 0 + + gammaEnrichGauge = gammaEnrich, "Gamma Enrichment", "%", 50, 250, -1, -1, 151, 151, 0, 0 + pulseWidthGauge = pulseWidth, "Pulse Width", "mSec", 0, 35.0, 1.0, 1.2, 20, 25, 3, 3 + tachometer = rpm, "Engine Speed", "RPM", 0, {rpmhigh}, 300, 600, {rpmwarn}, {rpmdang}, 0, 0 + veGauge = veCurr, "Current VE", "%", 0, 120, -1, -1, 999, 999, 0, 0 + ve1Gauge = VE1, "VE1 (Fuel Table 1)", "%", 0, 120, -1, -1, 999, 999, 0, 0 + ve2Gauge = VE2, "VE2 (Fuel Table 2)", "%", 0, 120, -1, -1, 999, 999, 0, 0 + warmupEnrichGauge = warmupEnrich, "Warmup Enrichment", "%", 100, 200, 130, 140, 140, 150, 0, 0 + aseEnrichGauge = ase_enrich, "Afterstart Enrichment","%", 0, 200, 130, 140, 140, 150, 0, 0 + batCorrectGauge = bat_correction,"Voltage Correction", "%", 0, 200, 130, 140, 140, 150, 0, 0 + iatCorrectGauge = airCorrection, "IAT Correction", "%", 0, 200, 130, 140, 140, 150, 0, 0 + baroCorrectGauge = baroCorrection,"Baro Correction", "%", 0, 200, 130, 140, 140, 150, 0, 0 + flexEnrich = flexFuelCor, "Flex Correction", "%", 0, 200, 130, 140, 140, 150, 0, 0 + fuelTempCorGauge = fuelTempCor, "Fuel Temp Correction", "%", 0, 200, 130, 140, 140, 150, 0, 0 + advanceGauge = advance, "Current Advance", "deg", 50, -10, 0, 0, 35, 45, 0, 0 + advance1Gauge = advance1, "Advance1 (Spark Table 1)", "%",50, -10, 0, 0, 35, 45, 0, 0 + advance2Gauge = advance2, "Advance2 (Spark Table 2)", "%",50, -10, 0, 0, 35, 45, 0, 0 + dwellGauge = dwell, "Ign Dwell", "mSec", 0, 35.0, 1.0, 1.2, 20, 25, 3, 3 + boostTargetGauge = boostTarget, "Target Boost", "kPa", 0, {maphigh}, 0, 20, {mapwarn}, {mapdang}, 0, 0 + boostDutyGauge = boostDuty, "Boost Duty Cycle", "%", 0, 100, -1, -1, 101, 110, 1, 1 + afrTargetGauge = afrTarget, "Target AFR", "", 7, 25, 12, 13, 15, 16, 2, 2 + lambdaTargetGauge = lambdaTarget, "Target Lambda", "", 0.5, 1.5, 0.82, 0.89, 1.02, 1.09, 3, 3 + IdleTargetGauge = CLIdleTarget, "Idle Target RPM", "RPM", 0, 2000, 300, 600, 1500, 1700, 0, 0 + idleLoadGauge = idleLoad, "IAC Value", "%/Steps", 0, {maphigh}, 0, 20, {mapwarn}, {mapdang}, 0, 0 + vvt1DutyCycleGauge= vvt1Duty, "VVT Duty Cycle", "%", 0, 100, -1, -1, 101, 110, 1, 1 + vvt1TargetGauge = vvt1Target, "VVT Target Angle", "deg", 0, 100, 15, 25, 65, 75, 0, 0 + vvt1AngleGauge = vvt1Angle, "VVT Angle", "deg", -20, 100, 0, -5, 70, 90, 0, 0 + vvt2DutyCycleGauge= vvt2Duty, "VVT Duty Cycle", "%", 0, 100, -1, -1, 101, 110, 1, 1 + vvt2TargetGauge = vvt2Target, "VVT Target Angle", "deg", 0, 100, 15, 25, 65, 75, 0, 0 + vvt2AngleGauge = vvt2Angle, "VVT Angle", "deg", -20, 100, 0, -5, 70, 90, 0, 0 + + WMIdutyCycleGauge = wmiPW, "WMI Duty Cycle", "%", 0, 100, -1, -1, 101, 110, 1, 1 + + gaugeCategory = "Sensor inputs" + mapGauge = map, "Engine MAP", "kPa", 0, {maphigh}, 0, 20, {mapwarn}, {mapdang}, 0, 0 + mapGauge_psi = map_psi, "Engine MAP (PSI)", "PSI", -15, 100, 0, 20, 200, 245, 0, 0 + mapGauge_bar = map_bar, "Engine MAP (BAR)", "Bar", -1, 3, -1, -1, 5, 5, 2, 2 + mapGauge_vacBoost = map_vacboost, "Engine MAP (in-Hg/PSI)", "in-Hg/PSI", -30, 30, -30, -30, 30, 30, 1, 1 + baroGauge = baro, "Baro Pressure", "kPa", 0, {maphigh}, 0, 20, {mapwarn}, {mapdang}, 0, 0 + batteryVoltage = batteryVoltage,"Battery Voltage", "volts", 0, 25, 8, 9, 15, 16, 2, 2 + vssGauge = vss, "Vehicle Speed (kph)", "km/h", 0, 250, 5, 10, 180, 200, 0, 0 + vssGaugeMPH = vssMPH, "Vehicle Speed (mph)", "mph", 0, 250, 5, 10, 180, 200, 0, 0 + + tpsADCGauge = tpsADC, "TPS ADC", "", 0, 255, -1, -1, 256, 256, 0, 0 + throttleGauge = throttle, "Throttle Position", "%TPS", 0, 100, -1, 1, 90, 100, 0, 0 + + afrGauge = afr, "Air:Fuel Ratio", "", 7, 25, 12, 13, 15, 16, 2, 2 + afrGauge2 = afr2, "Air:Fuel Ratio 2", "", 7, 25, 12, 13, 15, 16, 2, 2 + lambdaGauge = lambda, "Lambda", "", 0.5, 1.5, 0.5, 0.7, 2, 1.1, 2, 2 + + #if CELSIUS + cltGauge = coolant, "Coolant Temp", "TEMP", -40, 215, -15, 0, 95, 105, 0, 0 + iatGauge = iat, "Inlet Air Temp", "TEMP", -40, 215, -15, 0, 95, 100, 0, 0 + fuelTempGauge = fuelTemp, "Fuel Temp", "TEMP", -40, 215, -15, 0, 95, 100, 0, 0 + #else + cltGauge = coolant, "Coolant Temp", "TEMP", -40, 215, 0, 30, 200, 220, 0, 0 + iatGauge = iat, "Inlet Air Temp", "TEMP", -40, 215, 0, 30, 200, 210, 0, 0 + fuelTempGauge = fuelTemp, "Fuel Temp", "TEMP", -40, 215, 0, 30, 200, 210, 0, 0 + #endif + flexGauge = flex, "Flex sensor", "%", 0, 100, -1, -1, 999, 999, 0, 0 + + fuelPressureGauge = fuelPressure, "Fuel Pressure", "PSI", -15, 100, 0, 20, 200, 245, 0, 0 + oilPressureGauge = oilPressure, "Oil Pressure", "PSI", -15, 100, 0, 20, 200, 245, 0, 0 + + gaugeCategory = "Auxillary Input Channels" + AuxInGauge0 = auxin_gauge0, { stringValue(AUXin00Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge1 = auxin_gauge1, { stringValue(AUXin01Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge2 = auxin_gauge2, { stringValue(AUXin02Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge3 = auxin_gauge3, { stringValue(AUXin03Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge4 = auxin_gauge4, { stringValue(AUXin04Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge5 = auxin_gauge5, { stringValue(AUXin05Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge6 = auxin_gauge6, { stringValue(AUXin06Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge7 = auxin_gauge7, { stringValue(AUXin07Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge8 = auxin_gauge8, { stringValue(AUXin08Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge9 = auxin_gauge9, { stringValue(AUXin09Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge10 = auxin_gauge10, { stringValue(AUXin10Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge11 = auxin_gauge11, { stringValue(AUXin11Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge12 = auxin_gauge12, { stringValue(AUXin12Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge13 = auxin_gauge13, { stringValue(AUXin13Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge14 = auxin_gauge14, { stringValue(AUXin14Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge15 = auxin_gauge15, { stringValue(AUXin15Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + + gaugeCategory = "System Data" + clockGauge = secl, "Clock", "Seconds", 0, 255, 10, 10, 245, 245, 0, 0 + loopGauge = loopsPerSecond,"Main loop speed", "Loops/S" , 0, 70000, -1, 500,1800, 4000, 0, 0 + memoryGauge = freeRAM, "Free memory", "bytes" , 0, 8000, -1, 1000,8000, 1000, 0, 0 + reqFuelGauge = req_fuel, "Req. Fuel", "ms", 0, 35.0, 1.0, 1.2, 20, 25, 2, 2 + mapMultiplyGauge = map_multiply_amt, "MAP Multiply", "%", 0, 200, 130, 140, 140, 150, 0, 0 + nSquirtsGauge = nSquirts, "# Squirts", "", 0, 10, 130, 140, 140, 150, 0, 0 + syncLossGauge = syncLossCounter, "# Sync Losses" "", 0, 255, -1, -1, 10, 50, 0, 0 +;------------------------------------------------------------------------------- + +[FrontPage] + + + ; Gauges are numbered left to right, top to bottom. + ; + ; 1 2 3 4 + ; 5 6 7 8 + + gauge1 = tachometer + gauge2 = throttleGauge + gauge3 = pulseWidthGauge + gauge4 = dutyCycleGauge + gauge5 = mapGauge + gauge6 = iatGauge + gauge7 = cltGauge + gauge8 = gammaEnrichGauge + + ;---------------------------------------------------------------------------- + ; Indicators + ; expr off-label on-label, off-bg, off-fg, on-bg, on-fg + indicator = { running }, "Not Running", "Running" white, black, green, black + indicator = { crank }, "Not Cranking", "Cranking", white, black, green, black + indicator = { ase }, "ASE OFF", "ASE ON", white, black, green, black + indicator = { warmup }, "WUE OFF", "WUE ON", white, black, green, black + indicator = { tpsaccaen }, "Accel", "Accel", white, black, green, black + indicator = { tpsaccden }, "Decel", "Decel", white, black, green, black + indicator = { mapaccaen }, "MAP Accel", "MAP Accel", white, black, green, black + indicator = { mapaccden }, "MAP Decel", "MAP Decel", white, black, green, black + indicator = { error }, "No Errors", "ERROR", white, black, green, black + indicator = { (tps > tpsflood) && (rpm < crankRPM) }, "FLOOD OFF", "FLOOD CLEAR", white, black, red, black + indicator = { DFCOOn }, "DFCO OFF", "DFCO On", white, black, red, black + indicator = { launchHard }, "Launch Hard", "Launch Hard", white, black, green, black + indicator = { launchSoft }, "Launch Soft", "Launch Soft", white, black, green, black + indicator = { softlimitOn }, "Soft Limit OFF","Soft Limiter", white, black, red, black + indicator = { hardLimitOn }, "Hard Limit OFF","Hard Limiter", white, black, red, black + indicator = { boostCutOut }, "Ign Cut OFF", "Ign Cut (Boost)", white, black, red, black + indicator = { sync }, "No Sync", "Full Sync", white, black, green, black + indicator = { halfSync }, "No or Full Sync", "Half Sync", white, black, yellow, black + indicator = { resetLockOn }, "Reset Lock OFF","Reset Lock ON", red, black, green, black + indicator = { bootloaderCaps > 0 }, "Std. Boot", "Custom Boot", white, black, white, black + indicator = { nitrousOn }, "Nitrous Off", "Nitrous On", white, black, red, black + indicator = { IOError }, "I/O Ok", "I/O Error!", white, black, red, black + ;Engine Protection status indicators + indicator = { engineProtectStatus}, "Engine Protect OFF", "Engine Protect ON", white, black, red, black + indicator = { engineProtectRPM }, "Rev Limiter Off", "Rev Limiter ON", white, black, red, black + indicator = { engineProtectMAP }, "Boost Limit OFF", "Boost Limit ON", white, black, red, black + indicator = { engineProtectOil }, "Oil Pres. Protect OFF","Oil Pres. Protect ON",white, black, red, black + indicator = { engineProtectAFR }, "AFR Protect OFF", "AFR Protect ON", white, black, red, black + indicator = { outputsStatus0 }, "Programmable out 1 Off", "Programmable out 1 ON", red, black, green, black + indicator = { outputsStatus1 }, "Programmable out 2 Off", "Programmable out 2 ON", red, black, green, black + indicator = { outputsStatus2 }, "Programmable out 3 Off", "Programmable out 3 ON", red, black, green, black + indicator = { outputsStatus3 }, "Programmable out 4 Off", "Programmable out 4 ON", red, black, green, black + indicator = { outputsStatus4 }, "Programmable out 5 Off", "Programmable out 5 ON", red, black, green, black + indicator = { outputsStatus5 }, "Programmable out 6 Off", "Programmable out 6 ON", red, black, green, black + indicator = { outputsStatus6 }, "Programmable out 7 Off", "Programmable out 7 ON", red, black, green, black + indicator = { outputsStatus7 }, "Programmable out 8 Off", "Programmable out 8 ON", red, black, green, black + indicator = { wmiEmptyBit }, "WMI Tank NOT Empty", "WMI Tank Empty", white, black, red, black + +;------------------------------------------------------------------------------- + +[OutputChannels] + ; The number of bytes MegaTune or TunerStudio should expect as a result + ; of sending the "A" command to Speeduino is determined + ; by the value of ochBlockSize, so be very careful when + ; you change it. + + ochGetCommand = "r\$tsCanId\x30%2o%2c" + ochBlockSize = 117 + + secl = scalar, U08, 0, "sec", 1.000, 0.000 + status1 = scalar, U08, 1, "bits", 1.000, 0.000 + inj1Status = bits, U08, 1, [0:0] + inj2Status = bits, U08, 1, [1:1] + inj3Status = bits, U08, 1, [2:2] + inj4Status = bits, U08, 1, [3:3] + DFCOOn = bits, U08, 1, [4:4] + boostCutFuel = bits, U08, 1, [5:5] + toothLog1Ready = bits, U08, 1, [6:6] + toothLog2Ready = bits, U08, 1, [7:7] + engine = scalar, U08, 2, "bits", 1.000, 0.000 + running = bits, U08, 2, [0:0] + crank = bits, U08, 2, [1:1] + ase = bits, U08, 2, [2:2] + warmup = bits, U08, 2, [3:3] + tpsaccaen = bits, U08, 2, [4:4] + tpsaccden = bits, U08, 2, [5:5] + mapaccaen = bits, U08, 2, [6:6] + mapaccden = bits, U08, 2, [7:7] + syncLossCounter = scalar, U08, 3, "", 1.000, 0.000 + map = scalar, U16, 4, "kpa", 1.000, 0.000 + iatRaw = scalar, U08, 6, "°C", 1.000, 0.000 + coolantRaw = scalar, U08, 7, "°C", 1.000, 0.000 + batCorrection = scalar, U08, 8, "%", 1.000, 0.000 + batteryVoltage = scalar, U08, 9, "V", 0.100, 0.000 + afr = scalar, U08, 10, "O2", 0.100, 0.000 + egoCorrection = scalar, U08, 11, "%", 1.000, 0.000 + airCorrection = scalar, U08, 12, "%", 1.000, 0.000 + warmupEnrich = scalar, U08, 13, "%", 1.000, 0.000 + rpm = scalar, U16, 14, "rpm", 1.000, 0.000 + accelEnrich = scalar, U08, 16, "%", 2.000, 0.000 + gammaEnrich = scalar, U16, 17, "%", 1.000, 0.000 + VE1 = scalar, U08, 19, "%", 1.000, 0.000 + VE2 = scalar, U08, 20, "%", 1.000, 0.000 + afrTarget = scalar, U08, 21, "O2", 0.100, 0.000 + TPSdot = scalar, U08, 22, "%/s", 10.00, 0.000 + advance = scalar, S08, 23, "deg", 1.000, 0.000 + tps = scalar, U08, 24, "%", 1.000, 0.000 + loopsPerSecond = scalar, U16, 25, "loops", 1.000, 0.000 + freeRAM = scalar, U16, 27, "bytes", 1.000, 0.000 + boostTarget = scalar, U08, 29, "kPa", 2.000, 0.000 + boostDuty = scalar, U08, 30, "%", 1.000, 0.000 + status2 = scalar, U08, 31, "bits", 1.000, 0.000 + launchHard = bits, U08, 31, [0:0] + launchSoft = bits, U08, 31, [1:1] + hardLimitOn = bits, U08, 31, [2:2] + softlimitOn = bits, U08, 31, [3:3] + boostCutSpark = bits, U08, 31, [4:4] + error = bits, U08, 31, [5:5] + idleControlOn = bits, U08, 31, [6:6] + sync = bits, U08, 31, [7:7] + rpmDOT = scalar, S16, 32, "rpm/s", 1.000, 0.000 + flex = scalar, U08, 34, "%", 1.000, 0.000 + flexFuelCor = scalar, U08, 35, "%", 1.000, 0.000 + flexIgnCor = scalar, S08, 36, "deg", 1.000, 0.000 + idleLoad = scalar, U08, 37, { bitStringValue( idleUnits , iacAlgorithm ) }, { (iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 || iacMaxSteps <= 255) ? 1.000 : 2.000 }, 0.000 ; This is a combined variable covering both PWM and stepper IACs. The units and precision used depend on which idle algorithm is chosen + testoutputs = scalar, U08, 38, "bits", 1.000, 0.000 + testenabled = bits, U08, 38, [0:0] + testactive = bits, U08, 38, [1:1] + afr2 = scalar, U08, 39, "O2", 0.100, 0.000 + baro = scalar, U08, 40, "kpa", 1.000, 0.000 + auxin_gauge0 = scalar, U16, 41, "", 1.000, 0.000 + auxin_gauge1 = scalar, U16, 43, "", 1.000, 0.000 + auxin_gauge2 = scalar, U16, 45, "", 1.000, 0.000 + auxin_gauge3 = scalar, U16, 47, "", 1.000, 0.000 + auxin_gauge4 = scalar, U16, 49, "", 1.000, 0.000 + auxin_gauge5 = scalar, U16, 51, "", 1.000, 0.000 + auxin_gauge6 = scalar, U16, 53, "", 1.000, 0.000 + auxin_gauge7 = scalar, U16, 55, "", 1.000, 0.000 + auxin_gauge8 = scalar, U16, 57, "", 1.000, 0.000 + auxin_gauge9 = scalar, U16, 59, "", 1.000, 0.000 + auxin_gauge10 = scalar, U16, 61, "", 1.000, 0.000 + auxin_gauge11 = scalar, U16, 63, "", 1.000, 0.000 + auxin_gauge12 = scalar, U16, 65, "", 1.000, 0.000 + auxin_gauge13 = scalar, U16, 67, "", 1.000, 0.000 + auxin_gauge14 = scalar, U16, 69, "", 1.000, 0.000 + auxin_gauge15 = scalar, U16, 71, "", 1.000, 0.000 + tpsADC = scalar, U08, 73, "ADC", 1.000, 0.000 + errors = scalar, U08, 74, "bits", 1.000, 0.000 + errorNum = bits, U08, 74, [0:1] + currentError = bits, U08, 74, [2:7] + pulseWidth = scalar, U16, 75, "ms", 0.001, 0.000 + pulseWidth2 = scalar, U16, 77, "ms", 0.001, 0.000 + pulseWidth3 = scalar, U16, 79, "ms", 0.001, 0.000 + pulseWidth4 = scalar, U16, 81, "ms", 0.001, 0.000 + status3 = scalar, U08, 83, "bits", 1.000, 0.000 + resetLockOn = bits, U08, 83, [0:0] + nitrousOn = bits, U08, 83, [1:1] + fuel2Active = bits, U08, 83, [2:2] + vssRefresh = bits, U08, 83, [3:3] + halfSync = bits, U08, 83, [4:4] + nSquirts = bits, U08, 83, [5:7] + engineProtectStatus = scalar, U08, 84, "bits", 1.000, 0.000 + engineProtectRPM = bits, U08, 84, [0:0] + engineProtectMAP = bits, U08, 84, [1:1] + engineProtectOil = bits, U08, 84, [2:2] + engineProtectAFR = bits, U08, 84, [3:3] + engineProtectOth = bits, U08, 84, [4:6] ; Unused for now + IOError = bits, U08, 84, [7:7] + unused1 = scalar, U08, 84, "ADC",1.000, 0.000 + fuelLoad = scalar, S16, 85, { bitStringValue( algorithmUnits , algorithm ) }, 1.000, 0.000 + ignLoad = scalar, S16, 87, { bitStringValue( algorithmUnits , ignAlgorithm ) }, 1.000, 0.000 + dwell = scalar, U16, 89, "ms", 0.001, 0.000 + CLIdleTarget = scalar, U08, 91, "RPM", 10.00, 0.000 + MAPdot = scalar, U08, 92, "kPa/s", 10.00, 0.000 + vvt1Angle = scalar, S08, 93, "deg", 1.00, 0.000 + vvt1Target = scalar, U08, 94, "deg", 1.00, 0.000 + vvt1Duty = scalar, U08, 95, "%", 1.00, 0.000 + flexBoostCor = scalar, S16, 96, "kPa", 1.000, 0.000 + baroCorrection = scalar, U08, 98, "%", 1.000, 0.000 + veCurr = scalar, U08, 99, "%", 1.000, 0.000 + ASECurr = scalar, U08, 100, "%", 1.000, 0.000 + vss = scalar, U16, 101, "km/h", 1.000, 0.000 + gear = scalar, U08, 103, "", 1.000, 0.000 + fuelPressure = scalar, U08, 104, "PSI", 1.000, 0.000 + oilPressure = scalar, U08, 105, "PSI", 1.000, 0.000 + wmiPW = scalar, U08, 106, "%", 1.000, 0.000 + wmiEmpty = scalar, U08, 107, "bits", 1.000, 0.000 + wmiEmptyBit = bits, U08, 107, [0:0] + vvt2Angle = scalar, S08, 108, "deg", 1.00, 0.000 + vvt2Target = scalar, U08, 109, "deg", 1.00, 0.000 + vvt2Duty = scalar, U08, 110, "%", 1.00, 0.000 + outputsStatus0 = bits, U08, 111, [0:0] + outputsStatus1 = bits, U08, 111, [1:1] + outputsStatus2 = bits, U08, 111, [2:2] + outputsStatus3 = bits, U08, 111, [3:3] + outputsStatus4 = bits, U08, 111, [4:4] + outputsStatus5 = bits, U08, 111, [5:5] + outputsStatus6 = bits, U08, 111, [6:6] + outputsStatus7 = bits, U08, 111, [7:7] + fuelTempRaw = scalar, U08, 112, "°C", 1.000, 0.000 + fuelTempCor = scalar, U08, 113, "%", 1.000, 0.000 + advance1 = scalar, U08, 114, "%", 1.000, 0.000 + advance2 = scalar, U08, 115, "%", 1.000, 0.000 + unused116 = scalar, U08, 116, "", 1.000, 0.000 + #sd_status = scalar, U08, 99, "", 1.0, 0.0 + +#if CELSIUS + coolant = { coolantRaw - 40 } ; Temperature readings are offset by 40 to allow for negatives + iat = { iatRaw - 40 } ; Temperature readings are offset by 40 to allow for negatives + fuelTemp = { fuelTempRaw - 40 } ; Temperature readings are offset by 40 to allow for negatives +#else + coolant = { (coolantRaw - 40) * 1.8 + 32 } ;Convert C to F (Offset by 40) + iat = { (iatRaw - 40) * 1.8 + 32 } ;Convert C to F (Offset by 40) + fuelTemp = { (fuelTempRaw - 40) * 1.8 + 32 } ;Convert C to F (Offset by 40) +#endif + time = { timeNow } + seconds = { secl } + + throttle = { tps }, "%" + + revolutionTime = { rpm ? ( 60000.0 / rpm) : 0 } + strokeMultipler = { twoStroke == 1 ? 1 : 2 } + cycleTime = { revolutionTime * strokeMultipler } + pulseLimit = { cycleTime / nSquirts } + + nFuelChannels = { arrayValue( array.boardFuelOutputs, pinLayout ) } + nIgnChannels = { arrayValue( array.boardIgnOutputs, pinLayout ) } + sequentialFuelAvailable = { nCylinders <= nFuelChannels } + sequentialIgnitionAvailable = { nCylinders <= nIgnChannels } + + dutyCycle = { rpm ? ( 100.0*pulseWidth/pulseLimit ) : 0 } + stgDutyCycle = { rpm && stagingEnabled ? ( 100.0*pulseWidth3/pulseLimit ) : 0 } + + boostCutOut = { boostCutFuel || boostCutSpark } + lambda = { afr / stoich } + lambdaTarget = { afrTarget / stoich } + MAPxRPM = { rpm * map } + loopsPerRev = { loopsPerSecond / (rpm / 60) } + req_fuel = { reqFuel } + bat_correction = { battVCorMode ? 100 : batCorrection } ; If battery voltage correction mode is Whole PW, use the battery correction, otherwise 100% + inj_open = { battVCorMode ? ((injOpen * batCorrection) / 100) : injOpen } ; If battery voltage correction mode is Open Time Only, calculate the corrected open time + ase_enrich = { ASECurr } ; If ASE is active then equal the ASE + 100 + map_multiply_amt = { multiplyMAP ? map : 100 } ; If multiply MAP is enabled, use the current MAP value, otherwise 100% + ;nSquirts = { nCylinders / divider } + + ;Manifold pressure in weirdo units + map_bar = { (map - baro) / 101.33 } + map_psi = { (map - baro) * 0.145038 } + map_inhg = { (baro - map) * 0.2953007 } ;in-Hg + map_vacboost = { map < baro ? -map_inhg : map_psi } + + vssMPH = { vss / 1.60934 } + + ;fuelLoadMax = { arrayValue(algorithmLimits , algorithm) } ;Doesn't work, no idea why. + fuelLoadMax = { (algorithm == 0 || algorithm == 2) ? 511 : 100 } + ignLoadMax = { (ignAlgorithm == 0 || ignAlgorithm == 2) ? 511 : 100 } + + fuelLoad2 = { fuel2Algorithm == 0 ? map : fuel2Algorithm == 1 ? tps : fuel2Algorithm == 2 ? 0 : 0 } + vvtLoad = { (vvtLoadSource == 0) ? map : tps } + + boostTableLimit = { boostType == 0 ? 100 : 511 } ;The maximum value allowed in the boost table. 100 is used for duty cycle, 511 for kpa + + CLIdleDelta = { CLIdleTarget - rpm } + +;------------------------------------------------------------------------------- + +[Datalog] + ; Full datalog. + ; + ; Default user-defined log emulates the full datalog. + ; + ; The entries are saved in the datalog file in the order in + ; which they appear in the list below. + ; + ; Channel - Case sensitive name of output channel to be logged. + ; Label - String written to header line of log. Be careful + ; about changing these, as programs like MSLVV and + ; MSTweak key off specific column names. + ; Type - Data type of output, converted before writing. + ; Format - C-style output format of data. + ; + ; Channel Label Type Format + ; -------------- ---------- ----- ------ + entry = time, "Time", float, "%.3f" + entry = secl, "SecL", int, "%d" + entry = rpm, "RPM", int, "%d" + entry = map, "MAP", int, "%d" + entry = MAPxRPM, "MAPxRPM", int, "%d" + entry = tps, "TPS", int, "%d" + entry = afr, "AFR", float, "%.3f" + entry = lambda, "Lambda", float, "%.3f" + entry = iat, "IAT", int, "%d" + entry = coolant, "CLT", int, "%d" + entry = engine, "Engine", int, "%d" + entry = DFCOOn, "DFCO", int, "%d" + entry = egoCorrection, "Gego", int, "%d" + entry = airCorrection, "Gair", int, "%d" + entry = bat_correction, "Gbattery", int, "%d" + entry = warmupEnrich, "Gwarm", int, "%d" + entry = baroCorrection, "Gbaro", int, "%d" + entry = gammaEnrich, "Gammae", int, "%d" + entry = accelEnrich, "Accel Enrich", int, "%d" + entry = veCurr, "Current VE", int, "%d" + entry = VE1, "VE1", int, "%d" + entry = VE2, "VE2", int, "%d" + entry = pulseWidth, "PW", float, "%.3f" + entry = afrTarget, "AFR Target", float, "%.3f" + entry = lambdaTarget, "Lambda Target", float, "%.3f" + entry = pulseWidth, "PW2", float, "%.3f" + entry = dutyCycle, "DutyCycle1", float, "%.1f" + entry = dutyCycle, "DutyCycle2", float, "%.1f" + entry = TPSdot, "TPS DOT", int, "%d" + entry = advance, "Advance", int, "%d" + entry = dwell, "Dwell", float, "%.1f" + entry = batteryVoltage, "Battery V", float, "%.1f" + entry = rpmDOT, "rpm/s", int, "%d" + entry = flex, "Eth %", int, "%d", { flexEnabled } + entry = flexFuelCor, "GflexFuel", int, "%d", { flexEnabled } + entry = fuelTemp, "Fuel Temp", int, "%d", { flexEnabled } + entry = fuelTempCor, "GfuelTemp", int, "%d", { flexEnabled } + entry = errorNum, "Error #", int, "%d", { errorNum } + entry = currentError, "Error ID", int, "%d", { errorNum } + entry = map_psi, "Boost PSI", float, "%.1f" + entry = boostTarget, "Boost Target", int, "%d", { boostEnabled } + entry = boostDuty, "Boost Duty", int, "%d", { boostEnabled } + entry = boostCutOut , "Boost cut", int, "%d" + entry = launchHard , "Hard Launch", int, "%d" + entry = hardLimitOn , "Hard Limiter", int, "%d" + entry = idleControlOn, "Idle Control", int, "%d" + entry = idleLoad, "IAC value", int, "%d" + entry = CLIdleTarget, "Idle Target RPM", int, "%%d", { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || idleAdvEnabled >= 1 } ;Only show for closed loop idle modes and if idle advance is enabled + entry = CLIdleDelta, "Idle RPM Delta", int, "%d", { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || idleAdvEnabled >= 1 } ;Only show for closed loop idle modes and if idle advance is enabled + entry = baro, "Baro Pressure", int, "%d" + entry = nitrousOn, "Nitrous", int, "%d", { n2o_enable > 0 } + entry = syncLossCounter, "Sync Loss #", int, "%d" + entry = vvt1Angle, "VVT Angle", int, "%d", { vvtMode == 2 } ;;Only show when using close loop vvt + entry = vvt1Target, "VVT Target Angle", int, "%d", { vvtMode == 2 } ;;Only show when using close loop vvt + entry = vvt1Duty, "VVT Duty", int, "%d", { vvtEnabled > 0 } + entry = vss, "Wheel Speed (kph)",int, "%d", { vssMode > 1 } + entry = vssMPH, "Wheel Speed (mph)",int, "%d", { vssMode > 1 } + entry = gear, "Gear", int, "%d", { vssMode > 1 } + entry = fuelPressure, "Fuel Pressure", int, "%d", { fuelPressureEnable > 0 } + entry = oilPressure, "Oil Pressure", int, "%d", { oilPressureEnable > 0 } + entry = vvt2Angle, "VVT Angle", int, "%d", { vvtMode == 2 } ;;Only show when using close loop vvt + entry = vvt2Target, "VVT Target Angle",int, "%d", { vvtMode == 2 } ;;Only show when using close loop vvt + entry = vvt2Duty, "VVT Duty", int, "%d", { vvtEnabled > 0 } + + entry = auxin_gauge0, { stringValue(AUXin00Alias) }, int, "%d", {(caninput_sel0b != 0)} + entry = auxin_gauge1, { stringValue(AUXin01Alias) }, int, "%d", { (caninput_sel1b != 0)} + entry = auxin_gauge2, { stringValue(AUXin02Alias) }, int, "%d", { (caninput_sel2b != 0)} + entry = auxin_gauge3, { stringValue(AUXin03Alias) }, int, "%d", { (caninput_sel3b != 0)} + entry = auxin_gauge4, { stringValue(AUXin04Alias) }, int, "%d", { (caninput_sel4b != 0)} + entry = auxin_gauge5, { stringValue(AUXin05Alias) }, int, "%d", { (caninput_sel5b != 0)} + entry = auxin_gauge6, { stringValue(AUXin06Alias) }, int, "%d", { (caninput_sel6b != 0)} + entry = auxin_gauge7, { stringValue(AUXin07Alias) }, int, "%d", { (caninput_sel7b != 0)} + entry = auxin_gauge8, { stringValue(AUXin08Alias) }, int, "%d", { (caninput_sel8b != 0)} + entry = auxin_gauge9, { stringValue(AUXin09Alias) }, int, "%d", { (caninput_sel9b != 0)} + entry = auxin_gauge10, { stringValue(AUXin10Alias) }, int, "%d", { (caninput_sel10b != 0)} + entry = auxin_gauge11, { stringValue(AUXin11Alias) }, int, "%d", { (caninput_sel11b != 0)} + entry = auxin_gauge12, { stringValue(AUXin12Alias) }, int, "%d", { (caninput_sel12b != 0)} + entry = auxin_gauge13, { stringValue(AUXin13Alias) }, int, "%d", { (caninput_sel13b != 0)} + entry = auxin_gauge14, { stringValue(AUXin14Alias) }, int, "%d", { (caninput_sel14b != 0)} + entry = auxin_gauge15, { stringValue(AUXin15Alias) }, int, "%d", { (caninput_sel15b != 0)} + entry = outputsStatus0, { stringValue(prgm_out00Alias)}, int, "%d", { (outputPin[0] != 0)} + entry = outputsStatus1, { stringValue(prgm_out01Alias)}, int, "%d", { (outputPin[1] != 0)} + entry = outputsStatus2, { stringValue(prgm_out02Alias)}, int, "%d", { (outputPin[2] != 0)} + entry = outputsStatus3, { stringValue(prgm_out03Alias)}, int, "%d", { (outputPin[3] != 0)} + entry = outputsStatus4, { stringValue(prgm_out04Alias)}, int, "%d", { (outputPin[4] != 0)} + entry = outputsStatus5, { stringValue(prgm_out05Alias)}, int, "%d", { (outputPin[5] != 0)} + entry = outputsStatus6, { stringValue(prgm_out06Alias)}, int, "%d", { (outputPin[6] != 0)} + entry = outputsStatus7, { stringValue(prgm_out07Alias)}, int, "%d", { (outputPin[7] != 0)} + + entry = advance1, "Advance 1", int, "%d" + entry = advance2, "Advance 2", int, "%d" + +[LoggerDefinition] + ; valid logger types: composite, tooth, trigger, csv + + ;loggerDef = uniqueName, Display Name, type + loggerDef = tooth, "Tooth Logger", tooth + ;dataReadCommand = "r\\x00\\xf4\\x00\\x00\\x04\\x00" ; standard TS command format + startCommand = "H" + stopCommand = "h" + ;dataReadCommand = "T" ; Basic TS command format + dataReadCommand = "T\$tsCanId\x01\xFC\x00\x01\xFC" ; Basic TS command format. Note that this is shared with the composite logger. Firmware detects which log is currently running + dataReadTimeout = 5000 ; time in ms + continuousRead = true + dataReadyCondition = { toothLog1Ready == 1 } + dataLength = 508; in bytes, including headers, footers and data (not used). 4 bytes * 127 entries + ;dataLength = 128 ; in bytes, including headers, footers and data (not used) + + ;recordDef = headerLen. footerLen, recordLen + recordDef = 0, 0, 4; in bytes, the recordLen is for each record, currently limited to 4 bytes + + ;recordField = Name, HeaderName, startBit, bitCount, scale, units, updateCondition + recordField = toothTime, "ToothTime", 0, 32, 1.0, "uS" + + loggerDef = compositeLogger, "Composite Logger", composite + startCommand = "J" + stopCommand = "j" + ;dataReadCommand = "T" ; Basic TS command format. Note that this is shared with the composite logger. Firmware detects which log is currently running + dataReadCommand = "T\$tsCanId\x00\x00\x00\x02\x7B" ; Basic TS command format. Note that this is shared with the composite logger. Firmware detects which log is currently running + dataReadTimeout = 50000 ; time in ms + dataReadyCondition = { toothLog1Ready == 1 } + continuousRead = true + dataLength = 635 ; in bytes, including headers, footers and data (not used). 5 bytes * 127 fields + + ;recordDef = headerLen. footerLen, recordLen + recordDef = 0, 0, 5; in bytes, the recordLen is for each record, currently limited to 4 bytes + + ;recordField = Name, HeaderName, startBit, bitCount, scale, units, updateCondition + recordField = priLevel, "PriLevel", 0, 1, 1.0, "Flag" + recordField = secLevel, "SecLevel", 1, 1, 1.0, "Flag" + recordField = trigger, "Trigger", 2, 1, 1.0, "Flag" + recordField = sync, "Sync", 3, 1, 1.0, "Flag" + recordField = refTime, "RefTime", 8, 32, 0.001, "ms" + + ; hidden calcField serves as intermediate variable + calcField = maxTime, "MaxTime", "ms", { maxValue(refTime) } + + calcField = toothTime, "ToothTime", "ms", { refTime - pastValue(refTime, 1) } + ;recordField = time, "Time", 24, 16, 1.0, "ms" + calcField = time, "Time", "ms", { refTime } + +[ReferenceTables] + referenceTable = std_ms2gentherm, "Calibrate Thermistor Tables." + topicHelp = "https://wiki.speeduino.com/en/configuration/Sensor_Calibration" + tableIdentifier = 000, "Coolant Temperature Sensor", 001, "Air Temperature Sensor", 003, "Custom#1 Temperature Sensor" + ; tableLimits (optional) = intentifier, min, max, defaultVal + ; will set the default value if value is outside the min and max limits. + tableLimits = 000, -40, 350, 180 ;Coolant + tableLimits = 001, -40, 350, 70 ;IAT + ;Table 002 is AFR + tableLimits = 003, -40, 400, 70 ; Not currently used + + adcCount = 32 ; length of the table + bytesPerAdc = 2 ; using shorts + scale = 10 ; scale by 10 before sending to controller + ;tableGenerator = Generator type, Label + tableGenerator = thermGenerator, "Thermistor Measurements" + tableGenerator = fileBrowseGenerator, "Browse for Inc File" + ; thermOption = name, resistor bias, tempPoint1(C), resPoint1, tempPoint2, resPoint2, tempPoint3, resPoint3 + thermOption = "GM", 2490, -40, 100700, 30, 2238, 99, 177 + thermOption = "Chrysler 85 up", 2490, 5.5, 24500, 30.5, 8100, 88.3, 850 + thermOption = "Ford", 2490, 0, 94000, 50, 11000, 98, 2370 + thermOption = "Saab (Bosch)", 2490, 0, 5800, 80, 320, 100, 180 + thermOption = "Mazda", 50000, -40, 2022088, 21, 68273, 99, 3715 + thermOption = "Mitsu", 2490, -40, 100490, 30, 1875, 99, 125 + thermOption = "Toyota", 2490, -40, 101890, 30, 2268, 99, 156 + thermOption = "RX-7_CLT(S4 & S5)", 2490, -20, 16200, 20, 2500, 80, 300 + thermOption = "RX-7_MAT", 42200, 20, 41500, 50, 11850, 85, 3500 + thermOption = "VW L-Jet Cylinder Head Temp Sensor II", 1100, -13.888, 11600,53.888, 703, 95.555, 207 + thermOption = "RX-7_AFM(S5 in AFM)", 2490, -20, 16200, 20, 2500, 80, 300 + thermOption = "BMW E30 325i", 2490, -10, 9300, 20, 2500, 80, 335 + solution = "3 Point Therm Generator", thermGenerator + solution = "Custom inc File", fileBrowseGenerator + + referenceTable = std_ms2geno2, "Calibrate AFR Table..." + topicHelp = "https://wiki.speeduino.com/en/configuration/Sensor_Calibration" + tableIdentifier = 002, "AFR Table" + adcCount = 1024 ; length of the table + bytesPerAdc = 1 ; using bytes + scale = 10 ; scale by 10 before sending to controller + ;tableGenerator = Generator Type, Label, xUnits, yUnits, xLow, xHi, yLow, yHi + tableGenerator = linearGenerator, "Custom Linear WB", "Volts","AFR", 1, 4, 9.7, 18.7 + tableGenerator = fileBrowseGenerator, "Browse for Inc File" + + solutionsLabel = "EGO Sensor" + solution = " ", { } ; blank row in case no match found. Must reman at top. + solution = "Narrowband", { table(adcValue*5/1023 , "nb.inc") } ; + solution = "14Point7", { 10.0001 + ( adcValue * 0.0097752 )} ; 10.0001 causes 1 adc to round different for unique match. + solution = "AEM Linear AEM-30-42xx", { 9.72 + (adcValue * 0.0096665) } ; 9.72:1 - 19.60:1 + solution = "AEM Linear (30-2310 & 30-4900)", { 7.3125 + (adcValue * 0.0116080) } ; 7.31:1 - 19.18:1 + solution = "Autometer 0V=10:1, 4V=16:1", { 10 + (adcValue * 0.0073313783) } + solution = "Ballenger AFR500 0V=9:1, 5V=16:1", { 9 + (adcValue * 0.00684262) } + solution = "Ballenger AFR500 0V=6:1, 5V=20:1", { 6 + (adcValue * 0.01368524) } + solution = "Daytona TwinTec", { 10.01 + (adcValue * 0.0097752) } + solution = "DIY-EFI TinyWB", { 10.0001 + ( adcValue * 0.0097752 )} ; Same as 14point7 units + solution = "DynoJet Wideband Commander", { adcValue * 0.00784325 + 10 } + solution = "F.A.S.T. Wideband", { adcValue * 0.01357317 + 9.6 } ; 838.8608 + solution = "FJO WB", { table(adcValue*5/1023 , "fjoWB.inc" ) } + solution = "Fueltech WB-02 Nano Anhydr. Eth.", { 5.11043 + (adcValue * 0.997826) } + solution = "Fueltech WB-02 Nano Hydr. Ethan.", { 4.74685 + (adcValue * 0.927739) } + solution = "Fueltech WB-02 Nano Gasoline", { 8.37391 + (adcValue * 0.00796111) } + solution = "Fueltech WB-02 Nano Methanol", { 3.65652 + (adcValue * 0.00350289) } + solution = "Innovate LC-1 / LC-2 Default", { 7.35 + (adcValue * 0.01470186 )} + solution = "Innovate / PLX 0.0-5.0 10:1-20:1", { 10 + (adcValue * 0.0097752)} + solution = "Innovate 1.0-2.0", { adcValue * 0.049025} + solution = "LambdaBoy", { table(adcValue*5/1023 , "lambdaBoy.inc" ) } + solution = "NGK Powerdex", { 9 + ( adcValue * 0.0068359375 ) } + solution = "ODG Wideband - Faixa 1", { 8.3470 + (adcValue * 0.00795792) } + solution = "ODG Wideband - Faixa 2", { 9.1447 + (adcValue * 0.01013714) } + solution = "TechEdge DIY Non-Linear", { table(adcValue*5/1023 , "TechEdge_DIYwbo2.inc") } + solution = "TechEdge Linear", { adcValue * 0.0097752 + 9 } + solution = "Zeitronix - Non Linear", { table(adcValue*5/1023 , "zeitronix.inc") } + solution = "Zeitronix - Linear Default", { 9.6 + (adcValue * 0.0097752) } + + solution = "Custom Linear WB", linearGenerator + solution = "Custom inc File", fileBrowseGenerator + +[Tools] + ;addTool = toolName, PanelName + addTool = veTableGenerator, "VE Table Generator", veTable1Tbl + addTool = afrTableGenerator, "AFR Table Generator", afrTable1Tbl + + +[VeAnalyze] + ; tableName, lambdaTargetTableName, lambdaChannel, egoCorrectionChannel, activeCondition +#if LAMBDA + veAnalyzeMap = veTable1Tbl, afrTable1Tbl, lambda, egoCorrection +#else + veAnalyzeMap = veTable1Tbl, afrTable1Tbl, afr, egoCorrection +#endif + lambdaTargetTables = afrTable1Tbl, afrTSCustom + filter = std_xAxisMin ; Auto build with appropriate axis channels + ;filter = minRPMFilter, "Minimum RPM", rpm, < , 500, , true + filter = std_xAxisMax ; Auto build with appropriate axis channels + filter = std_yAxisMin ; Auto build with appropriate axis channels + filter = std_yAxisMax ; Auto build with appropriate axis channels + filter = std_DeadLambda ; Auto build + +#if CELSIUS + filter = minCltFilter, "Minimum CLT", coolant, < , 71, , true +#else + filter = minCltFilter, "Minimum CLT", coolant, < , 160, , true +#endif + filter = accelFilter, "Accel Flag" , engine, & , 16, , false + filter = aseFilter, "ASE Flag" , engine, & , 4, , false + filter = overrunFilter, "Overrun" , pulseWidth, = , 0, , false + filter = std_Custom ; Standard Custom Expression Filter. + + +[WueAnalyze] +; wueCurveName, afrTempCompensationCurve, lambdaTargetTableName, lambdaChannel, coolantTempChannel, wueChannel, egoCorrectionChannel, activeCondition +#if LAMBDA + wueAnalyzeMap = warmup_analyzer_curve, warmup_afr_curve, afrTable1Tbl, lambda, coolant, warmupEnrich, egoCorrection +#else + wueAnalyzeMap = warmup_analyzer_curve, warmup_afr_curve, afrTable1Tbl, afr, coolant, warmupEnrich, egoCorrection +#endif + lambdaTargetTables = afrTable1Tbl, afrTSCustom + filter = std_DeadLambda ; Auto build + filter = accelFilter, "Accel Flag", engine, &, 16, false + filter = aseFilter, "ASE Flag", engine, &, 4, false + filter = overrunFilter, "Overrun", pulseWidth, =, 0, false + filter = maxTPS, "Max TPS", throttle, >, 15, true + filter = minRPM, "Min RPM", rpm, <, 300, true + filter = std_Custom ; Standard Custom Expression Filter. diff --git a/public/tunes/202012.json b/public/tunes/202012.json new file mode 100644 index 0000000..52ea756 --- /dev/null +++ b/public/tunes/202012.json @@ -0,0 +1 @@ +{"megaTune":{"signature":"speeduino 202012","MTversion":2.25,"queryCommand":"Q","versionInfo":"S"},"tunerStudio":{"iniSpecVersion":3.64},"defines":{"loadSourceNames":["MAP","TPS","IMAP/EMAP","INVALID","INVALID","INVALID","INVALID","INVALID"],"loadSourceUnits":["kPa","% TPS","%","INVALID","INVALID","INVALID","INVALID","INVALID"],"all_IO_Pins":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"],"IO_Pins_no_def":["INVALID","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"],"bitwise_def":["Disabled","AND","OR","XOR"],"comparator_def":["==","!=",">",">=","<","<=","INVALID","INVALID"],"comp_IO_Pins":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"],"fullStatus_def_1":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT"],"fullStatus_def_2":["INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14"],"fullStatus_def_3":["INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction"],"fullStatus_def_4":["Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"],"fullStatus_def":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"],"trigger_missingTooth":["0"],"trigger_BasicDistributor":["1"],"trigger_DualWheel":["2"],"trigger_GM7X":["3"],"trigger_4G63":["4"],"trigger_24X":["5"],"trigger_Jeep2000":["6"],"trigger_Audi135":["7"],"trigger_HondaD17":["8"],"trigger_Miata9905":["9"],"trigger_MazdaAU":["10"],"trigger_non360":["11"],"trigger_Nissan360":["12"],"trigger_Subaru67":["13"],"trigger_Daihatsu":["14"],"trigger_Harley":["15"],"trigger_ThirtySixMinus222":["16"],"trigger_ThirtySixMinus21":["17"],"trigger_420a":["18"],"PIN_OUT10inv":["INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"],"PIN_OUT16inv":["INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"],"PIN_16inv":["INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"],"ANALOG_PIN":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"],"DIGITAL_PIN":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"],"ANALOG_DIG_PIN_LIST":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"],"tsCanId_list":["CAN ID 0","CAN ID 1","CAN ID 2","CAN ID 3","CAN ID 4","CAN ID 5","CAN ID 6","CAN ID 7","CAN ID 8","CAN ID 9","CAN ID 10","CAN ID 11","CAN ID 12","CAN ID 13","CAN ID 14","INVALID"],"CAN_ADDRESS_HEX_inv255":["INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"],"CAN_ADDRESS_HEX_00XX":["INVALID","0x001","0x002","0x003","0x004","0x005","0x006","0x007","0x008","0x009","0x00A","0x00B","0x00C","0x00D","0x00E","0x00F","0x010","0x011","0x012","0x013","0x014","0x015","0x016","0x017","0x018","0x019","0x01A","0x01B","0x01C","0x01D","0x01E","0x01F","0x020","0x021","0x022","0x023","0x024","0x025","0x026","0x027","0x028","0x029","0x02A","0x02B","0x02C","0x02D","0x02E","0x02F","0x030","0x031","0x032","0x033","0x034","0x035","0x036","0x037","0x038","0x039","0x03A","0x03B","0x03C","0x03D","0x03E","0x03F","0x040","0x041","0x042","0x043","0x044","0x045","0x046","0x047","0x048","0x049","0x04A","0x04B","0x04C","0x04D","0x04E","0x04F","0x050","0x051","0x052","0x053","0x054","0x055","0x056","0x057","0x058","0x059","0x05A","0x05B","0x05C","0x05D","0x05E","0x05F","0x060","0x061","0x062","0x063","0x064","0x065","0x066","0x067","0x068","0x069","0x06A","0x06B","0x06C","0x06D","0x06E","0x06F","0x070","0x071","0x072","0x073","0x074","0x075","0x076","0x077","0x078","0x079","0x07A","0x07B","0x07C","0x07D","0x07E","0x07F","0x080","0x081","0x082","0x083","0x084","0x085","0x086","0x087","0x088","0x089","0x08A","0x08B","0x08C","0x08D","0x08E","0x08F","0x090","0x091","0x092","0x093","0x094","0x095","0x096","0x097","0x098","0x099","0x09A","0x09B","0x09C","0x09D","0x09E","0x09F","0x0A0","0x0A1","0x0A2","0x0A3","0x0A4","0x0A5","0x0A6","0x0A7","0x0A8","0x0A9","0x0AA","0x0AB","0x0AC","0x0AD","0x0AE","0x0AF","0x0B0","0x0B1","0x0B2","0x0B3","0x0B4","0x0B5","0x0B6","0x0B7","0x0B8","0x0B9","0x0BA","0x0BB","0x0BC","0x0BD","0x0BE","0x0BF","0x0C0","0x0C1","0x0C2","0x0C3","0x0C4","0x0C5","0x0C6","0x0C7","0x0C8","0x0C9","0x0CA","0x0CB","0x0CC","0x0CD","0x0CE","0x0CF","0x0D0","0x0D1","0x0D2","0x0D3","0x0D4","0x0D5","0x0D6","0x0D7","0x0D8","0x0D9","0x0DA","0x0DB","0x0DC","0x0DD","0x0DE","0x0DF","0x0E0","0x0E1","0x0E2","0x0E3","0x0E4","0x0E5","0x0E6","0x0E7","0x0E8","0x0E9","0x0EA","0x0EB","0x0EC","0x0ED","0x0EE","0x0EF","0x0F0","0x0F1","0x0F2","0x0F3","0x0F4","0x0F5","0x0F6","0x0F7","0x0F8","0x0F9","0x0FA","0x0FB","0x0FC","0x0FD","0x0FE","0x0FF"],"CAN_ADDRESS_HEX_01XX":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF"],"CAN_ADDRESS_HEX_02XX":["0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF"],"CAN_ADDRESS_HEX_03XX":["0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF"],"CAN_ADDRESS_HEX_04XX":["0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF"],"CAN_ADDRESS_HEX_05XX":["0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF"],"CAN_ADDRESS_HEX_06XX":["0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF"],"CAN_ADDRESS_HEX_07XX":["0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF"],"CAN_ADDRESS_HEX":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"pcVariables":{"tsCanId":{"type":"bits","size":"U08","address":[0,3],"values":["CAN ID 0","CAN ID 1","CAN ID 2","CAN ID 3","CAN ID 4","CAN ID 5","CAN ID 6","CAN ID 7","CAN ID 8","CAN ID 9","CAN ID 10","CAN ID 11","CAN ID 12","CAN ID 13","CAN ID 14","INVALID"]},"rpmhigh":{"type":"scalar","size":"U16","units":"rpm","scale":1,"transform":0,"min":0,"max":30000,"digits":0},"rpmwarn":{"type":"scalar","size":"U16","units":"rpm","scale":1,"transform":0,"min":0,"max":30000,"digits":0},"rpmdang":{"type":"scalar","size":"U16","units":"rpm","scale":1,"transform":0,"min":0,"max":30000,"digits":0},"maphigh":{"type":"scalar","size":"U16","units":"kPa","scale":1,"transform":0,"min":0,"max":30000,"digits":0},"mapwarn":{"type":"scalar","size":"U16","units":"kPa","scale":1,"transform":0,"min":0,"max":30000,"digits":0},"mapdang":{"type":"scalar","size":"U16","units":"kPa","scale":1,"transform":0,"min":0,"max":30000,"digits":0},"wueAFR":{"type":"array","size":"S16","shape":{"columns":10,"rows":0},"units":"AFR","scale":0.1,"transform":0,"min":-4,"max":4,"digits":1},"wueRecommended":{"type":"array","size":"U08","shape":{"columns":10,"rows":0},"units":"%","scale":1,"transform":0,"min":100,"max":255,"digits":0},"idleUnits":{"type":"bits","size":"U08","address":[0,2],"values":["None","On/Off","Duty Cycle","Duty Cycle","Steps","Steps"]},"boardFuelOutputs":{"type":"array","size":"U08","shape":{"columns":128,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"boardIgnOutputs":{"type":"array","size":"U08","shape":{"columns":128,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"algorithmNames":{"type":"bits","size":"U08","address":[0,2],"values":["MAP","TPS","IMAP/EMAP","INVALID","INVALID","INVALID","INVALID","INVALID"]},"algorithmUnits":{"type":"bits","size":"U08","address":[0,2],"values":["kPa","% TPS","%","% TPS","INVALID","INVALID","INVALID","INVALID"]},"algorithmLimits":{"type":"array","size":"U16","shape":{"columns":8,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":511,"digits":0},"fuel2SwitchUnits":{"type":"bits","size":"U08","address":[0,2],"values":["rpm","kPa","% TPS","%","% TPS","INVALID","INVALID","INVALID"]},"boostTableLabels":{"type":"bits","size":"U08","address":[0,1],"values":["Duty Cycle %","kPa"]},"prgm_out_selection":{"type":"bits","size":"U08","address":[0,2],"values":["1","2","3","4","5","6","7","8"]},"fuelLoadMax":{"type":"scalar","size":"U08","units":"","scale":1,"transform":0,"min":0,"max":511,"digits":0},"ignLoadMax":{"type":"scalar","size":"U08","units":"","scale":1,"transform":0,"min":0,"max":511,"digits":0},"AUXin00Alias":{"type":"string","size":"ASCII","length":20},"AUXin01Alias":{"type":"string","size":"ASCII","length":20},"AUXin02Alias":{"type":"string","size":"ASCII","length":20},"AUXin03Alias":{"type":"string","size":"ASCII","length":20},"AUXin04Alias":{"type":"string","size":"ASCII","length":20},"AUXin05Alias":{"type":"string","size":"ASCII","length":20},"AUXin06Alias":{"type":"string","size":"ASCII","length":20},"AUXin07Alias":{"type":"string","size":"ASCII","length":20},"AUXin08Alias":{"type":"string","size":"ASCII","length":20},"AUXin09Alias":{"type":"string","size":"ASCII","length":20},"AUXin10Alias":{"type":"string","size":"ASCII","length":20},"AUXin11Alias":{"type":"string","size":"ASCII","length":20},"AUXin12Alias":{"type":"string","size":"ASCII","length":20},"AUXin13Alias":{"type":"string","size":"ASCII","length":20},"AUXin14Alias":{"type":"string","size":"ASCII","length":20},"AUXin15Alias":{"type":"string","size":"ASCII","length":20},"prgm_out00Alias":{"type":"string","size":"ASCII","length":20},"prgm_out01Alias":{"type":"string","size":"ASCII","length":20},"prgm_out02Alias":{"type":"string","size":"ASCII","length":20},"prgm_out03Alias":{"type":"string","size":"ASCII","length":20},"prgm_out04Alias":{"type":"string","size":"ASCII","length":20},"prgm_out05Alias":{"type":"string","size":"ASCII","length":20},"prgm_out06Alias":{"type":"string","size":"ASCII","length":20},"prgm_out07Alias":{"type":"string","size":"ASCII","length":20}},"constants":{"pages":[{"number":1,"size":0,"data":{"aseTaperTime":{"type":"scalar","size":"U08","offset":0,"units":"S","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"aeColdPct":{"type":"scalar","size":"U08","offset":1,"units":"%","scale":1,"transform":0,"min":100,"max":255,"digits":0},"aeColdTaperMin":{"type":"scalar","size":"U08","offset":2,"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"aeMode":{"type":"bits","size":"U08","offset":3,"address":[0,1],"values":["TPS","MAP","INVALID","INVALID"]},"battVCorMode":{"type":"bits","size":"U08","offset":3,"address":[2,2],"values":["Whole PW","Open Time only"]},"SoftLimitMode":{"type":"bits","size":"U08","offset":3,"address":[3,3],"values":["Fixed","Relative"]},"useTachoSweep":{"type":"bits","size":"U08","offset":3,"address":[4,4],"values":["Off","On"]},"aeApplyMode":{"type":"bits","size":"U08","offset":3,"address":[5,5],"values":["PW Multiplier","PW Adder"]},"multiplyMAP":{"type":"bits","size":"U08","offset":3,"address":[6,7],"values":["Off","Baro","Fixed","INVALID"]},"wueRates":{"type":"array","size":"U08","offset":4,"shape":{"columns":10,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"crankingPct":{"type":"scalar","size":"U08","offset":14,"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"pinLayout":{"type":"bits","size":"U08","offset":15,"address":[0,7],"values":["INVALID","Speeduino v0.2","Speeduino v0.3","Speeduino v0.4","INVALID","INVALID","01-05 MX5 PNP","INVALID","96-97 MX5 PNP","NA6 MX5 PNP","Turtana PCB","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","Plazomat I/O 0.1","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","Daz V6 Shield 0.1","BMW PnP","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","NO2C","UA4C","INVALID","INVALID","INVALID","DIY-EFI CORE4 v1.0","INVALID","INVALID","INVALID","INVALID","dvjcodec Teensy RevA","dvjcodec Teensy RevB","INVALID","INVALID","INVALID","Drop Bear","INVALID","INVALID","INVALID","INVALID","Black STM32F407VET6 V0.1","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"tachoPin":{"type":"bits","size":"U08","offset":16,"address":[0,5],"values":["Board Default","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"tachoDiv":{"type":"bits","size":"U08","offset":16,"address":[6,7],"values":["Normal","Half","INVALID","INVALID"]},"tachoDuration":{"type":"scalar","size":"U08","offset":17,"units":"ms","scale":1,"transform":0,"min":1,"max":6,"digits":0},"maeThresh":{"type":"scalar","size":"U08","offset":18,"units":"kPa/s","scale":1,"transform":0,"min":0,"max":255,"digits":0},"taeThresh":{"type":"scalar","size":"U08","offset":19,"units":"%/s","scale":1,"transform":0,"min":0,"max":255,"digits":0},"aeTime":{"type":"scalar","size":"U08","offset":20,"units":"ms","scale":10,"transform":0,"min":0,"max":2550,"digits":0},"display":{"type":"bits","size":"U08","offset":21,"address":[0,2],"values":["Unused","Adafruit 128x32","Generic 128x32","Adafruit 128x64","Generic 128x64","INVALID","INVALID","INVALID"]},"display1":{"type":"bits","size":"U08","offset":21,"address":[3,5],"values":["RPM","PW","Advance","VE","GammaE","TPS","IAT","CLT"]},"display2":{"type":"bits","size":"U08","offset":21,"address":[6,7],"values":["O2","Voltage","CPU","Mem"]},"display3":{"type":"bits","size":"U08","offset":22,"address":[0,2],"values":["RPM","PW","Advance","VE","GammaE","TPS","IAT","CLT"]},"display4":{"type":"bits","size":"U08","offset":22,"address":[3,4],"values":["O2","Voltage","CPU","Mem"]},"display5":{"type":"bits","size":"U08","offset":22,"address":[5,7],"values":["RPM","PW","Advance","VE","GammaE","TPS","IAT","CLT"]},"displayB1":{"type":"bits","size":"U08","offset":23,"address":[0,3],"values":["RPM","PW","Advance","VE","GammaE","TPS","IAT","CLT"]},"displayB2":{"type":"bits","size":"U08","offset":23,"address":[4,7],"values":["RPM","PW","Advance","VE","GammaE","TPS","IAT","CLT"]},"reqFuel":{"type":"scalar","size":"U08","offset":24,"units":"ms","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"divider":{"type":"scalar","size":"U08","offset":25,"units":"","scale":1,"transform":0,"min":0,"max":0,"digits":null},"alternate":{"type":"bits","size":"U08","offset":26,"address":[0,0],"values":["Simultaneous","Alternating"]},"multiplyMAP1":{"type":"bits","size":"U08","offset":26,"address":[1,1],"values":["No","Yes"]},"includeAFR":{"type":"bits","size":"U08","offset":26,"address":[2,2],"values":["No","Yes"]},"hardCutType":{"type":"bits","size":"U08","offset":26,"address":[3,3],"values":["Full","Rolling"]},"ignAlgorithm":{"type":"bits","size":"U08","offset":26,"address":[4,6],"values":["MAP","TPS","IMAP/EMAP","INVALID","INVALID","INVALID","INVALID","INVALID"]},"indInjAng":{"type":"bits","size":"U08","offset":26,"address":[7,7],"values":["Disabled","Enabled"]},"injOpen":{"type":"scalar","size":"U08","offset":27,"units":"ms","scale":0.1,"transform":0,"min":0.1,"max":25.5,"digits":1},"injAng":{"type":"array","size":"U16","offset":28,"shape":{"columns":4,"rows":0},"units":"deg","scale":1,"transform":0,"min":0,"max":720,"digits":0},"mapSample":{"type":"bits","size":"U08","offset":36,"address":[0,1],"values":["Instantaneous","Cycle Average","Cycle Minimum","Event Average"]},"twoStroke":{"type":"bits","size":"U08","offset":36,"address":[2,2],"values":["Four-stroke","Two-stroke"]},"injType":{"type":"bits","size":"U08","offset":36,"address":[3,3],"values":["Port","Throttle Body"]},"nCylinders":{"type":"bits","size":"U08","offset":36,"address":[4,7],"values":["INVALID","1","2","3","4","5","6","INVALID","8","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"algorithm":{"type":"bits","size":"U08","offset":37,"address":[0,2],"values":["MAP","TPS","IMAP/EMAP","INVALID","INVALID","INVALID","INVALID","INVALID"]},"fixAngEnable":{"type":"bits","size":"U08","offset":37,"address":[3,3],"values":["Off","On"]},"nInjectors":{"type":"bits","size":"U08","offset":37,"address":[4,7],"values":["INVALID","1","2","3","4","5","6","INVALID","8","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"engineType":{"type":"bits","size":"U08","offset":38,"address":[0,0],"values":["Even fire","Odd fire"]},"flexEnabled":{"type":"bits","size":"U08","offset":38,"address":[1,1],"values":["Off","On"]},"legacyMAP":{"type":"bits","size":"U08","offset":38,"address":[2,2],"values":["No","Yes"]},"baroCorr":{"type":"bits","size":"U08","offset":38,"address":[3,3],"values":["Off","On"]},"injLayout":{"type":"bits","size":"U08","offset":38,"address":[4,5],"values":["Paired","Semi-Sequential","INVALID","Sequential"]},"perToothIgn":{"type":"bits","size":"U08","offset":38,"address":[6,6],"values":["No","Yes"]},"dfcoEnabled":{"type":"bits","size":"U08","offset":38,"address":[7,7],"values":["Off","On"]},"aeColdTaperMax":{"type":"scalar","size":"U08","offset":39,"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"dutyLim":{"type":"scalar","size":"U08","offset":40,"units":"%","scale":1,"transform":0,"min":0,"max":95,"digits":0},"flexFreqLow":{"type":"scalar","size":"U08","offset":41,"units":"Hz","scale":1,"transform":0,"min":0,"max":250,"digits":0},"flexFreqHigh":{"type":"scalar","size":"U08","offset":42,"units":"Hz","scale":1,"transform":0,"min":0,"max":250,"digits":0},"boostMaxDuty":{"type":"scalar","size":"U08","offset":43,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"tpsMin":{"type":"scalar","size":"U08","offset":44,"units":"ADC","scale":1,"transform":0,"min":0,"max":255,"digits":0},"tpsMax":{"type":"scalar","size":"U08","offset":45,"units":"ADC","scale":1,"transform":0,"min":0,"max":255,"digits":0},"mapMin":{"type":"scalar","size":"S08","offset":46,"units":"kpa","scale":1,"transform":0,"min":-100,"max":127,"digits":0},"mapMax":{"type":"scalar","size":"U16","offset":47,"units":"kpa","scale":1,"transform":0,"min":0,"max":25500,"digits":0},"fpPrime":{"type":"scalar","size":"U08","offset":49,"units":"s","scale":1,"transform":0,"min":0,"max":255,"digits":0},"stoich":{"type":"scalar","size":"U08","offset":50,"units":":1","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"oddfire2":{"type":"scalar","size":"U16","offset":51,"units":"deg","scale":1,"transform":0,"min":0,"max":720,"digits":0},"oddfire3":{"type":"scalar","size":"U16","offset":53,"units":"deg","scale":1,"transform":0,"min":0,"max":720,"digits":0},"oddfire4":{"type":"scalar","size":"U16","offset":55,"units":"deg","scale":1,"transform":0,"min":0,"max":720,"digits":0},"idleUpPin":{"type":"bits","size":"U08","offset":57,"address":[0,5],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"idleUpPolarity":{"type":"bits","size":"U08","offset":57,"address":[6,6],"values":["Normal","Inverted"]},"idleUpEnabled":{"type":"bits","size":"U08","offset":57,"address":[7,7],"values":["Off","On"]},"idleUpAdder":{"type":"scalar","size":"U08","offset":58,"units":"% / Steps","scale":1,"transform":0,"min":0,"max":250,"digits":0},"aeTaperMin":{"type":"scalar","size":"U08","offset":59,"units":"RPM","scale":100,"transform":0,"min":1000,"max":10000,"digits":0},"aeTaperMax":{"type":"scalar","size":"U08","offset":60,"units":"RPM","scale":100,"transform":0,"min":2000,"max":10000,"digits":0},"iacCLminDuty":{"type":"scalar","size":"U08","offset":61,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"iacCLmaxDuty":{"type":"scalar","size":"U08","offset":62,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"boostMinDuty":{"type":"scalar","size":"U08","offset":63,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"baroMin":{"type":"scalar","size":"S08","offset":64,"units":"kpa","scale":1,"transform":0,"min":-100,"max":127,"digits":0},"baroMax":{"type":"scalar","size":"U16","offset":65,"units":"kpa","scale":1,"transform":0,"min":0,"max":25500,"digits":0},"EMAPMin":{"type":"scalar","size":"S08","offset":67,"units":"kpa","scale":1,"transform":0,"min":-100,"max":127,"digits":0},"EMAPMax":{"type":"scalar","size":"U16","offset":68,"units":"kpa","scale":1,"transform":0,"min":0,"max":25500,"digits":0},"fanWhenOff":{"type":"bits","size":"U08","offset":70,"address":[0,0],"values":["No","Yes"]},"fanWhenCranking":{"type":"bits","size":"U08","offset":70,"address":[1,1],"values":["No","Yes"]},"unused_fan_bits":{"type":"bits","size":"U08","offset":70,"address":[2,6],"values":[]},"incorporateAFR":{"type":"bits","size":"U08","offset":70,"address":[7,7],"values":["No","Yes"]},"asePct":{"type":"array","size":"U08","offset":71,"shape":{"columns":4,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":155,"digits":0},"aseCount":{"type":"array","size":"U08","offset":75,"shape":{"columns":4,"rows":0},"units":"s","scale":1,"transform":0,"min":0,"max":255,"digits":0},"aseBins":{"type":"array","size":"U08","offset":79,"shape":{"columns":4,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"primePulse":{"type":"array","size":"U08","offset":83,"shape":{"columns":4,"rows":0},"units":"ms","scale":0.5,"transform":0,"min":0,"max":127.5,"digits":1},"primeBins":{"type":"array","size":"U08","offset":87,"shape":{"columns":4,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"CTPSPin":{"type":"bits","size":"U08","offset":91,"address":[0,5],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"CTPSPolarity":{"type":"bits","size":"U08","offset":91,"address":[6,6],"values":["Normal","Inverted"]},"CTPSEnabled":{"type":"bits","size":"U08","offset":91,"address":[7,7],"values":["Off","On"]},"idleAdvEnabled":{"type":"bits","size":"U08","offset":92,"address":[0,1],"values":["Off","Added","Switched","INVALID"]},"idleAdvAlgorithm":{"type":"bits","size":"U08","offset":92,"address":[2,2],"values":["TPS","CTPS"]},"idleAdvDelay":{"type":"bits","size":"U08","offset":92,"address":[3,7],"values":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","INVALID","INVALID"]},"idleAdvRPM":{"type":"scalar","size":"U08","offset":93,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"idleAdvTPS":{"type":"scalar","size":"U08","offset":94,"units":"%","scale":1,"transform":0,"min":0,"max":120,"digits":0},"injAngRPM":{"type":"array","size":"U08","offset":95,"shape":{"columns":4,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":10000,"digits":0},"idleTaperTime":{"type":"scalar","size":"U08","offset":99,"units":"S","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"dfcoDelay":{"type":"scalar","size":"U08","offset":100,"units":"S","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"dfcoMinCLT":{"type":"scalar","size":"U08","offset":101,"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"vssMode":{"type":"bits","size":"U08","offset":102,"address":[0,1],"values":["Off","INVALID","Pulses per KM","Pulses per mile"]},"vssPin":{"type":"bits","size":"U08","offset":102,"address":[2,7],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"vssPulsesPerKm":{"type":"scalar","size":"U16","offset":103,"units":"pulses","scale":1,"transform":0,"min":0,"max":25500,"digits":0},"vssSmoothing":{"type":"scalar","size":"U08","offset":105,"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"vssRatio1":{"type":"scalar","size":"U16","offset":106,"units":"km/h per 1000rpm","scale":0.1,"transform":0,"min":0,"max":99.9,"digits":1},"vssRatio2":{"type":"scalar","size":"U16","offset":108,"units":"km/h per 1000rpm","scale":0.1,"transform":0,"min":0,"max":99.9,"digits":1},"vssRatio3":{"type":"scalar","size":"U16","offset":110,"units":"km/h per 1000rpm","scale":0.1,"transform":0,"min":0,"max":99.9,"digits":1},"vssRatio4":{"type":"scalar","size":"U16","offset":112,"units":"km/h per 1000rpm","scale":0.1,"transform":0,"min":0,"max":99.9,"digits":1},"vssRatio5":{"type":"scalar","size":"U16","offset":114,"units":"km/h per 1000rpm","scale":0.1,"transform":0,"min":0,"max":99.9,"digits":1},"vssRatio6":{"type":"scalar","size":"U16","offset":116,"units":"km/h per 1000rpm","scale":0.1,"transform":0,"min":0,"max":99.9,"digits":1},"idleUpOutputEnabled":{"type":"bits","size":"U08","offset":118,"address":[0,0],"values":["Off","On"]},"idleUpOutputInv":{"type":"bits","size":"U08","offset":118,"address":[1,1],"values":["No","Yes"]},"idleUpOutputPin":{"type":"bits","size":"U08","offset":118,"address":[2,7],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"tachoSweepMaxRPM":{"type":"scalar","size":"U08","offset":119,"units":"RPM","scale":100,"transform":0,"min":100,"max":10000,"digits":0},"primingDelay":{"type":"scalar","size":"U08","offset":120,"units":"S","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"iacTPSlimit":{"type":"scalar","size":"U08","offset":121,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"iacRPMlimitHysteresis":{"type":"scalar","size":"U08","offset":122,"units":"RPM","scale":10,"transform":0,"min":0,"max":0,"digits":null},"unused2_95":{"type":"array","size":"U08","offset":121,"shape":{"columns":5,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0}}},{"number":2,"size":0,"data":{"veTable":{"type":"array","size":"U08","offset":0,"shape":{"columns":16,"rows":16},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"rpmBins":{"type":"array","size":"U08","offset":256,"shape":{"columns":16,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"fuelLoadBins":{"type":"array","size":"U08","offset":272,"shape":{"columns":16,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0}}},{"number":3,"size":0,"data":{"advTable1":{"type":"array","size":"U08","offset":0,"shape":{"columns":16,"rows":16},"units":"deg","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"rpmBins2":{"type":"array","size":"U08","offset":256,"shape":{"columns":16,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"mapBins1":{"type":"array","size":"U08","offset":272,"shape":{"columns":16,"rows":0},"units":"{ bitStringValue(algorithmUnits , ignAlgorithm) }","scale":2,"transform":0,"min":0,"max":"{ignLoadMax}","digits":0}}},{"number":4,"size":0,"data":{"TrigAng":{"type":"scalar","size":"S16","offset":0,"units":"Deg","scale":1,"transform":0,"min":-360,"max":360,"digits":0},"FixAng":{"type":"scalar","size":"S08","offset":2,"units":"Deg","scale":1,"transform":0,"min":-64,"max":64,"digits":0},"CrankAng":{"type":"scalar","size":"U08","offset":3,"units":"Deg","scale":1,"transform":0,"min":-10,"max":80,"digits":0},"TrigAngMul":{"type":"scalar","size":"U08","offset":4,"units":"","scale":1,"transform":0,"min":0,"max":88,"digits":0},"TrigEdge":{"type":"bits","size":"U08","offset":5,"address":[0,0],"values":["RISING","FALLING"]},"TrigSpeed":{"type":"bits","size":"U08","offset":5,"address":[1,1],"values":["Crank Speed","Cam Speed"]},"IgInv":{"type":"bits","size":"U08","offset":5,"address":[2,2],"values":["Going Low","Going High"]},"TrigPattern":{"type":"bits","size":"U08","offset":5,"address":[3,7],"values":["Missing Tooth","Basic Distributor","Dual Wheel","GM 7X","4G63 / Miata / 3000GT","GM 24X","Jeep 2000","Audi 135","Honda D17","Miata 99-05","Mazda AU","Non-360 Dual","Nissan 360","Subaru 6/7","Daihatsu +1","Harley EVO","36-2-2-2","36-2-1","DSM 420a","Weber-Marelli","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"TrigEdgeSec":{"type":"bits","size":"U08","offset":6,"address":[0,0],"values":["RISING","FALLING"]},"fuelPumpPin":{"type":"bits","size":"U08","offset":6,"address":[1,6],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"useResync":{"type":"bits","size":"U08","offset":6,"address":[7,7],"values":["No","Yes"]},"sparkDur":{"type":"scalar","size":"U08","offset":7,"units":"ms","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"trigPatternSec":{"type":"bits","size":"U08","offset":8,"address":[0,7],"values":["Single tooth cam","4-1 cam","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"bootloaderCaps":{"type":"scalar","size":"U08","offset":9,"units":"level","scale":1,"transform":0,"min":0,"max":255,"digits":0},"resetControl":{"type":"bits","size":"U08","offset":10,"address":[0,1],"values":["Disabled","Prevent When Running","Prevent Always","Serial Command"]},"resetControlPin":{"type":"bits","size":"U08","offset":10,"address":[2,7],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"SkipCycles":{"type":"scalar","size":"U08","offset":11,"units":"cycles","scale":1,"transform":0,"min":0,"max":255,"digits":0},"boostType":{"type":"bits","size":"U08","offset":12,"address":[0,0],"values":["Open Loop","Closed Loop"]},"useDwellLim":{"type":"bits","size":"U08","offset":12,"address":[1,1],"values":["Off","On"]},"sparkMode":{"type":"bits","size":"U08","offset":12,"address":[2,4],"values":["Wasted Spark","Single Channel","Wasted COP","Sequential","Rotary","INVALID","INVALID","INVALID"]},"TrigFilter":{"type":"bits","size":"U08","offset":12,"address":[5,6],"values":["Off","Weak","Medium","Aggressive"]},"ignCranklock":{"type":"bits","size":"U08","offset":12,"address":[7,7],"values":["Off","On"]},"dwellcrank":{"type":"scalar","size":"U08","offset":13,"units":"ms","scale":0.1,"transform":0,"min":0,"max":25,"digits":1},"dwellrun":{"type":"scalar","size":"U08","offset":14,"units":"ms","scale":0.1,"transform":0,"min":0,"max":8,"digits":1},"numTeeth":{"type":"scalar","size":"U08","offset":15,"units":"teeth","scale":1,"transform":0,"min":0,"max":255,"digits":0},"missingTeeth":{"type":"scalar","size":"U08","offset":16,"units":"teeth","scale":1,"transform":0,"min":0,"max":255,"digits":0},"crankRPM":{"type":"scalar","size":"U08","offset":17,"units":"rpm","scale":10,"transform":0,"min":100,"max":1000,"digits":0},"tpsflood":{"type":"scalar","size":"U08","offset":18,"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"SoftRevLim":{"type":"scalar","size":"U08","offset":19,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"SoftLimRetard":{"type":"scalar","size":"U08","offset":20,"units":"deg","scale":1,"transform":0,"min":0,"max":80,"digits":0},"SoftLimMax":{"type":"scalar","size":"U08","offset":21,"units":"s","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"HardRevLim":{"type":"scalar","size":"U08","offset":22,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"taeBins":{"type":"array","size":"U08","offset":23,"shape":{"columns":4,"rows":0},"units":"%/s","scale":10,"transform":0,"min":0,"max":2550,"digits":0},"taeRates":{"type":"array","size":"U08","offset":27,"shape":{"columns":4,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"wueBins":{"type":"array","size":"U08","offset":31,"shape":{"columns":10,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":102,"digits":0},"dwellLim":{"type":"scalar","size":"U08","offset":41,"units":"ms","scale":1,"transform":0,"min":0,"max":32,"digits":0},"dwellRates":{"type":"array","size":"U08","offset":42,"shape":{"columns":6,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"iatRetBins":{"type":"array","size":"U08","offset":48,"shape":{"columns":6,"rows":0},"units":"C","scale":1,"transform":0,"min":0,"max":255,"digits":0},"iatRetRates":{"type":"array","size":"U08","offset":54,"shape":{"columns":6,"rows":0},"units":"deg","scale":1,"transform":0,"min":0,"max":255,"digits":0},"dfcoRPM":{"type":"scalar","size":"U08","offset":60,"units":"RPM","scale":10,"transform":0,"min":100,"max":2550,"digits":0},"dfcoHyster":{"type":"scalar","size":"U08","offset":61,"units":"RPM","scale":1,"transform":0,"min":100,"max":255,"digits":0},"dfcoTPSThresh":{"type":"scalar","size":"U08","offset":62,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"ignBypassEnable":{"type":"bits","size":"U08","offset":63,"address":[0,0],"values":["Off","On"]},"ignBypassPin":{"type":"bits","size":"U08","offset":63,"address":[1,6],"values":["INVALID","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"ignBypassHiLo":{"type":"bits","size":"U08","offset":63,"address":[7,7],"values":["LOW","HIGH"]},"ADCFILTER_TPS":{"type":"scalar","size":"U08","offset":64,"units":"%","scale":1,"transform":0,"min":0,"max":240,"digits":0},"ADCFILTER_CLT":{"type":"scalar","size":"U08","offset":65,"units":"%","scale":1,"transform":0,"min":0,"max":240,"digits":0},"ADCFILTER_IAT":{"type":"scalar","size":"U08","offset":66,"units":"%","scale":1,"transform":0,"min":0,"max":240,"digits":0},"ADCFILTER_O2":{"type":"scalar","size":"U08","offset":67,"units":"%","scale":1,"transform":0,"min":0,"max":240,"digits":0},"ADCFILTER_BAT":{"type":"scalar","size":"U08","offset":68,"units":"%","scale":1,"transform":0,"min":0,"max":240,"digits":0},"ADCFILTER_MAP":{"type":"scalar","size":"U08","offset":69,"units":"%","scale":1,"transform":0,"min":0,"max":240,"digits":0},"ADCFILTER_BARO":{"type":"scalar","size":"U08","offset":70,"units":"%","scale":1,"transform":0,"min":0,"max":240,"digits":0},"cltAdvBins":{"type":"array","size":"U08","offset":71,"shape":{"columns":6,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":102,"digits":0},"cltAdvValues":{"type":"array","size":"S08","offset":77,"shape":{"columns":6,"rows":0},"units":"deg","scale":1,"transform":-15,"min":-15,"max":15,"digits":0},"maeBins":{"type":"array","size":"U08","offset":83,"shape":{"columns":4,"rows":0},"units":"kpa/s","scale":10,"transform":0,"min":0,"max":2550,"digits":0},"maeRates":{"type":"array","size":"U08","offset":87,"shape":{"columns":4,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"batVoltCorrect":{"type":"scalar","size":"S08","offset":91,"units":"v","scale":0.1,"transform":0,"min":-2,"max":2,"digits":1},"baroFuelBins":{"type":"array","size":"U08","offset":92,"shape":{"columns":8,"rows":0},"units":"kPa","scale":1,"transform":0,"min":70,"max":120,"digits":0},"baroFuelValues":{"type":"array","size":"U08","offset":100,"shape":{"columns":8,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"idleAdvBins":{"type":"array","size":"U08","offset":108,"shape":{"columns":6,"rows":0},"units":"RPM","scale":10,"transform":-50,"min":-500,"max":500,"digits":0},"idleAdvValues":{"type":"array","size":"U08","offset":114,"shape":{"columns":6,"rows":0},"units":"deg","scale":1,"transform":-15,"min":-15,"max":50,"digits":0},"engineProtectMaxRPM":{"type":"scalar","size":"U08","offset":120,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"unused4_120":{"type":"array","size":"U08","offset":121,"shape":{"columns":7,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0}}},{"number":5,"size":0,"data":{"afrTable":{"type":"array","size":"U08","offset":0,"shape":{"columns":16,"rows":16},"units":"AFR","scale":0.1,"transform":0,"min":7,"max":25.5,"digits":1},"rpmBinsAFR":{"type":"array","size":"U08","offset":256,"shape":{"columns":16,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"loadBinsAFR":{"type":"array","size":"U08","offset":272,"shape":{"columns":16,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0}}},{"number":6,"size":0,"data":{"egoAlgorithm":{"type":"bits","size":"U08","offset":0,"address":[0,1],"values":["Simple","INVALID","PID","No correction"]},"egoType":{"type":"bits","size":"U08","offset":0,"address":[2,3],"values":["Disabled","Narrow Band","Wide Band","INVALID"]},"boostEnabled":{"type":"bits","size":"U08","offset":0,"address":[4,4],"values":["Off","On"]},"vvtEnabled":{"type":"bits","size":"U08","offset":0,"address":[5,5],"values":["Off","On"]},"engineProtectType":{"type":"bits","size":"U08","offset":0,"address":[6,7],"values":["Off","Spark Only","Fuel Only","Both"]},"egoKP":{"type":"scalar","size":"U08","offset":1,"units":"%","scale":1,"transform":0,"min":0,"max":200,"digits":0},"egoKI":{"type":"scalar","size":"U08","offset":2,"units":"%","scale":1,"transform":0,"min":0,"max":200,"digits":0},"egoKD":{"type":"scalar","size":"U08","offset":3,"units":"%","scale":1,"transform":0,"min":0,"max":200,"digits":0},"egoTemp":{"type":"scalar","size":"U08","offset":4,"units":"C","scale":1,"transform":-40,"min":-40,"max":102,"digits":0},"egoCount":{"type":"scalar","size":"U08","offset":5,"units":"","scale":4,"transform":0,"min":4,"max":255,"digits":0},"vvtMode":{"type":"bits","size":"U08","offset":6,"address":[0,1],"values":["On/Off","Open Loop","Closed loop","INVALID"]},"vvtLoadSource":{"type":"bits","size":"U08","offset":6,"address":[2,3],"values":["MAP","TPS","INVALID","INVALID"]},"vvtPWMdir":{"type":"bits","size":"U08","offset":6,"address":[4,4],"values":["Advance","Retard"]},"vvtCLUseHold":{"type":"bits","size":"U08","offset":6,"address":[5,5],"values":["No","Yes"]},"vvtCLAlterFuelTiming":{"type":"bits","size":"U08","offset":6,"address":[6,6],"values":["No","Yes"]},"boostCutEnabled":{"type":"bits","size":"U08","offset":6,"address":[7,7],"values":["Off","On"]},"egoLimit":{"type":"scalar","size":"U08","offset":7,"units":"","scale":1,"transform":0,"min":0,"max":16,"digits":0},"ego_min":{"type":"scalar","size":"U08","offset":8,"units":"AFR","scale":0.1,"transform":0,"min":7,"max":25,"digits":1},"ego_max":{"type":"scalar","size":"U08","offset":9,"units":"AFR","scale":0.1,"transform":0,"min":7,"max":25,"digits":1},"ego_sdelay":{"type":"scalar","size":"U08","offset":10,"units":"sec","scale":1,"transform":0,"min":0,"max":120,"digits":0},"egoRPM":{"type":"scalar","size":"U08","offset":11,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"egoTPSMax":{"type":"scalar","size":"U08","offset":12,"units":"%","scale":1,"transform":0,"min":0,"max":120,"digits":0},"vvt1Pin":{"type":"bits","size":"U08","offset":13,"address":[0,5],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"useExtBaro":{"type":"bits","size":"U08","offset":13,"address":[6,6],"values":["No","Yes"]},"boostMode":{"type":"bits","size":"U08","offset":13,"address":[7,7],"values":["Simple","Full"]},"boostPin":{"type":"bits","size":"U08","offset":14,"address":[0,5],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"VVTasOnOff":{"type":"bits","size":"U08","offset":14,"address":[6,6],"values":["No","Yes"]},"useEMAP":{"type":"bits","size":"U08","offset":14,"address":[7,7],"values":["No","Yes"]},"brvBins":{"type":"array","size":"U08","offset":15,"shape":{"columns":6,"rows":0},"units":"V","scale":0.1,"transform":0,"min":6,"max":24,"digits":1},"injBatRates":{"type":"array","size":"U08","offset":21,"shape":{"columns":6,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"airDenBins":{"type":"array","size":"U08","offset":27,"shape":{"columns":9,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"airDenRates":{"type":"array","size":"U08","offset":36,"shape":{"columns":9,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"boostFreq":{"type":"scalar","size":"U08","offset":45,"units":"Hz","scale":2,"transform":0,"min":10,"max":511,"digits":0},"vvtFreq":{"type":"scalar","size":"U08","offset":46,"units":"Hz","scale":2,"transform":0,"min":10,"max":511,"digits":0},"idleFreq":{"type":"scalar","size":"U08","offset":47,"units":"Hz","scale":2,"transform":0,"min":10,"max":511,"digits":0},"launchPin":{"type":"bits","size":"U08","offset":48,"address":[0,5],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"launchEnable":{"type":"bits","size":"U08","offset":48,"address":[6,6],"values":["No","Yes"]},"launchHiLo":{"type":"bits","size":"U08","offset":48,"address":[7,7],"values":["LOW","HIGH"]},"lnchSoftLim":{"type":"scalar","size":"U08","offset":49,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"lnchRetard":{"type":"scalar","size":"S08","offset":50,"units":"deg","scale":1,"transform":0,"min":-30,"max":40,"digits":0},"lnchHardLim":{"type":"scalar","size":"U08","offset":51,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"lnchFuelAdd":{"type":"scalar","size":"U08","offset":52,"units":"%","scale":1,"transform":0,"min":0,"max":80,"digits":0},"idleKP":{"type":"scalar","size":"U08","offset":53,"units":"%","scale":0.03125,"transform":0,"min":0,"max":7.96,"digits":2},"idleKI":{"type":"scalar","size":"U08","offset":54,"units":"%","scale":0.03125,"transform":0,"min":0,"max":7.96,"digits":2},"idleKD":{"type":"scalar","size":"U08","offset":55,"units":"%","scale":0.00781,"transform":0,"min":0,"max":1.99,"digits":3},"boostLimit":{"type":"scalar","size":"U08","offset":56,"units":"kPa","scale":2,"transform":0,"min":0,"max":511,"digits":0},"boostKP":{"type":"scalar","size":"U08","offset":57,"units":"%","scale":1,"transform":0,"min":0,"max":200,"digits":0},"boostKI":{"type":"scalar","size":"U08","offset":58,"units":"%","scale":1,"transform":0,"min":0,"max":200,"digits":0},"boostKD":{"type":"scalar","size":"U08","offset":59,"units":"%","scale":1,"transform":0,"min":0,"max":200,"digits":0},"lnchPullRes":{"type":"bits","size":"U08","offset":60,"address":[0,1],"values":["Float","Pullup","INVALID","INVALID"]},"fuelTrimEnabled":{"type":"bits","size":"U08","offset":60,"address":[2,2],"values":["No","Yes"]},"flatSEnable":{"type":"bits","size":"U08","offset":60,"address":[3,3],"values":["No","Yes"]},"baroPin":{"type":"bits","size":"U08","offset":60,"address":[4,7],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15"]},"flatSSoftWin":{"type":"scalar","size":"U08","offset":61,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"flatSRetard":{"type":"scalar","size":"U08","offset":62,"units":"deg","scale":1,"transform":0,"min":0,"max":80,"digits":0},"flatSArm":{"type":"scalar","size":"U08","offset":63,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"iacCLValues":{"type":"array","size":"U08","offset":64,"shape":{"columns":10,"rows":0},"units":"RPM","scale":10,"transform":0,"min":0,"max":2550,"digits":0},"iacOLStepVal":{"type":"array","size":"U08","offset":74,"shape":{"columns":10,"rows":0},"units":"Steps","scale":3,"transform":0,"min":0,"max":765,"digits":0},"iacOLPWMVal":{"type":"array","size":"U08","offset":84,"shape":{"columns":10,"rows":0},"units":"Duty %","scale":1,"transform":0,"min":0,"max":100,"digits":0},"iacBins":{"type":"array","size":"U08","offset":94,"shape":{"columns":10,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"iacCrankSteps":{"type":"array","size":"U08","offset":104,"shape":{"columns":4,"rows":0},"units":"Steps","scale":3,"transform":0,"min":0,"max":765,"digits":0},"iacCrankDuty":{"type":"array","size":"U08","offset":108,"shape":{"columns":4,"rows":0},"units":"Duty %","scale":1,"transform":0,"min":0,"max":100,"digits":0},"iacCrankBins":{"type":"array","size":"U08","offset":112,"shape":{"columns":4,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"iacAlgorithm":{"type":"bits","size":"U08","offset":116,"address":[0,2],"values":["None","On/Off","PWM Open loop","PWM Closed loop","Stepper Open Loop","Stepper Closed Loop","PWM Closed+Open loop","INVALID"]},"iacStepTime":{"type":"bits","size":"U08","offset":116,"address":[3,5],"values":["INVALID","1","2","3","4","5","6","INVALID"]},"iacChannels":{"type":"bits","size":"U08","offset":116,"address":[6,6],"values":["1","2"]},"iacPWMdir":{"type":"bits","size":"U08","offset":116,"address":[7,7],"values":["Normal","Reverse"]},"iacFastTemp":{"type":"scalar","size":"U08","offset":117,"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"iacStepHome":{"type":"scalar","size":"U08","offset":118,"units":"Steps","scale":3,"transform":0,"min":0,"max":765,"digits":0},"iacStepHyster":{"type":"scalar","size":"U08","offset":119,"units":"Steps","scale":1,"transform":1,"min":1,"max":10,"digits":0},"fanInv":{"type":"bits","size":"U08","offset":120,"address":[0,0],"values":["No","Yes"]},"fanEnable":{"type":"bits","size":"U08","offset":120,"address":[1,1],"values":["Off","On/Off"]},"fanPin":{"type":"bits","size":"U08","offset":120,"address":[2,7],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"fanSP":{"type":"scalar","size":"U08","offset":121,"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"fanHyster":{"type":"scalar","size":"U08","offset":122,"units":"C","scale":1,"transform":0,"min":0,"max":40,"digits":0},"fanFreq":{"type":"scalar","size":"U08","offset":123,"units":"Hz","scale":2,"transform":0,"min":10,"max":511,"digits":0},"fanPWMBins":{"type":"array","size":"U08","offset":124,"shape":{"columns":4,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0}}},{"number":7,"size":0,"data":{"boostTable":{"type":"array","size":"U08","offset":0,"shape":{"columns":8,"rows":8},"units":"{ bitStringValue( boostTableLabels, boostType ) }","scale":2,"transform":0,"min":0,"max":"{boostTableLimit}","digits":0},"rpmBinsBoost":{"type":"array","size":"U08","offset":64,"shape":{"columns":8,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"tpsBinsBoost":{"type":"array","size":"U08","offset":72,"shape":{"columns":8,"rows":0},"units":"TPS","scale":1,"transform":0,"min":0,"max":255,"digits":0},"vvtTable":{"type":"array","size":"U08","offset":80,"shape":{"columns":8,"rows":8},"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"rpmBinsVVT":{"type":"array","size":"U08","offset":144,"shape":{"columns":8,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"loadBinsVVT":{"type":"array","size":"U08","offset":152,"shape":{"columns":8,"rows":0},"units":"{ bitStringValue(algorithmUnits , vvtLoadSource) }","scale":1,"transform":0,"min":0,"max":255,"digits":0},"stagingTable":{"type":"array","size":"U08","offset":160,"shape":{"columns":8,"rows":8},"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"rpmBinsStaging":{"type":"array","size":"U08","offset":224,"shape":{"columns":8,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"loadBinsStaging":{"type":"array","size":"U08","offset":232,"shape":{"columns":8,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0}}},{"number":8,"size":0,"data":{"fuelTrim1Table":{"type":"array","size":"U08","offset":0,"shape":{"columns":6,"rows":6},"units":"%","scale":1,"transform":-128,"min":-50,"max":50,"digits":0},"fuelTrim1rpmBins":{"type":"array","size":"U08","offset":36,"shape":{"columns":6,"rows":0},"units":"RPM","scale":100,"transform":0,"min":0,"max":25500,"digits":0},"fuelTrim1loadBins":{"type":"array","size":"U08","offset":42,"shape":{"columns":6,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0},"fuelTrim2Table":{"type":"array","size":"U08","offset":48,"shape":{"columns":6,"rows":6},"units":"%","scale":1,"transform":-128,"min":-50,"max":50,"digits":0},"fuelTrim2rpmBins":{"type":"array","size":"U08","offset":84,"shape":{"columns":6,"rows":0},"units":"RPM","scale":100,"transform":0,"min":0,"max":25500,"digits":0},"fuelTrim2loadBins":{"type":"array","size":"U08","offset":90,"shape":{"columns":6,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0},"fuelTrim3Table":{"type":"array","size":"U08","offset":96,"shape":{"columns":6,"rows":6},"units":"%","scale":1,"transform":-128,"min":-50,"max":50,"digits":0},"fuelTrim3rpmBins":{"type":"array","size":"U08","offset":132,"shape":{"columns":6,"rows":0},"units":"RPM","scale":100,"transform":0,"min":0,"max":25500,"digits":0},"fuelTrim3loadBins":{"type":"array","size":"U08","offset":138,"shape":{"columns":6,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0},"fuelTrim4Table":{"type":"array","size":"U08","offset":144,"shape":{"columns":6,"rows":6},"units":"%","scale":1,"transform":-128,"min":-50,"max":50,"digits":0},"fuelTrim4rpmBins":{"type":"array","size":"U08","offset":180,"shape":{"columns":6,"rows":0},"units":"RPM","scale":100,"transform":0,"min":0,"max":25500,"digits":0},"fuelTrim4loadBins":{"type":"array","size":"U08","offset":186,"shape":{"columns":6,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0}}},{"number":9,"size":0,"data":{"enable_secondarySerial":{"type":"bits","size":"U08","offset":0,"address":[0,0],"values":["Disable","Enable"]},"intcan_available":{"type":"bits","size":"U08","offset":0,"address":[1,1],"values":["Disable","Enable"]},"enable_intcan":{"type":"bits","size":"U08","offset":0,"address":[2,2],"values":["Disable","Enable"]},"caninput_sel0a":{"type":"bits","size":"U08","offset":1,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel0b":{"type":"bits","size":"U08","offset":1,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel0extsourcea":{"type":"bits","size":"U08","offset":1,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel0extsourceb":{"type":"bits","size":"U08","offset":1,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel0extsourcec":{"type":"bits","size":"U08","offset":1,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel1a":{"type":"bits","size":"U08","offset":2,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel1b":{"type":"bits","size":"U08","offset":2,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel1extsourcea":{"type":"bits","size":"U08","offset":2,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel1extsourceb":{"type":"bits","size":"U08","offset":2,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel1extsourcec":{"type":"bits","size":"U08","offset":2,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel2a":{"type":"bits","size":"U08","offset":3,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel2b":{"type":"bits","size":"U08","offset":3,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel2extsourcea":{"type":"bits","size":"U08","offset":3,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel2extsourceb":{"type":"bits","size":"U08","offset":3,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel2extsourcec":{"type":"bits","size":"U08","offset":3,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel3a":{"type":"bits","size":"U08","offset":4,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel3b":{"type":"bits","size":"U08","offset":4,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel3extsourcea":{"type":"bits","size":"U08","offset":4,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel3extsourceb":{"type":"bits","size":"U08","offset":4,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel3extsourcec":{"type":"bits","size":"U08","offset":4,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel4a":{"type":"bits","size":"U08","offset":5,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel4b":{"type":"bits","size":"U08","offset":5,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel4extsourcea":{"type":"bits","size":"U08","offset":5,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel4extsourceb":{"type":"bits","size":"U08","offset":5,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel4extsourcec":{"type":"bits","size":"U08","offset":5,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel5a":{"type":"bits","size":"U08","offset":6,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel5b":{"type":"bits","size":"U08","offset":6,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel5extsourcea":{"type":"bits","size":"U08","offset":6,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel5extsourceb":{"type":"bits","size":"U08","offset":6,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel5extsourcec":{"type":"bits","size":"U08","offset":6,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel6a":{"type":"bits","size":"U08","offset":7,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel6b":{"type":"bits","size":"U08","offset":7,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel6extsourcea":{"type":"bits","size":"U08","offset":7,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel6extsourceb":{"type":"bits","size":"U08","offset":7,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel6extsourcec":{"type":"bits","size":"U08","offset":7,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel7a":{"type":"bits","size":"U08","offset":8,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel7b":{"type":"bits","size":"U08","offset":8,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel7extsourcea":{"type":"bits","size":"U08","offset":8,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel7extsourceb":{"type":"bits","size":"U08","offset":8,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel7extsourcec":{"type":"bits","size":"U08","offset":8,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel8a":{"type":"bits","size":"U08","offset":9,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel8b":{"type":"bits","size":"U08","offset":9,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel8extsourcea":{"type":"bits","size":"U08","offset":9,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel8extsourceb":{"type":"bits","size":"U08","offset":9,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel8extsourcec":{"type":"bits","size":"U08","offset":9,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel9a":{"type":"bits","size":"U08","offset":10,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel9b":{"type":"bits","size":"U08","offset":10,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel9extsourcea":{"type":"bits","size":"U08","offset":10,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel9extsourceb":{"type":"bits","size":"U08","offset":10,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel9extsourcec":{"type":"bits","size":"U08","offset":10,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel10a":{"type":"bits","size":"U08","offset":11,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel10b":{"type":"bits","size":"U08","offset":11,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel10extsourcea":{"type":"bits","size":"U08","offset":11,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel10extsourceb":{"type":"bits","size":"U08","offset":11,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel10extsourcec":{"type":"bits","size":"U08","offset":11,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel11a":{"type":"bits","size":"U08","offset":12,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel11b":{"type":"bits","size":"U08","offset":12,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel11extsourcea":{"type":"bits","size":"U08","offset":12,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel11extsourceb":{"type":"bits","size":"U08","offset":12,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel11extsourcec":{"type":"bits","size":"U08","offset":12,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel12a":{"type":"bits","size":"U08","offset":13,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel12b":{"type":"bits","size":"U08","offset":13,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel12extsourcea":{"type":"bits","size":"U08","offset":13,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel12extsourceb":{"type":"bits","size":"U08","offset":13,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel12extsourcec":{"type":"bits","size":"U08","offset":13,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel13a":{"type":"bits","size":"U08","offset":14,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel13b":{"type":"bits","size":"U08","offset":14,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel13extsourcea":{"type":"bits","size":"U08","offset":14,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel13extsourceb":{"type":"bits","size":"U08","offset":14,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel13extsourcec":{"type":"bits","size":"U08","offset":14,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel14a":{"type":"bits","size":"U08","offset":15,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel14b":{"type":"bits","size":"U08","offset":15,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel14extsourcea":{"type":"bits","size":"U08","offset":15,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel14extsourceb":{"type":"bits","size":"U08","offset":15,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel14extsourcec":{"type":"bits","size":"U08","offset":15,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel15a":{"type":"bits","size":"U08","offset":16,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel15b":{"type":"bits","size":"U08","offset":16,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel15extsourcea":{"type":"bits","size":"U08","offset":16,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel15extsourceb":{"type":"bits","size":"U08","offset":16,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel15extsourcec":{"type":"bits","size":"U08","offset":16,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_source_can_address0":{"type":"bits","size":"U16","offset":17,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address1":{"type":"bits","size":"U16","offset":19,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address2":{"type":"bits","size":"U16","offset":21,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address3":{"type":"bits","size":"U16","offset":23,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address4":{"type":"bits","size":"U16","offset":25,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address5":{"type":"bits","size":"U16","offset":27,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address6":{"type":"bits","size":"U16","offset":29,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address7":{"type":"bits","size":"U16","offset":31,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address8":{"type":"bits","size":"U16","offset":33,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address9":{"type":"bits","size":"U16","offset":35,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address10":{"type":"bits","size":"U16","offset":37,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address11":{"type":"bits","size":"U16","offset":39,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address12":{"type":"bits","size":"U16","offset":41,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address13":{"type":"bits","size":"U16","offset":43,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address14":{"type":"bits","size":"U16","offset":45,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address15":{"type":"bits","size":"U16","offset":47,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_start_byte0":{"type":"bits","size":"U08","offset":49,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte1":{"type":"bits","size":"U08","offset":50,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte2":{"type":"bits","size":"U08","offset":51,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte3":{"type":"bits","size":"U08","offset":52,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte4":{"type":"bits","size":"U08","offset":53,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte5":{"type":"bits","size":"U08","offset":54,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte6":{"type":"bits","size":"U08","offset":55,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte7":{"type":"bits","size":"U08","offset":56,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte8":{"type":"bits","size":"U08","offset":57,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte9":{"type":"bits","size":"U08","offset":58,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte10":{"type":"bits","size":"U08","offset":59,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte11":{"type":"bits","size":"U08","offset":60,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte12":{"type":"bits","size":"U08","offset":61,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte13":{"type":"bits","size":"U08","offset":62,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte14":{"type":"bits","size":"U08","offset":63,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte15":{"type":"bits","size":"U08","offset":64,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_num_bytes0":{"type":"bits","size":"U16","offset":65,"address":[0,0],"values":["1","2"]},"caninput_source_num_bytes1":{"type":"bits","size":"U16","offset":65,"address":[1,1],"values":["1","2"]},"caninput_source_num_bytes2":{"type":"bits","size":"U16","offset":65,"address":[2,2],"values":["1","2"]},"caninput_source_num_bytes3":{"type":"bits","size":"U16","offset":65,"address":[3,3],"values":["1","2"]},"caninput_source_num_bytes4":{"type":"bits","size":"U16","offset":65,"address":[4,4],"values":["1","2"]},"caninput_source_num_bytes5":{"type":"bits","size":"U16","offset":65,"address":[5,5],"values":["1","2"]},"caninput_source_num_bytes6":{"type":"bits","size":"U16","offset":65,"address":[6,6],"values":["1","2"]},"caninput_source_num_bytes7":{"type":"bits","size":"U16","offset":65,"address":[7,7],"values":["1","2"]},"caninput_source_num_bytes8":{"type":"bits","size":"U16","offset":65,"address":[8,8],"values":["1","2"]},"caninput_source_num_bytes9":{"type":"bits","size":"U16","offset":65,"address":[9,9],"values":["1","2"]},"caninput_source_num_bytes10":{"type":"bits","size":"U16","offset":65,"address":[10,10],"values":["1","2"]},"caninput_source_num_bytes11":{"type":"bits","size":"U16","offset":65,"address":[11,11],"values":["1","2"]},"caninput_source_num_bytes12":{"type":"bits","size":"U16","offset":65,"address":[12,12],"values":["1","2"]},"caninput_source_num_bytes13":{"type":"bits","size":"U16","offset":65,"address":[13,13],"values":["1","2"]},"caninput_source_num_bytes14":{"type":"bits","size":"U16","offset":65,"address":[14,14],"values":["1","2"]},"caninput_source_num_bytes15":{"type":"bits","size":"U16","offset":65,"address":[15,15],"values":["1","2"]},"unused10_67":{"type":"scalar","size":"U08","offset":67,"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"unused10_68":{"type":"scalar","size":"U08","offset":68,"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"enable_intcandata_out":{"type":"bits","size":"U08","offset":69,"address":[0,0],"values":["Off","On"]},"canoutput_sel0":{"type":"bits","size":"U08","offset":70,"address":[0,0],"values":["Off","On"]},"canoutput_sel1":{"type":"bits","size":"U08","offset":71,"address":[0,0],"values":["Off","On"]},"canoutput_sel2":{"type":"bits","size":"U08","offset":72,"address":[0,0],"values":["Off","On"]},"canoutput_sel3":{"type":"bits","size":"U08","offset":73,"address":[0,0],"values":["Off","On"]},"canoutput_sel4":{"type":"bits","size":"U08","offset":74,"address":[0,0],"values":["Off","On"]},"canoutput_sel5":{"type":"bits","size":"U08","offset":75,"address":[0,0],"values":["Off","On"]},"canoutput_sel6":{"type":"bits","size":"U08","offset":76,"address":[0,0],"values":["Off","On"]},"canoutput_sel7":{"type":"bits","size":"U08","offset":77,"address":[0,0],"values":["Off","On"]},"canoutput_param_group":{"type":"array","size":"U16","offset":78,"shape":{"columns":8,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":65535,"digits":0},"canoutput_param_start_byte0":{"type":"bits","size":"U08","offset":94,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"canoutput_param_start_byte1":{"type":"bits","size":"U08","offset":95,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"canoutput_param_start_byte2":{"type":"bits","size":"U08","offset":96,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"canoutput_param_start_byte3":{"type":"bits","size":"U08","offset":97,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"canoutput_param_start_byte4":{"type":"bits","size":"U08","offset":98,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"canoutput_param_start_byte5":{"type":"bits","size":"U08","offset":99,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"canoutput_param_start_byte6":{"type":"bits","size":"U08","offset":100,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"canoutput_param_start_byte7":{"type":"bits","size":"U08","offset":101,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"canoutput_param_num_bytes0":{"type":"bits","size":"U08","offset":102,"address":[0,1],"values":["INVALID","1","2","INVALID"]},"canoutput_param_num_bytes1":{"type":"bits","size":"U08","offset":103,"address":[0,1],"values":["INVALID","1","2","INVALID"]},"canoutput_param_num_bytes2":{"type":"bits","size":"U08","offset":104,"address":[0,1],"values":["INVALID","1","2","INVALID"]},"canoutput_param_num_bytes3":{"type":"bits","size":"U08","offset":105,"address":[0,1],"values":["INVALID","1","2","INVALID"]},"canoutput_param_num_bytes4":{"type":"bits","size":"U08","offset":106,"address":[0,1],"values":["INVALID","1","2","INVALID"]},"canoutput_param_num_bytes5":{"type":"bits","size":"U08","offset":107,"address":[0,1],"values":["INVALID","1","2","INVALID"]},"canoutput_param_num_bytes6":{"type":"bits","size":"U08","offset":108,"address":[0,1],"values":["INVALID","1","2","INVALID"]},"canoutput_param_num_bytes7":{"type":"bits","size":"U08","offset":109,"address":[0,1],"values":["INVALID","1","2","INVALID"]},"unused10_110":{"type":"scalar","size":"U08","offset":110,"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"unused10_111":{"type":"scalar","size":"U08","offset":111,"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"unused10_112":{"type":"scalar","size":"U08","offset":112,"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"unused10_113":{"type":"scalar","size":"U08","offset":113,"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"speeduino_tsCanId":{"type":"bits","size":"U08","offset":114,"address":[0,3],"values":["CAN ID 0","CAN ID 1","CAN ID 2","CAN ID 3","CAN ID 4","CAN ID 5","CAN ID 6","CAN ID 7","CAN ID 8","CAN ID 9","CAN ID 10","CAN ID 11","CAN ID 12","CAN ID 13","CAN ID 14","INVALID"]},"true_address":{"type":"bits","size":"U16","offset":115,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"realtime_base_address":{"type":"bits","size":"U16","offset":117,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"obd_address":{"type":"bits","size":"U16","offset":119,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin0pina":{"type":"bits","size":"U08","offset":121,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin1pina":{"type":"bits","size":"U08","offset":122,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin2pina":{"type":"bits","size":"U08","offset":123,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin3pina":{"type":"bits","size":"U08","offset":124,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin4pina":{"type":"bits","size":"U08","offset":125,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin5pina":{"type":"bits","size":"U08","offset":126,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin6pina":{"type":"bits","size":"U08","offset":127,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin7pina":{"type":"bits","size":"U08","offset":128,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin8pina":{"type":"bits","size":"U08","offset":129,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin9pina":{"type":"bits","size":"U08","offset":130,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin10pina":{"type":"bits","size":"U08","offset":131,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin11pina":{"type":"bits","size":"U08","offset":132,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin12pina":{"type":"bits","size":"U08","offset":133,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin13pina":{"type":"bits","size":"U08","offset":134,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin14pina":{"type":"bits","size":"U08","offset":135,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin15pina":{"type":"bits","size":"U08","offset":136,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin0pinb":{"type":"bits","size":"U08","offset":137,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin1pinb":{"type":"bits","size":"U08","offset":138,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin2pinb":{"type":"bits","size":"U08","offset":139,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin3pinb":{"type":"bits","size":"U08","offset":140,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin4pinb":{"type":"bits","size":"U08","offset":141,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin5pinb":{"type":"bits","size":"U08","offset":142,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin6pinb":{"type":"bits","size":"U08","offset":143,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin7pinb":{"type":"bits","size":"U08","offset":144,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin8pinb":{"type":"bits","size":"U08","offset":145,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin9pinb":{"type":"bits","size":"U08","offset":146,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin10pinb":{"type":"bits","size":"U08","offset":147,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin11pinb":{"type":"bits","size":"U08","offset":148,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin12pinb":{"type":"bits","size":"U08","offset":149,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin13pinb":{"type":"bits","size":"U08","offset":150,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin14pinb":{"type":"bits","size":"U08","offset":151,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin15pinb":{"type":"bits","size":"U08","offset":152,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"iacStepperInv":{"type":"bits","size":"U08","offset":153,"address":[0,0],"values":["No","Yes"]},"iacCoolTime":{"type":"bits","size":"U08","offset":153,"address":[1,3],"values":["0","1","2","3","4","5","6","INVALID"]},"blankfield":{"type":"bits","size":"U08","offset":153,"address":[4,4],"values":[]},"unused10_153":{"type":"bits","size":"U08","offset":153,"address":[5,7],"values":[]},"iacMaxSteps":{"type":"scalar","size":"U08","offset":154,"units":"Steps","scale":3,"transform":0,"min":0,"max":"{iacStepHome-3}","digits":0},"unused10_154":{"type":"array","size":"U08","offset":155,"shape":{"columns":37,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0}}},{"number":10,"size":0,"data":{"crankingEnrichBins":{"type":"array","size":"U08","offset":0,"shape":{"columns":4,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"crankingEnrichValues":{"type":"array","size":"U08","offset":4,"shape":{"columns":4,"rows":0},"units":"%","scale":5,"transform":0,"min":0,"max":1275,"digits":0},"rotaryType":{"type":"bits","size":"U08","offset":8,"address":[0,1],"values":["FC","FD","RX8","INVALID"]},"stagingEnabled":{"type":"bits","size":"U08","offset":8,"address":[2,2],"values":["Off","On"]},"stagingMode":{"type":"bits","size":"U08","offset":8,"address":[3,3],"values":["Table","Automatic"]},"EMAPPin":{"type":"bits","size":"U08","offset":8,"address":[4,7],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15"]},"rotarySplitValues":{"type":"array","size":"U08","offset":9,"shape":{"columns":8,"rows":0},"units":"degrees","scale":1,"transform":0,"min":0,"max":40,"digits":0},"rotarySplitBins":{"type":"array","size":"U08","offset":17,"shape":{"columns":8,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0},"boostSens":{"type":"scalar","size":"U16","offset":25,"units":"","scale":1,"transform":0,"min":0,"max":5000,"digits":0},"boostIntv":{"type":"scalar","size":"U08","offset":27,"units":"ms","scale":1,"transform":0,"min":0,"max":250,"digits":0},"stagedInjSizePri":{"type":"scalar","size":"U16","offset":28,"units":"cc/min","scale":1,"transform":0,"min":0,"max":1500,"digits":0},"stagedInjSizeSec":{"type":"scalar","size":"U16","offset":30,"units":"cc/min","scale":1,"transform":0,"min":0,"max":1500,"digits":0},"lnchCtrlTPS":{"type":"scalar","size":"U08","offset":32,"units":"%TPS","scale":1,"transform":0,"min":0,"max":100,"digits":0},"flexBoostBins":{"type":"array","size":"U08","offset":33,"shape":{"columns":6,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":250,"digits":0},"flexBoostAdj":{"type":"array","size":"S16","offset":39,"shape":{"columns":6,"rows":0},"units":"kPa","scale":1,"transform":0,"min":-500,"max":500,"digits":0},"flexFuelBins":{"type":"array","size":"U08","offset":51,"shape":{"columns":6,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":250,"digits":0},"flexFuelAdj":{"type":"array","size":"U08","offset":57,"shape":{"columns":6,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":250,"digits":0},"flexAdvBins":{"type":"array","size":"U08","offset":63,"shape":{"columns":6,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":250,"digits":0},"flexAdvAdj":{"type":"array","size":"U08","offset":69,"shape":{"columns":6,"rows":0},"units":"Deg","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"n2o_enable":{"type":"bits","size":"U08","offset":75,"address":[0,1],"values":["Off","1 Stage","2 stage","INVALID"]},"n2o_arming_pin":{"type":"bits","size":"U08","offset":75,"address":[2,7],"values":["INVALID","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"n2o_minCLT":{"type":"scalar","size":"U08","offset":76,"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"n2o_maxMAP":{"type":"scalar","size":"U08","offset":77,"units":"kPa","scale":2,"transform":0,"min":0,"max":511,"digits":0},"n2o_minTPS":{"type":"scalar","size":"U08","offset":78,"units":"%TPS","scale":1,"transform":0,"min":0,"max":100,"digits":0},"n2o_maxAFR":{"type":"scalar","size":"U08","offset":79,"units":"AFR","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"n2o_stage1_pin":{"type":"bits","size":"U08","offset":80,"address":[0,5],"values":["INVALID","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"n2o_pin_polarity":{"type":"bits","size":"U08","offset":80,"address":[6,6],"values":["HIGH","LOW"]},"n2o_unused":{"type":"bits","size":"U08","offset":80,"address":[7,7],"values":["No","Yes"]},"n2o_stage1_minRPM":{"type":"scalar","size":"U08","offset":81,"units":"RPM","scale":100,"transform":0,"min":1000,"max":10000,"digits":0},"n2o_stage1_maxRPM":{"type":"scalar","size":"U08","offset":82,"units":"RPM","scale":100,"transform":0,"min":1000,"max":10000,"digits":0},"n2o_stage1_adderMin":{"type":"scalar","size":"U08","offset":83,"units":"ms","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"n2o_stage1_adderMax":{"type":"scalar","size":"U08","offset":84,"units":"ms","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"n2o_stage1_retard":{"type":"scalar","size":"U08","offset":85,"units":"Deg","scale":1,"transform":0,"min":0,"max":250,"digits":0},"n2o_stage2_pin":{"type":"bits","size":"U08","offset":86,"address":[0,5],"values":["INVALID","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"n2o_stage2_unused":{"type":"bits","size":"U08","offset":86,"address":[6,7],"values":["No","Yes","INVALID","INVALID"]},"n2o_stage2_minRPM":{"type":"scalar","size":"U08","offset":87,"units":"RPM","scale":100,"transform":0,"min":1000,"max":10000,"digits":0},"n2o_stage2_maxRPM":{"type":"scalar","size":"U08","offset":88,"units":"RPM","scale":100,"transform":0,"min":1000,"max":10000,"digits":0},"n2o_stage2_adderMin":{"type":"scalar","size":"U08","offset":89,"units":"ms","scale":0.1,"transform":0,"min":0,"max":32,"digits":1},"n2o_stage2_adderMax":{"type":"scalar","size":"U08","offset":90,"units":"ms","scale":0.1,"transform":0,"min":0,"max":32,"digits":1},"n2o_stage2_retard":{"type":"scalar","size":"U08","offset":91,"units":"Deg","scale":1,"transform":0,"min":0,"max":250,"digits":0},"knock_mode":{"type":"bits","size":"U08","offset":92,"address":[0,1],"values":["Off","Digital","Analog","INVALID"]},"knock_pin":{"type":"bits","size":"U08","offset":92,"address":[2,7],"values":["INVALID","INVALID","2","3","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","18","19","20","21","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"knock_trigger":{"type":"bits","size":"U08","offset":93,"address":[0,0],"values":["HIGH","LOW"]},"knock_pullup":{"type":"bits","size":"U08","offset":93,"address":[1,1],"values":["Off","Internal pullup"]},"knock_limiterDisable":{"type":"bits","size":"U08","offset":93,"address":[2,2],"values":["No","Yes"]},"knock_unused":{"type":"bits","size":"U08","offset":93,"address":[3,4],"values":["INVALID","1","2","3"]},"knock_count":{"type":"bits","size":"U08","offset":93,"address":[5,7],"values":["INVALID","1","2","3","4","5","6","7"]},"knock_threshold":{"type":"scalar","size":"U08","offset":94,"units":"Volts","scale":0.1,"transform":0,"min":0,"max":5,"digits":1},"knock_maxMAP":{"type":"scalar","size":"U08","offset":95,"units":"kPa","scale":2,"transform":0,"min":0,"max":511,"digits":0},"knock_maxRPM":{"type":"scalar","size":"U08","offset":96,"units":"RPM","scale":100,"transform":0,"min":0,"max":10000,"digits":0},"knock_window_rpms":{"type":"array","size":"U08","offset":97,"shape":{"columns":6,"rows":0},"units":"RPM","scale":100,"transform":0,"min":0,"max":10000,"digits":0},"knock_window_angle":{"type":"array","size":"U08","offset":103,"shape":{"columns":6,"rows":0},"units":"deg","scale":1,"transform":-50,"min":-50,"max":100,"digits":0},"knock_window_dur":{"type":"array","size":"U08","offset":109,"shape":{"columns":6,"rows":0},"units":"deg","scale":1,"transform":0,"min":0,"max":100,"digits":0},"knock_maxRetard":{"type":"scalar","size":"U08","offset":115,"units":"Deg","scale":1,"transform":0,"min":0,"max":50,"digits":0},"knock_firstStep":{"type":"scalar","size":"U08","offset":116,"units":"Deg","scale":1,"transform":0,"min":0,"max":50,"digits":0},"knock_stepSize":{"type":"scalar","size":"U08","offset":117,"units":"Deg","scale":1,"transform":0,"min":0,"max":50,"digits":0},"knock_stepTime":{"type":"scalar","size":"U08","offset":118,"units":"Sec","scale":0.1,"transform":0,"min":0,"max":2.5,"digits":1},"knock_duration":{"type":"scalar","size":"U08","offset":119,"units":"Sec","scale":0.1,"transform":0,"min":0,"max":2.5,"digits":1},"knock_recoveryStepTime":{"type":"scalar","size":"U08","offset":120,"units":"Sec","scale":0.1,"transform":0,"min":0,"max":2.5,"digits":1},"knock_recoveryStep":{"type":"scalar","size":"U08","offset":121,"units":"Deg","scale":1,"transform":0,"min":0,"max":50,"digits":0},"fuel2Algorithm":{"type":"bits","size":"U08","offset":122,"address":[0,2],"values":["MAP","TPS","IMAP/EMAP","INVALID","INVALID","INVALID","INVALID","INVALID"]},"fuel2Mode":{"type":"bits","size":"U08","offset":122,"address":[3,5],"values":["Off","Multiplied %","Added","Switched - Conditional","Switched - Input based","INVALID","INVALID","INVALID"]},"fuel2SwitchVariable":{"type":"bits","size":"U08","offset":122,"address":[6,7],"values":["RPM","MAP","TPS","ETH%"]},"fuel2SwitchValue":{"type":"scalar","size":"U16","offset":123,"units":"{ bitStringValue(fuel2SwitchUnits, fuel2SwitchVariable) }","scale":1,"transform":0,"min":0,"max":9000,"digits":0},"fuel2InputPin":{"type":"bits","size":"U08","offset":125,"address":[0,5],"values":["INVALID","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"fuel2InputPolarity":{"type":"bits","size":"U08","offset":125,"address":[6,6],"values":["LOW","HIGH"]},"fuel2InputPullup":{"type":"bits","size":"U08","offset":125,"address":[7,7],"values":["No","Yes"]},"vvtCLholdDuty":{"type":"scalar","size":"U08","offset":126,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"vvtCLKP":{"type":"scalar","size":"U08","offset":127,"units":"%","scale":0.03125,"transform":0,"min":0,"max":7.96,"digits":2},"vvtCLKI":{"type":"scalar","size":"U08","offset":128,"units":"%","scale":0.03125,"transform":0,"min":0,"max":7.96,"digits":2},"vvtCLKD":{"type":"scalar","size":"U08","offset":129,"units":"%","scale":0.00781,"transform":0,"min":0,"max":1.99,"digits":3},"vvtCLMinAng":{"type":"scalar","size":"S16","offset":130,"units":"deg","scale":1,"transform":0,"min":-360,"max":360,"digits":0},"vvtCLMaxAng":{"type":"scalar","size":"S16","offset":132,"units":"deg","scale":1,"transform":0,"min":-360,"max":360,"digits":0},"crankingEnrichTaper":{"type":"scalar","size":"U08","offset":134,"units":"s","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"fuelPressureEnable":{"type":"bits","size":"U08","offset":135,"address":[0,0],"values":["Off","On"]},"oilPressureEnable":{"type":"bits","size":"U08","offset":135,"address":[1,1],"values":["Off","On"]},"oilPressureProtEnbl":{"type":"bits","size":"U08","offset":135,"address":[2,2],"values":["Off","On"]},"fuelPressurePin":{"type":"bits","size":"U08","offset":136,"address":[0,3],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15"]},"oilPressurePin":{"type":"bits","size":"U08","offset":136,"address":[4,7],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15"]},"fuelPressureMin":{"type":"scalar","size":"S08","offset":137,"units":"psi","scale":1,"transform":0,"min":-100,"max":127,"digits":0},"fuelPressureMax":{"type":"scalar","size":"U08","offset":138,"units":"psi","scale":1,"transform":0,"min":0,"max":255,"digits":0},"oilPressureMin":{"type":"scalar","size":"S08","offset":139,"units":"psi","scale":1,"transform":0,"min":-100,"max":127,"digits":0},"oilPressureMax":{"type":"scalar","size":"U08","offset":140,"units":"psi","scale":1,"transform":0,"min":0,"max":255,"digits":0},"oilPressureProtRPM":{"type":"array","size":"U08","offset":141,"shape":{"columns":4,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"oilPressureProtMins":{"type":"array","size":"U08","offset":145,"shape":{"columns":4,"rows":0},"units":"psi","scale":1,"transform":0,"min":0,"max":255,"digits":0},"wmiEnabled":{"type":"bits","size":"U08","offset":149,"address":[0,0],"values":["Off","On"]},"wmiMode":{"type":"bits","size":"U08","offset":149,"address":[1,2],"values":["Simple","Proportional","Openloop","Closedloop"]},"wmiAdvEnabled":{"type":"bits","size":"U08","offset":149,"address":[7,7],"values":["Off","On"]},"wmiTPS":{"type":"scalar","size":"U08","offset":150,"units":"%TPS","scale":1,"transform":0,"min":0,"max":100,"digits":0},"wmiRPM":{"type":"scalar","size":"U08","offset":151,"units":"RPM","scale":100,"transform":0,"min":0,"max":10000,"digits":0},"wmiMAP":{"type":"scalar","size":"U08","offset":152,"units":"kPa","scale":2,"transform":0,"min":0,"max":511,"digits":0},"wmiMAP2":{"type":"scalar","size":"U08","offset":153,"units":"kPa","scale":2,"transform":0,"min":0,"max":511,"digits":0},"wmiIAT":{"type":"scalar","size":"U08","offset":154,"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"wmiOffset":{"type":"scalar","size":"S08","offset":155,"units":"ms","scale":1,"transform":0,"min":-12.7,"max":12.7,"digits":0},"wmiIndicatorEnabled":{"type":"bits","size":"U08","offset":156,"address":[0,0],"values":["Off","On"]},"wmiIndicatorPin":{"type":"bits","size":"U08","offset":156,"address":[1,6],"values":["Board Default","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"wmiIndicatorPolarity":{"type":"bits","size":"U08","offset":156,"address":[7,7],"values":["Normal","Inverted"]},"wmiEmptyEnabled":{"type":"bits","size":"U08","offset":157,"address":[0,0],"values":["Off","On"]},"wmiEmptyPin":{"type":"bits","size":"U08","offset":157,"address":[1,6],"values":["Board Default","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"wmiEmptyPolarity":{"type":"bits","size":"U08","offset":157,"address":[7,7],"values":["Normal","Inverted"]},"wmiEnabledPin":{"type":"bits","size":"U08","offset":158,"address":[0,5],"values":["Board Default","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"wmiAdvBins":{"type":"array","size":"U08","offset":159,"shape":{"columns":6,"rows":0},"units":"kPa","scale":2,"transform":0,"min":0,"max":511,"digits":0},"wmiAdvAdj":{"type":"array","size":"U08","offset":165,"shape":{"columns":6,"rows":0},"units":"Deg","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"vvtCLminDuty":{"type":"scalar","size":"U08","offset":171,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"vvtCLmaxDuty":{"type":"scalar","size":"U08","offset":172,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"vvt2Pin":{"type":"bits","size":"U08","offset":173,"address":[0,5],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"fuelTempBins":{"type":"array","size":"U08","offset":174,"shape":{"columns":6,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"fuelTempValues":{"type":"array","size":"U08","offset":180,"shape":{"columns":6,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"spark2Algorithm":{"type":"bits","size":"U08","offset":186,"address":[0,2],"values":["MAP","TPS","IMAP/EMAP","INVALID","INVALID","INVALID","INVALID","INVALID"]},"spark2Mode":{"type":"bits","size":"U08","offset":186,"address":[3,5],"values":["Off","Multiplied %","Added","Switched - Conditional","Switched - Input based","INVALID","INVALID","INVALID"]},"spark2SwitchVariable":{"type":"bits","size":"U08","offset":186,"address":[6,7],"values":["RPM","MAP","TPS","ETH%"]},"spark2SwitchValue":{"type":"scalar","size":"U16","offset":187,"units":"{ bitStringValue(fuel2SwitchUnits, spark2SwitchVariable) }","scale":1,"transform":0,"min":0,"max":9000,"digits":0},"spark2InputPin":{"type":"bits","size":"U08","offset":189,"address":[0,5],"values":["INVALID","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"spark2InputPolarity":{"type":"bits","size":"U08","offset":189,"address":[6,6],"values":["LOW","HIGH"]},"spark2InputPullup":{"type":"bits","size":"U08","offset":189,"address":[7,7],"values":["No","Yes"]},"unused11_190_191":{"type":"array","size":"U08","offset":90,"shape":{"columns":2,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0}}},{"number":11,"size":0,"data":{"veTable2":{"type":"array","size":"U08","offset":0,"shape":{"columns":16,"rows":16},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"fuelRPM2Bins":{"type":"array","size":"U08","offset":256,"shape":{"columns":16,"rows":0},"units":"RPM","scale":100,"transform":0,"min":0,"max":25500,"digits":0},"fuelLoad2Bins":{"type":"array","size":"U08","offset":272,"shape":{"columns":16,"rows":0},"units":"{ bitStringValue(algorithmUnits , fuel2Algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0}}},{"number":12,"size":0,"data":{"wmiTable":{"type":"array","size":"U08","offset":0,"shape":{"columns":8,"rows":8},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"rpmBinsWMI":{"type":"array","size":"U08","offset":64,"shape":{"columns":8,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"mapBinsWMI":{"type":"array","size":"U08","offset":72,"shape":{"columns":8,"rows":0},"units":"kPa","scale":2,"transform":0,"min":0,"max":511,"digits":0}}},{"number":13,"size":0,"data":{"outputInverted0":{"type":"bits","size":"U08","offset":0,"address":[0,0],"values":["Active high","Active low"]},"outputInverted1":{"type":"bits","size":"U08","offset":0,"address":[1,1],"values":["Active high","Active low"]},"outputInverted2":{"type":"bits","size":"U08","offset":0,"address":[2,2],"values":["Active high","Active low"]},"outputInverted3":{"type":"bits","size":"U08","offset":0,"address":[3,3],"values":["Active high","Active low"]},"outputInverted4":{"type":"bits","size":"U08","offset":0,"address":[4,4],"values":["Active high","Active low"]},"outputInverted5":{"type":"bits","size":"U08","offset":0,"address":[5,5],"values":["Active high","Active low"]},"outputInverted6":{"type":"bits","size":"U08","offset":0,"address":[6,6],"values":["Active high","Active low"]},"outputInverted7":{"type":"bits","size":"U08","offset":0,"address":[7,7],"values":["Active high","Active low"]},"unused12_1":{"type":"scalar","size":"U08","offset":1,"units":"bits","scale":1,"transform":0,"min":0,"max":0,"digits":null},"outputPin":{"type":"array","size":"U08","offset":2,"shape":{"columns":8,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"outputPin0":{"type":"bits","size":"U08","offset":2,"address":[0,7],"values":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"outputPin1":{"type":"bits","size":"U08","offset":3,"address":[0,7],"values":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"outputPin2":{"type":"bits","size":"U08","offset":4,"address":[0,7],"values":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"outputPin3":{"type":"bits","size":"U08","offset":5,"address":[0,7],"values":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"outputPin4":{"type":"bits","size":"U08","offset":6,"address":[0,7],"values":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"outputPin5":{"type":"bits","size":"U08","offset":7,"address":[0,7],"values":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"outputPin6":{"type":"bits","size":"U08","offset":8,"address":[0,7],"values":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"outputPin7":{"type":"bits","size":"U08","offset":9,"address":[0,7],"values":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"outputDelay":{"type":"array","size":"U08","offset":10,"shape":{"columns":8,"rows":0},"units":"S","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"firstDataIn":{"type":"array","size":"U08","offset":18,"shape":{"columns":8,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":65535,"digits":0},"firstDataIn0":{"type":"bits","size":"U08","offset":18,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"firstDataIn1":{"type":"bits","size":"U08","offset":19,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"firstDataIn2":{"type":"bits","size":"U08","offset":20,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"firstDataIn3":{"type":"bits","size":"U08","offset":21,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"firstDataIn4":{"type":"bits","size":"U08","offset":22,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"firstDataIn5":{"type":"bits","size":"U08","offset":23,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"firstDataIn6":{"type":"bits","size":"U08","offset":24,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"firstDataIn7":{"type":"bits","size":"U08","offset":25,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"secondDataIn":{"type":"array","size":"U08","offset":26,"shape":{"columns":8,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":65535,"digits":0},"secondDataIn0":{"type":"bits","size":"U08","offset":26,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"secondDataIn1":{"type":"bits","size":"U08","offset":27,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"secondDataIn2":{"type":"bits","size":"U08","offset":28,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"secondDataIn3":{"type":"bits","size":"U08","offset":29,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"secondDataIn4":{"type":"bits","size":"U08","offset":30,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"secondDataIn5":{"type":"bits","size":"U08","offset":31,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"secondDataIn6":{"type":"bits","size":"U08","offset":32,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"secondDataIn7":{"type":"bits","size":"U08","offset":33,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"unused13_35_49":{"type":"array","size":"U08","offset":34,"shape":{"columns":16,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"firstTarget":{"type":"array","size":"S16","offset":50,"shape":{"columns":8,"rows":0},"units":"","scale":1,"transform":0,"min":-32768,"max":32768,"digits":0},"secondTarget":{"type":"array","size":"S16","offset":66,"shape":{"columns":8,"rows":0},"units":"","scale":1,"transform":0,"min":-32768,"max":32768,"digits":0},"firstCompType0":{"type":"bits","size":"U08","offset":82,"address":[0,2],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"secondCompType0":{"type":"bits","size":"U08","offset":82,"address":[3,5],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"bitwise0":{"type":"bits","size":"U08","offset":82,"address":[6,7],"values":["Disabled","AND","OR","XOR"]},"firstCompType1":{"type":"bits","size":"U08","offset":83,"address":[0,2],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"secondCompType1":{"type":"bits","size":"U08","offset":83,"address":[3,5],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"bitwise1":{"type":"bits","size":"U08","offset":83,"address":[6,7],"values":["Disabled","AND","OR","XOR"]},"firstCompType2":{"type":"bits","size":"U08","offset":84,"address":[0,2],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"secondCompType2":{"type":"bits","size":"U08","offset":84,"address":[3,5],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"bitwise2":{"type":"bits","size":"U08","offset":84,"address":[6,7],"values":["Disabled","AND","OR","XOR"]},"firstCompType3":{"type":"bits","size":"U08","offset":85,"address":[0,2],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"secondCompType3":{"type":"bits","size":"U08","offset":85,"address":[3,5],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"bitwise3":{"type":"bits","size":"U08","offset":85,"address":[6,7],"values":["Disabled","AND","OR","XOR"]},"firstCompType4":{"type":"bits","size":"U08","offset":86,"address":[0,2],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"secondCompType4":{"type":"bits","size":"U08","offset":86,"address":[3,5],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"bitwise4":{"type":"bits","size":"U08","offset":86,"address":[6,7],"values":["Disabled","AND","OR","XOR"]},"firstCompType5":{"type":"bits","size":"U08","offset":87,"address":[0,2],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"secondCompType5":{"type":"bits","size":"U08","offset":87,"address":[3,5],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"bitwise5":{"type":"bits","size":"U08","offset":87,"address":[6,7],"values":["Disabled","AND","OR","XOR"]},"firstCompType6":{"type":"bits","size":"U08","offset":88,"address":[0,2],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"secondCompType6":{"type":"bits","size":"U08","offset":88,"address":[3,5],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"bitwise6":{"type":"bits","size":"U08","offset":88,"address":[6,7],"values":["Disabled","AND","OR","XOR"]},"firstCompType7":{"type":"bits","size":"U08","offset":89,"address":[0,2],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"secondCompType7":{"type":"bits","size":"U08","offset":89,"address":[3,5],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"bitwise7":{"type":"bits","size":"U08","offset":89,"address":[6,7],"values":["Disabled","AND","OR","XOR"]},"candID":{"type":"array","size":"U16","offset":90,"shape":{"columns":8,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"unused12_106_127":{"type":"array","size":"U08","offset":106,"shape":{"columns":22,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0}}},{"number":14,"size":0,"data":{"advTable2":{"type":"array","size":"U08","offset":0,"shape":{"columns":16,"rows":16},"units":"deg","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"rpmBins3":{"type":"array","size":"U08","offset":256,"shape":{"columns":16,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"mapBins2":{"type":"array","size":"U08","offset":272,"shape":{"columns":16,"rows":0},"units":"{ bitStringValue(algorithmUnits , ignAlgorithm) }","scale":2,"transform":0,"min":0,"max":"{ignLoadMax}","digits":0}}}]},"menus":{"settings":{"title":"Settings","subMenus":{"engine_constants":{"title":"Engine Constants","page":0,"condition":""},"injChars":{"title":"Injector Characteristics","page":0,"condition":""},"triggerSettings":{"title":"Trigger Setup","page":0,"condition":""},"airdensity_curve":{"title":"IAT Density","page":0,"condition":""},"baroFuel_curve":{"title":"Barometric Correction","page":0,"condition":""},"reset_control":{"title":"Reset Control","page":0,"condition":""},"std_separator":{"title":"","page":0,"condition":""},"gaugeLimits":{"title":"Gauge Limits","page":0,"condition":""},"io_summary":{"title":"I/O Summary","page":0,"condition":""},"prgm_out_config":{"title":"Programmable outputs","page":0,"condition":""}}},"tuning":{"title":"Tuning","subMenus":{"std_realtime":{"title":"Realtime Display","page":0,"condition":""},"accelEnrichments":{"title":"Acceleration Enrichment","page":0,"condition":""},"egoControl":{"title":"AFR/O2","page":3,"condition":""},"RevLimiterS":{"title":"Engine Protection","page":2,"condition":""},"flexFueling":{"title":"Flex Fuel","page":2,"condition":""},"veTableDialog":{"title":"VE Table","page":0,"condition":""},"sparkTbl":{"title":"Spark Table","page":2,"condition":""},"afrTable1Tbl":{"title":"AFR Table","page":5,"condition":""},"std_separator":{"title":"","page":0,"condition":""},"fuelTable2Dialog":{"title":"Second fuel Table","page":11,"condition":""},"sparkTable2Dialog":{"title":"Second spark Table","page":14,"condition":""},"inj_trimad":{"title":"Sequential fuel trim","page":9,"condition":""},"stagingTableDialog":{"title":"Staged Injection","page":10,"condition":"{ nCylinders <= 4 }"},"fuelTemp_curve":{"title":"Fuel Temp Correction","page":0,"condition":"{ flexEnabled }"}}},"spark":{"title":"Spark","subMenus":{"sparkSettings":{"title":"Spark Settings","page":0,"condition":""},"sparkTbl":{"title":"Spark Table","page":2,"condition":""},"dwellSettings":{"title":"Dwell settings","page":0,"condition":""},"dwell_correction_curve":{"title":"Dwell Compensation","page":0,"condition":""},"iat_retard_curve":{"title":"IAT Retard","page":0,"condition":""},"clt_advance_curve":{"title":"Cold Advance","page":0,"condition":""},"rotary_ignition":{"title":"Rotary Ignition","page":0,"condition":"{ sparkMode == 4 }"}}},"startupIdle":{"title":"Startup/Idle","subMenus":{"crankPW":{"title":"Cranking Settings","page":0,"condition":""},"primePW":{"title":"Priming Pulsewidth","page":0,"condition":""},"warmup":{"title":"Warmup Enrichment","page":0,"condition":""},"ASE":{"title":"Afterstart Enrichment (ASE)","page":0,"condition":""},"std_separator":{"title":"","page":0,"condition":""},"idleSettings":{"title":"Idle Control","page":0,"condition":""},"iacClosedLoop_curve":{"title":"Idle - RPM targets","page":7,"condition":"{ iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || idleAdvEnabled >= 1 }"},"iacPwm_curve":{"title":"Idle - PWM Duty Cycle","page":7,"condition":"{ iacAlgorithm == 2 || iacAlgorithm == 6}"},"iacPwmCrank_curve":{"title":"Idle - PWM Cranking Duty Cycle","page":7,"condition":"{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6}"},"iacStep_curve":{"title":"Idle - Stepper Motor","page":7,"condition":"{ iacAlgorithm == 4 }"},"iacStepCrank_curve":{"title":"Idle - Stepper Motor Cranking","page":7,"condition":"{ iacAlgorithm == 4 || iacAlgorithm == 5 }"},"idleUpSettings":{"title":"Idle Up Settings","page":0,"condition":"{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 4 || iacAlgorithm == 5 || iacAlgorithm == 6 }"},"idleAdvanceSettings":{"title":"Idle Advance Settings","page":0,"condition":""}}},"accessories":{"title":"Accessories","subMenus":{"fanSettings":{"title":"Thermo Fan","page":0,"condition":""},"LaunchControl":{"title":"Launch Control / Flat Shift","page":0,"condition":""},"fuelpump":{"title":"Fuel Pump","page":0,"condition":""},"NitrousControl":{"title":"Nitrous","page":0,"condition":""},"vssSettings":{"title":"VSS and Gear detection","page":0,"condition":""},"std_separator":{"title":"","page":0,"condition":""},"boostSettings":{"title":"Boost Control","page":0,"condition":""},"boostLoad":{"title":"Boost Targets/Load","page":8,"condition":"{ boostEnabled }"},"vvtSettings":{"title":"VVT Control","page":0,"condition":""},"vvtTbl":{"title":"VVT duty cycle","page":8,"condition":"{ vvtEnabled }"},"wmiSettings":{"title":"WMI Control","page":0,"condition":"{ !vvtEnabled }"},"wmiTbl":{"title":"WMI duty cycle","page":8,"condition":"{ !vvtEnabled && wmiEnabled && wmiMode > 1 }"},"tacho":{"title":"Tacho Output","page":0,"condition":""},"can_serial3IO":{"title":"Canbus/Secondary Serial IO Interface","page":0,"condition":""},"Canin_config":{"title":"External Auxillary Input Channel Configuration","page":0,"condition":"{enable_secondarySerial || (enable_intcan && intcan_available)}"},"Auxin_config":{"title":"Local Auxillary Input Channel Configuration","page":0,"condition":""},"serial3IO":{"title":"Canbus/Secondary Serial IO Interface","page":0,"condition":""},"pressureSensors":{"title":"Fuel/Oil pressure","page":0,"condition":""}}},"tools":{"title":"Tools","subMenus":{"mapCal":{"title":"Calibrate Pressure Sensors","page":0,"condition":""},"batCal":{"title":"Calibrate Voltage Reading","page":0,"condition":""},"std_ms2gentherm":{"title":"Calibrate Temperature Sensors","page":0,"condition":""},"std_ms2geno2":{"title":"Calibrate AFR Sensor","page":0,"condition":"{ egoType > 0 }"},"sensorFilters":{"title":"Set analog sensor filters","page":0,"condition":""}}},"3dTuningMaps":{"title":"3D Tuning Maps","subMenus":{"veTable1Map":{"title":"Fuel Table","page":0,"condition":""},"sparkMap":{"title":"Spark Table","page":3,"condition":""},"afrTable1Map":{"title":"AFR Target Table","page":0,"condition":""}}},"hardwareTesting":{"title":"Hardware Testing","subMenus":{"outputtest1":{"title":"Test Output Hardware","page":0,"condition":""},"stm32cmd":{"title":"STM32 Commands","page":0,"condition":""}}},"help":{"title":"Help","subMenus":{"helpGeneral":{"title":"Speeduino Help","page":0,"condition":""}}}},"dialogs":{"engine_constants_southwest":{"title":"Speeduino Board","panels":{},"fields":[{"name":"stoich","title":"Stoichiometric ratio"},{"name":"injLayout","title":"Injector Layout"},{"name":"pinLayout","title":"Board Layout"},{"name":"mapSample","title":"MAP Sample method"}]},"engine_constants_west":{"title":"","panels":{"std_injection":{"layout":"North","fields":[],"panels":{}},"engine_constants_southwest":{"fields":[],"panels":{}}},"fields":[]},"engine_constants_northeast":{"title":"Oddfire Angles","panels":{},"fields":[{"name":"oddfire2","title":"Channel 2 angle","condition":"{ engineType == 1 }"},{"name":"oddfire3","title":"Channel 3 angle","condition":"{ engineType == 1 && nCylinders >= 3 }"},{"name":"oddfire4","title":"Channel 4 angle","condition":"{ engineType == 1 && nCylinders >= 4 }"}]},"engine_constants_east":{"title":"","panels":{"engine_constants_northeast":{"layout":"North","fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":""}]},"engine_constants_warning":{"title":"","panels":{},"fields":[{"name":"_fieldText_","title":"!Warning: The board you have selected may not have enough channels for sequential fuel!"}]},"engine_constants":{"title":"","layout":"border","panels":{"engine_constants_warning":{"layout":"North","fields":[],"panels":{}},"engine_constants_west":{"layout":"West","fields":[],"panels":{}},"engine_constants_east":{"layout":"East","fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/Engine_Constants"},"flexFuelSettings":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"flexEnabled","title":"Flex Fuel Sensor"},{"name":"flexFreqLow","title":"Low (E0)","condition":"{ flexEnabled }"},{"name":"flexFreqHigh","title":"High (E100)","condition":"{ flexEnabled }"}]},"flexFuelWest":{"title":"","panels":{"flex_fuel_curve":{"condition":"{ flexEnabled }","fields":[],"panels":{}},"flex_adv_curve":{"condition":"{ flexEnabled }","fields":[],"panels":{}}},"fields":[]},"flexFuelEast":{"title":"","panels":{"flex_boost_curve":{"condition":"{ flexEnabled && boostEnabled }","fields":[],"panels":{}}},"fields":[]},"flexCurves":{"title":"","layout":"xAxis","panels":{"flexFuelWest":{"layout":"West","fields":[],"panels":{}},"flexFuelEast":{"layout":"East","fields":[],"panels":{}}},"fields":[]},"flexFueling":{"title":"Fuel Sensor Settings","layout":"border","panels":{"flexFuelSettings":{"layout":"North","fields":[],"panels":{}},"flexCurves":{"layout":"South","fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/Flex_Fuel"},"knock_windows":{"title":"Knock Windows","layout":"xAxis","panels":{"knock_window_angle_curve":{"layout":"West","condition":"{ knock_mode }","fields":[],"panels":{}},"knock_window_duration_curve":{"layout":"East","condition":"{ knock_mode }","fields":[],"panels":{}}},"fields":[]},"knock_settings_west":{"title":"Settings","layout":"yAxis","panels":{},"fields":[{"name":"knock_mode","title":"Knock Mode"},{"name":"knock_pin","title":"Knock Pin","condition":"{ knock_mode }"},{"name":"knock_trigger","title":"Knock active when pin is","condition":"{ knock_mode == 1 }"},{"name":"knock_pullup","title":"Use pullup","condition":"{ knock_mode == 1 }"}]},"knock_settings_east":{"title":"Detection and Response","panels":{},"fields":[{"name":"_fieldText_","title":"#Detection"},{"name":"knock_count","title":"Knock count required","condition":"{ knock_mode == 1}"},{"name":"knock_threshold","title":"Knock threshold required","condition":"{ knock_mode == 2}"},{"name":"knock_maxMAP","title":"Maximum MAP","condition":"{ knock_mode }"},{"name":"knock_maxRPM","title":"Maximum RPM","condition":"{ knock_mode }"},{"name":"_fieldText_","title":"#Retard"},{"name":"knock_maxRetard","title":"Total retard","condition":"{ knock_mode }"},{"name":"knock_firstStep","title":"First step size","condition":"{ knock_mode }"},{"name":"knock_stepSize","title":"Other step size","condition":"{ knock_mode }"},{"name":"knock_stepTime","title":"Step time","condition":"{ knock_mode }"},{"name":"_fieldText_","title":"#Recovery"},{"name":"knock_duration","title":"Retard duration","condition":"{ knock_mode }"},{"name":"knock_recoveryStepTime","title":"Recovery step time","condition":"{ knock_mode }"},{"name":"knock_recoveryStep","title":"Recovery step size","condition":"{ knock_mode }"}]},"knock_settings_top":{"title":"","layout":"xAxis","panels":{"knock_settings_west":{"layout":"West","fields":[],"panels":{}},"knock_settings_east":{"layout":"East","fields":[],"panels":{}}},"fields":[]},"knockSettings":{"title":"","layout":"border","panels":{"knock_settings_top":{"layout":"North","fields":[],"panels":{}},"knock_windows":{"layout":"South","fields":[],"panels":{}}},"fields":[],"help":"http://speeduino.com/wiki/index.php/Knock"},"vss_gear_1":{"title":"","layout":"xAxis","panels":{},"fields":[{"name":"vssRatio1","title":"Speed ratio 1"}]},"vss_gear_2":{"title":"","layout":"xAxis","panels":{},"fields":[{"name":"vssRatio2","title":"Speed ratio 2"}]},"vss_gear_3":{"title":"","layout":"xAxis","panels":{},"fields":[{"name":"vssRatio3","title":"Speed ratio 3"}]},"vss_gear_4":{"title":"","layout":"xAxis","panels":{},"fields":[{"name":"vssRatio4","title":"Speed ratio 4"}]},"vss_gear_5":{"title":"","layout":"xAxis","panels":{},"fields":[{"name":"vssRatio5","title":"Speed ratio 5"}]},"vss_gear_6":{"title":"","layout":"xAxis","panels":{},"fields":[{"name":"vssRatio6","title":"Speed ratio 6"}]},"vss_gear_detection":{"title":"Gear Detection","layout":"yAxis","panels":{"vss_gear_1":{"fields":[],"panels":{}},"vss_gear_2":{"fields":[],"panels":{}},"vss_gear_3":{"fields":[],"panels":{}},"vss_gear_4":{"fields":[],"panels":{}},"vss_gear_5":{"fields":[],"panels":{}},"vss_gear_6":{"fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"After setting 'Pulses per km/mile' above"},{"name":"_fieldText_","title":"Drive in each gear (any speed) and press appropriate button"}]},"vss_calibration":{"title":"VSS Calibration","panels":{},"fields":[{"name":"vssPulsesPerKm","title":"Pulses Per KM","condition":"{ vssMode > 1 }"},{"name":"vssSmoothing","title":"Smoothing Factor","condition":"{ vssMode > 1 }"}]},"vssSettings":{"title":"","layout":"yAxis","panels":{"vss_calibration":{"fields":[],"panels":{}},"vss_gear_detection":{"fields":[],"panels":{}}},"fields":[{"name":"vssMode","title":"VSS Input Mode"},{"name":"vssPin","title":"VSS Pin","condition":"{ vssMode > 1 }"}],"help":"https://wiki.speeduino.com/en/configuration/VSS"},"tacho":{"title":"Tacho","panels":{},"fields":[{"name":"tachoPin","title":"Output pin"},{"name":"tachoDiv","title":"Output speed"},{"name":"tachoDuration","title":"Pulse duration"},{"name":"useTachoSweep","title":"Tacho sweep on boot"},{"name":"tachoSweepMaxRPM","title":"Tacho sweep Max RPM","condition":"{ useTachoSweep }"}]},"accelEnrichments_aeSettings":{"title":"","panels":{},"fields":[{"name":"aeMode","title":"Enrichment mode"},{"name":"aeApplyMode","title":"Enrichment method"},{"name":"taeThresh","title":"TPSdot Threshold","condition":"{ aeMode == 0 }"},{"name":"maeThresh","title":"MAPdot Threshold","condition":"{ aeMode == 1 }"},{"name":"aeTime","title":"Accel Time"},{"name":"aeTaperMin","title":"Taper Start RPM"},{"name":"aeTaperMax","title":"Taper End RPM"}]},"accelEnrichments_coldAdj":{"title":"Acceleration Enrichment cold adjustment","panels":{},"fields":[{"name":"aeColdPct","title":"Cold adjustment"},{"name":"aeColdTaperMin","title":"Cold adjustment taper start temperature"},{"name":"aeColdTaperMax","title":"Cold adjustment taper end temperature"}]},"accelEnrichments_south":{"title":"Decelleration Fuel Cutoff (DFCO)","panels":{},"fields":[{"name":"dfcoEnabled","title":"Enabled"},{"name":"dfcoTPSThresh","title":"TPS Threshold","condition":"{ dfcoEnabled }"},{"name":"dfcoMinCLT","title":"Minimum engine temperature","condition":"{ dfcoEnabled }"},{"name":"dfcoDelay","title":"Cutoff delay","condition":"{ dfcoEnabled }"},{"name":"dfcoRPM","title":"Cutoff RPM","condition":"{ dfcoEnabled }"},{"name":"dfcoHyster","title":"RPM Hysteresis","condition":"{ dfcoEnabled }"}]},"accelEnrichments_north_south":{"title":"","panels":{},"fields":[]},"accelEnrichments_north":{"title":"","layout":"xAxis","panels":{"time_accel_tpsdot_curve":{"condition":"{ aeMode == 0 }","fields":[],"panels":{}},"time_accel_mapdot_curve":{"condition":"{ aeMode == 1 }","fields":[],"panels":{}}},"fields":[]},"accelEnrichments_center":{"title":"Acceleration Enrichment","layout":"xAxis","panels":{"accelEnrichments_aeSettings":{"fields":[],"panels":{}},"accelEnrichments_coldAdj":{"fields":[],"panels":{}}},"fields":[]},"accelEnrichments":{"title":"Acceleration Enrichment","panels":{"accelEnrichments_north":{"layout":"North","fields":[],"panels":{}},"accelEnrichments_north_south":{"layout":"Center","fields":[],"panels":{}},"accelEnrichments_center":{"layout":"Center","fields":[],"panels":{}},"accelEnrichments_south":{"layout":"South","fields":[],"panels":{}}},"fields":[],"help":"http://speeduino.com/wiki/index.php/Acceleration_Wizard"},"veTableDialog_north":{"title":"","panels":{"veTable1Tbl":{"fields":[],"panels":{}}},"fields":[]},"veTableDialog_south":{"title":"","panels":{},"fields":[{"name":"multiplyMAP","title":"Multiply VE value by MAP ratio"},{"name":"includeAFR","title":"Multiply by ratio of AFR to Target AFR","condition":"{ egoType == 2 && !incorporateAFR || (incorporateAFR==includeAFR) }"},{"name":"incorporateAFR","title":"Multiply by ratio of stoich AFR/target AFR (incorporate AFR)","condition":"{ !includeAFR || (incorporateAFR==includeAFR) }"}]},"veTableDialog":{"title":"VE Table","panels":{"veTableDialog_north":{"layout":"North","fields":[],"panels":{}},"veTableDialog_south":{"layout":"South","fields":[],"panels":{}}},"fields":[]},"fuelTable2Dialog_switch":{"title":"Switch Conditions","layout":"xAxis","panels":{},"fields":[{"name":"fuel2SwitchVariable","title":"Use secondary table when:"},{"name":"fuel2SwitchValue","title":"is greater than:"}]},"fuelTable2Dialog_input":{"title":"Input Options","layout":"yAxis","panels":{},"fields":[{"name":"fuel2InputPin","title":"Use secondary table when pin"},{"name":"fuel2InputPolarity","title":"Is"},{"name":"fuel2InputPullup","title":"Use internal pullup on pin","condition":"{ fuel2InputPolarity == 0 }"}]},"fuelTable2Dialog_north":{"title":"","panels":{"fuelTable2Dialog_switch":{"condition":"{ fuel2Mode == 3 }","fields":[],"panels":{}},"fuelTable2Dialog_input":{"condition":"{ fuel2Mode == 4 }","fields":[],"panels":{}}},"fields":[{"name":"fuel2Mode","title":"Secondary fuel table mode"},{"name":"fuel2Algorithm","title":"Load source","condition":"{ fuel2Mode }"}]},"fuelTable2Dialog_south":{"title":"","panels":{"fuelTable2Tbl":{"fields":[],"panels":{}}},"fields":[]},"fuelTable2Dialog":{"title":"Fuel Table 2","panels":{"fuelTable2Dialog_north":{"layout":"North","fields":[],"panels":{}},"fuelTable2Dialog_south":{"layout":"South","condition":"{ fuel2Mode }","fields":[],"panels":{}}},"fields":[]},"sparkTable2Dialog_switch":{"title":"Switch Conditions","layout":"xAxis","panels":{},"fields":[{"name":"spark2SwitchVariable","title":"Use secondary table when:"},{"name":"spark2SwitchValue","title":"is greater than:"}]},"sparkTable2Dialog_input":{"title":"Input Options","layout":"yAxis","panels":{},"fields":[{"name":"spark2InputPin","title":"Use secondary table when pin"},{"name":"spark2InputPolarity","title":"Is"},{"name":"spark2InputPullup","title":"Use internal pullup on pin","condition":"{ spark2InputPolarity == 0 }"}]},"sparkTable2Dialog_north":{"title":"","panels":{"sparkTable2Dialog_switch":{"condition":"{ spark2Mode == 3 }","fields":[],"panels":{}},"sparkTable2Dialog_input":{"condition":"{ spark2Mode == 4 }","fields":[],"panels":{}}},"fields":[{"name":"spark2Mode","title":"Secondary advance table mode"},{"name":"spark2Algorithm","title":"Load source","condition":"{ spark2Mode }"}]},"sparkTable2Dialog_south":{"title":"","panels":{"spark2Tbl":{"fields":[],"panels":{}}},"fields":[]},"sparkTable2Dialog":{"title":"Spark Table 2","panels":{"sparkTable2Dialog_north":{"layout":"North","fields":[],"panels":{}},"sparkTable2Dialog_south":{"layout":"South","condition":"{ spark2Mode }","fields":[],"panels":{}}},"fields":[]},"injAngleDialog":{"title":"Injector close angles","panels":{"injector_timing_curve":{"fields":[],"panels":{}}},"fields":[]},"injOpenTimeDialog":{"title":"Injector opening time","panels":{"injector_voltage_curve":{"fields":[],"panels":{}}},"fields":[{"name":"injOpen","title":"Injector Open Time"},{"name":"battVCorMode","title":"Battery Voltage Correction Mode"}]},"injChars":{"title":"Injector Characteristics","panels":{"injOpenTimeDialog":{"fields":[],"panels":{}},"injAngleDialog":{"fields":[],"panels":{}}},"fields":[{"name":"dutyLim","title":"Injector Duty Limit"}],"help":"https://wiki.speeduino.com/en/configuration/Injector_Characteristics"},"egoControl":{"title":"","panels":{},"fields":[{"name":"egoType","title":"Sensor Type"},{"name":"_fieldText_","title":"#Please ensure you calibrate your O2 sensor in the Tools menu"},{"name":"egoAlgorithm","title":"Algorithm","condition":"{ egoType }"},{"name":"egoCount","title":"Ignition Events per Step","condition":"{ egoType && (egoAlgorithm < 3) }"},{"name":"egoLimit","title":"Controller Auth +/-","condition":"{ egoType && (egoAlgorithm < 3) }"},{"name":"ego_min","title":"Only correct above:","condition":"{ egoType && (egoAlgorithm < 3) }"},{"name":"ego_max","title":"and correct below:","condition":"{ egoType && (egoAlgorithm < 3) }"},{"name":"egoTemp","title":"Active Above Coolant","condition":"{ egoType && (egoAlgorithm < 3) }"},{"name":"egoRPM","title":"Active Above RPM","condition":"{ egoType && (egoAlgorithm < 3) }"},{"name":"egoTPSMax","title":"Active Below TPS","condition":"{ egoType && (egoAlgorithm < 3) }"},{"name":"ego_sdelay","title":"EGO delay after start","condition":"{ (egoAlgorithm < 3) }"},{"name":"egoKP","title":"PID Proportional Gain","condition":"{ egoType && (egoAlgorithm == 2) }"},{"name":"egoKI","title":"PID Integral","condition":"{ egoType && (egoAlgorithm == 2) }"},{"name":"egoKD","title":"PID Derivative","condition":"{ egoType && (egoAlgorithm == 2) }"}],"help":"https://wiki.speeduino.com/en/configuration/O2"},"fanSettings":{"title":"Fan Settings","layout":"7","panels":{},"fields":[{"name":"fanEnable","title":"Fan Mode"},{"name":"fanWhenOff","title":"Allow fan when off","condition":"{ fanEnable }"},{"name":"fanWhenCranking","title":"Allow fan when cranking","condition":"{ fanEnable }"},{"name":"fanPin","title":"Fan output pin","condition":"{ fanEnable }"},{"name":"fanInv","title":"Fan Output Inverted","condition":"{ fanEnable }"},{"name":"fanSP","title":"Fan switching temperature","condition":"{ fanEnable }"},{"name":"fanHyster","title":"Fan hysteresis","condition":"{ fanEnable }"}],"help":"https://wiki.speeduino.com/en/configuration/Thermo_fan"},"stepper_idle":{"title":"Stepper Idle","panels":{},"fields":[{"name":"iacStepTime","title":"Step time (ms)","condition":"{ iacAlgorithm == 4 || iacAlgorithm == 5 }"},{"name":"iacCoolTime","title":"Cool time (ms)","condition":"{ iacAlgorithm == 4 || iacAlgorithm == 5 }"},{"name":"iacStepHome","title":"Home steps","condition":"{ iacAlgorithm == 4 || iacAlgorithm == 5 }"},{"name":"iacStepHyster","title":"Minimum Steps","condition":"{ iacAlgorithm == 4 || iacAlgorithm == 5 }"},{"name":"iacMaxSteps","title":"Don't exceed","condition":"{ iacAlgorithm == 4 || iacAlgorithm == 5 }"},{"name":"iacStepperInv","title":"Stepper Inverted","condition":"{ iacAlgorithm == 4 || iacAlgorithm == 5 }"}]},"pwm_idle":{"title":"PWM Idle","panels":{},"fields":[{"name":"iacChannels","title":"Number of outputs","condition":"{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6}"},{"name":"idleFreq","title":"Idle valve frequency","condition":"{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6}"},{"name":"iacPWMdir","title":"Idle valve direction","condition":"{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6}"}]},"closedloop_idle":{"title":"Closed loop Idle","panels":{},"fields":[{"name":"idleKP","title":"P","condition":"{ iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6}"},{"name":"idleKI","title":"I","condition":"{ iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6}"},{"name":"idleKD","title":"D","condition":"{ iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6}"},{"name":"iacCLminDuty","title":"Minimum valve duty","condition":"{ iacAlgorithm == 3 || iacAlgorithm == 6}"},{"name":"iacCLmaxDuty","title":"Maximum valve duty","condition":"{ iacAlgorithm == 3 || iacAlgorithm == 6}"},{"name":"iacTPSlimit","title":"Integeral reset above TPS"},{"name":"iacRPMlimitHysteresis","title":"Integeral reset RPM Hysteresis"}]},"idleSettings":{"title":"Idle Settings","panels":{"pwm_idle":{"fields":[],"panels":{}},"stepper_idle":{"fields":[],"panels":{}},"closedloop_idle":{"fields":[],"panels":{}}},"fields":[{"name":"iacAlgorithm","title":"Idle control type"},{"name":"idleTaperTime","title":"Crank to run taper","condition":"{ iacAlgorithm == 2 || iacAlgorithm == 4 }"},{"name":"_fieldText_","title":"#Fast Idle"},{"name":"iacFastTemp","title":"Fast idle temp","condition":"{ iacAlgorithm == 1 }"}],"help":"https://wiki.speeduino.com/en/configuration/Idle"},"idleUpInputSettingsPanel":{"title":"Idle Up Input Settings","layout":"yAxis","panels":{},"fields":[{"name":"idleUpEnabled","title":"Idle Up Enabled"},{"name":"idleUpPin","title":"Idle Up Pin","condition":"{ idleUpEnabled }"},{"name":"idleUpPolarity","title":"Idle Up Pin Polarity","condition":"{ idleUpEnabled }"},{"name":"idleUpAdder","title":"Idle Up Amount","condition":"{ idleUpEnabled }"}]},"idleUpOutputSettingsPanel":{"title":"Idle Up Output Settings","layout":"yAxis","panels":{},"fields":[{"name":"idleUpOutputEnabled","title":"Idle Up Output Enabled","condition":"{ idleUpEnabled }"},{"name":"idleUpOutputInv","title":"Idle Up Output Inverted"},{"name":"idleUpOutputPin","title":"Idle Up Output Pin","condition":"{ idleUpEnabled && idleUpOutputEnabled }"}]},"idleUpSettings":{"title":"Idle Up Settings","panels":{"idleUpInputSettingsPanel":{"fields":[],"panels":{}},"idleUpOutputSettingsPanel":{"fields":[],"panels":{}}},"fields":[]},"fuelpump":{"title":"Fuel pump","panels":{},"fields":[{"name":"fuelPumpPin","title":"Fuel pump pin"},{"name":"fpPrime","title":"Fuel pump prime duration"}]},"crankingEnrichDialog":{"title":"Cranking Enrichment","layout":"yAxis","panels":{"cranking_enrich_curve":{"fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"#Note"},{"name":"_fieldText_","title":"Values are specified as modifiers to the normal fueling. Eg 100% = No change."}]},"crankingIgnOptions":{"title":"Cranking Timing","layout":"yAxis","panels":{},"fields":[{"name":"CrankAng","title":"Cranking advance Angle","condition":"{ ignCranklock == 0 }"},{"name":"ignBypassEnable","title":"Cranking bypass"},{"name":"ignBypassPin","title":"Bypass output pin"},{"name":"ignCranklock","title":"Fix cranking timing with trigger","condition":"{ TrigPattern == 1 || TrigPattern == 4 || TrigPattern == 10 || TrigPattern == 9 }"}]},"crankingOptions":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"crankRPM","title":"Cranking RPM (Max)"},{"name":"tpsflood","title":"Flood Clear level"},{"name":"fpPrime","title":"Fuel pump prime duration"},{"name":"primingDelay","title":"Injectors priming delay"},{"name":"crankingEnrichTaper","title":"Cranking enrichment taper time"}]},"primePW":{"title":"Priming Pulsewidth","panels":{"priming_pw_curve":{"fields":[],"panels":{}}},"fields":[]},"crankPW":{"title":"Cranking Settings","layout":"yAxis","panels":{"crankingOptions":{"layout":"North","fields":[],"panels":{}},"crankingEnrichDialog":{"layout":"Center","fields":[],"panels":{}},"crankingIgnOptions":{"layout":"South","fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/Cranking"},"ASE_amount":{"title":"Enrichment amount (%)","layout":"yAxis","panels":{"afterstart_enrichment_curve":{"fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"Defines the fuel enrichment percentage after start."},{"name":"_fieldText_","title":"This is needed to keep engine running after start"},{"name":"_fieldText_","title":"Common values are 5% when engine is hot to 50% when engine is cold."}]},"ASE_time":{"title":"Duration (s)","layout":"yAxis","panels":{"afterstart_enrichment_time":{"fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"How long time the After Start Enrichment is applied in seconds."},{"name":"_fieldText_","title":"Usually this is varies from 1-2s when engine is hot up to 20s on a cold engine."},{"name":"aseTaperTime","title":"Transition time to disable"}]},"ASE":{"title":"Afterstart Enrichment(ASE)","layout":"yAxis","panels":{"ASE_amount":{"fields":[],"panels":{}},"ASE_time":{"fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"#Time and duration curves share common coolant values"}]},"triggerSettings":{"title":"Trigger Settings","layout":"4","panels":{},"fields":[{"name":"TrigPattern","title":"Trigger Pattern"},{"name":"numTeeth","title":"Primary base teeth","condition":"{ TrigPattern == 0 || TrigPattern == 2 || TrigPattern == 11 || TrigPattern == 18 || TrigPattern == 19 }"},{"name":"TrigSpeed","title":"Primary trigger speed","condition":"{ TrigPattern == 0 }"},{"name":"missingTeeth","title":"Missing teeth","condition":"{ TrigPattern == 0 }"},{"name":"TrigAngMul","title":"Trigger angle multiplier","condition":"{ TrigPattern == 11 }"},{"name":"TrigAng","title":"Trigger Angle"},{"name":"_fieldText_","title":"This number represents the angle ATDC when"},{"name":"_fieldText_","title":"tooth #1 passes the primary sensor."},{"name":"_fieldText_","title":""},{"name":"SkipCycles","title":"Skip Revolutions"},{"name":"_fieldText_","title":"Note: This is the number of revolutions that will be skipped during"},{"name":"_fieldText_","title":"cranking before the injectors and coils are fired"},{"name":"TrigEdge","title":"Trigger edge"},{"name":"TrigEdgeSec","title":"Secondary trigger edge","condition":"{ (TrigPattern == 0 && TrigSpeed == 0) || TrigPattern == 2 || TrigPattern == 9 || TrigPattern == 12 || TrigPattern == 18 || TrigPattern == 19 }"},{"name":"_fieldText_","title":"Missing Tooth Secondary type"},{"name":"TrigFilter","title":"Trigger Filter","condition":"{ TrigPattern != 13 }"},{"name":"useResync","title":"Re-sync every cycle","condition":"{ TrigPattern == 2 || TrigPattern == 4 || TrigPattern == 7 || TrigPattern == 12 || TrigPattern == 9 || TrigPattern == 13 || TrigPattern == 18 || TrigPattern == 19 }"}],"help":"https://wiki.speeduino.com/en/decoders"},"lockSparkSettings":{"title":"Locked timing","panels":{},"fields":[{"name":"fixAngEnable","title":"Enabled Fixed/Locked timing"},{"name":"FixAng","title":"Fixed Angle","condition":"{ fixAngEnable }"},{"name":"_fieldText_","title":"#Note: During cranking the fixed/locked timing angle is overriden by the Cranking advance angle value above"}]},"newIgnitionMode":{"title":"New Ignition Mode","panels":{},"fields":[{"name":"_fieldText_","title":"This option is currently will improve accuracy on most compatible triggers"},{"name":"_fieldText_","title":"However if timing issues are encountered, please disable this"},{"name":"perToothIgn","title":"Use new ignition mode"}]},"sparkSettings":{"title":"Spark Settings","layout":"4","panels":{"lockSparkSettings":{"fields":[],"panels":{}},"newIgnitionMode":{"condition":"{TrigPattern == 0 || TrigPattern == 1 || TrigPattern == 2 || TrigPattern == 3 || TrigPattern == 4 || TrigPattern == 9 || TrigPattern == 12 || TrigPattern == 13 || TrigPattern == 18 || TrigPattern == 19}","fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"!Warning: The board you have selected may not have enough channels for sequential ignition!"},{"name":"ignAlgorithm","title":"Ignition load source"},{"name":"sparkMode","title":"Spark output mode"},{"name":"CrankAng","title":"Cranking advance Angle"},{"name":"IgInv","title":"Spark Outputs triggers"}],"help":"https://wiki.speeduino.com/en/configuration/Spark_Settings"},"dwellSettings":{"title":"Dwell Settings","layout":"4","panels":{},"fields":[{"name":"dwellcrank","title":"Cranking dwell"},{"name":"dwellrun","title":"Running dwell"},{"name":"sparkDur","title":"Spark duration"},{"name":"_fieldText_","title":""},{"name":"_fieldText_","title":"#Note"},{"name":"_fieldText_","title":"The above times are for 12V. Voltage correction"},{"name":"_fieldText_","title":"is applied. At higher voltages the time is reduced"},{"name":"_fieldText_","title":"and when low it is increased"},{"name":"_fieldText_","title":""},{"name":"_fieldText_","title":"Overdwell protection"},{"name":"useDwellLim","title":"Use Overdwell protection"},{"name":"dwellLim","title":"Max dwell time","condition":"{ useDwellLim }"},{"name":"_fieldText_","title":"Note: Set the maximum dwell time at least 3ms above"},{"name":"_fieldText_","title":"your desired dwell time (Including cranking)"},{"name":"idleAdvEnabled","title":"Idle advance mode"},{"name":"idleAdvAlgorithm","title":"Idle detect mode","condition":"{ idleAdvEnabled >= 1 }"},{"name":"idleAdvDelay","title":"Delay before idle control starts (s)","condition":"{ idleAdvEnabled >= 1 }"},{"name":"idleAdvRPM","title":"Active Below RPM","condition":"{ idleAdvEnabled >= 1 }"},{"name":"idleAdvTPS","title":"Active Below TPS","condition":"{ idleAdvEnabled >= 1 && idleAdvAlgorithm == 0 }"},{"name":"CTPSEnabled","title":"Closed Throttle Sensor Enabled","condition":"{ idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 }"},{"name":"CTPSPin","title":"Closed Throttle Sensor Pin","condition":"{ idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 && CTPSEnabled == 1 }"},{"name":"CTPSPolarity","title":"Closed Throttle Sensor Pin Polarity","condition":"{ idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 && CTPSEnabled == 1 }"}],"help":"https://wiki.speeduino.com/en/configuration/Dwell"},"idleAdvanceSettings":{"title":"Idle Advance Settings","layout":"xAxis","panels":{"idleAdvanceSettings_east":{"fields":[],"panels":{}},"idle_advance_curve":{"condition":"{ idleAdvEnabled >= 1 }","fields":[],"panels":{}},"iacClosedLoop_curve":{"condition":"{ iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || idleAdvEnabled >= 1 }","fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/IdleAdvance"},"rotary_ignition":{"title":"Rotary Ignition","layout":"4","panels":{"rotaryTrailing_curve":{"fields":[],"panels":{}}},"fields":[{"name":"rotaryType","title":"Ignition Configuration"}]},"boostCut":{"title":"Boost Cut","panels":{},"fields":[{"name":"boostCutEnabled","title":"Enable Boost limit"},{"name":"boostLimit","title":"Boost Limit","condition":"{ boostCutEnabled }"}]},"boostLoad":{"title":"","panels":{"boostTbl":{"fields":[],"panels":{}}},"fields":[{"name":"boostType","title":"Mode"},{"name":"_fieldText_","title":"In open loop mode, the values in this table are duty cycle %"},{"name":"_fieldText_","title":"In closed loop mode, the values are boost targets in kPa"}]},"revLimiterDialog":{"title":"Rev Limiter","panels":{},"fields":[{"name":"_fieldText_","title":"Rev Limiter"},{"name":"_fieldText_","title":"!Soft limiter only available with ignition cut"},{"name":"SoftRevLim","title":"Soft rev limit","condition":"{ engineProtectType == 1 || engineProtectType == 3 }"},{"name":"SoftLimitMode","title":"Soft limiter mode","condition":"{ engineProtectType == 1 || engineProtectType == 3 }"},{"name":"SoftLimRetard","title":"Soft limit timing","condition":"{ engineProtectType == 1 || engineProtectType == 3 }"},{"name":"SoftLimMax","title":"Soft limit max time","condition":"{ engineProtectType == 1 || engineProtectType == 3 }"},{"name":"HardRevLim","title":"Hard Rev limit"}]},"oilPressureProtection":{"title":"Oil Pressure","panels":{"oil_pressure_prot_curve":{"condition":"{ oilPressureEnable && oilPressureProtEnbl }","fields":[],"panels":{}}},"fields":[{"name":"oilPressureProtEnbl","title":"Oil Pressure Protection","condition":"{ oilPressureEnable }"}]},"engineProtectionWest":{"title":"","panels":{"protectIndicatorPanel":{"condition":"{ engineProtectType }","fields":[],"panels":{}}},"fields":[{"name":"engineProtectType","title":"Protection Cut"},{"name":"engineProtectMaxRPM","title":"Engine Protection RPM min","condition":"{ engineProtectType }"},{"name":"hardCutType","title":"Cut method","condition":"{ engineProtectType == 1 || engineProtectType == 3 }"}]},"RevLimiterS":{"title":"Engine Protection and Limiters","layout":"xAxis","panels":{"engineProtectionWest":{"fields":[],"panels":{}},"revLimiterDialog":{"condition":"{ engineProtectType }","fields":[],"panels":{}},"boostCut":{"condition":"{ engineProtectType }","fields":[],"panels":{}},"oilPressureProtection":{"condition":"{ engineProtectType }","fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/Rev_Limits"},"clutchInput":{"title":"Clutch input","panels":{},"fields":[{"name":"launchPin","title":"Clutch Input Pin","condition":"{ launchEnable || flatSEnable }"},{"name":"launchHiLo","title":"Clutch enabled when signal is","condition":"{ launchEnable || flatSEnable }"},{"name":"lnchPullRes","title":"Clutch Pullup Resistor","condition":"{ launchEnable || flatSEnable }"},{"name":"flatSArm","title":"Launch / Flat Shift switch RPM","condition":"{ launchEnable || flatSEnable }"}]},"LaunchControl":{"title":"Launch Control / Flat shift","layout":"6","panels":{"clutchInput":{"fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"Launch Control"},{"name":"launchEnable","title":"Enable Launch"},{"name":"lnchCtrlTPS","title":"TPS threshold","condition":"{ launchEnable }"},{"name":"lnchSoftLim","title":"Soft rev limit","condition":"{ launchEnable }"},{"name":"lnchRetard","title":"Soft limit absolute timing","condition":"{ launchEnable }"},{"name":"lnchHardLim","title":"Hard rev limit","condition":"{ launchEnable }"},{"name":"lnchFuelAdd","title":"Fuel adder during launch","condition":"{ launchEnable }"},{"name":"_fieldText_","title":"Flat Shift"},{"name":"flatSEnable","title":"Enable flat shift"},{"name":"flatSSoftWin","title":"Soft rev window","condition":"{ flatSEnable }"},{"name":"flatSRetard","title":"Soft limit absolute timing","condition":"{ flatSEnable }"}],"help":"https://wiki.speeduino.com/en/configuration/Launch_Flatshift"},"NitrousStage1":{"title":"Stage 1","panels":{},"fields":[{"name":"n2o_stage1_pin","title":"Nitrous Output Pin"},{"name":"n2o_stage1_minRPM","title":"Minimum Engage RPM"},{"name":"n2o_stage1_maxRPM","title":"Maximum Engage RPM"},{"name":"n2o_stage1_adderMin","title":"Fuel adder @ Min RPM"},{"name":"n2o_stage1_adderMax","title":"Fuel adder @ Max RPM"},{"name":"n2o_stage1_retard","title":"Ignition retard when active"}]},"NitrousStage2":{"title":"Stage 2","panels":{},"fields":[{"name":"n2o_stage2_pin","title":"Nitrous Output Pin"},{"name":"n2o_stage2_minRPM","title":"Minimum Engage RPM"},{"name":"n2o_stage2_maxRPM","title":"Maximum Engage RPM"},{"name":"n2o_stage2_adderMin","title":"Fuel adder @ Min RPM"},{"name":"n2o_stage2_adderMax","title":"Fuel adder @ Max RPM"},{"name":"n2o_stage2_retard","title":"Ignition retard when active"}]},"NitrousMain":{"title":"Settings","panels":{},"fields":[{"name":"n2o_enable","title":"Nitrous Mode"},{"name":"n2o_arming_pin","title":"Arming Pin","condition":"{ n2o_enable > 0 }"},{"name":"n2o_pin_polarity","title":"Nitrous is armed when pin is","condition":"{ n2o_enable > 0 }"},{"name":"n2o_minCLT","title":"Minimum CLT","condition":"{ n2o_enable > 0 }"},{"name":"n2o_minTPS","title":"Minimum TPS","condition":"{ n2o_enable > 0 }"},{"name":"n2o_maxMAP","title":"Maximum MAP","condition":"{ n2o_enable > 0 }"},{"name":"n2o_maxAFR","title":"Leanest AFR","condition":"{ n2o_enable > 0 }"}]},"NitrousControl":{"title":"Nitrous","panels":{"NitrousMain":{"layout":"North","fields":[],"panels":{}},"NitrousStage1":{"layout":"West","condition":"{ n2o_enable > 0 }","fields":[],"panels":{}},"NitrousStage2":{"layout":"East","condition":"{ n2o_enable > 1 }","fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/Nitrous_Control"},"OLED":{"title":"OLED Display","layout":"2","panels":{},"fields":[{"name":"display","title":"Display Type"},{"name":"_fieldText_","title":"#Note"},{"name":"_fieldText_","title":"ECU must be rebooted after changing above value"},{"name":"display1","title":"Field 1","condition":"{ display }"},{"name":"display2","title":"Field 2","condition":"{ display }"},{"name":"display3","title":"Field 3","condition":"{ display }"},{"name":"display4","title":"Field 4","condition":"{ display }"}]},"batCal":{"title":"Calibrate voltage reading","panels":{},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/Sensor_Calibration"},"mapCal":{"title":"Calibrate MAP","panels":{},"fields":[{"name":"_fieldText_","title":"#MAP Sensor"},{"name":"mapMin","title":"kPa At 0.0 Volts"},{"name":"mapMax","title":"kPa At 5.0 Volts"},{"name":"legacyMAP","title":"Use legacy MAP reading"},{"name":"_fieldText_","title":"#Baro Sensor"},{"name":"useExtBaro","title":"Use external Baro sensor"},{"name":"baroPin","title":"Analog pin to use for ext. Baro sensor","condition":"{ useExtBaro }"},{"name":"baroMin","title":"kPa At 0.0 Volts","condition":"{ useExtBaro }"},{"name":"baroMax","title":"kPa At 5.0 Volts","condition":"{ useExtBaro }"},{"name":"_fieldText_","title":"#EMAP Sensor"},{"name":"useEMAP","title":"Use EMAP sensor"},{"name":"EMAPPin","title":"Analog pin to use for ext. Baro sensor","condition":"{ useEMAP }"},{"name":"EMAPMin","title":"kPa At 0.0 Volts","condition":"{ useEMAP }"},{"name":"EMAPMax","title":"kPa At 5.0 Volts","condition":"{ useEMAP }"}],"help":"https://wiki.speeduino.com/en/configuration/Sensor_Calibration"},"sensorFilters":{"title":"Analog sensor filters","panels":{},"fields":[{"name":"_fieldText_","title":"The values here set the amount of filtering to apply to each analog input"},{"name":"_fieldText_","title":"Higher values result in stronger filtering, but slower response times for readings"},{"name":"_fieldText_","title":"#Most setups will NOT require changes to the default filter values"},{"name":"_fieldText_","title":""},{"name":"fuelPressureEnable","title":"Enabled"},{"name":"fuelPressurePin","title":"Pin","condition":"{ fuelPressureEnable }"},{"name":"fuelPressureMin","title":"Pressure at 0v","condition":"{ fuelPressureEnable }"},{"name":"fuelPressureMax","title":"Pressure at 5v","condition":"{ fuelPressureEnable }"}]},"fuelPressureDialog":{"title":"Fuel Pressure","layout":"xAxis","panels":{"fuelPressureSettings":{"fields":[],"panels":{}}},"fields":[{"name":"oilPressureEnable","title":"Enabled"},{"name":"oilPressurePin","title":"Pin","condition":"{ oilPressureEnable }"},{"name":"oilPressureMin","title":"Pressure at 0v","condition":"{ oilPressureEnable }"},{"name":"oilPressureMax","title":"Pressure at 5v","condition":"{ oilPressureEnable }"}]},"oilPressureDialog":{"title":"Oil Pressure","layout":"xAxis","panels":{"oilPressureSettings":{"fields":[],"panels":{}}},"fields":[]},"pressureSensors":{"title":"Pressure Transducers","panels":{"fuelPressureDialog":{"fields":[],"panels":{}},"oilPressureDialog":{"fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/Sensor_Calibration"},"boostSettings":{"title":"Boost Control","panels":{"boostCut":{"fields":[],"panels":{}}},"fields":[{"name":"boostEnabled","title":"Boost Control Enabled"},{"name":"boostType","title":"Boost control type","condition":"{ boostEnabled }"},{"name":"boostPin","title":"Boost output pin","condition":"{ boostEnabled }"},{"name":"boostFreq","title":"Boost solenoid freq.","condition":"{ boostEnabled }"},{"name":"boostMinDuty","title":"Valve minimum duty cycle","condition":"{ boostEnabled && boostType == 1 }"},{"name":"boostMaxDuty","title":"Valve maximum duty cycle","condition":"{ boostEnabled && boostType == 1 }"},{"name":"_fieldText_","title":"Closed Loop settings"},{"name":"boostMode","title":"Control mode","condition":"{ boostEnabled && boostType == 1 }"},{"name":"boostIntv","title":"Control interval","condition":"{ boostEnabled && boostType == 1 }"},{"name":"boostKP","title":"P","condition":"{ boostEnabled && boostMode && boostType == 1 }"},{"name":"boostKI","title":"I","condition":"{ boostEnabled && boostMode && boostType == 1 }"},{"name":"boostKD","title":"D","condition":"{ boostEnabled && boostMode && boostType == 1 }"}],"help":"https://wiki.speeduino.com/en/configuration/Boost_Control"},"vvtClosedLoop":{"title":"Closed loop","panels":{},"fields":[{"name":"vvtCLUseHold","title":"Hold duty used"},{"name":"vvtCLholdDuty","title":"Hold duty","condition":"{ vvtCLUseHold }"},{"name":"vvtCLAlterFuelTiming","title":"Adjust fuel timing"},{"name":"vvtCLMinAng","title":"Cam angle @ 0% duty"},{"name":"_fieldText_","title":""},{"name":"vvtCLKP","title":"Proportional Gain"},{"name":"vvtCLKI","title":"Integral Gain"},{"name":"vvtCLKD","title":"Differential Gain"},{"name":"vvtCLminDuty","title":"Minimum valve duty","condition":"{ vvtEnabled && vvtMode == 2 }"},{"name":"vvtCLmaxDuty","title":"Maximum valve duty","condition":"{ vvtEnabled && vvtMode == 2 }"}]},"vvtSettings":{"title":"VVT Control","panels":{"vvtClosedLoop":{"condition":"{ vvtEnabled && vvtMode == 2 }","fields":[],"panels":{}}},"fields":[{"name":"vvtEnabled","title":"VVT Control Enabled"},{"name":"vvtMode","title":"VVT Mode","condition":"{ vvtEnabled }"},{"name":"_fieldText_","title":"#Please note that close loop is currently experimental for Miata patterns ONLY"},{"name":"vvtLoadSource","title":"Load source","condition":"{ vvtEnabled }"},{"name":"VVTasOnOff","title":"Use VVT map as On / Off only","condition":"{ vvtEnabled && vvtMode != 2 }"},{"name":"vvt1Pin","title":"VVT output pin","condition":"{ vvtEnabled }"},{"name":"vvtFreq","title":"VVT solenoid freq.","condition":"{ vvtEnabled }"},{"name":"vvtPWMdir","title":"Increased duty direction","condition":"{ vvtEnabled }"}]},"wmiSettings":{"title":"WMI Control","panels":{"wmi_adv_curve":{"condition":"{ wmiEnabled && wmiAdvEnabled }","fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"#Experimental!"},{"name":"wmiEnabled","title":"WMI Control Enabled"},{"name":"wmiMode","title":"WMI Mode","condition":"{ wmiEnabled }"},{"name":"wmiTPS","title":"WMI min TPS","condition":"{ wmiEnabled }"},{"name":"wmiRPM","title":"WMI min RPM","condition":"{ wmiEnabled }"},{"name":"wmiMAP","title":"WMI min MAP","condition":"{ wmiEnabled }"},{"name":"wmiMAP2","title":"WMI max MAP","condition":"{ wmiEnabled && wmiMode == 1}"},{"name":"wmiIAT","title":"WMI min IAT","condition":"{ wmiEnabled }"},{"name":"wmiOffset","title":"WMI offset","condition":"{ wmiEnabled && wmiMode == 3}"},{"name":"_fieldText_","title":""},{"name":"vvt1Pin","title":"WMI PWM output pin","condition":"{ wmiEnabled }"},{"name":"vvtFreq","title":"WMI PWM freq.","condition":"{ wmiEnabled }"},{"name":"_fieldText_","title":""},{"name":"wmiEnabledPin","title":"WMI enabled output pin","condition":"{ wmiEnabled }"},{"name":"_fieldText_","title":""},{"name":"wmiEmptyEnabled","title":"WMI tank empty input","condition":"{ wmiEnabled }"},{"name":"wmiEmptyPin","title":"WMI tank empty pin","condition":"{ wmiEnabled }"},{"name":"wmiEmptyPolarity","title":"WMI tank empty polarity","condition":"{ wmiEnabled }"},{"name":"_fieldText_","title":""},{"name":"wmiIndicatorEnabled","title":"WMI tank indicator output","condition":"{ wmiEnabled }"},{"name":"wmiIndicatorPin","title":"WMI tank indicator pin","condition":"{ wmiEnabled }"},{"name":"wmiIndicatorPolarity","title":"WMI tank indicator polarity","condition":"{ wmiEnabled }"},{"name":"_fieldText_","title":""},{"name":"wmiAdvEnabled","title":"Iginition advance correction","condition":"{ wmiEnabled }"}]},"warmup":{"title":"Warmup Enrichment (WUE) - Percent Multiplier","panels":{"warmup_curve":{"fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"Final enrichment value must be 100%."},{"name":"_fieldText_","title":""}]},"inj_trim1TblTitle":{"title":"Channel #1","panels":{"fuelTrimTable1Tbl":{"condition":"{ fuelTrimEnabled }","fields":[],"panels":{}}},"fields":[]},"inj_trim2TblTitle":{"title":"Channel #2","panels":{"fuelTrimTable2Tbl":{"condition":"{ fuelTrimEnabled }","fields":[],"panels":{}}},"fields":[]},"inj_trim3TblTitle":{"title":"Channel #3","panels":{"fuelTrimTable3Tbl":{"condition":"{ fuelTrimEnabled }","fields":[],"panels":{}}},"fields":[]},"inj_trim4TblTitle":{"title":"Channel #4","panels":{"fuelTrimTable4Tbl":{"condition":"{ fuelTrimEnabled }","fields":[],"panels":{}}},"fields":[]},"inj_trimadt":{"title":"","layout":"xAxis","panels":{"inj_trim1TblTitle":{"fields":[],"panels":{}},"inj_trim2TblTitle":{"fields":[],"panels":{}}},"fields":[]},"inj_trimadb":{"title":"","layout":"xAxis","panels":{"inj_trim3TblTitle":{"fields":[],"panels":{}},"inj_trim4TblTitle":{"fields":[],"panels":{}}},"fields":[]},"inj_trim_enable":{"title":"","panels":{},"fields":[{"name":"fuelTrimEnabled","title":"Individual fuel trim enabled","condition":"{ injLayout == 3 && nCylinders <= 4 }"}]},"inj_trimad":{"title":"Injector Cyl 1-4 Trims","layout":"yAxis","panels":{"inj_trim_enable":{"layout":"North","fields":[],"panels":{}},"inj_trimadt":{"layout":"Center","fields":[],"panels":{}},"inj_trimadb":{"layout":"South","fields":[],"panels":{}}},"fields":[]},"stagingTableDialog_north":{"title":"","panels":{},"fields":[{"name":"stagingEnabled","title":"Staging enabled"},{"name":"stagingMode","title":"Staging mode"},{"name":"stagedInjSizePri","title":"Size of primary injectors","condition":"{ stagingEnabled }"},{"name":"stagedInjSizeSec","title":"Size of secondary injectors","condition":"{ stagingEnabled }"}]},"stagingTableDialog_south":{"title":"","panels":{"stagingTbl":{"condition":"{ stagingMode == 0 }","fields":[],"panels":{}}},"fields":[]},"stagingTableDialog":{"title":"Staged injection","panels":{"stagingTableDialog_north":{"layout":"North","fields":[],"panels":{}},"stagingTableDialog_south":{"layout":"South","fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/Staged_Injection"},"outputtest_warningmessage":{"title":"","panels":{},"fields":[{"name":"_fieldText_","title":"WARNING! USE AT YOUR OWN RISK. INCORRECT USE WILL DAMAGE YOUR HARDWARE!"},{"name":"_fieldText_","title":"Do not attempt to use this page whilst your engine is running!"},{"name":"_fieldText_","title":"Forcing the Injector or Spark outputs could cause flooding of your engine or permanent damage to ignition coils!"}]},"enableoutputtestbuttons":{"title":"Enable Test Controls","layout":"xAxis","panels":{},"fields":[]},"outputtestinj1":{"title":"Injector CH1","layout":"yAxis","panels":{},"fields":[]},"outputtestinj2":{"title":"Injector CH2","layout":"yAxis","panels":{},"fields":[]},"outputtestinj3":{"title":"Injector CH3","layout":"yAxis","panels":{},"fields":[]},"outputtestinj4":{"title":"Injector CH4","layout":"yAxis","panels":{},"fields":[]},"outputtestinj5":{"title":"Injector CH5","layout":"yAxis","panels":{},"fields":[]},"outputtestinj6":{"title":"Injector CH6","layout":"yAxis","panels":{},"fields":[]},"outputtestinj7":{"title":"Injector CH7","layout":"yAxis","panels":{},"fields":[]},"outputtestinj8":{"title":"Injector CH8","layout":"yAxis","panels":{},"fields":[]},"outputtest_injectors":{"title":"Injector Driver Output Test","layout":"xAxis","panels":{"outputtestinj1":{"fields":[],"panels":{}},"outputtestinj2":{"fields":[],"panels":{}},"outputtestinj3":{"fields":[],"panels":{}},"outputtestinj4":{"fields":[],"panels":{}},"outputtestinj5":{"fields":[],"panels":{}},"outputtestinj6":{"fields":[],"panels":{}},"outputtestinj7":{"fields":[],"panels":{}},"outputtestinj8":{"fields":[],"panels":{}}},"fields":[]},"outputtestspk1":{"title":"Spark CH1","layout":"yAxis","panels":{},"fields":[]},"outputtestspk2":{"title":"Spark CH2","layout":"yAxis","panels":{},"fields":[]},"outputtestspk3":{"title":"Spark CH3","layout":"yAxis","panels":{},"fields":[]},"outputtestspk4":{"title":"Spark CH4","layout":"yAxis","panels":{},"fields":[]},"outputtestspk5":{"title":"Spark CH5","layout":"yAxis","panels":{},"fields":[]},"outputtestspk6":{"title":"Spark CH6","layout":"yAxis","panels":{},"fields":[]},"outputtestspk7":{"title":"Spark CH7","layout":"yAxis","panels":{},"fields":[]},"outputtestspk8":{"title":"Spark CH8","layout":"yAxis","panels":{},"fields":[]},"outputtest_spark":{"title":"Spark Driver Output Test","layout":"xAxis","panels":{"outputtestspk1":{"fields":[],"panels":{}},"outputtestspk2":{"fields":[],"panels":{}},"outputtestspk3":{"fields":[],"panels":{}},"outputtestspk4":{"fields":[],"panels":{}},"outputtestspk5":{"fields":[],"panels":{}},"outputtestspk6":{"fields":[],"panels":{}},"outputtestspk7":{"fields":[],"panels":{}},"outputtestspk8":{"fields":[],"panels":{}}},"fields":[]},"outputtest1":{"title":"Test Output Hardware","panels":{"enableoutputtestbuttons":{"fields":[],"panels":{}},"outputtest_injectors":{"fields":[],"panels":{}},"outputtest_spark":{"fields":[],"panels":{}},"outputtest_warningmessage":{"fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/Hardware_testing_page"},"stm32cmd":{"title":"STM32 Commands","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"If Secondary Serial or Internal CANBUS is DISABLED then any input channel assigned to that external source will NOT function"}]},"canAuxinput_alias":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Input Alias"},{"name":"AUXin00Alias","title":"","condition":"{(caninput_sel0a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin01Alias","title":"","condition":"{(caninput_sel1a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin02Alias","title":"","condition":"{(caninput_sel2a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin03Alias","title":"","condition":"{(caninput_sel3a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin04Alias","title":"","condition":"{(caninput_sel4a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin05Alias","title":"","condition":"{(caninput_sel5a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin06Alias","title":"","condition":"{(caninput_sel6a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin07Alias","title":"","condition":"{(caninput_sel7a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin08Alias","title":"","condition":"{(caninput_sel8a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin09Alias","title":"","condition":"{(caninput_sel9a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin10Alias","title":"","condition":"{(caninput_sel10a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin11Alias","title":"","condition":"{(caninput_sel11a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin12Alias","title":"","condition":"{(caninput_sel12a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin13Alias","title":"","condition":"{(caninput_sel13a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin14Alias","title":"","condition":"{(caninput_sel14a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin15Alias","title":"","condition":"{(caninput_sel15a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"}]},"caninput_sel":{"title":"","panels":{},"fields":[{"name":"_fieldText_","title":"CAN Input Channel on/off"},{"name":"caninput_sel0a","title":"CAN Input 0","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel0b","title":"CAN Input 0","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel1a","title":"CAN Input 1","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel1b","title":"CAN Input 1","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel2a","title":"CAN Input 2","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel2b","title":"CAN Input 2","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel3a","title":"CAN Input 3","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel3b","title":"CAN Input 3","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel4a","title":"CAN Input 4","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel4b","title":"CAN Input 4","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel5a","title":"CAN Input 5","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel5b","title":"CAN Input 5","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel6a","title":"CAN Input 6","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel6b","title":"CAN Input 6","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel7a","title":"CAN Input 7","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel7b","title":"CAN Input 7","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel8a","title":"CAN Input 8","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel8b","title":"CAN Input 8","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel9a","title":"CAN Input 9","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel9b","title":"CAN Input 9","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel10a","title":"CAN Input 10","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel10b","title":"CAN Input 10","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel11a","title":"CAN Input 11","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel11b","title":"CAN Input 11","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel12a","title":"CAN Input 12","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel12b","title":"CAN Input 12","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel13a","title":"CAN Input 13","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel13b","title":"CAN Input 13","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel14a","title":"CAN Input 14","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel14b","title":"CAN Input 14","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel15a","title":"CAN Input 15","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel15b","title":"CAN Input 15","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"}]},"caninput_parameter_group":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Source CAN Address"},{"name":"caninput_source_can_address0","title":"","condition":"{ (caninput_sel0a == 1 || caninput_sel0b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address1","title":"","condition":"{ (caninput_sel1a == 1 || caninput_sel1b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address2","title":"","condition":"{ (caninput_sel2a == 1 || caninput_sel2b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address3","title":"","condition":"{ (caninput_sel3a == 1 || caninput_sel3b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address4","title":"","condition":"{ (caninput_sel4a == 1 || caninput_sel4b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address5","title":"","condition":"{ (caninput_sel5a == 1 || caninput_sel5b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address6","title":"","condition":"{ (caninput_sel6a == 1 || caninput_sel6b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address7","title":"","condition":"{ (caninput_sel7a == 1 || caninput_sel7b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address8","title":"","condition":"{ (caninput_sel8a == 1 || caninput_sel8b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address9","title":"","condition":"{ (caninput_sel9a == 1 || caninput_sel9b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address10","title":"","condition":"{ (caninput_sel10a == 1 || caninput_sel10b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address11","title":"","condition":"{ (caninput_sel11a == 1 || caninput_sel11b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address12","title":"","condition":"{ (caninput_sel12a == 1 || caninput_sel12b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address13","title":"","condition":"{ (caninput_sel13a == 1 || caninput_sel13b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address14","title":"","condition":"{ (caninput_sel14a == 1 || caninput_sel14b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address15","title":"","condition":"{ (caninput_sel15a == 1 || caninput_sel15b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"}]},"caninput_parameter_start_byte":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"source data start byte"},{"name":"caninput_source_start_byte0","title":"","condition":"{ (caninput_sel0a == 1 || caninput_sel0b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte1","title":"","condition":"{ (caninput_sel1a == 1 || caninput_sel1b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte2","title":"","condition":"{ (caninput_sel2a == 1 || caninput_sel2b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte3","title":"","condition":"{ (caninput_sel3a == 1 || caninput_sel3b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte4","title":"","condition":"{ (caninput_sel4a == 1 || caninput_sel4b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte5","title":"","condition":"{ (caninput_sel5a == 1 || caninput_sel5b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte6","title":"","condition":"{ (caninput_sel6a == 1 || caninput_sel6b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte7","title":"","condition":"{ (caninput_sel7a == 1 || caninput_sel7b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte8","title":"","condition":"{ (caninput_sel8a == 1 || caninput_sel8b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte9","title":"","condition":"{ (caninput_sel9a == 1 || caninput_sel9b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte10","title":"","condition":"{ (caninput_sel10a == 1 || caninput_sel10b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte11","title":"","condition":"{ (caninput_sel11a == 1 || caninput_sel11b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte12","title":"","condition":"{ (caninput_sel12a == 1 || caninput_sel12b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte13","title":"","condition":"{ (caninput_sel13a == 1 || caninput_sel13b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte14","title":"","condition":"{ (caninput_sel14a == 1 || caninput_sel14b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte15","title":"","condition":"{ (caninput_sel15a == 1 || caninput_sel15b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"}]},"caninput_parameter_num_byte":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Input Parameter Number of Bytes"},{"name":"caninput_source_num_bytes0","title":"","condition":"{ (caninput_sel0a == 1 || caninput_sel0b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes1","title":"","condition":"{ (caninput_sel1a == 1 || caninput_sel1b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes2","title":"","condition":"{ (caninput_sel2a == 1 || caninput_sel2b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes3","title":"","condition":"{ (caninput_sel3a == 1 || caninput_sel3b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes4","title":"","condition":"{ (caninput_sel4a == 1 || caninput_sel4b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes5","title":"","condition":"{ (caninput_sel5a == 1 || caninput_sel5b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes6","title":"","condition":"{ (caninput_sel6a == 1 || caninput_sel6b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes7","title":"","condition":"{ (caninput_sel7a == 1 || caninput_sel7b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes8","title":"","condition":"{ (caninput_sel8a == 1 || caninput_sel8b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes9","title":"","condition":"{ (caninput_sel9a == 1 || caninput_sel9b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes10","title":"","condition":"{ (caninput_sel10a == 1 || caninput_sel10b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes11","title":"","condition":"{ (caninput_sel11a == 1 || caninput_sel11b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes12","title":"","condition":"{ (caninput_sel12a == 1 || caninput_sel12b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes13","title":"","condition":"{ (caninput_sel13a == 1 || caninput_sel13b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes14","title":"","condition":"{ (caninput_sel14a == 1 || caninput_sel14b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes15","title":"","condition":"{ (caninput_sel15a == 1 || caninput_sel15b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"}]},"caninput_serial_can":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Serial/CAN"},{"name":"caninput_sel0extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel0extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel0extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel1extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel1extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel1extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel2extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel2extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel2extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel3extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel3extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel3extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel4extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel4extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel4extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel5extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel5extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel5extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel6extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel6extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel6extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel7extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel7extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel7extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel8extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel8extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel8extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel9extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel9extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel9extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel10extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel10extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel10extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel11extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel11extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel11extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel12extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel12extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel12extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel13extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel13extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel13extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel14extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel14extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel14extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel15extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel15extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel15extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"}]},"caninconfig_blank1":{"title":"","panels":{},"fields":[{"name":"_fieldText_","title":""}]},"Canin_config1":{"title":"","layout":"xAxis","panels":{"canAuxinput_alias":{"fields":[],"panels":{}},"caninconfig_blank1":{"fields":[],"panels":{}},"caninput_sel":{"fields":[],"panels":{}},"caninput_serial_can":{"fields":[],"panels":{}},"caninput_parameter_group":{"fields":[],"panels":{}},"caninput_parameter_start_byte":{"fields":[],"panels":{}},"caninput_parameter_num_byte":{"fields":[],"panels":{}}},"fields":[]},"Canin_config":{"title":"","layout":"yAxis","panels":{"Auxin_north":{"fields":[],"panels":{}},"Canin_config1":{"fields":[],"panels":{}}},"fields":[],"help":"http://speeduino.com/wiki/index.php/Secondary_Serial_IO_interface#Read_external_analog_data"},"canAuxoutput_alias":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Input Alias"},{"name":"AUXin00Alias","title":"","condition":"{canoutput_sel0}"},{"name":"AUXin01Alias","title":"","condition":"{canoutput_sel1}"},{"name":"AUXin02Alias","title":"","condition":"{canoutput_sel2}"},{"name":"AUXin03Alias","title":"","condition":"{canoutput_sel3}"},{"name":"AUXin04Alias","title":"","condition":"{canoutput_sel4}"},{"name":"AUXin05Alias","title":"","condition":"{canoutput_sel5}"},{"name":"AUXin06Alias","title":"","condition":"{canoutput_sel6}"},{"name":"AUXin07Alias","title":"","condition":"{canoutput_sel7}"}]},"canoutput_sel":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"CAN Output Channel on/off"},{"name":"canoutput_sel0","title":"CAN Output 0","condition":"{ enable_intcandata_out}"},{"name":"canoutput_sel1","title":"CAN Output 1","condition":"{ enable_intcandata_out }"},{"name":"canoutput_sel2","title":"CAN Output 2","condition":"{ enable_intcandata_out }"},{"name":"canoutput_sel3","title":"CAN Output 3","condition":"{ enable_intcandata_out }"},{"name":"canoutput_sel4","title":"CAN Output 4","condition":"{ enable_intcandata_out }"},{"name":"canoutput_sel5","title":"CAN Output 5","condition":"{ enable_intcandata_out }"},{"name":"canoutput_sel6","title":"CAN Output 6","condition":"{ enable_intcandata_out }"},{"name":"canoutput_sel7","title":"CAN Output 7","condition":"{ enable_intcandata_out }"}]},"canoutput_parameter_group":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Output Parameter Group"},{"name":"canoutput_param_group","title":""},{"name":"canoutput_param_group","title":""},{"name":"canoutput_param_group","title":""},{"name":"canoutput_param_group","title":""},{"name":"canoutput_param_group","title":""},{"name":"canoutput_param_group","title":""},{"name":"canoutput_param_group","title":""},{"name":"canoutput_param_group","title":""}]},"canoutput_parameter_start_byte":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Output Parameter Start Byte"},{"name":"canoutput_param_start_byte0","title":"","condition":"{ canoutput_sel0 && enable_intcandata_out }"},{"name":"canoutput_param_start_byte1","title":"","condition":"{ canoutput_sel1 && enable_intcandata_out }"},{"name":"canoutput_param_start_byte2","title":"","condition":"{ canoutput_sel2 && enable_intcandata_out }"},{"name":"canoutput_param_start_byte3","title":"","condition":"{ canoutput_sel3 && enable_intcandata_out }"},{"name":"canoutput_param_start_byte4","title":"","condition":"{ canoutput_sel4 && enable_intcandata_out }"},{"name":"canoutput_param_start_byte5","title":"","condition":"{ canoutput_sel5 && enable_intcandata_out }"},{"name":"canoutput_param_start_byte6","title":"","condition":"{ canoutput_sel6 && enable_intcandata_out }"},{"name":"canoutput_param_start_byte7","title":"","condition":"{ canoutput_sel7 && enable_intcandata_out }"}]},"canoutput_parameter_num_byte":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Output Parameter Number of Bytes"},{"name":"canoutput_param_num_bytes0","title":"","condition":"{ canoutput_sel0 && enable_intcandata_out }"},{"name":"canoutput_param_num_bytes1","title":"","condition":"{ canoutput_sel1 && enable_intcandata_out }"},{"name":"canoutput_param_num_bytes2","title":"","condition":"{ canoutput_sel2 && enable_intcandata_out }"},{"name":"canoutput_param_num_bytes3","title":"","condition":"{ canoutput_sel3 && enable_intcandata_out }"},{"name":"canoutput_param_num_bytes4","title":"","condition":"{ canoutput_sel4 && enable_intcandata_out }"},{"name":"canoutput_param_num_bytes5","title":"","condition":"{ canoutput_sel5 && enable_intcandata_out }"},{"name":"canoutput_param_num_bytes6","title":"","condition":"{ canoutput_sel6 && enable_intcandata_out }"},{"name":"canoutput_param_num_bytes7","title":"","condition":"{ canoutput_sel7 && enable_intcandata_out }"}]},"canoutconfig_blank1":{"title":"","panels":{},"fields":[{"name":"_fieldText_","title":""}]},"Canout_config1":{"title":"","layout":"xAxis","panels":{"canAuxoutput_alias":{"fields":[],"panels":{}},"canoutconfig_blank1":{"fields":[],"panels":{}},"canoutput_sel":{"fields":[],"panels":{}},"canoutput_parameter_group":{"fields":[],"panels":{}},"canoutput_parameter_start_byte":{"fields":[],"panels":{}},"canoutput_parameter_num_byte":{"fields":[],"panels":{}}},"fields":[]},"Canout_config2":{"title":"CAN Data Out","panels":{},"fields":[{"name":"enable_intcandata_out","title":"Enable CanBus data Output"}]},"Canout_config":{"title":"","layout":"yAxis","panels":{"Canout_config2":{"fields":[],"panels":{}},"Canout_config1":{"fields":[],"panels":{}}},"fields":[],"help":""},"can_serial3IO":{"title":"CanBus/Secondary Serial IO interface","panels":{},"fields":[{"name":"enable_secondarySerial","title":"Enable Second Serial"},{"name":"enable_intcan","title":"Enable Internal Canbus"},{"name":"true_address","title":"True Canbus Address"},{"name":"_fieldText_","title":"NOTE! Realtime Data Base Address MUST be at least 0x16 GREATER than the True Address as they are reserved for future expansion"},{"name":"realtime_base_address","title":"Realtime Data Base Can Address"},{"name":"obd_address","title":"Speeduino OBD address"}],"help":"http://speeduino.com/wiki/index.php/Secondary_Serial_IO_interface"},"serial3IO":{"title":"Secondary Serial IO interface","panels":{},"fields":[{"name":"enable_secondarySerial","title":"Enable Second Serial"},{"name":"enable_intcan","title":"Enable Internal Canbus"},{"name":"true_address","title":"True Canbus Address"},{"name":"_fieldText_","title":"NOTE! Realtime Data Base Address MUST be at least 0x16 GREATER than the True Address as they are reserved for future expansion"},{"name":"realtime_base_address","title":"Realtime Data Base Can Address"},{"name":"obd_address","title":"Speeduino OBD address"}],"help":"http://speeduino.com/wiki/index.php/Serial3_IO_interface"},"reset_control":{"title":"Reset Control","panels":{},"fields":[{"name":"resetControl","title":"Control Type"},{"name":"resetControlPin","title":"Control Pin"}]},"Auxinput_pin_selection":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Source"},{"name":"Auxin0pina","title":"Local Analog Source 0 Pin No:","condition":"{(caninput_sel0a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin0pinb","title":"Local Digital Source 0 Pin No:","condition":"{(caninput_sel0a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin1pina","title":"Local Analog Source 1 Pin No:","condition":"{(caninput_sel1a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin1pinb","title":"Local Digital Source 1 Pin No:","condition":"{(caninput_sel1a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin2pina","title":"Local Analog Source 2 Pin No:","condition":"{(caninput_sel2a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin2pinb","title":"Local Digital Source 2 Pin No:","condition":"{(caninput_sel2a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin3pina","title":"Local Analog Source 3 Pin No:","condition":"{(caninput_sel3a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin3pinb","title":"Local Digital Source 3 Pin No:","condition":"{(caninput_sel3a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin4pina","title":"Local Analog Source 4 Pin No:","condition":"{(caninput_sel4a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin4pinb","title":"Local Digital Source 4 Pin No:","condition":"{(caninput_sel4a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin5pina","title":"Local Analog Source 5 Pin No:","condition":"{(caninput_sel5a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin5pinb","title":"Local Digital Source 5 Pin No:","condition":"{(caninput_sel5a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin6pina","title":"Local Analog Source 6 Pin No:","condition":"{(caninput_sel6a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin6pinb","title":"Local Digital Source 6 Pin No:","condition":"{(caninput_sel6a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin7pina","title":"Local Analog Source 7 Pin No:","condition":"{(caninput_sel7a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin7pinb","title":"Local Digital Source 7 Pin No:","condition":"{(caninput_sel7a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin8pina","title":"Local Analog Source 8 Pin No:","condition":"{(caninput_sel8a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin8pinb","title":"Local Digital Source 8 Pin No:","condition":"{(caninput_sel8a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin9pina","title":"Local Analog Source 9 Pin No:","condition":"{(caninput_sel9a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin9pinb","title":"Local Digital Source 9 Pin No:","condition":"{(caninput_sel9a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin10pina","title":"Local Analog Source 10 Pin No:","condition":"{(caninput_sel10a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin10pinb","title":"Local Digital Source 10 Pin No:","condition":"{(caninput_sel10a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin11pina","title":"Local Analog Source 11 Pin No:","condition":"{(caninput_sel11a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin11pinb","title":"Local Digital Source 11 Pin No:","condition":"{(caninput_sel11a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin12pina","title":"Local Analog Source 12 Pin No:","condition":"{(caninput_sel12a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin12pinb","title":"Local Digital Source 12 Pin No:","condition":"{(caninput_sel12a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin13pina","title":"Local Analog Source 13 Pin No:","condition":"{(caninput_sel13a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin13pinb","title":"Local Digital Source 13 Pin No:","condition":"{(caninput_sel13a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin14pina","title":"Local Analog Source 14 Pin No:","condition":"{(caninput_sel14a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin14pinb","title":"Local Digital Source 14 Pin No:","condition":"{(caninput_sel14a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin15pina","title":"Local Analog Source 15 Pin No:","condition":"{(caninput_sel15a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin15pinb","title":"Local Digital Source 15 Pin No:","condition":"{(caninput_sel15a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"}]},"Auxinput_alias":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Input Alias"},{"name":"AUXin00Alias","title":"","condition":"{(caninput_sel0a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin01Alias","title":"","condition":"{(caninput_sel1a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin02Alias","title":"","condition":"{(caninput_sel2a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin03Alias","title":"","condition":"{(caninput_sel3a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin04Alias","title":"","condition":"{(caninput_sel4a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin05Alias","title":"","condition":"{(caninput_sel5a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin06Alias","title":"","condition":"{(caninput_sel6a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin07Alias","title":"","condition":"{(caninput_sel7a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin08Alias","title":"","condition":"{(caninput_sel8a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin09Alias","title":"","condition":"{(caninput_sel9a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin10Alias","title":"","condition":"{(caninput_sel10a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin11Alias","title":"","condition":"{(caninput_sel11a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin12Alias","title":"","condition":"{(caninput_sel12a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin13Alias","title":"","condition":"{(caninput_sel13a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin14Alias","title":"","condition":"{(caninput_sel14a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin15Alias","title":"","condition":"{(caninput_sel15a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"}]},"Auxinput_channelenable":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Aux Input Channel Enable"},{"name":"caninput_sel0a","title":"AUX Input 0","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel0b","title":"AUX Input 0","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel1a","title":"AUX Input 1","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel1b","title":"AUX Input 1","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel2a","title":"AUX Input 2","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel2b","title":"AUX Input 2","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel3a","title":"AUX Input 3","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel3b","title":"AUX Input 3","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel4a","title":"AUX Input 4","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel4b","title":"AUX Input 4","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel5a","title":"AUX Input 5","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel5b","title":"AUX Input 5","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel6a","title":"AUX Input 6","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel6b","title":"AUX Input 6","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel7a","title":"AUX Input 7","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel7b","title":"AUX Input 7","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel8a","title":"AUX Input 8","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel8b","title":"AUX Input 8","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel9a","title":"AUX Input 9","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel9b","title":"AUX Input 9","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel10a","title":"AUX Input 10","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel10b","title":"AUX Input 10","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel11a","title":"AUX Input 11","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel11b","title":"AUX Input 11","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel12a","title":"AUX Input 12","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel12b","title":"AUX Input 12","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel13a","title":"AUX Input 13","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel13b","title":"AUX Input 13","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel14a","title":"AUX Input 14","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel14b","title":"AUX Input 14","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel15a","title":"AUX Input 15","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel15b","title":"AUX Input 15","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"}]},"Auxin_south":{"title":"Auxillary Input Configuration","layout":"xAxis","panels":{"Auxinput_alias":{"fields":[],"panels":{}},"Auxinput_channelenable":{"fields":[],"panels":{}},"Auxinput_pin_selection":{"fields":[],"panels":{}}},"fields":[]},"Auxin_config":{"title":"","layout":"yAxis","panels":{"Auxin_north":{"fields":[],"panels":{}},"Auxin_south":{"fields":[],"panels":{}}},"fields":[]},"gaugeLimits":{"title":"Gauge Limits","panels":{},"fields":[{"name":"_fieldText_","title":"#RPM"},{"name":"rpmwarn","title":"Warning"},{"name":"rpmdang","title":"Danger"},{"name":"rpmhigh","title":"High"},{"name":"_fieldText_","title":"#MAP"},{"name":"mapwarn","title":"Warning"},{"name":"mapdang","title":"Danger"},{"name":"maphigh","title":"High"}]},"io_summary":{"title":"I/O Summary","panels":{},"fields":[]},"prgm_out_pin_selection_1":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"outputInverted0","title":"","condition":"{outputPin[0]}"},{"name":"outputInverted1","title":"","condition":"{outputPin[1]}"},{"name":"outputInverted2","title":"","condition":"{outputPin[2]}"},{"name":"outputInverted3","title":"","condition":"{outputPin[3]}"},{"name":"outputInverted4","title":"","condition":"{outputPin[4]}"},{"name":"outputInverted5","title":"","condition":"{outputPin[5]}"},{"name":"outputInverted6","title":"","condition":"{outputPin[6]}"},{"name":"outputInverted7","title":"","condition":"{outputPin[7]}"}]},"prgm_out_pin_selection_2":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"firstDataIn0","title":"if(","condition":"{outputPin[0]}"},{"name":"firstDataIn1","title":"if(","condition":"{outputPin[1]}"},{"name":"firstDataIn2","title":"if(","condition":"{outputPin[2]}"},{"name":"firstDataIn3","title":"if(","condition":"{outputPin[3]}"},{"name":"firstDataIn4","title":"if(","condition":"{outputPin[4]}"},{"name":"firstDataIn5","title":"if(","condition":"{outputPin[5]}"},{"name":"firstDataIn6","title":"if(","condition":"{outputPin[6]}"},{"name":"firstDataIn7","title":"if(","condition":"{outputPin[7]}"}]},"prgm_out_pin_selection_3":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"firstCompType0","title":"","condition":"{outputPin[0]}"},{"name":"firstCompType1","title":"","condition":"{outputPin[1]}"},{"name":"firstCompType2","title":"","condition":"{outputPin[2]}"},{"name":"firstCompType3","title":"","condition":"{outputPin[3]}"},{"name":"firstCompType4","title":"","condition":"{outputPin[4]}"},{"name":"firstCompType5","title":"","condition":"{outputPin[5]}"},{"name":"firstCompType6","title":"","condition":"{outputPin[6]}"},{"name":"firstCompType7","title":"","condition":"{outputPin[7]}"}]},"prgm_out_pin_selection_4":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""}]},"prgm_out_pin_selection_5":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"bitwise0","title":")","condition":"{outputPin[0]}"},{"name":"bitwise1","title":")","condition":"{outputPin[1]}"},{"name":"bitwise2","title":")","condition":"{outputPin[2]}"},{"name":"bitwise3","title":")","condition":"{outputPin[3]}"},{"name":"bitwise4","title":")","condition":"{outputPin[4]}"},{"name":"bitwise5","title":")","condition":"{outputPin[6]}"},{"name":"bitwise6","title":")","condition":"{outputPin[6]}"},{"name":"bitwise7","title":")","condition":"{outputPin[7]}"}]},"prgm_out_pin_selection_6":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"secondDataIn0","title":"","condition":"{outputPin[0] && bitwise0}"},{"name":"secondDataIn1","title":"","condition":"{outputPin[1] && bitwise1}"},{"name":"secondDataIn2","title":"","condition":"{outputPin[2] && bitwise2}"},{"name":"secondDataIn3","title":"","condition":"{outputPin[3] && bitwise3}"},{"name":"secondDataIn4","title":"","condition":"{outputPin[4] && bitwise4}"},{"name":"secondDataIn5","title":"","condition":"{outputPin[5] && bitwise5}"},{"name":"secondDataIn6","title":"","condition":"{outputPin[6] && bitwise6}"},{"name":"secondDataIn7","title":"","condition":"{outputPin[7] && bitwise7}"}]},"prgm_out_pin_selection_":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""}]},"prgm_out_pin_selection_7":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"secondCompType0","title":"","condition":"{outputPin[0] && bitwise0}"},{"name":"secondCompType1","title":"","condition":"{outputPin[1] && bitwise1}"},{"name":"secondCompType2","title":"","condition":"{outputPin[2] && bitwise2}"},{"name":"secondCompType3","title":"","condition":"{outputPin[3] && bitwise3}"},{"name":"secondCompType4","title":"","condition":"{outputPin[4] && bitwise4}"},{"name":"secondCompType5","title":"","condition":"{outputPin[5] && bitwise5}"},{"name":"secondCompType6","title":"","condition":"{outputPin[6] && bitwise6}"},{"name":"secondCompType6","title":"","condition":"{outputPin[7] && bitwise7}"}]},"prgm_out_pin_selection_8":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"secondTarget","title":""},{"name":"secondTarget","title":""},{"name":"secondTarget","title":""},{"name":"secondTarget","title":""},{"name":"secondTarget","title":""},{"name":"secondTarget","title":""},{"name":"secondTarget","title":""},{"name":"secondTarget","title":""}]},"prgm_out_pin_selection_9":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"outputDelay","title":"during"},{"name":"outputDelay","title":"during"},{"name":"outputDelay","title":"during"},{"name":"outputDelay","title":"during"},{"name":"outputDelay","title":"during"},{"name":"outputDelay","title":"during"},{"name":"outputDelay","title":"during"},{"name":"outputDelay","title":"during"}]},"prgm_out_alias":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Input Alias"},{"name":"prgm_out00Alias","title":"","condition":"{outputPin[0]}"},{"name":"prgm_out01Alias","title":"","condition":"{outputPin[1]}"},{"name":"prgm_out02Alias","title":"","condition":"{outputPin[2]}"},{"name":"prgm_out03Alias","title":"","condition":"{outputPin[3]}"},{"name":"prgm_out04Alias","title":"","condition":"{outputPin[4]}"},{"name":"prgm_out05Alias","title":"","condition":"{outputPin[5]}"},{"name":"prgm_out06Alias","title":"","condition":"{outputPin[6]}"},{"name":"prgm_out07Alias","title":"","condition":"{outputPin[7]}"}]},"prgm_out_channelenable":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Pin No:"},{"name":"outputPin0","title":""},{"name":"outputPin1","title":""},{"name":"outputPin2","title":""},{"name":"outputPin3","title":""},{"name":"outputPin4","title":""},{"name":"outputPin5","title":""},{"name":"outputPin6","title":""},{"name":"outputPin7","title":""}]},"prgm_out_unique":{"title":"","layout":"xAxis","panels":{"prgm_out_channelenable":{"fields":[],"panels":{}},"prgm_out_alias":{"fields":[],"panels":{}},"prgm_out_pin_selection_1":{"fields":[],"panels":{}},"prgm_out_pin_selection_2":{"fields":[],"panels":{}},"prgm_out_pin_selection_3":{"fields":[],"panels":{}},"prgm_out_pin_selection_4":{"fields":[],"panels":{}},"prgm_out_pin_selection_5":{"fields":[],"panels":{}},"prgm_out_pin_selection_6":{"fields":[],"panels":{}},"prgm_out_pin_selection_7":{"fields":[],"panels":{}},"prgm_out_pin_selection_8":{"fields":[],"panels":{}},"prgm_out_pin_selection_9":{"fields":[],"panels":{}}},"fields":[]},"prgm_out_rules_1_condition_1":{"title":"Condition 1","layout":"xAxis","panels":{},"fields":[{"name":"firstDataIn0","title":"","condition":"{outputPin[0]}"},{"name":"firstCompType0","title":"","condition":"{outputPin[0]}"},{"name":"firstTarget","title":""}]},"prgm_out_rules_1_condition_2":{"title":"Condition 2","layout":"xAxis","panels":{},"fields":[{"name":"secondDataIn0","title":"","condition":"{outputPin[0] && bitwise0}"},{"name":"secondCompType0","title":"","condition":"{outputPin[0] && bitwise0}"},{"name":"secondTarget","title":""}]},"prgm_out_rules_2_condition_1":{"title":"Condition 1","layout":"xAxis","panels":{},"fields":[{"name":"firstDataIn1","title":"","condition":"{outputPin[1]}"},{"name":"firstCompType1","title":"","condition":"{outputPin[1]}"},{"name":"firstTarget","title":""}]},"prgm_out_rules_2_condition_2":{"title":"Condition 2","layout":"xAxis","panels":{},"fields":[{"name":"secondDataIn1","title":"","condition":"{outputPin[1] && bitwise1}"},{"name":"secondCompType1","title":"","condition":"{outputPin[1] && bitwise1}"},{"name":"secondTarget","title":""}]},"prgm_out_rules_3_condition_1":{"title":"Condition 1","layout":"xAxis","panels":{},"fields":[{"name":"firstDataIn2","title":"","condition":"{outputPin[2]}"},{"name":"firstCompType2","title":"","condition":"{outputPin[2]}"},{"name":"firstTarget","title":""}]},"prgm_out_rules_3_condition_2":{"title":"Condition 2","layout":"xAxis","panels":{},"fields":[{"name":"secondDataIn2","title":"","condition":"{outputPin[2] && bitwise2}"},{"name":"secondCompType2","title":"","condition":"{outputPin[2] && bitwise2}"},{"name":"secondTarget","title":""}]},"prgm_out_rules_4_condition_1":{"title":"Condition 1","layout":"xAxis","panels":{},"fields":[{"name":"firstDataIn3","title":"","condition":"{outputPin[3]}"},{"name":"firstCompType3","title":"","condition":"{outputPin[3]}"},{"name":"firstTarget","title":""}]},"prgm_out_rules_4_condition_2":{"title":"Condition 2","layout":"xAxis","panels":{},"fields":[{"name":"secondDataIn3","title":"","condition":"{outputPin[3] && bitwise3}"},{"name":"secondCompType3","title":"","condition":"{outputPin[3] && bitwise3}"},{"name":"secondTarget","title":""}]},"prgm_out_rules_5_condition_1":{"title":"Condition 1","layout":"xAxis","panels":{},"fields":[{"name":"firstDataIn4","title":"","condition":"{outputPin[4]}"},{"name":"firstCompType4","title":"","condition":"{outputPin[4]}"},{"name":"firstTarget","title":""}]},"prgm_out_rules_5_condition_2":{"title":"Condition 2","layout":"xAxis","panels":{},"fields":[{"name":"secondDataIn4","title":"","condition":"{outputPin[4] && bitwise4}"},{"name":"secondCompType4","title":"","condition":"{outputPin[4] && bitwise4}"},{"name":"secondTarget","title":""}]},"prgm_out_rules_6_condition_1":{"title":"Condition 1","layout":"xAxis","panels":{},"fields":[{"name":"firstDataIn5","title":"","condition":"{outputPin[5]}"},{"name":"firstCompType5","title":"","condition":"{outputPin[5]}"},{"name":"firstTarget","title":""}]},"prgm_out_rules_6_condition_2":{"title":"Condition 2","layout":"xAxis","panels":{},"fields":[{"name":"secondDataIn5","title":"","condition":"{outputPin[5] && bitwise5}"},{"name":"secondCompType5","title":"","condition":"{outputPin[5] && bitwise5}"},{"name":"secondTarget","title":""}]},"prgm_out_rules_7_condition_1":{"title":"Condition 1","layout":"xAxis","panels":{},"fields":[{"name":"firstDataIn6","title":"","condition":"{outputPin[6]}"},{"name":"firstCompType6","title":"","condition":"{outputPin[6]}"},{"name":"firstTarget","title":""}]},"prgm_out_rules_7_condition_2":{"title":"Condition 2","layout":"xAxis","panels":{},"fields":[{"name":"secondDataIn6","title":"","condition":"{outputPin[6] && bitwise6}"},{"name":"secondCompType6","title":"","condition":"{outputPin[6] && bitwise6}"},{"name":"secondTarget","title":""}]},"prgm_out_rules_8_condition_1":{"title":"Condition 1","layout":"xAxis","panels":{},"fields":[{"name":"firstDataIn7","title":"","condition":"{outputPin[7]}"},{"name":"firstCompType7","title":"","condition":"{outputPin[7]}"},{"name":"firstTarget","title":""}]},"prgm_out_rules_8_condition_2":{"title":"Condition 2","layout":"xAxis","panels":{},"fields":[{"name":"secondDataIn7","title":"","condition":"{outputPin[7] && bitwise7}"},{"name":"secondCompType7","title":"","condition":"{outputPin[7] && bitwise7}"},{"name":"secondTarget","title":""}]},"prgm_out_rules_1":{"title":"Rule 1","layout":"yAxis","panels":{"prgm_out_rules_1_condition_1":{"fields":[],"panels":{}},"prgm_out_rules_1_condition_2":{"fields":[],"panels":{}}},"fields":[{"name":"outputPin0","title":"Output Pin Num"},{"name":"prgm_out00Alias","title":"Rule Alias","condition":"{outputPin[0]}"},{"name":"outputInverted0","title":"Output Polarity","condition":"{outputPin[0]}"},{"name":"outputDelay","title":"Activation Delay"},{"name":"bitwise0","title":"2nd Condition","condition":"{outputPin[0]}"}]},"prgm_out_rules_2":{"title":"Rule 2","layout":"yAxis","panels":{"prgm_out_rules_2_condition_1":{"fields":[],"panels":{}},"prgm_out_rules_2_condition_2":{"fields":[],"panels":{}}},"fields":[{"name":"outputPin1","title":"Output Pin Num"},{"name":"prgm_out01Alias","title":"Rule Alias","condition":"{outputPin[1]}"},{"name":"outputInverted1","title":"Output Polarity","condition":"{outputPin[1]}"},{"name":"outputDelay","title":"Activation Delay"},{"name":"bitwise1","title":"2nd Condition","condition":"{outputPin[1]}"}]},"prgm_out_rules_3":{"title":"Rule 3","layout":"yAxis","panels":{"prgm_out_rules_3_condition_1":{"fields":[],"panels":{}},"prgm_out_rules_3_condition_2":{"fields":[],"panels":{}}},"fields":[{"name":"outputPin2","title":"Output Pin Num"},{"name":"prgm_out02Alias","title":"Rule Alias","condition":"{outputPin[2]}"},{"name":"outputInverted2","title":"Output Polarity","condition":"{outputPin[2]}"},{"name":"outputDelay","title":"Activation Delay"},{"name":"bitwise2","title":"2nd Condition","condition":"{outputPin[2]}"}]},"prgm_out_rules_4":{"title":"Rule 4","layout":"yAxis","panels":{"prgm_out_rules_4_condition_1":{"fields":[],"panels":{}},"prgm_out_rules_4_condition_2":{"fields":[],"panels":{}}},"fields":[{"name":"outputPin3","title":"Output Pin Num"},{"name":"prgm_out03Alias","title":"Rule Alias","condition":"{outputPin[3]}"},{"name":"outputInverted3","title":"Output Polarity","condition":"{outputPin[3]}"},{"name":"outputDelay","title":"Activation Delay"},{"name":"bitwise3","title":"2nd Condition","condition":"{outputPin[3]}"}]},"prgm_out_rules_5":{"title":"Rule 5","layout":"yAxis","panels":{"prgm_out_rules_5_condition_1":{"fields":[],"panels":{}},"prgm_out_rules_5_condition_2":{"fields":[],"panels":{}}},"fields":[{"name":"outputPin4","title":"Output Pin Num"},{"name":"prgm_out04Alias","title":"Rule Alias","condition":"{outputPin[4]}"},{"name":"outputInverted4","title":"Output Polarity","condition":"{outputPin[4]}"},{"name":"outputDelay","title":"Activation Delay"},{"name":"bitwise4","title":"2nd Condition","condition":"{outputPin[4]}"}]},"prgm_out_rules_6":{"title":"Rule 6","layout":"yAxis","panels":{"prgm_out_rules_6_condition_1":{"fields":[],"panels":{}},"prgm_out_rules_6_condition_2":{"fields":[],"panels":{}}},"fields":[{"name":"outputPin5","title":"Output Pin Num"},{"name":"prgm_out05Alias","title":"Rule Alias","condition":"{outputPin[5]}"},{"name":"outputInverted5","title":"Output Polarity","condition":"{outputPin[5]}"},{"name":"outputDelay","title":"Activation Delay"},{"name":"bitwise5","title":"2nd Condition","condition":"{outputPin[5]}"}]},"prgm_out_rules_7":{"title":"Rule 7","layout":"yAxis","panels":{"prgm_out_rules_7_condition_1":{"fields":[],"panels":{}},"prgm_out_rules_7_condition_2":{"fields":[],"panels":{}}},"fields":[{"name":"outputPin6","title":"Output Pin Num"},{"name":"prgm_out06Alias","title":"Rule Alias","condition":"{outputPin[6]}"},{"name":"outputInverted6","title":"Output Polarity","condition":"{outputPin[6]}"},{"name":"outputDelay","title":"Activation Delay"},{"name":"bitwise6","title":"2nd Condition","condition":"{outputPin[6]}"}]},"prgm_out_rules_8":{"title":"Rule 8","layout":"yAxis","panels":{"prgm_out_rules_8_condition_1":{"fields":[],"panels":{}},"prgm_out_rules_8_condition_2":{"fields":[],"panels":{}}},"fields":[{"name":"outputPin7","title":"Output Pin Num"},{"name":"prgm_out07Alias","title":"Rule Alias","condition":"{outputPin[7]}"},{"name":"outputInverted7","title":"Output Polarity","condition":"{outputPin[7]}"},{"name":"outputDelay","title":"Activation Delay"},{"name":"bitwise7","title":"2nd Condition","condition":"{outputPin[7]}"}]},"prgm_out_rules_master":{"title":"","layout":"card","panels":{"prgm_out_rules_1":{"layout":"Center","condition":"{ prgm_out_selection == 0 }","fields":[],"panels":{}},"prgm_out_rules_2":{"layout":"Center","condition":"{ prgm_out_selection == 1 }","fields":[],"panels":{}},"prgm_out_rules_3":{"layout":"Center","condition":"{ prgm_out_selection == 2 }","fields":[],"panels":{}},"prgm_out_rules_4":{"layout":"Center","condition":"{ prgm_out_selection == 3 }","fields":[],"panels":{}},"prgm_out_rules_5":{"layout":"Center","condition":"{ prgm_out_selection == 4 }","fields":[],"panels":{}},"prgm_out_rules_6":{"layout":"Center","condition":"{ prgm_out_selection == 5 }","fields":[],"panels":{}},"prgm_out_rules_7":{"layout":"Center","condition":"{ prgm_out_selection == 6 }","fields":[],"panels":{}},"prgm_out_rules_8":{"layout":"Center","condition":"{ prgm_out_selection == 7 }","fields":[],"panels":{}}},"fields":[]},"prgm_out_config":{"title":"","layout":"yAxis","panels":{"prgm_out_rules_master":{"fields":[],"panels":{}}},"fields":[{"name":"prgm_out_selection","title":"Select Rule Number"}]}},"curves":{"time_accel_tpsdot_curve":{"title":"TPS based AE","labels":["TPSdot","Added"],"xAxis":[0,1200,6],"yAxis":[0,250,4],"xBins":["taeBins","TPSdot"],"yBins":["taeRates"],"size":[]},"time_accel_mapdot_curve":{"title":"MAP based AE","labels":["MAPdot","Added"],"xAxis":[0,1200,6],"yAxis":[0,250,4],"xBins":["maeBins","MAPdot"],"yBins":["maeRates"],"size":[]},"dwell_correction_curve":{"title":"Dwell voltage correction","labels":["Voltage","Dwell"],"xAxis":[6,22,6],"yAxis":[0,255,6],"xBins":["brvBins","batteryVoltage"],"yBins":["dwellRates"],"size":[]},"injector_voltage_curve":{"title":"Injector voltage correction","labels":["Voltage","Injector"],"xAxis":[6,22,6],"yAxis":[0,255,6],"xBins":["brvBins","batteryVoltage"],"yBins":["injBatRates"],"size":[]},"injector_timing_curve":{"title":"Injector timing","labels":["RPM","Injector"],"xAxis":[0,7000,6],"yAxis":[0,720,5],"xBins":["injAngRPM","rpm"],"yBins":["injAng"],"size":[]},"airdensity_curve":{"title":"IAT density correction","labels":["Air Temperature","Fuel Amount"],"xAxis":[-40,160,6],"yAxis":[0,255,6],"xBins":["airDenBins","iat"],"yBins":["airDenRates"],"size":[]},"baroFuel_curve":{"title":"Baro fuel correction","labels":["Baro Pressure","Fuel Amount"],"xAxis":[75,112,6],"yAxis":[0,255,6],"xBins":["baroFuelBins","baro"],"yBins":["baroFuelValues"],"size":[]},"fuelTemp_curve":{"title":"Fuel temp correction","labels":["Fuel Temperature","Fuel Amount"],"xAxis":[-40,125,6],"yAxis":[0,255,6],"xBins":["fuelTempBins","fuelTemp"],"yBins":["fuelTempValues"],"size":[]},"iat_retard_curve":{"title":"IAT timing retard","labels":["Inlet Air Temp","Retard"],"xAxis":[-40,200,5],"yAxis":[0,30,5],"xBins":["iatRetBins","iat"],"yBins":["iatRetRates"],"size":[]},"clt_advance_curve":{"title":"Cold Advance","labels":["Coolant Temp","Advance"],"xAxis":[-40,200,5],"yAxis":[-12.7,12.7,5],"xBins":["cltAdvBins","coolant"],"yBins":["cltAdvValues"],"size":[]},"idle_advance_curve":{"title":"Idle Advance","labels":["RPM Delta","Advance"],"xAxis":[-500,500,5],"yAxis":[-15,50,5],"xBins":["idleAdvBins","CLIdleDelta"],"yBins":["idleAdvValues"],"size":[450,200]},"iacPwm_curve":{"title":"IAC PWM Duty","labels":["Coolant Temperature","Valve"],"xAxis":[-40,315,6],"yAxis":[0,100,4],"xBins":["iacBins","coolant"],"yBins":["iacOLPWMVal"],"size":[]},"iacPwmCrank_curve":{"title":"IAC PWM Cranking Duty","labels":["Coolant Temperature","Valve"],"xAxis":[-40,215,6],"yAxis":[0,100,4],"xBins":["iacCrankBins","coolant"],"yBins":["iacCrankDuty"],"size":[]},"iacStep_curve":{"title":"IAC Stepper Motor","labels":["Coolant Temperature","Motor"],"xAxis":[-40,315,6],"yAxis":[0,850,4],"xBins":["iacBins","coolant"],"yBins":["iacOLStepVal"],"size":[]},"iacStepCrank_curve":{"title":"IAC Stepper Motor Cranking","labels":["Coolant Temperature","Motor"],"xAxis":[-40,120,6],"yAxis":[0,850,4],"xBins":["iacCrankBins","coolant"],"yBins":["iacCrankSteps"],"size":[]},"iacClosedLoop_curve":{"title":"Idle RPM Targets","labels":["Coolant Temperature","Motor"],"xAxis":[-40,120,6],"yAxis":[0,2000,4],"xBins":["iacBins","coolant"],"yBins":["iacCLValues"],"size":[450,200]},"rotaryTrailing_curve":{"title":"Rotary Trailing Split","labels":["Engine load","Split"],"xAxis":[0,"{ fuelLoadMax }",5],"yAxis":[0,40,4],"xBins":["rotarySplitBins","fuelLoad"],"yBins":["rotarySplitValues"],"size":[]},"warmup_curve":{"title":"Warmup Enrichment (WUE) Curve","labels":["Coolant","WUE %"],"xAxis":[-40,210,9],"yAxis":[0,240,6],"xBins":["wueBins","coolant"],"yBins":["wueRates"],"size":[]},"cranking_enrich_curve":{"title":"Cranking Enrichment Curve","labels":["Coolant","Fuel Modifier"],"xAxis":[-40,110,9],"yAxis":[0,400,6],"xBins":["crankingEnrichBins","coolant"],"yBins":["crankingEnrichValues"],"size":[]},"priming_pw_curve":{"title":"Priming Pulsewidth","labels":["Coolant","PW"],"xAxis":[-40,110,4],"yAxis":[0,10,4],"xBins":["primeBins","coolant"],"yBins":["primePulse"],"size":[]},"afterstart_enrichment_curve":{"title":"ASE - Enrichment %","labels":["Coolant","Enrichment"],"xAxis":[-40,110,4],"yAxis":[0,200,4],"xBins":["aseBins","coolant"],"yBins":["asePct"],"size":[50,250]},"afterstart_enrichment_time":{"title":"ASE - Duration","labels":["Coolant","Time"],"xAxis":[-40,110,4],"yAxis":[0,20,4],"xBins":["aseBins","coolant"],"yBins":["aseCount"],"size":[50,250]},"flex_fuel_curve":{"title":"Flex Fuel Adjustments","labels":["Ethanol","Fuel"],"xAxis":[0,100,10],"yAxis":[50,250,5],"xBins":["flexFuelBins","flex"],"yBins":["flexFuelAdj"],"size":[400,200]},"flex_adv_curve":{"title":"Flex Timing Advance","labels":["Ethanol","Advance"],"xAxis":[0,100,10],"yAxis":[0,50,5],"xBins":["flexAdvBins","flex"],"yBins":["flexAdvAdj"],"size":[400,200]},"flex_boost_curve":{"title":"Flex Boost Adjustments","labels":["Ethanol","Boost"],"xAxis":[0,100,10],"yAxis":[-100,200,5],"xBins":["flexBoostBins","flex"],"yBins":["flexBoostAdj"],"size":[400,200]},"knock_window_angle_curve":{"title":"Knock Window","labels":["RPM","Window Start"],"xAxis":[0,8000,9],"yAxis":[-100,100,11],"xBins":["knock_window_rpms","rpm"],"yBins":["knock_window_angle"],"size":[400,200]},"knock_window_duration_curve":{"title":"Knock Window Duration","labels":["RPM","Window Duration"],"xAxis":[0,8000,9],"yAxis":[0,100,10],"xBins":["knock_window_rpms","rpm"],"yBins":["knock_window_dur"],"size":[400,200]},"oil_pressure_prot_curve":{"title":"Oil Pressure Protection","labels":["RPM","Minimum PSI"],"xAxis":[0,8000,9],"yAxis":[0,150,3],"xBins":["oilPressureProtRPM","rpm"],"yBins":["oilPressureProtMins"],"size":[400,200]},"warmup_afr_curve":{"title":"Target Adjustment","labels":["Coolant","Offset"],"xAxis":[-40,210,9],"yAxis":[-4,1,5],"xBins":["wueBins","coolant"],"yBins":["wueAFR"],"size":[]},"warmup_analyzer_curve":{"title":"Warmup Enrichment","labels":["Coolant","Current WUE","Coolant","Recommended WUE"],"xAxis":[-40,210,9],"yAxis":[100,255,6],"xBins":["wueBins","coolant"],"yBins":["wueRecommended"],"size":[]},"wmi_adv_curve":{"title":"WMI Timing Advance","labels":["kPa","Advance"],"xAxis":[0,511,20],"yAxis":[0,50,5],"xBins":["wmiAdvBins","map"],"yBins":["wmiAdvAdj"],"size":[400,200]}},"tables":{"veTable1Tbl":{"map":"veTable1Map","title":"VE Table","page":2,"xBins":["rpmBins","rpm"],"yBins":["fuelLoadBins","fuelLoad"],"xyLabels":["RPM","Fuel Load:"],"zBins":["veTable"],"gridHeight":2,"gridOrient":[250,0,340],"upDownLabel":["(RICHER)","(LEANER)"],"help":"http://speeduino.com/wiki/index.php/Tuning"},"fuelTable2Tbl":{"map":"fuel2Map","title":"Fuel Table 2","page":11,"xBins":["fuelRPM2Bins","rpm"],"yBins":["fuelLoad2Bins","fuelLoad2"],"xyLabels":["RPM","Fuel Load:"],"zBins":["veTable2"],"gridHeight":2,"gridOrient":[250,0,340],"upDownLabel":["(RICHER)","(LEANER)"],"help":"http://speeduino.com/wiki/index.php/Tuning"},"sparkTbl":{"map":"sparkMap","title":"Ignition Advance Table","page":3,"xBins":["rpmBins2","rpm"],"yBins":["mapBins1","ignLoad"],"xyLabels":["RPM","Ignition Load:"],"zBins":["advTable1"],"gridHeight":3,"gridOrient":[],"upDownLabel":["ADVANCING","RETARDING"]},"spark2Tbl":{"map":"spark2Map","title":"Second Ignition Advance Table","page":14,"xBins":["rpmBins3","rpm"],"yBins":["mapBins2","ignLoad"],"xyLabels":["RPM","Ignition Load:"],"zBins":["advTable2"],"gridHeight":3,"gridOrient":[],"upDownLabel":["ADVANCING","RETARDING"]},"afrTable1Tbl":{"map":"afrTable1Map","title":"AFR Table","page":5,"xBins":["rpmBinsAFR","rpm"],"yBins":["loadBinsAFR","fuelLoad"],"xyLabels":[],"zBins":["afrTable"],"gridHeight":1,"gridOrient":[250,0,340],"upDownLabel":["RICHER","LEANER"]},"boostTbl":{"map":"boostMap","title":"Boost Duty / Target","page":8,"xBins":["rpmBinsBoost","rpm"],"yBins":["tpsBinsBoost","throttle"],"xyLabels":[],"zBins":["boostTable"],"gridHeight":3,"gridOrient":[],"upDownLabel":["HIGHER","LOWER"]},"vvtTbl":{"map":"vvtMap","title":"VVT control Table","page":8,"xBins":["rpmBinsVVT","rpm"],"yBins":["loadBinsVVT","vvtLoad"],"xyLabels":["RPM","VVT Load:"],"zBins":["vvtTable"],"gridHeight":3,"gridOrient":[],"upDownLabel":["HIGHER","LOWER"]},"wmiTbl":{"map":"wmiMapMap","title":"WMI control Table","page":8,"xBins":["rpmBinsWMI","rpm"],"yBins":["mapBinsWMI","map"],"xyLabels":["RPM","WMI Load:"],"zBins":["wmiTable"],"gridHeight":3,"gridOrient":[],"upDownLabel":["HIGHER","LOWER"]},"stagingTbl":{"map":"stagingMap","title":"Fuel Staging Table","page":10,"xBins":["rpmBinsStaging","rpm"],"yBins":["loadBinsStaging","fuelLoad"],"xyLabels":[],"zBins":["stagingTable"],"gridHeight":3,"gridOrient":[],"upDownLabel":["HIGHER","LOWER"]},"fuelTrimTable1Tbl":{"map":"fuelTrimTable1Map","title":"Fuel trim Table 1","page":9,"xBins":["fuelTrim1rpmBins","rpm"],"yBins":["fuelTrim1loadBins","fuelLoad"],"xyLabels":[],"zBins":["fuelTrim1Table"],"gridHeight":2,"gridOrient":[250,0,340],"upDownLabel":["(RICHER)","(LEANER)"],"help":"http://speeduino.com/wiki/index.php/Tuning"},"fuelTrimTable2Tbl":{"map":"fuelTrimTable2Map","title":"Fuel trim Table 2","page":9,"xBins":["fuelTrim2rpmBins","rpm"],"yBins":["fuelTrim2loadBins","fuelLoad"],"xyLabels":[],"zBins":["fuelTrim2Table"],"gridHeight":2,"gridOrient":[250,0,340],"upDownLabel":["(RICHER)","(LEANER)"],"help":"http://speeduino.com/wiki/index.php/Tuning"},"fuelTrimTable3Tbl":{"map":"fuelTrimTable3Map","title":"Fuel trim Table 3","page":9,"xBins":["fuelTrim3rpmBins","rpm"],"yBins":["fuelTrim3loadBins","fuelLoad"],"xyLabels":[],"zBins":["fuelTrim3Table"],"gridHeight":2,"gridOrient":[250,0,340],"upDownLabel":["(RICHER)","(LEANER)"],"help":"http://speeduino.com/wiki/index.php/Tuning"},"fuelTrimTable4Tbl":{"map":"fuelTrimTable4Map","title":"Fuel trim Table 4","page":9,"xBins":["fuelTrim4rpmBins","rpm"],"yBins":["fuelTrim4loadBins","fuelLoad"],"xyLabels":[],"zBins":["fuelTrim4Table"],"gridHeight":2,"gridOrient":[250,0,340],"upDownLabel":["(RICHER)","(LEANER)"],"help":"http://speeduino.com/wiki/index.php/Tuning"}},"outputChannels":{"ochGetCommand":{"value":"r\\$tsCanId\\x30%2o%2c"},"ochBlockSize":{"value":"117"},"secl":{"type":"scalar","size":"U08","offset":0,"units":"sec","scale":1,"transform":0},"status1":{"type":"scalar","size":"U08","offset":1,"units":"bits","scale":1,"transform":0},"inj1Status":{"type":"bits","size":"U08","offset":1,"units":"","scale":"","transform":""},"inj2Status":{"type":"bits","size":"U08","offset":1,"units":"","scale":"","transform":""},"inj3Status":{"type":"bits","size":"U08","offset":1,"units":"","scale":"","transform":""},"inj4Status":{"type":"bits","size":"U08","offset":1,"units":"","scale":"","transform":""},"DFCOOn":{"type":"bits","size":"U08","offset":1,"units":"","scale":"","transform":""},"boostCutFuel":{"type":"bits","size":"U08","offset":1,"units":"","scale":"","transform":""},"toothLog1Ready":{"type":"bits","size":"U08","offset":1,"units":"","scale":"","transform":""},"toothLog2Ready":{"type":"bits","size":"U08","offset":1,"units":"","scale":"","transform":""},"engine":{"type":"scalar","size":"U08","offset":2,"units":"bits","scale":1,"transform":0},"running":{"type":"bits","size":"U08","offset":2,"units":"","scale":"","transform":""},"crank":{"type":"bits","size":"U08","offset":2,"units":"","scale":"","transform":""},"ase":{"type":"bits","size":"U08","offset":2,"units":"","scale":"","transform":""},"warmup":{"type":"bits","size":"U08","offset":2,"units":"","scale":"","transform":""},"tpsaccaen":{"type":"bits","size":"U08","offset":2,"units":"","scale":"","transform":""},"tpsaccden":{"type":"bits","size":"U08","offset":2,"units":"","scale":"","transform":""},"mapaccaen":{"type":"bits","size":"U08","offset":2,"units":"","scale":"","transform":""},"mapaccden":{"type":"bits","size":"U08","offset":2,"units":"","scale":"","transform":""},"syncLossCounter":{"type":"scalar","size":"U08","offset":3,"units":"","scale":1,"transform":0},"map":{"type":"scalar","size":"U16","offset":4,"units":"kpa","scale":1,"transform":0},"iatRaw":{"type":"scalar","size":"U08","offset":6,"units":"°C","scale":1,"transform":0},"coolantRaw":{"type":"scalar","size":"U08","offset":7,"units":"°C","scale":1,"transform":0},"batCorrection":{"type":"scalar","size":"U08","offset":8,"units":"%","scale":1,"transform":0},"batteryVoltage":{"type":"scalar","size":"U08","offset":9,"units":"V","scale":0.1,"transform":0},"afr":{"type":"scalar","size":"U08","offset":10,"units":"O2","scale":0.1,"transform":0},"egoCorrection":{"type":"scalar","size":"U08","offset":11,"units":"%","scale":1,"transform":0},"airCorrection":{"type":"scalar","size":"U08","offset":12,"units":"%","scale":1,"transform":0},"warmupEnrich":{"type":"scalar","size":"U08","offset":13,"units":"%","scale":1,"transform":0},"rpm":{"type":"scalar","size":"U16","offset":14,"units":"rpm","scale":1,"transform":0},"accelEnrich":{"type":"scalar","size":"U08","offset":16,"units":"%","scale":2,"transform":0},"gammaEnrich":{"type":"scalar","size":"U16","offset":17,"units":"%","scale":1,"transform":0},"VE1":{"type":"scalar","size":"U08","offset":19,"units":"%","scale":1,"transform":0},"VE2":{"type":"scalar","size":"U08","offset":20,"units":"%","scale":1,"transform":0},"afrTarget":{"type":"scalar","size":"U08","offset":21,"units":"O2","scale":0.1,"transform":0},"TPSdot":{"type":"scalar","size":"U08","offset":22,"units":"%/s","scale":10,"transform":0},"advance":{"type":"scalar","size":"S08","offset":23,"units":"deg","scale":1,"transform":0},"tps":{"type":"scalar","size":"U08","offset":24,"units":"%","scale":1,"transform":0},"loopsPerSecond":{"type":"scalar","size":"U16","offset":25,"units":"loops","scale":1,"transform":0},"freeRAM":{"type":"scalar","size":"U16","offset":27,"units":"bytes","scale":1,"transform":0},"boostTarget":{"type":"scalar","size":"U08","offset":29,"units":"kPa","scale":2,"transform":0},"boostDuty":{"type":"scalar","size":"U08","offset":30,"units":"%","scale":1,"transform":0},"status2":{"type":"scalar","size":"U08","offset":31,"units":"bits","scale":1,"transform":0},"launchHard":{"type":"bits","size":"U08","offset":31,"units":"","scale":"","transform":""},"launchSoft":{"type":"bits","size":"U08","offset":31,"units":"","scale":"","transform":""},"hardLimitOn":{"type":"bits","size":"U08","offset":31,"units":"","scale":"","transform":""},"softlimitOn":{"type":"bits","size":"U08","offset":31,"units":"","scale":"","transform":""},"boostCutSpark":{"type":"bits","size":"U08","offset":31,"units":"","scale":"","transform":""},"error":{"type":"bits","size":"U08","offset":31,"units":"","scale":"","transform":""},"idleControlOn":{"type":"bits","size":"U08","offset":31,"units":"","scale":"","transform":""},"sync":{"type":"bits","size":"U08","offset":31,"units":"","scale":"","transform":""},"rpmDOT":{"type":"scalar","size":"S16","offset":32,"units":"rpm/s","scale":1,"transform":0},"flex":{"type":"scalar","size":"U08","offset":34,"units":"%","scale":1,"transform":0},"flexFuelCor":{"type":"scalar","size":"U08","offset":35,"units":"%","scale":1,"transform":0},"flexIgnCor":{"type":"scalar","size":"S08","offset":36,"units":"deg","scale":1,"transform":0},"idleLoad":{"type":"scalar","size":"U08","offset":37,"units":"{ bitStringValue( idleUnits , iacAlgorithm ) }","scale":"{ (iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 || iacMaxSteps <= 255) ? 1.000 : 2.000 }","transform":0},"testoutputs":{"type":"scalar","size":"U08","offset":38,"units":"bits","scale":1,"transform":0},"testenabled":{"type":"bits","size":"U08","offset":38,"units":"","scale":"","transform":""},"testactive":{"type":"bits","size":"U08","offset":38,"units":"","scale":"","transform":""},"afr2":{"type":"scalar","size":"U08","offset":39,"units":"O2","scale":0.1,"transform":0},"baro":{"type":"scalar","size":"U08","offset":40,"units":"kpa","scale":1,"transform":0},"auxin_gauge0":{"type":"scalar","size":"U16","offset":41,"units":"","scale":1,"transform":0},"auxin_gauge1":{"type":"scalar","size":"U16","offset":43,"units":"","scale":1,"transform":0},"auxin_gauge2":{"type":"scalar","size":"U16","offset":45,"units":"","scale":1,"transform":0},"auxin_gauge3":{"type":"scalar","size":"U16","offset":47,"units":"","scale":1,"transform":0},"auxin_gauge4":{"type":"scalar","size":"U16","offset":49,"units":"","scale":1,"transform":0},"auxin_gauge5":{"type":"scalar","size":"U16","offset":51,"units":"","scale":1,"transform":0},"auxin_gauge6":{"type":"scalar","size":"U16","offset":53,"units":"","scale":1,"transform":0},"auxin_gauge7":{"type":"scalar","size":"U16","offset":55,"units":"","scale":1,"transform":0},"auxin_gauge8":{"type":"scalar","size":"U16","offset":57,"units":"","scale":1,"transform":0},"auxin_gauge9":{"type":"scalar","size":"U16","offset":59,"units":"","scale":1,"transform":0},"auxin_gauge10":{"type":"scalar","size":"U16","offset":61,"units":"","scale":1,"transform":0},"auxin_gauge11":{"type":"scalar","size":"U16","offset":63,"units":"","scale":1,"transform":0},"auxin_gauge12":{"type":"scalar","size":"U16","offset":65,"units":"","scale":1,"transform":0},"auxin_gauge13":{"type":"scalar","size":"U16","offset":67,"units":"","scale":1,"transform":0},"auxin_gauge14":{"type":"scalar","size":"U16","offset":69,"units":"","scale":1,"transform":0},"auxin_gauge15":{"type":"scalar","size":"U16","offset":71,"units":"","scale":1,"transform":0},"tpsADC":{"type":"scalar","size":"U08","offset":73,"units":"ADC","scale":1,"transform":0},"errors":{"type":"scalar","size":"U08","offset":74,"units":"bits","scale":1,"transform":0},"errorNum":{"type":"bits","size":"U08","offset":74,"units":"","scale":"","transform":""},"currentError":{"type":"bits","size":"U08","offset":74,"units":"","scale":"","transform":""},"pulseWidth":{"type":"scalar","size":"U16","offset":75,"units":"ms","scale":0.001,"transform":0},"pulseWidth2":{"type":"scalar","size":"U16","offset":77,"units":"ms","scale":0.001,"transform":0},"pulseWidth3":{"type":"scalar","size":"U16","offset":79,"units":"ms","scale":0.001,"transform":0},"pulseWidth4":{"type":"scalar","size":"U16","offset":81,"units":"ms","scale":0.001,"transform":0},"status3":{"type":"scalar","size":"U08","offset":83,"units":"bits","scale":1,"transform":0},"resetLockOn":{"type":"bits","size":"U08","offset":83,"units":"","scale":"","transform":""},"nitrousOn":{"type":"bits","size":"U08","offset":83,"units":"","scale":"","transform":""},"fuel2Active":{"type":"bits","size":"U08","offset":83,"units":"","scale":"","transform":""},"vssRefresh":{"type":"bits","size":"U08","offset":83,"units":"","scale":"","transform":""},"halfSync":{"type":"bits","size":"U08","offset":83,"units":"","scale":"","transform":""},"nSquirts":{"type":"bits","size":"U08","offset":83,"units":"","scale":"","transform":""},"engineProtectStatus":{"type":"scalar","size":"U08","offset":84,"units":"bits","scale":1,"transform":0},"engineProtectRPM":{"type":"bits","size":"U08","offset":84,"units":"","scale":"","transform":""},"engineProtectMAP":{"type":"bits","size":"U08","offset":84,"units":"","scale":"","transform":""},"engineProtectOil":{"type":"bits","size":"U08","offset":84,"units":"","scale":"","transform":""},"engineProtectAFR":{"type":"bits","size":"U08","offset":84,"units":"","scale":"","transform":""},"engineProtectOth":{"type":"bits","size":"U08","offset":84,"units":"","scale":"","transform":""},"IOError":{"type":"bits","size":"U08","offset":84,"units":"","scale":"","transform":""},"unused1":{"type":"scalar","size":"U08","offset":84,"units":"ADC","scale":1,"transform":0},"fuelLoad":{"type":"scalar","size":"S16","offset":85,"units":"{ bitStringValue( algorithmUnits , algorithm ) }","scale":1,"transform":0},"ignLoad":{"type":"scalar","size":"S16","offset":87,"units":"{ bitStringValue( algorithmUnits , ignAlgorithm ) }","scale":1,"transform":0},"dwell":{"type":"scalar","size":"U16","offset":89,"units":"ms","scale":0.001,"transform":0},"CLIdleTarget":{"type":"scalar","size":"U08","offset":91,"units":"RPM","scale":10,"transform":0},"MAPdot":{"type":"scalar","size":"U08","offset":92,"units":"kPa/s","scale":10,"transform":0},"vvt1Angle":{"type":"scalar","size":"S08","offset":93,"units":"deg","scale":1,"transform":0},"vvt1Target":{"type":"scalar","size":"U08","offset":94,"units":"deg","scale":1,"transform":0},"vvt1Duty":{"type":"scalar","size":"U08","offset":95,"units":"%","scale":1,"transform":0},"flexBoostCor":{"type":"scalar","size":"S16","offset":96,"units":"kPa","scale":1,"transform":0},"baroCorrection":{"type":"scalar","size":"U08","offset":98,"units":"%","scale":1,"transform":0},"veCurr":{"type":"scalar","size":"U08","offset":99,"units":"%","scale":1,"transform":0},"ASECurr":{"type":"scalar","size":"U08","offset":100,"units":"%","scale":1,"transform":0},"vss":{"type":"scalar","size":"U16","offset":101,"units":"km/h","scale":1,"transform":0},"gear":{"type":"scalar","size":"U08","offset":103,"units":"","scale":1,"transform":0},"fuelPressure":{"type":"scalar","size":"U08","offset":104,"units":"PSI","scale":1,"transform":0},"oilPressure":{"type":"scalar","size":"U08","offset":105,"units":"PSI","scale":1,"transform":0},"wmiPW":{"type":"scalar","size":"U08","offset":106,"units":"%","scale":1,"transform":0},"wmiEmpty":{"type":"scalar","size":"U08","offset":107,"units":"bits","scale":1,"transform":0},"wmiEmptyBit":{"type":"bits","size":"U08","offset":107,"units":"","scale":"","transform":""},"vvt2Angle":{"type":"scalar","size":"S08","offset":108,"units":"deg","scale":1,"transform":0},"vvt2Target":{"type":"scalar","size":"U08","offset":109,"units":"deg","scale":1,"transform":0},"vvt2Duty":{"type":"scalar","size":"U08","offset":110,"units":"%","scale":1,"transform":0},"outputsStatus0":{"type":"bits","size":"U08","offset":111,"units":"","scale":"","transform":""},"outputsStatus1":{"type":"bits","size":"U08","offset":111,"units":"","scale":"","transform":""},"outputsStatus2":{"type":"bits","size":"U08","offset":111,"units":"","scale":"","transform":""},"outputsStatus3":{"type":"bits","size":"U08","offset":111,"units":"","scale":"","transform":""},"outputsStatus4":{"type":"bits","size":"U08","offset":111,"units":"","scale":"","transform":""},"outputsStatus5":{"type":"bits","size":"U08","offset":111,"units":"","scale":"","transform":""},"outputsStatus6":{"type":"bits","size":"U08","offset":111,"units":"","scale":"","transform":""},"outputsStatus7":{"type":"bits","size":"U08","offset":111,"units":"","scale":"","transform":""},"fuelTempRaw":{"type":"scalar","size":"U08","offset":112,"units":"°C","scale":1,"transform":0},"fuelTempCor":{"type":"scalar","size":"U08","offset":113,"units":"%","scale":1,"transform":0},"advance1":{"type":"scalar","size":"U08","offset":114,"units":"%","scale":1,"transform":0},"advance2":{"type":"scalar","size":"U08","offset":115,"units":"%","scale":1,"transform":0},"unused116":{"type":"scalar","size":"U08","offset":116,"units":"","scale":1,"transform":0},"coolant":{"value":"{ (coolantRaw - 40) * 1.8 + 32 }"},"iat":{"value":"{ (iatRaw - 40) * 1.8 + 32 }"},"fuelTemp":{"value":"{ (fuelTempRaw - 40) * 1.8 + 32 }"},"time":{"value":"{ timeNow }"},"seconds":{"value":"{ secl }"},"throttle":{"value":"{ tps }"},"revolutionTime":{"value":"{ rpm ? ( 60000.0 / rpm) : 0 }"},"strokeMultipler":{"value":"{ twoStroke == 1 ? 1 : 2 }"},"cycleTime":{"value":"{ revolutionTime * strokeMultipler }"},"pulseLimit":{"value":"{ cycleTime / nSquirts }"},"nFuelChannels":{"value":"{ arrayValue( array.boardFuelOutputs, pinLayout ) }"},"nIgnChannels":{"value":"{ arrayValue( array.boardIgnOutputs, pinLayout ) }"},"sequentialFuelAvailable":{"value":"{ nCylinders <= nFuelChannels }"},"sequentialIgnitionAvailable":{"value":"{ nCylinders <= nIgnChannels }"},"dutyCycle":{"value":"{ rpm ? ( 100.0*pulseWidth/pulseLimit ) : 0 }"},"stgDutyCycle":{"value":"{ rpm && stagingEnabled ? ( 100.0*pulseWidth3/pulseLimit ) : 0 }"},"boostCutOut":{"value":"{ boostCutFuel || boostCutSpark }"},"lambda":{"value":"{ afr / stoich }"},"lambdaTarget":{"value":"{ afrTarget / stoich }"},"MAPxRPM":{"value":"{ rpm * map }"},"loopsPerRev":{"value":"{ loopsPerSecond / (rpm / 60) }"},"req_fuel":{"value":"{ reqFuel }"},"bat_correction":{"value":"{ battVCorMode ? 100 : batCorrection }"},"inj_open":{"value":"{ battVCorMode ? ((injOpen * batCorrection) / 100) : injOpen }"},"ase_enrich":{"value":"{ ASECurr }"},"map_multiply_amt":{"value":"{ multiplyMAP ? map : 100 }"},"map_bar":{"value":"{ (map - baro) / 101.33 }"},"map_psi":{"value":"{ (map - baro) * 0.145038 }"},"map_inhg":{"value":"{ (baro - map) * 0.2953007 }"},"map_vacboost":{"value":"{ map < baro ? -map_inhg : map_psi }"},"vssMPH":{"value":"{ vss / 1.60934 }"},"fuelLoadMax":{"value":"{ (algorithm == 0 || algorithm == 2) ? 511 : 100 }"},"ignLoadMax":{"value":"{ (ignAlgorithm == 0 || ignAlgorithm == 2) ? 511 : 100 }"},"fuelLoad2":{"value":"{ fuel2Algorithm == 0 ? map : fuel2Algorithm == 1 ? tps : fuel2Algorithm == 2 ? 0 : 0 }"},"vvtLoad":{"value":"{ (vvtLoadSource == 0) ? map : tps }"},"boostTableLimit":{"value":"{ boostType == 0 ? 100 : 511 }"},"CLIdleDelta":{"value":"{ CLIdleTarget - rpm }"}},"help":{"nCylinders":"Cylinder count","alternate":"Whether or not the injectors should be fired at the same time. This setting is ignored when Sequential is selected below, however it will still affect the req_fuel value.","engineType":"Engines with an equal number of degrees between all firings (This is most engines) should select Even fire. Some 2 and 6 cylinder engines are Odd fire however.","twoStroke":"Four-Stroke (most engines), Two-stroke.","nInjectors":"Number of primary injectors.","mapSample":"The method used for calculating the MAP reading\\nFor 1-2 Cylinder engines, Cycle Minimum is recommended.\\nFor more than 2 cylinders Cycle Average is recommended","stoich":"The stoichiometric ration of the fuel being used. For flex fuel, choose the primary fuel","injLayout":"The injector layout and timing to be used. Options are: \\n 1. Paired - 2 injectors per output. Outputs active is equal to half the number of cylinders. Outputs are timed over 1 crank revolution. \\n 2. Semi-sequential: Same as paired except that injector channels are mirrored (1&4, 2&3) meaning the number of outputs used are equal to the number of cylinders. Only valid for 4 cylinders or less. \\n 3. Banked: 2 outputs only used. \\n 4. Sequential: 1 injector per output and outputs used equals the number of cylinders. Injection is timed over full cycle.","TrigPattern":"The type of input trigger decoder to be used.","useResync":"If enabled, sync will be rechecked once every full cycle from the cam input. This is good for accuracy, however if your cam input is noisy then this can cause issues.","trigPatternSec":"Cam mode/type also known as Secondary Trigger Pattern.","numTeeth":"Number of teeth on Primary Wheel.","TrigSpeed":"Primary trigger speed.","missingTeeth":"Number of Missing teeth on Primary Wheel.","TrigAng":"The Angle ATDC when tooth No:1 on the primary wheel passes the primary sensor. The range of this field is -360 to +360 degrees.","TrigAngMul":"A multiplier used by non-360 degree tooth wheels (i.e. Wheels where the tooth count doesn't divide evenly into 360. Usage: (360 * ) / tooth_count = Whole number","SkipCycles":"The number of revolutions that will be skipped during cranking before the injectors and coils are fired.","TrigEdge":"The Trigger edge of the primary sensor.\\nLeading.\\nTrailing.","TrigEdgeSec":"The Trigger edge of the secondary (Cam) sensor.\\nLeading.\\nTrailing.","TrigFilter":"Tuning of the trigger filter algorithm. The more aggressive the setting, the more noise will be removed, however this increases the chance of some true readings being filtered out (False positive). Medium is safe for most setups. Only select 'Aggressive' if no other options are working","sparkMode":"Wasted Spark: Ignition outputs are on the channels <= half the number of cylinders. Eg 4 cylinder outputs on IGN1 and IGN2.\\nSingle Channel: All ignition pulses are output on IGN1.\\nWasted COP: Ignition pulses are output on all ignition channels up to the number of cylinders. Eg 4 cylinder outputs on all ignition channels. Note that your board needs to have same number of igntion outputs as cylinders to be able to run this","IgInv":"Whether the spark fires when the ignition signal goes high or goes low. Nearly all ignition systems use 'Going Low' but please verify this as damage to coils can result from the incorrect selection. (NOTE: THIS IS NOT MEGASQUIRT. THIS SETTING IS USUALLY THE OPPOSITE OF WHAT THEY USE!)","sparkDur":"The duration of the spark at full dwell. Typically around 1ms","fixAngEnable":"If enabled, timing will be locked/fixed and the ignition map will be ignored. Note that this value will be overriden by the fixed cranking value when cranking","FixAng":"Timing will be locked at this value if the above is enabled","crankRPM":"The cranking RPM threshold. When RPM is lower than this value (and above 0) the system will be considered to be cranking","tpsflood":"Keep throttle over this value to disable the priming pulse and cranking fuel. Used to prevent flood or clear already flooded engine","fanInv":0,"fanHyster":"The number of degrees of hysteresis to be used in controlling the fan. Recommended values are between 2 and 5","fanWhenCranking":"Whether the fan should be disabled or continue running when the engine is cranking","fanWhenOff":"Whether the fan will continue to run when the engine is turned off","fanPin":"The Arduino pin that the fan control signal will output on. This is NOT necesarrily the same as the connector pin on any particlar board","fanSP":"The trigger temperature for the fan. Fan will be enabled above this temp","vssPulsesPerKm":"The number of pulses on the VSS signal per KM/Mile","vssSmoothing":"A smoothing factor to help reduce noise in the VSS signal. Typical values are between 0 and 50","aeTime":"The duration of the acceleration enrichment","aseTaperTime":"Transition time to disable ASE","iacChannels":"The number of output channels used for PWM valves. Select 1 for 2-wire valves or 2 for 3-wire valves.","iacStepTime":"Duration of each stepping pulse. Values that are too low can cause the motor to behave erratically or not at all. See the manual for suggested step times","iacCoolTime":"Cool time between each step. Set to zero if you don't want any cooling at all","iacStepHome":"Homing steps to perform on startup. Must be greater than the fully open steps value","iacMaxSteps":"Maximum number of steps the IAC can be moved away from the home position. Should always be less than Homing steps.","iacStepHyster":"The minimum number of steps to move in any one go.","iacAlgorithm":"Selects method of idle control.\\nNone = no idle control valve.\\nOn/Off valve.\\nPWM valve (2,3 wire).\\nStepper Valve (4,6,8 wire).","iacPWMdir":"Normal PWM valves increase RPM with higher duty. If RPM decreases with higher duty then select Reverse","iacCLminDuty":"When using closed loop idle control, this is the minimum duty cycle that the PID loop will allow. Combined with the maximum value, this specifies the working range of your idle valve","iacCLmaxDuty":"When using closed loop idle control, this is the maximum duty cycle that the PID loop will allow. Combined with the minimum value, this specifies the working range of your idle valve","iacTPSlimit":"When using OL+CL idle control, if the TPS is higher than this value closed loop idle resets the integeral of the PID (To prevent RPM dips comming back to idle)","iacRPMlimitHysteresis":"When using closed loop idle control, if the closed loop Target RPM + this value is higher than the actual RPM, closed loop idle resets the integeral of the PID (To prevent RPM dips comming back to idle)","iacFastTemp":"Below this temperature, the idle output will be high (On). Above this temperature, it will turn off.","idleUpPolarity":"Normal polarity is a ground switch where an earthed signal activates the Idle Up. The internal pullup will be enabled with Normal polarity. \\n Inverted may be used if a 5v signal is used to enable the Idle Up.","CTPSPolarity":"Normal polarity is a ground switch where an earthed signal activates the closed throttle position. The internal pullup will be enabled with Normal polarity. \\n Inverted may be used if a 5v signal is used to enable the closed throttle position.","idleUpAdder":"The amount (In either Duty Cycle % or Steps (Depending on the idle control method in use), that the idle control will increase by when Idle Up is active","idleAdvEnabled":"Added setting adds curve values to current spark table values when user defined idle is active. \\n Switched setting overrides spark table values and uses curve values for idle ignition timing.","idleAdvAlgorithm":"Use Throttle position sensor (TPS) or closed throttle position sensor (CTPS) to detect idle state.","idleAdvDelay":"The number of seconds after sync is achieved before the idle advance control begins","idleTaperTime":"Soft time transition from crank to running PWM targets","oddfire2":"The ATDC angle of channel 2 for oddfire engines. This is relative to the TDC angle of channel 1","oddfire3":"The ATDC angle of channel 3 for oddfire engines. This is relative to the TDC angle of channel 1 (NOT channel 2)","oddfire4":"The ATDC angle of channel 4 for oddfire engines. This is relative to the TDC angle of channel 1 (NOT channel 3)","aeColdPct":"Acceleration enrichment adjustment for cold engine. Cold adjustment % is tapered between start and end temperatures.\\n100% = no adjustment.","aeColdTaperMin":"AE cold adjustment taper start temperature. When coolant is below this value, full cold adjustment is applied.","aeColdTaperMax":"AE cold adjustment taper end temperature. When coolant is above this value, no cold adjustment is applied.","dfcoRPM":"The RPM above which DFCO will be active. Typically set a few hundred RPM above maximum idle speed","dfcoHyster":"Hysteresis for DFCO RPM. 200-300 RPM is typical for this, however a higher value may be needed if the RPM is fluctuating around the cutout speed","dfcoTPSThresh":"The TPS value below which DFCO will be active. Typical value is 5%-10%, but higher may be needed if TPS signal is noisy","dfcoDelay":"Delay for activate DFCO.","dfcoMinCLT":"Minimum temperature to enable DFCO.","launchPin":"The ARDUINO pin that the clutch switch is connected to. This is NOT the pin on the connector, but the pin it relates to on the arduino","launchHiLo":"Whether the signal is High or Low when the clutch pedal is engaged. For a ground switching input (Most clutch switches), this should be LOW","lnchPullRes":"Whether the internal pullup resistor is enabled or left floating. For a ground switching input (Most clutch switches), select Pullup. For a 0v-5v input, select Floating","ignBypassPin":"The ARDUINO pin that the ignition bypass is connected to. This is NOT the pin on the connector, but the pin it relates to on the arduino","ignBypassEnable":"If turned on, a ground signal will be output during cranking on the specified pin. This is used to bypass the Speeduino ignition control during cranking.","ignCranklock":"On certain low resolution ignition patterns, the cranking timing can be locked to occur when a pulse is recieved.","multiplyMAP":"If enabled, the MAP reading is included directly into the pulsewidth calculation by multiplying the VE lookup value by the MAP:Baro ratio. This results in a flatter VE table that can be easier to tune in some instances. VE table must be retuned when this value is changed.","legacyMAP":"Use the legacy method of reading the MAP sensor that was used prior to the 201905 firmware. This should ONLY be enabled if you are upgrading from a firmware earlier than this","includeAFR":"When enabled, the current AFR reading is incorporated directly in the pulsewidth calculation as a percentage of the current target ratio. VE table must be retuned when this value is changed.","incorporateAFR":"When enabled, the AFR stoich/AFR target -ratio is incorporated directly in the pulsewidth calculation. When enabled, AFR target table affects pulsewidth even with EGO disabled. VE table must be retuned when this value is changed.","useExtBaro":"By Default, Speeduino will measure barometric pressure upon startup. Optionally however, a 2nd pressure sensor can be used to perform live barometric readings whilst the system is on.","flexEnabled":"Turns on readings from the Flex sensor and enables the below adjustments","flexFreqLow":"The frequency of the sensor at 0% ethanol (50Hz for standard GM/Continental sensor)","flexFreqHigh":"The frequency of the sensor at 100% ethanol (150Hz for standard GM/Continental sensor)","flexFuelAdj":"Fuel % to be used for the current ethanol % (Typically 100% @ 0%, 163% @ 100%)","flexAdvAdj":"Additional advance (in degrees) for the current ethanol % (Typically 0 @ 0%, 10-20 @ 100%)","flexBoostAdj":"Adjustment, in kPa, to the boost target for the current ethanol %. Negative values are allowed to lower boost at lower ethanol % if necessary.","n2o_arming_pin":"Pin that the nitrous arming/enagement switch is on.","n2o_pin_polarity":"Whether Nitrous is active (Armed) when the pin is LOW or HIGH. If LOW is selected, the internal pullup will be used.","flatSArm":"The RPM switch point that determines whether an eganged clutch is for launch control or flat shift. Below this figure, an engaged clutch is considered to be for launch, above this figure an active clutch input will be considered a flat shift. This should be set at least several hundred RPM above idle","flatSSoftWin":"The number of RPM below the flat shift point where the softlimit will be applied (aka Soft limit window). Recommended values are 200-1000","flatSRetard":"The absolute timing (BTDC) that will be used when within the soft limit window","engineProtectType":"Whether the engine protect an rev limiter will cut the fuel, the ignition or both","hardCutType":"How the cuts should be performed for rev/launch limits. Full cut will stop all fuel/ignition events, Rolling cut will step through all ignition outputs, only cutting a limited number per revolution","SoftLimitMode":"Fixed: the soft limiter will retard the ignition advance to the specified value.\\nRelative: current timing advance will be retarted by the specified amount","HardRevLim":"The hard rev limit is the point that the fuel or ignition (or both) will be cut completely to reduce increasing RPMs","engineProtectMaxRPM":"The RPM point that engine protections will engage from. Below this RPM value, engine protections will NOT be active","fuel2InputPin":"The Arduino pin that is being used to trigger the second fuel table to be active","fuel2InputPolarity":"Whether the 2nd fuel table should be active when input is high or low. This should be LOW for a typical ground switching input","fuel2InputPullup":"Whether to use the built in PULLUP for the switching input. This should be Yes for a typical ground switching input","enable_secondarySerial":"This Enables the secondary serial port . Secondary serial is serial3 on mega2560 processor, and Serial2 on STM32 and Teensy processor","cltAdvValues":"This curve can be used to advance ignition timing when engine is warming up. This can also be used to warm up the catalytic converters in cold start by retarding timing. Or even as safety feature to retard timing when engine is too hot to prevent knock.","true_address":"This is the 11bit Can address of the Speeduino ECU","realtime_base_address":"This is the 11bit CAN address of the realtime data broadcast from the Speeduino ECU. This MUST be at least 0x16 greater than the true address","AUXin00Alias":"The Ascii alias asigned to Aux input channel 0","AUXin01Alias":"The Ascii alias asigned to Aux input channel 1","AUXin02Alias":"The Ascii alias asigned to Aux input channel 2","AUXin03Alias":"The Ascii alias asigned to Aux input channel 3","AUXin04Alias":"The Ascii alias asigned to Aux input channel 4","AUXin05Alias":"The Ascii alias asigned to Aux input channel 5","AUXin06Alias":"The Ascii alias asigned to Aux input channel 6","AUXin07Alias":"The Ascii alias asigned to Aux input channel 7","AUXin08Alias":"The Ascii alias asigned to Aux input channel 8","AUXin09Alias":"The Ascii alias asigned to Aux input channel 9","AUXin10Alias":"The Ascii alias asigned to Aux input channel 10","AUXin11Alias":"The Ascii alias asigned to Aux input channel 11","AUXin12Alias":"The Ascii alias asigned to Aux input channel 12","AUXin13Alias":"The Ascii alias asigned to Aux input channel 13","AUXin14Alias":"The Ascii alias asigned to Aux input channel 14","AUXin15Alias":"The Ascii alias asigned to Aux input channel 15","caninput_sel0a":"This Enables local analog/digital on input channel 0","caninput_sel1a":"This Enables local analog/digital on input channel 1","caninput_sel2a":"This Enables local analog/digital on input channel 2","caninput_sel3a":"This Enables local analog/digital on input channel 3","caninput_sel4a":"This Enables local analog/digital on input channel 4","caninput_sel5a":"This Enables local analog/digital on input channel 5","caninput_sel6a":"This Enables local analog/digital on input channel 6","caninput_sel7a":"This Enables local analog/digital on input channel 7","caninput_sel8a":"This Enables local analog/digital on input channel 8","caninput_sel9a":"This Enables local analog/digital on input channel 9","caninput_sel10a":"This Enables local analog/digital on input channel 10","caninput_sel11a":"This Enables local analog/digital on input channel 11","caninput_sel12a":"This Enables local analog/digital on input channel 12","caninput_sel13a":"This Enables local analog/digital on input channel 13","caninput_sel14a":"This Enables local analog/digital on input channel 14","caninput_sel15a":"This Enables local analog/digital on input channel 15","fpPrime":"Duration to power fuel pump on to ensure fuel line pressure.","primingDelay":"Delay to priming after fuel pump is on, used to wait fuel line get pressurized correctly.","idleUpOutputEnabled":"Enable an output that is toggled by the idle up input pin. An example use is driving an AC fan relay.","idleUpOutputInv":"No = When the idle up pin is high the output is active (grounding), when the idle up pin is low the output is inactive. Yes = When the idle up pin is high the output is inactive, when the idle up pin is low the output is active (grounding).","crankingEnrichTaper":"Taper time from cranking enrichment to ASE or run (after engine has started).","lnchCtrlTPS":"The minimum RPM that launch control will engage at","lnchSoftLim":"The RPM point that the launch control ignition timing adjustment will engage (When under launch conditions). Should be below the hard rev limit RPM","lnchRetard":"When under launch conditions (Eg Clutch engaged) the ignition timing will be set to this when above the Soft rev limit. This will override any other ignition modifiers","lnchHardLim":"The RPM point above which the fuel and/or ignition will be cut when launch is active (Eg Clutch engaged). See the Engine Protection dialog to set whether it is fuel, ignition or both that are cut.","lnchFuelAdd":"The additional fuel % that will be added during Soft and Hard launch conditions. Set to 0 for no fuel modifier.","caninput_sel0b":"This Enables External CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 0","caninput_sel1b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 1","caninput_sel2b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 2","caninput_sel3b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 3","caninput_sel4b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 4","caninput_sel5b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 5","caninput_sel6b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 6","caninput_sel7b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 7","caninput_sel8b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 8","caninput_sel9b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 9","caninput_sel10b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 10","caninput_sel11b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 11","caninput_sel12b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 12","caninput_sel13b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 13","caninput_sel14b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 14","caninput_sel15b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 15","caninput_source_can_address0":"The source 11bit CAN address of the data for channel 0","caninput_source_can_address1":"The source 11bit CAN address of the data for channel 1","caninput_source_can_address2":"The source 11bit CAN address of the data for channel 2","caninput_source_can_address3":"The source 11bit CAN address of the data for channel 3","caninput_source_can_address4":"The source 11bit CAN address of the data for channel 4","caninput_source_can_address5":"The source 11bit CAN address of the data for channel 5","caninput_source_can_address6":"The source 11bit CAN address of the data for channel 6","caninput_source_can_address7":"The source 11bit CAN address of the data for channel 7","caninput_source_can_address8":"The source 11bit CAN address of the data for channel 8","caninput_source_can_address9":"The source 11bit CAN address of the data for channel 9","caninput_source_can_address10":"The source 11bit CAN address of the data for channel 10","caninput_source_can_address11":"The source 11bit CAN address of the data for channel 11","caninput_source_can_address12":"The source 11bit CAN address of the data for channel 12","caninput_source_can_address13":"The source 11bit CAN address of the data for channel 13","caninput_source_can_address14":"The source 11bit CAN address of the data for channel 14","caninput_source_can_address15":"The source 11bit CAN address of the data for channel 15","caninput_source_start_byte0":"The Starting byte the data begins at for channel 0","caninput_source_start_byte1":"The Starting byte the data begins at for channel 1","caninput_source_start_byte2":"The Starting byte the data begins at for channel 2","caninput_source_start_byte3":"The Starting byte the data begins at for channel 3","caninput_source_start_byte4":"The Starting byte the data begins at for channel 4","caninput_source_start_byte5":"The Starting byte the data begins at for channel 5","caninput_source_start_byte6":"The Starting byte the data begins at for channel 6","caninput_source_start_byte7":"The Starting byte the data begins at for channel 7","caninput_source_start_byte8":"The Starting byte the data begins at for channel 8","caninput_source_start_byte9":"The Starting byte the data begins at for channel 9","caninput_source_start_byte10":"The Starting byte the data begins at for channel 10","caninput_source_start_byte11":"The Starting byte the data begins at for channel 11","caninput_source_start_byte12":"The Starting byte the data begins at for channel 12","caninput_source_start_byte13":"The Starting byte the data begins at for channel 13","caninput_source_start_byte14":"The Starting byte the data begins at for channel 14","caninput_source_start_byte15":"The Starting byte the data begins at for channel 15","caninput_source_num_bytes0":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes1":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes2":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes3":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes4":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes5":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes6":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes7":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes8":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes9":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes10":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes11":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes12":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes13":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes14":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes15":"The number of bytes the data is made from starting at selected start byte number","cmdEnableTestMode":"Click this to enable test mode. This will not be available if the engine is running","cmdStopTestMode":"Click this to disable test mode","cmdtestinj150dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestinj250dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestinj350dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestinj450dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestinj550dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestinj650dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestinj750dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestinj850dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestspk150dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestspk250dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestspk350dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestspk450dc":"This will cycle the output at 50% Duty cycle at a 1s interval","ADCFILTER_TPS":"Recommended value: 50","ADCFILTER_CLT":"Recommended value: 180","ADCFILTER_IAT":"Recommended value: 180","ADCFILTER_O2":"Recommended value: 128","ADCFILTER_BAT":"Recommended value: 128","ADCFILTER_MAP":"This setting is only available when using the Instantaneious MAP sampling method. Recommended value: 20","ADCFILTER_BARO":"This setting is only available when using an external Baro sensor. Recommended value: 64","boostIntv":"The closed loop control interval will run every this many ms. Generally values between 50% and 100% of the valve frequency work best","VVTasOnOff":"Whether or not the VVT table should be treated as on and off control only. If you are using the VVT map to control a switch, this should be Yes. If you are using the VVT control to drive a PWM signal, this should be No","stagedInjSizePri":"Size of the primary injectors. The sum of the Pri and Sec injectors values MUST match the value used in the req_fuel calculation","stagedInjSizeSec":"Size of the secondary injectors. The sum of the Pri and Sec injectors values MUST match the value used in the req_fuel calculation","resetControl":"How to control the Arduino's automatic reset feature. NOTE: Some of these settings require modifying your hardware and replacing the Arduino bootloader. See the Wiki for more details.\\n\\nDisabled: Allow the Arduino to reset when a new serial connection is made.\\n\\nPrevent When Running: Hold the control pin high while the engine is running.\\n\\nPrevent Always: Always hold the control pin high.\\n\\nSerial Command: Normally hold the control pin high, but pull it low when the 'U' serial command is issued and reset upon receiving more data.","resetControlPin":"The Arduino pin used to control resets.","battVCorMode":"The Battery Voltage Correction value from the table below can either be applied on the whole injection Pulse Width value, or only on the Open Time value."}} \ No newline at end of file diff --git a/public/tunes/202012.msq b/public/tunes/202012.msq new file mode 100644 index 0000000..d83147b --- /dev/null +++ b/public/tunes/202012.msq @@ -0,0 +1,2150 @@ + + + + + +"0" +"CAN ID 0" +8000.0 +3000.0 +5000.0 +255.0 +200.0 +245.0 + + -2.0 + -1.5 + -1.2 + -1.0 + -0.8 + -0.6 + -0.4 + -0.2 + -0.1 + 0.0 + + + 110.0 + 110.0 + 110.0 + 110.0 + 107.0 + 106.0 + 101.0 + 100.0 + 100.0 + 100.0 + + + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 6.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 8.0 + 4.0 + 4.0 + 4.0 + 4.0 + 8.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + + + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 6.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 8.0 + 4.0 + 4.0 + 4.0 + 4.0 + 8.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + + + 511.0 + 100.0 + 511.0 + 511.0 + 100.0 + 100.0 + 100.0 + 100.0 + +"1" +255.0 +255.0 +VSS_RAW +Clutch_RAW +Alternator_Disable +"GPS Speed" +450.0 +"cc/min" +"Log HP & Tq" +"Off" +"Liters" +"Kilometers Per Hour" +1000.0 +"kg" +0.34 +32.0 +19.3 +"sqft" +25.5 +1.0 +3.7 +0.0 + + +5.0 +120.0 +0.0 +"TPS" +"Open Time only" +"Fixed" +"On" +"PW Adder" +"Baro" + + 110.0 + 110.0 + 110.0 + 110.0 + 107.0 + 106.0 + 101.0 + 100.0 + 100.0 + 100.0 + +20.0 +"Speeduino v0.4" +"Board Default" +"Normal" +3.0 +10.0 +30.0 +0.0 +"Unused" +"VE" +"CPU" +"TPS" +"Mem" +"RPM" +"RPM" +"RPM" +6.4 +2.0 +"Alternating" +"No" +"No" +"Full" +"MAP" +"Disabled" +1.0 + + 355.0 + 355.0 + 355.0 + 355.0 + +"Instantaneous" +"Four-stroke" +"Port" +"4" +"MAP" +"Off" +"4" +"Even fire" +"Off" +"No" +"Off" +"Sequential" +"Yes" +"On" +60.0 +90.0 +50.0 +150.0 +50.0 +27.0 +186.0 +10.0 +260.0 +2.0 +14.7 +0.0 +0.0 +0.0 +"36" +"Normal" +"On" +20.0 +1500.0 +2000.0 +0.0 +50.0 +0.0 +16.0 +14610.0 +-1.0 +65535.0 +"No" +"No" +"30" +"No" + + 10.0 + 10.0 + 5.0 + 5.0 + + + 10.0 + 10.0 + 5.0 + 2.0 + + + -20.0 + 10.0 + 40.0 + 85.0 + + + 0.0 + 0.0 + 0.0 + 0.0 + + + 0.0 + 33.0 + 60.0 + 95.0 + +"Board Default" +"Inverted" +"On" +"Added" +"TPS" +"0" +900.0 +5.0 + + 500.0 + 2000.0 + 4500.0 + 6500.0 + +4.5 +25.0 +70.0 +"Off" +"A15" +65535.0 +255.0 +6553.5 +6553.5 +6553.5 +6553.5 +6553.5 +6553.5 +"On" +"No" +"Board Default" +7000.0 +1.0 +255.0 +2550.0 + + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + + + 255.0 + 10.0 + + + + + 70.0 70.0 70.0 70.0 67.0 63.0 56.0 62.0 55.0 54.0 53.0 56.0 51.0 52.0 59.0 66.0 + 70.0 72.0 72.0 75.0 72.0 73.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 78.0 + 70.0 72.0 72.0 73.0 71.0 69.0 77.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 83.0 + 69.0 73.0 75.0 73.0 66.0 68.0 74.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 82.0 + 71.0 70.0 72.0 70.0 66.0 69.0 74.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 83.0 + 72.0 72.0 73.0 71.0 67.0 70.0 75.0 81.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 82.0 + 73.0 73.0 70.0 74.0 68.0 66.0 75.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 87.0 + 73.0 74.0 75.0 75.0 71.0 68.0 80.0 82.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 93.0 + 75.0 77.0 77.0 76.0 78.0 79.0 82.0 86.0 85.0 85.0 85.0 85.0 85.0 85.0 85.0 100.0 + 75.0 76.0 77.0 80.0 86.0 90.0 93.0 94.0 97.0 92.0 92.0 92.0 92.0 101.0 102.0 105.0 + 75.0 76.0 75.0 82.0 85.0 97.0 99.0 100.0 99.0 95.0 93.0 92.0 92.0 101.0 104.0 107.0 + 75.0 78.0 73.0 81.0 85.0 99.0 100.0 103.0 102.0 99.0 97.0 97.0 94.0 99.0 103.0 109.0 + 81.0 82.0 74.0 84.0 96.0 99.0 106.0 108.0 104.0 104.0 103.0 101.0 102.0 106.0 109.0 114.0 + 90.0 91.0 86.0 97.0 111.0 109.0 114.0 117.0 117.0 116.0 117.0 114.0 114.0 111.0 113.0 115.0 + 96.0 91.0 93.0 98.0 119.0 118.0 119.0 120.0 121.0 121.0 122.0 122.0 122.0 119.0 120.0 119.0 + 96.0 101.0 102.0 107.0 119.0 121.0 123.0 124.0 124.0 123.0 123.0 124.0 121.0 119.0 122.0 122.0 + + + 500.0 + 700.0 + 900.0 + 1400.0 + 2100.0 + 2800.0 + 3600.0 + 4600.0 + 5300.0 + 5600.0 + 5900.0 + 6100.0 + 6400.0 + 6700.0 + 6800.0 + 7200.0 + + + 16.0 + 26.0 + 30.0 + 36.0 + 46.0 + 56.0 + 66.0 + 76.0 + 86.0 + 96.0 + 100.0 + 120.0 + 140.0 + 160.0 + 180.0 + 200.0 + + + + + 18.0 14.0 10.0 10.0 10.0 10.0 10.0 10.0 10.0 10.0 10.0 10.0 10.0 10.0 10.0 10.0 + 12.0 10.0 10.0 18.0 25.0 38.0 39.0 38.0 37.0 37.0 17.0 20.0 25.0 29.0 34.0 39.0 + 12.0 10.0 10.0 19.0 26.0 38.0 39.0 38.0 37.0 37.0 30.0 32.0 34.0 36.0 38.0 41.0 + 12.0 10.0 10.0 21.0 28.0 38.0 39.0 38.0 37.0 37.0 36.0 37.0 38.0 38.0 39.0 41.0 + 12.0 12.0 12.0 25.0 28.0 36.0 37.0 37.0 36.0 36.0 37.0 37.0 38.0 38.0 39.0 40.0 + 11.0 11.0 11.0 23.0 26.0 32.0 33.0 35.0 36.0 36.0 36.0 37.0 37.0 38.0 39.0 40.0 + 11.0 11.0 11.0 22.0 25.0 28.0 30.0 32.0 35.0 35.0 35.0 35.0 36.0 37.0 38.0 40.0 + 10.0 10.0 10.0 19.0 23.0 23.0 27.0 29.0 30.0 30.0 31.0 32.0 34.0 35.0 37.0 39.0 + 9.0 9.0 9.0 19.0 22.0 20.0 24.0 25.0 27.0 27.0 28.0 29.0 31.0 33.0 35.0 38.0 + 8.0 8.0 8.0 18.0 19.0 18.0 20.0 21.0 23.0 24.0 24.0 26.0 28.0 30.0 33.0 36.0 + 7.0 7.0 7.0 15.0 16.0 17.0 18.0 18.0 18.0 19.0 20.0 22.0 25.0 27.0 30.0 34.0 + 6.0 6.0 6.0 11.0 12.0 16.0 16.0 16.0 17.0 18.0 18.0 20.0 22.0 25.0 28.0 31.0 + 4.0 4.0 4.0 6.0 8.0 10.0 12.0 12.0 13.0 13.0 14.0 16.0 19.0 21.0 25.0 28.0 + 2.0 2.0 2.0 3.0 4.0 8.0 9.0 9.0 10.0 10.0 10.0 13.0 16.0 19.0 22.0 26.0 + 2.0 2.0 2.0 2.0 4.0 6.0 8.0 8.0 8.0 8.0 8.0 11.0 13.0 16.0 19.0 23.0 + 2.0 2.0 2.0 2.0 2.0 4.0 5.0 6.0 6.0 7.0 7.0 9.0 11.0 13.0 16.0 19.0 + + + 500.0 + 800.0 + 1000.0 + 1500.0 + 1800.0 + 2300.0 + 2900.0 + 3400.0 + 3900.0 + 4300.0 + 4800.0 + 5300.0 + 5900.0 + 6500.0 + 7200.0 + 8000.0 + + + 10.0 + 24.0 + 36.0 + 56.0 + 66.0 + 76.0 + 84.0 + 100.0 + 110.0 + 126.0 + 140.0 + 160.0 + 180.0 + 200.0 + 220.0 + 250.0 + + + +0.0 +10.0 +20.0 +0.0 +"FALLING" +"Crank Speed" +"Going Low" +"Miata 99-05" +"FALLING" +"Board Default" +"Yes" +1.0 +"Single tooth cam" +0.0 +"Serial Command" +"Board Default" +0.0 +"Closed Loop" +"On" +"Sequential" +"Weak" +"On" +3.5 +3.2 +36.0 +1.0 +400.0 +50.0 +7000.0 +0.0 +0.5 +7200.0 + + 30.0 + 160.0 + 430.0 + 790.0 + + + 10.0 + 40.0 + 60.0 + 80.0 + + + -40.0 + -28.0 + -12.0 + 5.0 + 25.0 + 38.0 + 50.0 + 64.0 + 74.0 + 87.0 + +5.0 + + 121.0 + 110.0 + 100.0 + 89.0 + 82.0 + 71.0 + + + 40.0 + 48.0 + 64.0 + 80.0 + 96.0 + 120.0 + + + 0.0 + 1.0 + 3.0 + 5.0 + 7.0 + 10.0 + +1500.0 +200.0 +5.0 +"Off" +"3" +"LOW" +10.0 +0.0 +0.0 +120.0 +160.0 +20.0 +64.0 + + -20.0 + 10.0 + 30.0 + 45.0 + 60.0 + 80.0 + + + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + + + 0.0 + 10.0 + 40.0 + 300.0 + + + 0.0 + 10.0 + 15.0 + 20.0 + +0.5 + + 87.0 + 93.0 + 97.0 + 99.0 + 101.0 + 102.0 + 103.0 + 107.0 + + + 100.0 + 100.0 + 100.0 + 100.0 + 100.0 + 100.0 + 100.0 + 100.0 + + + -300.0 + -100.0 + -50.0 + 10.0 + 60.0 + 200.0 + + + 0.0 + 0.0 + 0.0 + 4.0 + 5.0 + 7.0 + +400.0 + + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + + + + + 14.7 14.7 14.7 15.0 15.0 15.0 15.0 15.0 15.0 15.0 15.0 15.0 15.0 15.0 15.0 15.0 + 14.7 14.7 14.7 14.5 14.7 15.0 15.0 15.0 15.0 15.0 15.0 15.0 14.9 14.9 14.9 14.9 + 14.7 14.7 14.7 14.5 14.7 15.0 15.0 15.0 15.0 15.0 15.0 15.0 14.9 14.9 14.9 14.9 + 14.5 14.5 14.5 14.5 14.7 15.0 15.0 15.0 15.0 15.0 15.0 15.0 14.9 14.9 14.9 14.9 + 14.4 14.4 14.4 14.6 14.7 14.8 14.8 14.8 14.8 14.8 14.8 14.8 14.8 14.8 14.8 14.8 + 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 + 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 + 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 + 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 + 13.1 13.1 13.1 13.0 13.0 13.0 13.0 13.0 13.0 13.0 13.0 13.0 13.0 13.0 13.0 13.0 + 13.0 13.0 13.0 13.0 13.0 13.0 13.0 12.8 12.7 12.7 12.7 12.7 12.7 12.7 12.7 12.7 + 12.3 12.3 12.3 12.3 12.3 12.3 12.2 12.2 12.2 12.2 12.2 12.2 12.2 12.2 12.2 12.2 + 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 + 11.8 11.6 11.6 11.6 11.6 11.6 11.6 11.6 11.6 11.6 11.6 11.6 11.6 11.6 11.6 11.6 + 11.9 11.4 11.4 11.4 11.4 11.4 11.4 11.4 11.4 11.4 11.4 11.4 11.4 11.4 11.4 11.4 + 11.8 11.3 11.3 11.3 11.3 11.3 11.3 11.3 11.3 11.3 11.3 11.3 11.3 11.3 11.3 11.3 + + + 500.0 + 700.0 + 900.0 + 1400.0 + 2100.0 + 2800.0 + 3600.0 + 4600.0 + 5300.0 + 5600.0 + 5900.0 + 6100.0 + 6400.0 + 6700.0 + 6800.0 + 7200.0 + + + 16.0 + 26.0 + 30.0 + 36.0 + 46.0 + 56.0 + 68.0 + 76.0 + 86.0 + 96.0 + 100.0 + 120.0 + 140.0 + 160.0 + 180.0 + 200.0 + + + +"PID" +"Wide Band" +"On" +"Off" +"Spark Only" +100.0 +20.0 +0.0 +70.0 +16.0 +"On/Off" +"MAP" +"Advance" +"Yes" +"No" +"On" +15.0 +10.0 +18.0 +15.0 +100.0 +70.0 +"Board Default" +"No" +"Simple" +"Board Default" +"No" +"No" + + 9.0 + 10.0 + 12.0 + 13.0 + 14.0 + 14.5 + + + 139.0 + 114.0 + 74.0 + 62.0 + 50.0 + 46.0 + + + -40.0 + -20.0 + 0.0 + 15.0 + 35.0 + 50.0 + 60.0 + 90.0 + 120.0 + + + 126.0 + 116.0 + 107.0 + 100.0 + 100.0 + 100.0 + 100.0 + 100.0 + 100.0 + +34.0 +300.0 +496.0 +"51" +"No" +"LOW" +2800.0 +-10.0 +3000.0 +15.0 +0.78125 +1.0625 +0.83567 +192.0 +30.0 +15.0 +9.0 +"Pullup" +"Yes" +"No" +"A0" +800.0 +0.0 +5000.0 + + 1100.0 + 1100.0 + 1100.0 + 1100.0 + 1000.0 + 900.0 + 850.0 + 850.0 + 850.0 + 850.0 + + + 369.0 + 327.0 + 291.0 + 246.0 + 213.0 + 168.0 + 123.0 + 87.0 + 45.0 + 0.0 + + + 32.0 + 32.0 + 32.0 + 31.0 + 29.0 + 27.0 + 22.0 + 19.0 + 19.0 + 19.0 + + + -38.0 + -19.0 + 1.0 + 17.0 + 35.0 + 41.0 + 65.0 + 70.0 + 80.0 + 105.0 + + + 123.0 + 579.0 + 390.0 + 300.0 + + + 40.0 + 40.0 + 40.0 + 33.0 + + + -15.0 + 1.0 + 16.0 + 70.0 + +"PWM Closed loop" +"3" +"1" +"Normal" +20.0 +240.0 +4.0 +"No" +"On/Off" +"Board Default" +90.0 +2.0 +6.0 + + 60.0 + -20.0 + -40.0 + 158.0 + + + + + 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 + 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 + 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 + 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 + 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 + + + 1000.0 + 2000.0 + 3000.0 + 3800.0 + 4500.0 + 5300.0 + 6000.0 + 7200.0 + + + 0.0 + 10.0 + 20.0 + 40.0 + 50.0 + 60.0 + 80.0 + 100.0 + + + 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 + 11.0 10.0 6.0 6.0 6.0 6.0 7.0 7.0 + 24.0 22.0 20.0 18.0 18.0 18.0 19.0 20.0 + 32.0 30.0 29.0 28.0 27.0 27.0 27.0 29.0 + 39.0 39.0 38.0 38.0 37.0 37.0 36.0 36.0 + 46.0 47.0 47.0 46.0 46.0 45.0 45.0 43.0 + 56.0 56.0 56.0 55.0 55.0 55.0 55.0 56.0 + 68.0 68.0 69.0 69.0 69.0 69.0 69.0 69.0 + + + 1000.0 + 2000.0 + 3000.0 + 3800.0 + 4500.0 + 5300.0 + 6000.0 + 6800.0 + + + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + + + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 7.0 15.0 30.0 41.0 + 55.0 70.0 60.0 50.0 40.0 33.0 25.0 18.0 + 6.0 6.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + + + 12800.0 + 12800.0 + 12800.0 + 12800.0 + 12800.0 + 12800.0 + 12800.0 + 12800.0 + + + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + + + + + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + + + 700.0 + 1500.0 + 3000.0 + 4100.0 + 5500.0 + 7000.0 + + + 36.0 + 50.0 + 66.0 + 80.0 + 100.0 + 120.0 + + + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + + + 700.0 + 1500.0 + 3000.0 + 4100.0 + 5500.0 + 7000.0 + + + 36.0 + 50.0 + 66.0 + 80.0 + 100.0 + 120.0 + + + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + + + 700.0 + 1500.0 + 3000.0 + 4100.0 + 5500.0 + 7000.0 + + + 36.0 + 50.0 + 66.0 + 80.0 + 100.0 + 120.0 + + + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + + + 700.0 + 1500.0 + 3000.0 + 4100.0 + 5500.0 + 7000.0 + + + 36.0 + 50.0 + 66.0 + 80.0 + 100.0 + 120.0 + + + +"Disable" +"Disable" +"Enable" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Digital_local" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"7" +"0" +"0" +"0" +"0" +"0" +"0" +"0" +"0" +"7" +"7" +"7" +"7" +"7" +"7" +"7" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +255.0 +255.0 +"On" +"On" +"On" +"On" +"On" +"On" +"On" +"On" +"On" + + 65535.0 + 65535.0 + 65535.0 + 65535.0 + 65535.0 + 65535.0 + 65535.0 + 65535.0 + +"7" +"0" +"0" +"0" +"0" +"0" +"0" +"0" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +255.0 +255.0 +255.0 +255.0 +"CAN ID 0" +"0x101" +"0x201" +"0x2FF" +"A15" +"A0" +"A0" +"A0" +"A0" +"A0" +"A4" +"A0" +"A1" +"A6" +"A10" +"A10" +"A3" +"A3" +"A3" +"A8" +"30" +"51" +"1" +"8" +"11" +"8" +"12" +"8" +"1" +"8" +"26" +"8" +"46" +"8" +"7" +"8" +"Yes" +"0" +"" +"" +765.0 + + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + + + + + -15.0 + 1.0 + 16.0 + 70.0 + + + 105.0 + 105.0 + 105.0 + 90.0 + +"FC" +"On" +"Table" +"A0" + + 255.0 + 7.0 + 255.0 + 7.0 + 255.0 + 7.0 + 255.0 + 7.0 + + + 510.0 + 14.0 + 510.0 + 14.0 + 510.0 + 14.0 + 510.0 + 14.0 + +5000.0 +30.0 +64775.0 +64010.0 +70.0 + + 0.0 + 20.0 + 40.0 + 60.0 + 80.0 + 100.0 + + + 50.0 + 50.0 + 50.0 + 50.0 + 50.0 + 50.0 + + + 0.0 + 20.0 + 40.0 + 60.0 + 80.0 + 100.0 + + + 4.0 + 4.0 + 3.0 + 3.0 + 2.0 + 1.0 + + + 0.0 + 20.0 + 40.0 + 60.0 + 80.0 + 100.0 + + + 15.0 + 29.0 + 43.0 + 57.0 + 71.0 + 85.0 + +"2 stage" +"30" +60.0 +250.0 +50.0 +17.0 +"31" +"LOW" +"Yes" +3000.0 +6000.0 +6.0 +3.0 +5.0 +"32" +"No" +6000.0 +7000.0 +3.0 +2.0 +5.0 +"Analog" +"3" +"LOW" +"Off" +"No" +"3" +"3" +7.5 +100.0 +1000.0 + + 2000.0 + 3000.0 + 4000.0 + 6000.0 + 5000.0 + 5000.0 + + + 0.0 + 0.0 + 0.0 + 0.0 + -20.0 + -20.0 + + + 30.0 + 30.0 + 30.0 + 30.0 + 15.0 + 3.0 + +1.0 +2.0 +20.0 +0.2 +0.1 +0.0 +0.0 +"MAP" +"Multiplied %" +"MAP" +102.0 +"21" +"LOW" +"Yes" +41.0 +6.0 +1.0 +0.0 +342.0 +-1.0 +1.0 +"Off" +"Off" +"Off" +"A15" +"A15" +-1.0 +255.0 +-1.0 +255.0 + + 25500.0 + 25500.0 + 25500.0 + 25500.0 + + + 255.0 + 255.0 + 255.0 + 255.0 + +"On" +"Closedloop" +"On" +255.0 +25500.0 +510.0 +510.0 +215.0 +0.0 +"Off" +"63" +"Inverted" +"Off" +"63" +"Inverted" +"63" + + 0.0 + 100.0 + 200.0 + 300.0 + 400.0 + 500.0 + + + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + +255.0 +255.0 +"Board Default" + + 215.0 + 215.0 + 215.0 + 215.0 + 215.0 + 215.0 + + + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + +"MAP" +"Added" +"ETH%" +65535.0 +"3" +"HIGH" +"Yes" + + 2000.0 + 500.0 + + + 255.0 + 255.0 + + + + + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + + + 500.0 + 700.0 + 900.0 + 1500.0 + 2100.0 + 2900.0 + 3800.0 + 4700.0 + 5500.0 + 5700.0 + 5900.0 + 6100.0 + 6300.0 + 6500.0 + 6600.0 + 6600.0 + + + 16.0 + 26.0 + 30.0 + 36.0 + 40.0 + 46.0 + 50.0 + 56.0 + 60.0 + 66.0 + 70.0 + 76.0 + 86.0 + 90.0 + 96.0 + 100.0 + + + + + 255.0 255.0 255.0 255.0 255.0 255.0 255.0 255.0 + 255.0 255.0 255.0 255.0 255.0 255.0 255.0 255.0 + 255.0 255.0 255.0 255.0 255.0 255.0 255.0 255.0 + 255.0 255.0 255.0 255.0 255.0 255.0 255.0 255.0 + 255.0 255.0 255.0 255.0 255.0 255.0 255.0 255.0 + 255.0 255.0 255.0 255.0 255.0 255.0 255.0 255.0 + 255.0 255.0 255.0 255.0 255.0 255.0 255.0 255.0 + 255.0 255.0 255.0 255.0 255.0 255.0 255.0 255.0 + + + 25500.0 + 25500.0 + 25500.0 + 25500.0 + 25500.0 + 25500.0 + 25500.0 + 25500.0 + + + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + + + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + + + +"Active high" +"Active low" +"Active low" +"Active low" +"Active low" +"Active low" +"Active low" +"Active low" +255.0 + + 3.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + +"3" +"Disabled" +"Disabled" +"Disabled" +"Disabled" +"Disabled" +"Disabled" +"Disabled" + + 0.5 + 25.5 + 25.5 + 25.5 + 25.5 + 25.5 + 25.5 + 25.5 + + + 14.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + +"RPM" + + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + + + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 32.0 + + + 800.0 + -1.0 + -1.0 + -1.0 + -1.0 + -1.0 + -1.0 + -1.0 + + + 3.0 + -1.0 + -1.0 + -1.0 + -1.0 + -1.0 + -1.0 + -1.0 + +">=" +">=" +"AND" +"==" +"==" +"XOR" +"==" +"==" +"XOR" +"==" +"==" +"XOR" +"==" +"==" +"XOR" +"==" +"==" +"XOR" +"==" +"==" +"XOR" +"==" +"==" +"XOR" + + 19043.0 + 19018.0 + 19274.0 + 19275.0 + 19532.0 + 19532.0 + 19789.0 + 20045.0 + + + 78.0 + 78.0 + 78.0 + 79.0 + 79.0 + 79.0 + 80.0 + 80.0 + 80.0 + 81.0 + 81.0 + 81.0 + 81.0 + 82.0 + 82.0 + 82.0 + 83.0 + 83.0 + 83.0 + 83.0 + 84.0 + 84.0 + + + + + 45.0 45.0 46.0 46.0 46.0 46.0 47.0 47.0 47.0 48.0 48.0 48.0 48.0 49.0 49.0 49.0 + 50.0 50.0 50.0 51.0 51.0 51.0 51.0 52.0 52.0 52.0 53.0 53.0 53.0 53.0 54.0 54.0 + 54.0 55.0 55.0 55.0 56.0 56.0 56.0 56.0 57.0 57.0 57.0 58.0 58.0 58.0 58.0 59.0 + 59.0 59.0 60.0 60.0 60.0 61.0 61.0 61.0 61.0 62.0 62.0 62.0 63.0 63.0 63.0 63.0 + 64.0 64.0 64.0 65.0 65.0 65.0 66.0 66.0 66.0 66.0 67.0 67.0 67.0 68.0 68.0 68.0 + 68.0 69.0 69.0 69.0 70.0 70.0 70.0 71.0 71.0 71.0 71.0 72.0 72.0 72.0 73.0 73.0 + 73.0 73.0 74.0 74.0 74.0 75.0 75.0 75.0 76.0 76.0 76.0 76.0 77.0 77.0 77.0 78.0 + 78.0 78.0 78.0 79.0 79.0 79.0 80.0 80.0 80.0 81.0 81.0 81.0 81.0 82.0 82.0 82.0 + 83.0 83.0 83.0 83.0 84.0 84.0 84.0 85.0 85.0 85.0 85.0 86.0 86.0 86.0 87.0 87.0 + 87.0 88.0 88.0 88.0 88.0 89.0 89.0 89.0 90.0 90.0 90.0 90.0 91.0 91.0 91.0 92.0 + 92.0 92.0 93.0 93.0 93.0 93.0 94.0 94.0 94.0 95.0 95.0 95.0 95.0 96.0 96.0 96.0 + 97.0 97.0 97.0 98.0 98.0 98.0 98.0 99.0 99.0 99.0 100.0 100.0 100.0 100.0 101.0 101.0 + 101.0 102.0 102.0 102.0 103.0 103.0 103.0 103.0 104.0 104.0 104.0 105.0 105.0 105.0 105.0 106.0 + 106.0 106.0 107.0 107.0 107.0 108.0 108.0 108.0 108.0 109.0 109.0 109.0 110.0 110.0 110.0 110.0 + 111.0 111.0 111.0 112.0 112.0 112.0 113.0 113.0 113.0 113.0 114.0 114.0 114.0 115.0 115.0 115.0 + 115.0 116.0 116.0 116.0 117.0 117.0 117.0 118.0 118.0 118.0 118.0 119.0 119.0 119.0 120.0 120.0 + + + 16000.0 + 16000.0 + 16100.0 + 16100.0 + 16100.0 + 16200.0 + 16200.0 + 16200.0 + 16300.0 + 16300.0 + 16300.0 + 16300.0 + 16400.0 + 16400.0 + 16400.0 + 16500.0 + + + 338.0 + 338.0 + 338.0 + 336.0 + 336.0 + 336.0 + 336.0 + 334.0 + 334.0 + 334.0 + 332.0 + 332.0 + 332.0 + 330.0 + 330.0 + 330.0 + + + + + + + + + + + + + + + + + + + diff --git a/public/tunes/202012.yml b/public/tunes/202012.yml new file mode 100644 index 0000000..c3a51e4 --- /dev/null +++ b/public/tunes/202012.yml @@ -0,0 +1,65453 @@ +megaTune: + signature: speeduino 202012 + MTversion: 2.25 + queryCommand: Q + versionInfo: S +tunerStudio: + iniSpecVersion: 3.64 +defines: + loadSourceNames: + - MAP + - TPS + - IMAP/EMAP + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + loadSourceUnits: + - kPa + - '% TPS' + - '%' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + all_IO_Pins: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + IO_Pins_no_def: + - INVALID + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + bitwise_def: + - Disabled + - AND + - OR + - XOR + comparator_def: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + comp_IO_Pins: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + fullStatus_def_1: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + fullStatus_def_2: + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + fullStatus_def_3: + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + fullStatus_def_4: + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + fullStatus_def: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + trigger_missingTooth: + - '0' + trigger_BasicDistributor: + - '1' + trigger_DualWheel: + - '2' + trigger_GM7X: + - '3' + trigger_4G63: + - '4' + trigger_24X: + - '5' + trigger_Jeep2000: + - '6' + trigger_Audi135: + - '7' + trigger_HondaD17: + - '8' + trigger_Miata9905: + - '9' + trigger_MazdaAU: + - '10' + trigger_non360: + - '11' + trigger_Nissan360: + - '12' + trigger_Subaru67: + - '13' + trigger_Daihatsu: + - '14' + trigger_Harley: + - '15' + trigger_ThirtySixMinus222: + - '16' + trigger_ThirtySixMinus21: + - '17' + trigger_420a: + - '18' + PIN_OUT10inv: + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + PIN_OUT16inv: + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + PIN_16inv: + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + ANALOG_PIN: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + DIGITAL_PIN: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + ANALOG_DIG_PIN_LIST: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + tsCanId_list: + - CAN ID 0 + - CAN ID 1 + - CAN ID 2 + - CAN ID 3 + - CAN ID 4 + - CAN ID 5 + - CAN ID 6 + - CAN ID 7 + - CAN ID 8 + - CAN ID 9 + - CAN ID 10 + - CAN ID 11 + - CAN ID 12 + - CAN ID 13 + - CAN ID 14 + - INVALID + CAN_ADDRESS_HEX_inv255: + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + CAN_ADDRESS_HEX_00XX: + - INVALID + - '0x001' + - '0x002' + - '0x003' + - '0x004' + - '0x005' + - '0x006' + - '0x007' + - '0x008' + - '0x009' + - '0x00A' + - '0x00B' + - '0x00C' + - '0x00D' + - '0x00E' + - '0x00F' + - '0x010' + - '0x011' + - '0x012' + - '0x013' + - '0x014' + - '0x015' + - '0x016' + - '0x017' + - '0x018' + - '0x019' + - '0x01A' + - '0x01B' + - '0x01C' + - '0x01D' + - '0x01E' + - '0x01F' + - '0x020' + - '0x021' + - '0x022' + - '0x023' + - '0x024' + - '0x025' + - '0x026' + - '0x027' + - '0x028' + - '0x029' + - '0x02A' + - '0x02B' + - '0x02C' + - '0x02D' + - '0x02E' + - '0x02F' + - '0x030' + - '0x031' + - '0x032' + - '0x033' + - '0x034' + - '0x035' + - '0x036' + - '0x037' + - '0x038' + - '0x039' + - '0x03A' + - '0x03B' + - '0x03C' + - '0x03D' + - '0x03E' + - '0x03F' + - '0x040' + - '0x041' + - '0x042' + - '0x043' + - '0x044' + - '0x045' + - '0x046' + - '0x047' + - '0x048' + - '0x049' + - '0x04A' + - '0x04B' + - '0x04C' + - '0x04D' + - '0x04E' + - '0x04F' + - '0x050' + - '0x051' + - '0x052' + - '0x053' + - '0x054' + - '0x055' + - '0x056' + - '0x057' + - '0x058' + - '0x059' + - '0x05A' + - '0x05B' + - '0x05C' + - '0x05D' + - '0x05E' + - '0x05F' + - '0x060' + - '0x061' + - '0x062' + - '0x063' + - '0x064' + - '0x065' + - '0x066' + - '0x067' + - '0x068' + - '0x069' + - '0x06A' + - '0x06B' + - '0x06C' + - '0x06D' + - '0x06E' + - '0x06F' + - '0x070' + - '0x071' + - '0x072' + - '0x073' + - '0x074' + - '0x075' + - '0x076' + - '0x077' + - '0x078' + - '0x079' + - '0x07A' + - '0x07B' + - '0x07C' + - '0x07D' + - '0x07E' + - '0x07F' + - '0x080' + - '0x081' + - '0x082' + - '0x083' + - '0x084' + - '0x085' + - '0x086' + - '0x087' + - '0x088' + - '0x089' + - '0x08A' + - '0x08B' + - '0x08C' + - '0x08D' + - '0x08E' + - '0x08F' + - '0x090' + - '0x091' + - '0x092' + - '0x093' + - '0x094' + - '0x095' + - '0x096' + - '0x097' + - '0x098' + - '0x099' + - '0x09A' + - '0x09B' + - '0x09C' + - '0x09D' + - '0x09E' + - '0x09F' + - '0x0A0' + - '0x0A1' + - '0x0A2' + - '0x0A3' + - '0x0A4' + - '0x0A5' + - '0x0A6' + - '0x0A7' + - '0x0A8' + - '0x0A9' + - '0x0AA' + - '0x0AB' + - '0x0AC' + - '0x0AD' + - '0x0AE' + - '0x0AF' + - '0x0B0' + - '0x0B1' + - '0x0B2' + - '0x0B3' + - '0x0B4' + - '0x0B5' + - '0x0B6' + - '0x0B7' + - '0x0B8' + - '0x0B9' + - '0x0BA' + - '0x0BB' + - '0x0BC' + - '0x0BD' + - '0x0BE' + - '0x0BF' + - '0x0C0' + - '0x0C1' + - '0x0C2' + - '0x0C3' + - '0x0C4' + - '0x0C5' + - '0x0C6' + - '0x0C7' + - '0x0C8' + - '0x0C9' + - '0x0CA' + - '0x0CB' + - '0x0CC' + - '0x0CD' + - '0x0CE' + - '0x0CF' + - '0x0D0' + - '0x0D1' + - '0x0D2' + - '0x0D3' + - '0x0D4' + - '0x0D5' + - '0x0D6' + - '0x0D7' + - '0x0D8' + - '0x0D9' + - '0x0DA' + - '0x0DB' + - '0x0DC' + - '0x0DD' + - '0x0DE' + - '0x0DF' + - '0x0E0' + - '0x0E1' + - '0x0E2' + - '0x0E3' + - '0x0E4' + - '0x0E5' + - '0x0E6' + - '0x0E7' + - '0x0E8' + - '0x0E9' + - '0x0EA' + - '0x0EB' + - '0x0EC' + - '0x0ED' + - '0x0EE' + - '0x0EF' + - '0x0F0' + - '0x0F1' + - '0x0F2' + - '0x0F3' + - '0x0F4' + - '0x0F5' + - '0x0F6' + - '0x0F7' + - '0x0F8' + - '0x0F9' + - '0x0FA' + - '0x0FB' + - '0x0FC' + - '0x0FD' + - '0x0FE' + - '0x0FF' + CAN_ADDRESS_HEX_01XX: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + CAN_ADDRESS_HEX_02XX: + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + CAN_ADDRESS_HEX_03XX: + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + CAN_ADDRESS_HEX_04XX: + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + CAN_ADDRESS_HEX_05XX: + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + CAN_ADDRESS_HEX_06XX: + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + CAN_ADDRESS_HEX_07XX: + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + CAN_ADDRESS_HEX: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID +pcVariables: + tsCanId: + type: bits + size: U08 + address: + - 0 + - 3 + values: + - CAN ID 0 + - CAN ID 1 + - CAN ID 2 + - CAN ID 3 + - CAN ID 4 + - CAN ID 5 + - CAN ID 6 + - CAN ID 7 + - CAN ID 8 + - CAN ID 9 + - CAN ID 10 + - CAN ID 11 + - CAN ID 12 + - CAN ID 13 + - CAN ID 14 + - INVALID + rpmhigh: + type: scalar + size: U16 + units: rpm + scale: 1 + transform: 0 + min: 0 + max: 30000 + digits: 0 + rpmwarn: + type: scalar + size: U16 + units: rpm + scale: 1 + transform: 0 + min: 0 + max: 30000 + digits: 0 + rpmdang: + type: scalar + size: U16 + units: rpm + scale: 1 + transform: 0 + min: 0 + max: 30000 + digits: 0 + maphigh: + type: scalar + size: U16 + units: kPa + scale: 1 + transform: 0 + min: 0 + max: 30000 + digits: 0 + mapwarn: + type: scalar + size: U16 + units: kPa + scale: 1 + transform: 0 + min: 0 + max: 30000 + digits: 0 + mapdang: + type: scalar + size: U16 + units: kPa + scale: 1 + transform: 0 + min: 0 + max: 30000 + digits: 0 + wueAFR: + type: array + size: S16 + shape: + columns: 10 + rows: 0 + units: AFR + scale: 0.1 + transform: 0 + min: -4 + max: 4 + digits: 1 + wueRecommended: + type: array + size: U08 + shape: + columns: 10 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 100 + max: 255 + digits: 0 + idleUnits: + type: bits + size: U08 + address: + - 0 + - 2 + values: + - None + - On/Off + - Duty Cycle + - Duty Cycle + - Steps + - Steps + boardFuelOutputs: + type: array + size: U08 + shape: + columns: 128 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + boardIgnOutputs: + type: array + size: U08 + shape: + columns: 128 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + algorithmNames: + type: bits + size: U08 + address: + - 0 + - 2 + values: + - MAP + - TPS + - IMAP/EMAP + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + algorithmUnits: + type: bits + size: U08 + address: + - 0 + - 2 + values: + - kPa + - '% TPS' + - '%' + - '% TPS' + - INVALID + - INVALID + - INVALID + - INVALID + algorithmLimits: + type: array + size: U16 + shape: + columns: 8 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 511 + digits: 0 + fuel2SwitchUnits: + type: bits + size: U08 + address: + - 0 + - 2 + values: + - rpm + - kPa + - '% TPS' + - '%' + - '% TPS' + - INVALID + - INVALID + - INVALID + boostTableLabels: + type: bits + size: U08 + address: + - 0 + - 1 + values: + - Duty Cycle % + - kPa + prgm_out_selection: + type: bits + size: U08 + address: + - 0 + - 2 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + fuelLoadMax: + type: scalar + size: U08 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 511 + digits: 0 + ignLoadMax: + type: scalar + size: U08 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 511 + digits: 0 + AUXin00Alias: + type: string + size: ASCII + length: 20 + AUXin01Alias: + type: string + size: ASCII + length: 20 + AUXin02Alias: + type: string + size: ASCII + length: 20 + AUXin03Alias: + type: string + size: ASCII + length: 20 + AUXin04Alias: + type: string + size: ASCII + length: 20 + AUXin05Alias: + type: string + size: ASCII + length: 20 + AUXin06Alias: + type: string + size: ASCII + length: 20 + AUXin07Alias: + type: string + size: ASCII + length: 20 + AUXin08Alias: + type: string + size: ASCII + length: 20 + AUXin09Alias: + type: string + size: ASCII + length: 20 + AUXin10Alias: + type: string + size: ASCII + length: 20 + AUXin11Alias: + type: string + size: ASCII + length: 20 + AUXin12Alias: + type: string + size: ASCII + length: 20 + AUXin13Alias: + type: string + size: ASCII + length: 20 + AUXin14Alias: + type: string + size: ASCII + length: 20 + AUXin15Alias: + type: string + size: ASCII + length: 20 + prgm_out00Alias: + type: string + size: ASCII + length: 20 + prgm_out01Alias: + type: string + size: ASCII + length: 20 + prgm_out02Alias: + type: string + size: ASCII + length: 20 + prgm_out03Alias: + type: string + size: ASCII + length: 20 + prgm_out04Alias: + type: string + size: ASCII + length: 20 + prgm_out05Alias: + type: string + size: ASCII + length: 20 + prgm_out06Alias: + type: string + size: ASCII + length: 20 + prgm_out07Alias: + type: string + size: ASCII + length: 20 +constants: + pages: + - number: 1 + size: 0 + data: + aseTaperTime: + type: scalar + size: U08 + offset: 0 + units: S + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + aeColdPct: + type: scalar + size: U08 + offset: 1 + units: '%' + scale: 1 + transform: 0 + min: 100 + max: 255 + digits: 0 + aeColdTaperMin: + type: scalar + size: U08 + offset: 2 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + aeMode: + type: bits + size: U08 + offset: 3 + address: + - 0 + - 1 + values: + - TPS + - MAP + - INVALID + - INVALID + battVCorMode: + type: bits + size: U08 + offset: 3 + address: + - 2 + - 2 + values: + - Whole PW + - Open Time only + SoftLimitMode: + type: bits + size: U08 + offset: 3 + address: + - 3 + - 3 + values: + - Fixed + - Relative + useTachoSweep: + type: bits + size: U08 + offset: 3 + address: + - 4 + - 4 + values: + - 'Off' + - 'On' + aeApplyMode: + type: bits + size: U08 + offset: 3 + address: + - 5 + - 5 + values: + - PW Multiplier + - PW Adder + multiplyMAP: + type: bits + size: U08 + offset: 3 + address: + - 6 + - 7 + values: + - 'Off' + - Baro + - Fixed + - INVALID + wueRates: + type: array + size: U08 + offset: 4 + shape: + columns: 10 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + crankingPct: + type: scalar + size: U08 + offset: 14 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + pinLayout: + type: bits + size: U08 + offset: 15 + address: + - 0 + - 7 + values: + - INVALID + - Speeduino v0.2 + - Speeduino v0.3 + - Speeduino v0.4 + - INVALID + - INVALID + - 01-05 MX5 PNP + - INVALID + - 96-97 MX5 PNP + - NA6 MX5 PNP + - Turtana PCB + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - Plazomat I/O 0.1 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - Daz V6 Shield 0.1 + - BMW PnP + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - NO2C + - UA4C + - INVALID + - INVALID + - INVALID + - DIY-EFI CORE4 v1.0 + - INVALID + - INVALID + - INVALID + - INVALID + - dvjcodec Teensy RevA + - dvjcodec Teensy RevB + - INVALID + - INVALID + - INVALID + - Drop Bear + - INVALID + - INVALID + - INVALID + - INVALID + - Black STM32F407VET6 V0.1 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + tachoPin: + type: bits + size: U08 + offset: 16 + address: + - 0 + - 5 + values: + - Board Default + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + tachoDiv: + type: bits + size: U08 + offset: 16 + address: + - 6 + - 7 + values: + - Normal + - Half + - INVALID + - INVALID + tachoDuration: + type: scalar + size: U08 + offset: 17 + units: ms + scale: 1 + transform: 0 + min: 1 + max: 6 + digits: 0 + maeThresh: + type: scalar + size: U08 + offset: 18 + units: kPa/s + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + taeThresh: + type: scalar + size: U08 + offset: 19 + units: '%/s' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + aeTime: + type: scalar + size: U08 + offset: 20 + units: ms + scale: 10 + transform: 0 + min: 0 + max: 2550 + digits: 0 + display: + type: bits + size: U08 + offset: 21 + address: + - 0 + - 2 + values: + - Unused + - Adafruit 128x32 + - Generic 128x32 + - Adafruit 128x64 + - Generic 128x64 + - INVALID + - INVALID + - INVALID + display1: + type: bits + size: U08 + offset: 21 + address: + - 3 + - 5 + values: + - RPM + - PW + - Advance + - VE + - GammaE + - TPS + - IAT + - CLT + display2: + type: bits + size: U08 + offset: 21 + address: + - 6 + - 7 + values: + - O2 + - Voltage + - CPU + - Mem + display3: + type: bits + size: U08 + offset: 22 + address: + - 0 + - 2 + values: + - RPM + - PW + - Advance + - VE + - GammaE + - TPS + - IAT + - CLT + display4: + type: bits + size: U08 + offset: 22 + address: + - 3 + - 4 + values: + - O2 + - Voltage + - CPU + - Mem + display5: + type: bits + size: U08 + offset: 22 + address: + - 5 + - 7 + values: + - RPM + - PW + - Advance + - VE + - GammaE + - TPS + - IAT + - CLT + displayB1: + type: bits + size: U08 + offset: 23 + address: + - 0 + - 3 + values: + - RPM + - PW + - Advance + - VE + - GammaE + - TPS + - IAT + - CLT + displayB2: + type: bits + size: U08 + offset: 23 + address: + - 4 + - 7 + values: + - RPM + - PW + - Advance + - VE + - GammaE + - TPS + - IAT + - CLT + reqFuel: + type: scalar + size: U08 + offset: 24 + units: ms + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + divider: + type: scalar + size: U08 + offset: 25 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 0 + digits: .nan + alternate: + type: bits + size: U08 + offset: 26 + address: + - 0 + - 0 + values: + - Simultaneous + - Alternating + multiplyMAP1: + type: bits + size: U08 + offset: 26 + address: + - 1 + - 1 + values: + - 'No' + - 'Yes' + includeAFR: + type: bits + size: U08 + offset: 26 + address: + - 2 + - 2 + values: + - 'No' + - 'Yes' + hardCutType: + type: bits + size: U08 + offset: 26 + address: + - 3 + - 3 + values: + - Full + - Rolling + ignAlgorithm: + type: bits + size: U08 + offset: 26 + address: + - 4 + - 6 + values: + - MAP + - TPS + - IMAP/EMAP + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + indInjAng: + type: bits + size: U08 + offset: 26 + address: + - 7 + - 7 + values: + - Disabled + - Enabled + injOpen: + type: scalar + size: U08 + offset: 27 + units: ms + scale: 0.1 + transform: 0 + min: 0.1 + max: 25.5 + digits: 1 + injAng: + type: array + size: U16 + offset: 28 + shape: + columns: 4 + rows: 0 + units: deg + scale: 1 + transform: 0 + min: 0 + max: 720 + digits: 0 + mapSample: + type: bits + size: U08 + offset: 36 + address: + - 0 + - 1 + values: + - Instantaneous + - Cycle Average + - Cycle Minimum + - Event Average + twoStroke: + type: bits + size: U08 + offset: 36 + address: + - 2 + - 2 + values: + - Four-stroke + - Two-stroke + injType: + type: bits + size: U08 + offset: 36 + address: + - 3 + - 3 + values: + - Port + - Throttle Body + nCylinders: + type: bits + size: U08 + offset: 36 + address: + - 4 + - 7 + values: + - INVALID + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - INVALID + - '8' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + algorithm: + type: bits + size: U08 + offset: 37 + address: + - 0 + - 2 + values: + - MAP + - TPS + - IMAP/EMAP + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + fixAngEnable: + type: bits + size: U08 + offset: 37 + address: + - 3 + - 3 + values: + - 'Off' + - 'On' + nInjectors: + type: bits + size: U08 + offset: 37 + address: + - 4 + - 7 + values: + - INVALID + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - INVALID + - '8' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + engineType: + type: bits + size: U08 + offset: 38 + address: + - 0 + - 0 + values: + - Even fire + - Odd fire + flexEnabled: + type: bits + size: U08 + offset: 38 + address: + - 1 + - 1 + values: + - 'Off' + - 'On' + legacyMAP: + type: bits + size: U08 + offset: 38 + address: + - 2 + - 2 + values: + - 'No' + - 'Yes' + baroCorr: + type: bits + size: U08 + offset: 38 + address: + - 3 + - 3 + values: + - 'Off' + - 'On' + injLayout: + type: bits + size: U08 + offset: 38 + address: + - 4 + - 5 + values: + - Paired + - Semi-Sequential + - INVALID + - Sequential + perToothIgn: + type: bits + size: U08 + offset: 38 + address: + - 6 + - 6 + values: + - 'No' + - 'Yes' + dfcoEnabled: + type: bits + size: U08 + offset: 38 + address: + - 7 + - 7 + values: + - 'Off' + - 'On' + aeColdTaperMax: + type: scalar + size: U08 + offset: 39 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + dutyLim: + type: scalar + size: U08 + offset: 40 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 95 + digits: 0 + flexFreqLow: + type: scalar + size: U08 + offset: 41 + units: Hz + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + flexFreqHigh: + type: scalar + size: U08 + offset: 42 + units: Hz + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + boostMaxDuty: + type: scalar + size: U08 + offset: 43 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + tpsMin: + type: scalar + size: U08 + offset: 44 + units: ADC + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + tpsMax: + type: scalar + size: U08 + offset: 45 + units: ADC + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + mapMin: + type: scalar + size: S08 + offset: 46 + units: kpa + scale: 1 + transform: 0 + min: -100 + max: 127 + digits: 0 + mapMax: + type: scalar + size: U16 + offset: 47 + units: kpa + scale: 1 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fpPrime: + type: scalar + size: U08 + offset: 49 + units: s + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + stoich: + type: scalar + size: U08 + offset: 50 + units: ':1' + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + oddfire2: + type: scalar + size: U16 + offset: 51 + units: deg + scale: 1 + transform: 0 + min: 0 + max: 720 + digits: 0 + oddfire3: + type: scalar + size: U16 + offset: 53 + units: deg + scale: 1 + transform: 0 + min: 0 + max: 720 + digits: 0 + oddfire4: + type: scalar + size: U16 + offset: 55 + units: deg + scale: 1 + transform: 0 + min: 0 + max: 720 + digits: 0 + idleUpPin: + type: bits + size: U08 + offset: 57 + address: + - 0 + - 5 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + idleUpPolarity: + type: bits + size: U08 + offset: 57 + address: + - 6 + - 6 + values: + - Normal + - Inverted + idleUpEnabled: + type: bits + size: U08 + offset: 57 + address: + - 7 + - 7 + values: + - 'Off' + - 'On' + idleUpAdder: + type: scalar + size: U08 + offset: 58 + units: '% / Steps' + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + aeTaperMin: + type: scalar + size: U08 + offset: 59 + units: RPM + scale: 100 + transform: 0 + min: 1000 + max: 10000 + digits: 0 + aeTaperMax: + type: scalar + size: U08 + offset: 60 + units: RPM + scale: 100 + transform: 0 + min: 2000 + max: 10000 + digits: 0 + iacCLminDuty: + type: scalar + size: U08 + offset: 61 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + iacCLmaxDuty: + type: scalar + size: U08 + offset: 62 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + boostMinDuty: + type: scalar + size: U08 + offset: 63 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + baroMin: + type: scalar + size: S08 + offset: 64 + units: kpa + scale: 1 + transform: 0 + min: -100 + max: 127 + digits: 0 + baroMax: + type: scalar + size: U16 + offset: 65 + units: kpa + scale: 1 + transform: 0 + min: 0 + max: 25500 + digits: 0 + EMAPMin: + type: scalar + size: S08 + offset: 67 + units: kpa + scale: 1 + transform: 0 + min: -100 + max: 127 + digits: 0 + EMAPMax: + type: scalar + size: U16 + offset: 68 + units: kpa + scale: 1 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fanWhenOff: + type: bits + size: U08 + offset: 70 + address: + - 0 + - 0 + values: + - 'No' + - 'Yes' + fanWhenCranking: + type: bits + size: U08 + offset: 70 + address: + - 1 + - 1 + values: + - 'No' + - 'Yes' + unused_fan_bits: + type: bits + size: U08 + offset: 70 + address: + - 2 + - 6 + values: [] + incorporateAFR: + type: bits + size: U08 + offset: 70 + address: + - 7 + - 7 + values: + - 'No' + - 'Yes' + asePct: + type: array + size: U08 + offset: 71 + shape: + columns: 4 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 155 + digits: 0 + aseCount: + type: array + size: U08 + offset: 75 + shape: + columns: 4 + rows: 0 + units: s + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + aseBins: + type: array + size: U08 + offset: 79 + shape: + columns: 4 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + primePulse: + type: array + size: U08 + offset: 83 + shape: + columns: 4 + rows: 0 + units: ms + scale: 0.5 + transform: 0 + min: 0 + max: 127.5 + digits: 1 + primeBins: + type: array + size: U08 + offset: 87 + shape: + columns: 4 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + CTPSPin: + type: bits + size: U08 + offset: 91 + address: + - 0 + - 5 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + CTPSPolarity: + type: bits + size: U08 + offset: 91 + address: + - 6 + - 6 + values: + - Normal + - Inverted + CTPSEnabled: + type: bits + size: U08 + offset: 91 + address: + - 7 + - 7 + values: + - 'Off' + - 'On' + idleAdvEnabled: + type: bits + size: U08 + offset: 92 + address: + - 0 + - 1 + values: + - 'Off' + - Added + - Switched + - INVALID + idleAdvAlgorithm: + type: bits + size: U08 + offset: 92 + address: + - 2 + - 2 + values: + - TPS + - CTPS + idleAdvDelay: + type: bits + size: U08 + offset: 92 + address: + - 3 + - 7 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - INVALID + - INVALID + idleAdvRPM: + type: scalar + size: U08 + offset: 93 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + idleAdvTPS: + type: scalar + size: U08 + offset: 94 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 120 + digits: 0 + injAngRPM: + type: array + size: U08 + offset: 95 + shape: + columns: 4 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 10000 + digits: 0 + idleTaperTime: + type: scalar + size: U08 + offset: 99 + units: S + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + dfcoDelay: + type: scalar + size: U08 + offset: 100 + units: S + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + dfcoMinCLT: + type: scalar + size: U08 + offset: 101 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + vssMode: + type: bits + size: U08 + offset: 102 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Pulses per KM + - Pulses per mile + vssPin: + type: bits + size: U08 + offset: 102 + address: + - 2 + - 7 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + vssPulsesPerKm: + type: scalar + size: U16 + offset: 103 + units: pulses + scale: 1 + transform: 0 + min: 0 + max: 25500 + digits: 0 + vssSmoothing: + type: scalar + size: U08 + offset: 105 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + vssRatio1: + type: scalar + size: U16 + offset: 106 + units: km/h per 1000rpm + scale: 0.1 + transform: 0 + min: 0 + max: 99.9 + digits: 1 + vssRatio2: + type: scalar + size: U16 + offset: 108 + units: km/h per 1000rpm + scale: 0.1 + transform: 0 + min: 0 + max: 99.9 + digits: 1 + vssRatio3: + type: scalar + size: U16 + offset: 110 + units: km/h per 1000rpm + scale: 0.1 + transform: 0 + min: 0 + max: 99.9 + digits: 1 + vssRatio4: + type: scalar + size: U16 + offset: 112 + units: km/h per 1000rpm + scale: 0.1 + transform: 0 + min: 0 + max: 99.9 + digits: 1 + vssRatio5: + type: scalar + size: U16 + offset: 114 + units: km/h per 1000rpm + scale: 0.1 + transform: 0 + min: 0 + max: 99.9 + digits: 1 + vssRatio6: + type: scalar + size: U16 + offset: 116 + units: km/h per 1000rpm + scale: 0.1 + transform: 0 + min: 0 + max: 99.9 + digits: 1 + idleUpOutputEnabled: + type: bits + size: U08 + offset: 118 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + idleUpOutputInv: + type: bits + size: U08 + offset: 118 + address: + - 1 + - 1 + values: + - 'No' + - 'Yes' + idleUpOutputPin: + type: bits + size: U08 + offset: 118 + address: + - 2 + - 7 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + tachoSweepMaxRPM: + type: scalar + size: U08 + offset: 119 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 10000 + digits: 0 + primingDelay: + type: scalar + size: U08 + offset: 120 + units: S + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + iacTPSlimit: + type: scalar + size: U08 + offset: 121 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + iacRPMlimitHysteresis: + type: scalar + size: U08 + offset: 122 + units: RPM + scale: 10 + transform: 0 + min: 0 + max: 0 + digits: .nan + unused2_95: + type: array + size: U08 + offset: 121 + shape: + columns: 5 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + - number: 2 + size: 0 + data: + veTable: + type: array + size: U08 + offset: 0 + shape: + columns: 16 + rows: 16 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + rpmBins: + type: array + size: U08 + offset: 256 + shape: + columns: 16 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + fuelLoadBins: + type: array + size: U08 + offset: 272 + shape: + columns: 16 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + - number: 3 + size: 0 + data: + advTable1: + type: array + size: U08 + offset: 0 + shape: + columns: 16 + rows: 16 + units: deg + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + rpmBins2: + type: array + size: U08 + offset: 256 + shape: + columns: 16 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + mapBins1: + type: array + size: U08 + offset: 272 + shape: + columns: 16 + rows: 0 + units: '{ bitStringValue(algorithmUnits , ignAlgorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{ignLoadMax}' + digits: 0 + - number: 4 + size: 0 + data: + TrigAng: + type: scalar + size: S16 + offset: 0 + units: Deg + scale: 1 + transform: 0 + min: -360 + max: 360 + digits: 0 + FixAng: + type: scalar + size: S08 + offset: 2 + units: Deg + scale: 1 + transform: 0 + min: -64 + max: 64 + digits: 0 + CrankAng: + type: scalar + size: U08 + offset: 3 + units: Deg + scale: 1 + transform: 0 + min: -10 + max: 80 + digits: 0 + TrigAngMul: + type: scalar + size: U08 + offset: 4 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 88 + digits: 0 + TrigEdge: + type: bits + size: U08 + offset: 5 + address: + - 0 + - 0 + values: + - RISING + - FALLING + TrigSpeed: + type: bits + size: U08 + offset: 5 + address: + - 1 + - 1 + values: + - Crank Speed + - Cam Speed + IgInv: + type: bits + size: U08 + offset: 5 + address: + - 2 + - 2 + values: + - Going Low + - Going High + TrigPattern: + type: bits + size: U08 + offset: 5 + address: + - 3 + - 7 + values: + - Missing Tooth + - Basic Distributor + - Dual Wheel + - GM 7X + - 4G63 / Miata / 3000GT + - GM 24X + - Jeep 2000 + - Audi 135 + - Honda D17 + - Miata 99-05 + - Mazda AU + - Non-360 Dual + - Nissan 360 + - Subaru 6/7 + - Daihatsu +1 + - Harley EVO + - 36-2-2-2 + - 36-2-1 + - DSM 420a + - Weber-Marelli + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + TrigEdgeSec: + type: bits + size: U08 + offset: 6 + address: + - 0 + - 0 + values: + - RISING + - FALLING + fuelPumpPin: + type: bits + size: U08 + offset: 6 + address: + - 1 + - 6 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + useResync: + type: bits + size: U08 + offset: 6 + address: + - 7 + - 7 + values: + - 'No' + - 'Yes' + sparkDur: + type: scalar + size: U08 + offset: 7 + units: ms + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + trigPatternSec: + type: bits + size: U08 + offset: 8 + address: + - 0 + - 7 + values: + - Single tooth cam + - 4-1 cam + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + bootloaderCaps: + type: scalar + size: U08 + offset: 9 + units: level + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + resetControl: + type: bits + size: U08 + offset: 10 + address: + - 0 + - 1 + values: + - Disabled + - Prevent When Running + - Prevent Always + - Serial Command + resetControlPin: + type: bits + size: U08 + offset: 10 + address: + - 2 + - 7 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + SkipCycles: + type: scalar + size: U08 + offset: 11 + units: cycles + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + boostType: + type: bits + size: U08 + offset: 12 + address: + - 0 + - 0 + values: + - Open Loop + - Closed Loop + useDwellLim: + type: bits + size: U08 + offset: 12 + address: + - 1 + - 1 + values: + - 'Off' + - 'On' + sparkMode: + type: bits + size: U08 + offset: 12 + address: + - 2 + - 4 + values: + - Wasted Spark + - Single Channel + - Wasted COP + - Sequential + - Rotary + - INVALID + - INVALID + - INVALID + TrigFilter: + type: bits + size: U08 + offset: 12 + address: + - 5 + - 6 + values: + - 'Off' + - Weak + - Medium + - Aggressive + ignCranklock: + type: bits + size: U08 + offset: 12 + address: + - 7 + - 7 + values: + - 'Off' + - 'On' + dwellcrank: + type: scalar + size: U08 + offset: 13 + units: ms + scale: 0.1 + transform: 0 + min: 0 + max: 25 + digits: 1 + dwellrun: + type: scalar + size: U08 + offset: 14 + units: ms + scale: 0.1 + transform: 0 + min: 0 + max: 8 + digits: 1 + numTeeth: + type: scalar + size: U08 + offset: 15 + units: teeth + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + missingTeeth: + type: scalar + size: U08 + offset: 16 + units: teeth + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + crankRPM: + type: scalar + size: U08 + offset: 17 + units: rpm + scale: 10 + transform: 0 + min: 100 + max: 1000 + digits: 0 + tpsflood: + type: scalar + size: U08 + offset: 18 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + SoftRevLim: + type: scalar + size: U08 + offset: 19 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + SoftLimRetard: + type: scalar + size: U08 + offset: 20 + units: deg + scale: 1 + transform: 0 + min: 0 + max: 80 + digits: 0 + SoftLimMax: + type: scalar + size: U08 + offset: 21 + units: s + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + HardRevLim: + type: scalar + size: U08 + offset: 22 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + taeBins: + type: array + size: U08 + offset: 23 + shape: + columns: 4 + rows: 0 + units: '%/s' + scale: 10 + transform: 0 + min: 0 + max: 2550 + digits: 0 + taeRates: + type: array + size: U08 + offset: 27 + shape: + columns: 4 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + wueBins: + type: array + size: U08 + offset: 31 + shape: + columns: 10 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 102 + digits: 0 + dwellLim: + type: scalar + size: U08 + offset: 41 + units: ms + scale: 1 + transform: 0 + min: 0 + max: 32 + digits: 0 + dwellRates: + type: array + size: U08 + offset: 42 + shape: + columns: 6 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + iatRetBins: + type: array + size: U08 + offset: 48 + shape: + columns: 6 + rows: 0 + units: C + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + iatRetRates: + type: array + size: U08 + offset: 54 + shape: + columns: 6 + rows: 0 + units: deg + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + dfcoRPM: + type: scalar + size: U08 + offset: 60 + units: RPM + scale: 10 + transform: 0 + min: 100 + max: 2550 + digits: 0 + dfcoHyster: + type: scalar + size: U08 + offset: 61 + units: RPM + scale: 1 + transform: 0 + min: 100 + max: 255 + digits: 0 + dfcoTPSThresh: + type: scalar + size: U08 + offset: 62 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + ignBypassEnable: + type: bits + size: U08 + offset: 63 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + ignBypassPin: + type: bits + size: U08 + offset: 63 + address: + - 1 + - 6 + values: + - INVALID + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + ignBypassHiLo: + type: bits + size: U08 + offset: 63 + address: + - 7 + - 7 + values: + - LOW + - HIGH + ADCFILTER_TPS: + type: scalar + size: U08 + offset: 64 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 240 + digits: 0 + ADCFILTER_CLT: + type: scalar + size: U08 + offset: 65 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 240 + digits: 0 + ADCFILTER_IAT: + type: scalar + size: U08 + offset: 66 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 240 + digits: 0 + ADCFILTER_O2: + type: scalar + size: U08 + offset: 67 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 240 + digits: 0 + ADCFILTER_BAT: + type: scalar + size: U08 + offset: 68 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 240 + digits: 0 + ADCFILTER_MAP: + type: scalar + size: U08 + offset: 69 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 240 + digits: 0 + ADCFILTER_BARO: + type: scalar + size: U08 + offset: 70 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 240 + digits: 0 + cltAdvBins: + type: array + size: U08 + offset: 71 + shape: + columns: 6 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 102 + digits: 0 + cltAdvValues: + type: array + size: S08 + offset: 77 + shape: + columns: 6 + rows: 0 + units: deg + scale: 1 + transform: -15 + min: -15 + max: 15 + digits: 0 + maeBins: + type: array + size: U08 + offset: 83 + shape: + columns: 4 + rows: 0 + units: kpa/s + scale: 10 + transform: 0 + min: 0 + max: 2550 + digits: 0 + maeRates: + type: array + size: U08 + offset: 87 + shape: + columns: 4 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + batVoltCorrect: + type: scalar + size: S08 + offset: 91 + units: v + scale: 0.1 + transform: 0 + min: -2 + max: 2 + digits: 1 + baroFuelBins: + type: array + size: U08 + offset: 92 + shape: + columns: 8 + rows: 0 + units: kPa + scale: 1 + transform: 0 + min: 70 + max: 120 + digits: 0 + baroFuelValues: + type: array + size: U08 + offset: 100 + shape: + columns: 8 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + idleAdvBins: + type: array + size: U08 + offset: 108 + shape: + columns: 6 + rows: 0 + units: RPM + scale: 10 + transform: -50 + min: -500 + max: 500 + digits: 0 + idleAdvValues: + type: array + size: U08 + offset: 114 + shape: + columns: 6 + rows: 0 + units: deg + scale: 1 + transform: -15 + min: -15 + max: 50 + digits: 0 + engineProtectMaxRPM: + type: scalar + size: U08 + offset: 120 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + unused4_120: + type: array + size: U08 + offset: 121 + shape: + columns: 7 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + - number: 5 + size: 0 + data: + afrTable: + type: array + size: U08 + offset: 0 + shape: + columns: 16 + rows: 16 + units: AFR + scale: 0.1 + transform: 0 + min: 7 + max: 25.5 + digits: 1 + rpmBinsAFR: + type: array + size: U08 + offset: 256 + shape: + columns: 16 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + loadBinsAFR: + type: array + size: U08 + offset: 272 + shape: + columns: 16 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + - number: 6 + size: 0 + data: + egoAlgorithm: + type: bits + size: U08 + offset: 0 + address: + - 0 + - 1 + values: + - Simple + - INVALID + - PID + - No correction + egoType: + type: bits + size: U08 + offset: 0 + address: + - 2 + - 3 + values: + - Disabled + - Narrow Band + - Wide Band + - INVALID + boostEnabled: + type: bits + size: U08 + offset: 0 + address: + - 4 + - 4 + values: + - 'Off' + - 'On' + vvtEnabled: + type: bits + size: U08 + offset: 0 + address: + - 5 + - 5 + values: + - 'Off' + - 'On' + engineProtectType: + type: bits + size: U08 + offset: 0 + address: + - 6 + - 7 + values: + - 'Off' + - Spark Only + - Fuel Only + - Both + egoKP: + type: scalar + size: U08 + offset: 1 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 200 + digits: 0 + egoKI: + type: scalar + size: U08 + offset: 2 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 200 + digits: 0 + egoKD: + type: scalar + size: U08 + offset: 3 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 200 + digits: 0 + egoTemp: + type: scalar + size: U08 + offset: 4 + units: C + scale: 1 + transform: -40 + min: -40 + max: 102 + digits: 0 + egoCount: + type: scalar + size: U08 + offset: 5 + units: '' + scale: 4 + transform: 0 + min: 4 + max: 255 + digits: 0 + vvtMode: + type: bits + size: U08 + offset: 6 + address: + - 0 + - 1 + values: + - On/Off + - Open Loop + - Closed loop + - INVALID + vvtLoadSource: + type: bits + size: U08 + offset: 6 + address: + - 2 + - 3 + values: + - MAP + - TPS + - INVALID + - INVALID + vvtPWMdir: + type: bits + size: U08 + offset: 6 + address: + - 4 + - 4 + values: + - Advance + - Retard + vvtCLUseHold: + type: bits + size: U08 + offset: 6 + address: + - 5 + - 5 + values: + - 'No' + - 'Yes' + vvtCLAlterFuelTiming: + type: bits + size: U08 + offset: 6 + address: + - 6 + - 6 + values: + - 'No' + - 'Yes' + boostCutEnabled: + type: bits + size: U08 + offset: 6 + address: + - 7 + - 7 + values: + - 'Off' + - 'On' + egoLimit: + type: scalar + size: U08 + offset: 7 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 16 + digits: 0 + ego_min: + type: scalar + size: U08 + offset: 8 + units: AFR + scale: 0.1 + transform: 0 + min: 7 + max: 25 + digits: 1 + ego_max: + type: scalar + size: U08 + offset: 9 + units: AFR + scale: 0.1 + transform: 0 + min: 7 + max: 25 + digits: 1 + ego_sdelay: + type: scalar + size: U08 + offset: 10 + units: sec + scale: 1 + transform: 0 + min: 0 + max: 120 + digits: 0 + egoRPM: + type: scalar + size: U08 + offset: 11 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + egoTPSMax: + type: scalar + size: U08 + offset: 12 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 120 + digits: 0 + vvt1Pin: + type: bits + size: U08 + offset: 13 + address: + - 0 + - 5 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + useExtBaro: + type: bits + size: U08 + offset: 13 + address: + - 6 + - 6 + values: + - 'No' + - 'Yes' + boostMode: + type: bits + size: U08 + offset: 13 + address: + - 7 + - 7 + values: + - Simple + - Full + boostPin: + type: bits + size: U08 + offset: 14 + address: + - 0 + - 5 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + VVTasOnOff: + type: bits + size: U08 + offset: 14 + address: + - 6 + - 6 + values: + - 'No' + - 'Yes' + useEMAP: + type: bits + size: U08 + offset: 14 + address: + - 7 + - 7 + values: + - 'No' + - 'Yes' + brvBins: + type: array + size: U08 + offset: 15 + shape: + columns: 6 + rows: 0 + units: V + scale: 0.1 + transform: 0 + min: 6 + max: 24 + digits: 1 + injBatRates: + type: array + size: U08 + offset: 21 + shape: + columns: 6 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + airDenBins: + type: array + size: U08 + offset: 27 + shape: + columns: 9 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + airDenRates: + type: array + size: U08 + offset: 36 + shape: + columns: 9 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + boostFreq: + type: scalar + size: U08 + offset: 45 + units: Hz + scale: 2 + transform: 0 + min: 10 + max: 511 + digits: 0 + vvtFreq: + type: scalar + size: U08 + offset: 46 + units: Hz + scale: 2 + transform: 0 + min: 10 + max: 511 + digits: 0 + idleFreq: + type: scalar + size: U08 + offset: 47 + units: Hz + scale: 2 + transform: 0 + min: 10 + max: 511 + digits: 0 + launchPin: + type: bits + size: U08 + offset: 48 + address: + - 0 + - 5 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + launchEnable: + type: bits + size: U08 + offset: 48 + address: + - 6 + - 6 + values: + - 'No' + - 'Yes' + launchHiLo: + type: bits + size: U08 + offset: 48 + address: + - 7 + - 7 + values: + - LOW + - HIGH + lnchSoftLim: + type: scalar + size: U08 + offset: 49 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + lnchRetard: + type: scalar + size: S08 + offset: 50 + units: deg + scale: 1 + transform: 0 + min: -30 + max: 40 + digits: 0 + lnchHardLim: + type: scalar + size: U08 + offset: 51 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + lnchFuelAdd: + type: scalar + size: U08 + offset: 52 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 80 + digits: 0 + idleKP: + type: scalar + size: U08 + offset: 53 + units: '%' + scale: 0.03125 + transform: 0 + min: 0 + max: 7.96 + digits: 2 + idleKI: + type: scalar + size: U08 + offset: 54 + units: '%' + scale: 0.03125 + transform: 0 + min: 0 + max: 7.96 + digits: 2 + idleKD: + type: scalar + size: U08 + offset: 55 + units: '%' + scale: 0.00781 + transform: 0 + min: 0 + max: 1.99 + digits: 3 + boostLimit: + type: scalar + size: U08 + offset: 56 + units: kPa + scale: 2 + transform: 0 + min: 0 + max: 511 + digits: 0 + boostKP: + type: scalar + size: U08 + offset: 57 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 200 + digits: 0 + boostKI: + type: scalar + size: U08 + offset: 58 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 200 + digits: 0 + boostKD: + type: scalar + size: U08 + offset: 59 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 200 + digits: 0 + lnchPullRes: + type: bits + size: U08 + offset: 60 + address: + - 0 + - 1 + values: + - Float + - Pullup + - INVALID + - INVALID + fuelTrimEnabled: + type: bits + size: U08 + offset: 60 + address: + - 2 + - 2 + values: + - 'No' + - 'Yes' + flatSEnable: + type: bits + size: U08 + offset: 60 + address: + - 3 + - 3 + values: + - 'No' + - 'Yes' + baroPin: + type: bits + size: U08 + offset: 60 + address: + - 4 + - 7 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + flatSSoftWin: + type: scalar + size: U08 + offset: 61 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + flatSRetard: + type: scalar + size: U08 + offset: 62 + units: deg + scale: 1 + transform: 0 + min: 0 + max: 80 + digits: 0 + flatSArm: + type: scalar + size: U08 + offset: 63 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + iacCLValues: + type: array + size: U08 + offset: 64 + shape: + columns: 10 + rows: 0 + units: RPM + scale: 10 + transform: 0 + min: 0 + max: 2550 + digits: 0 + iacOLStepVal: + type: array + size: U08 + offset: 74 + shape: + columns: 10 + rows: 0 + units: Steps + scale: 3 + transform: 0 + min: 0 + max: 765 + digits: 0 + iacOLPWMVal: + type: array + size: U08 + offset: 84 + shape: + columns: 10 + rows: 0 + units: Duty % + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + iacBins: + type: array + size: U08 + offset: 94 + shape: + columns: 10 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + iacCrankSteps: + type: array + size: U08 + offset: 104 + shape: + columns: 4 + rows: 0 + units: Steps + scale: 3 + transform: 0 + min: 0 + max: 765 + digits: 0 + iacCrankDuty: + type: array + size: U08 + offset: 108 + shape: + columns: 4 + rows: 0 + units: Duty % + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + iacCrankBins: + type: array + size: U08 + offset: 112 + shape: + columns: 4 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + iacAlgorithm: + type: bits + size: U08 + offset: 116 + address: + - 0 + - 2 + values: + - None + - On/Off + - PWM Open loop + - PWM Closed loop + - Stepper Open Loop + - Stepper Closed Loop + - PWM Closed+Open loop + - INVALID + iacStepTime: + type: bits + size: U08 + offset: 116 + address: + - 3 + - 5 + values: + - INVALID + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - INVALID + iacChannels: + type: bits + size: U08 + offset: 116 + address: + - 6 + - 6 + values: + - '1' + - '2' + iacPWMdir: + type: bits + size: U08 + offset: 116 + address: + - 7 + - 7 + values: + - Normal + - Reverse + iacFastTemp: + type: scalar + size: U08 + offset: 117 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + iacStepHome: + type: scalar + size: U08 + offset: 118 + units: Steps + scale: 3 + transform: 0 + min: 0 + max: 765 + digits: 0 + iacStepHyster: + type: scalar + size: U08 + offset: 119 + units: Steps + scale: 1 + transform: 1 + min: 1 + max: 10 + digits: 0 + fanInv: + type: bits + size: U08 + offset: 120 + address: + - 0 + - 0 + values: + - 'No' + - 'Yes' + fanEnable: + type: bits + size: U08 + offset: 120 + address: + - 1 + - 1 + values: + - 'Off' + - On/Off + fanPin: + type: bits + size: U08 + offset: 120 + address: + - 2 + - 7 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + fanSP: + type: scalar + size: U08 + offset: 121 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + fanHyster: + type: scalar + size: U08 + offset: 122 + units: C + scale: 1 + transform: 0 + min: 0 + max: 40 + digits: 0 + fanFreq: + type: scalar + size: U08 + offset: 123 + units: Hz + scale: 2 + transform: 0 + min: 10 + max: 511 + digits: 0 + fanPWMBins: + type: array + size: U08 + offset: 124 + shape: + columns: 4 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + - number: 7 + size: 0 + data: + boostTable: + type: array + size: U08 + offset: 0 + shape: + columns: 8 + rows: 8 + units: '{ bitStringValue( boostTableLabels, boostType ) }' + scale: 2 + transform: 0 + min: 0 + max: '{boostTableLimit}' + digits: 0 + rpmBinsBoost: + type: array + size: U08 + offset: 64 + shape: + columns: 8 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + tpsBinsBoost: + type: array + size: U08 + offset: 72 + shape: + columns: 8 + rows: 0 + units: TPS + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + vvtTable: + type: array + size: U08 + offset: 80 + shape: + columns: 8 + rows: 8 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + rpmBinsVVT: + type: array + size: U08 + offset: 144 + shape: + columns: 8 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + loadBinsVVT: + type: array + size: U08 + offset: 152 + shape: + columns: 8 + rows: 0 + units: '{ bitStringValue(algorithmUnits , vvtLoadSource) }' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + stagingTable: + type: array + size: U08 + offset: 160 + shape: + columns: 8 + rows: 8 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + rpmBinsStaging: + type: array + size: U08 + offset: 224 + shape: + columns: 8 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + loadBinsStaging: + type: array + size: U08 + offset: 232 + shape: + columns: 8 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + - number: 8 + size: 0 + data: + fuelTrim1Table: + type: array + size: U08 + offset: 0 + shape: + columns: 6 + rows: 6 + units: '%' + scale: 1 + transform: -128 + min: -50 + max: 50 + digits: 0 + fuelTrim1rpmBins: + type: array + size: U08 + offset: 36 + shape: + columns: 6 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fuelTrim1loadBins: + type: array + size: U08 + offset: 42 + shape: + columns: 6 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + fuelTrim2Table: + type: array + size: U08 + offset: 48 + shape: + columns: 6 + rows: 6 + units: '%' + scale: 1 + transform: -128 + min: -50 + max: 50 + digits: 0 + fuelTrim2rpmBins: + type: array + size: U08 + offset: 84 + shape: + columns: 6 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fuelTrim2loadBins: + type: array + size: U08 + offset: 90 + shape: + columns: 6 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + fuelTrim3Table: + type: array + size: U08 + offset: 96 + shape: + columns: 6 + rows: 6 + units: '%' + scale: 1 + transform: -128 + min: -50 + max: 50 + digits: 0 + fuelTrim3rpmBins: + type: array + size: U08 + offset: 132 + shape: + columns: 6 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fuelTrim3loadBins: + type: array + size: U08 + offset: 138 + shape: + columns: 6 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + fuelTrim4Table: + type: array + size: U08 + offset: 144 + shape: + columns: 6 + rows: 6 + units: '%' + scale: 1 + transform: -128 + min: -50 + max: 50 + digits: 0 + fuelTrim4rpmBins: + type: array + size: U08 + offset: 180 + shape: + columns: 6 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fuelTrim4loadBins: + type: array + size: U08 + offset: 186 + shape: + columns: 6 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + - number: 9 + size: 0 + data: + enable_secondarySerial: + type: bits + size: U08 + offset: 0 + address: + - 0 + - 0 + values: + - Disable + - Enable + intcan_available: + type: bits + size: U08 + offset: 0 + address: + - 1 + - 1 + values: + - Disable + - Enable + enable_intcan: + type: bits + size: U08 + offset: 0 + address: + - 2 + - 2 + values: + - Disable + - Enable + caninput_sel0a: + type: bits + size: U08 + offset: 1 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel0b: + type: bits + size: U08 + offset: 1 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel0extsourcea: + type: bits + size: U08 + offset: 1 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel0extsourceb: + type: bits + size: U08 + offset: 1 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel0extsourcec: + type: bits + size: U08 + offset: 1 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel1a: + type: bits + size: U08 + offset: 2 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel1b: + type: bits + size: U08 + offset: 2 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel1extsourcea: + type: bits + size: U08 + offset: 2 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel1extsourceb: + type: bits + size: U08 + offset: 2 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel1extsourcec: + type: bits + size: U08 + offset: 2 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel2a: + type: bits + size: U08 + offset: 3 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel2b: + type: bits + size: U08 + offset: 3 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel2extsourcea: + type: bits + size: U08 + offset: 3 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel2extsourceb: + type: bits + size: U08 + offset: 3 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel2extsourcec: + type: bits + size: U08 + offset: 3 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel3a: + type: bits + size: U08 + offset: 4 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel3b: + type: bits + size: U08 + offset: 4 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel3extsourcea: + type: bits + size: U08 + offset: 4 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel3extsourceb: + type: bits + size: U08 + offset: 4 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel3extsourcec: + type: bits + size: U08 + offset: 4 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel4a: + type: bits + size: U08 + offset: 5 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel4b: + type: bits + size: U08 + offset: 5 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel4extsourcea: + type: bits + size: U08 + offset: 5 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel4extsourceb: + type: bits + size: U08 + offset: 5 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel4extsourcec: + type: bits + size: U08 + offset: 5 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel5a: + type: bits + size: U08 + offset: 6 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel5b: + type: bits + size: U08 + offset: 6 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel5extsourcea: + type: bits + size: U08 + offset: 6 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel5extsourceb: + type: bits + size: U08 + offset: 6 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel5extsourcec: + type: bits + size: U08 + offset: 6 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel6a: + type: bits + size: U08 + offset: 7 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel6b: + type: bits + size: U08 + offset: 7 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel6extsourcea: + type: bits + size: U08 + offset: 7 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel6extsourceb: + type: bits + size: U08 + offset: 7 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel6extsourcec: + type: bits + size: U08 + offset: 7 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel7a: + type: bits + size: U08 + offset: 8 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel7b: + type: bits + size: U08 + offset: 8 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel7extsourcea: + type: bits + size: U08 + offset: 8 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel7extsourceb: + type: bits + size: U08 + offset: 8 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel7extsourcec: + type: bits + size: U08 + offset: 8 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel8a: + type: bits + size: U08 + offset: 9 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel8b: + type: bits + size: U08 + offset: 9 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel8extsourcea: + type: bits + size: U08 + offset: 9 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel8extsourceb: + type: bits + size: U08 + offset: 9 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel8extsourcec: + type: bits + size: U08 + offset: 9 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel9a: + type: bits + size: U08 + offset: 10 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel9b: + type: bits + size: U08 + offset: 10 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel9extsourcea: + type: bits + size: U08 + offset: 10 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel9extsourceb: + type: bits + size: U08 + offset: 10 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel9extsourcec: + type: bits + size: U08 + offset: 10 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel10a: + type: bits + size: U08 + offset: 11 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel10b: + type: bits + size: U08 + offset: 11 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel10extsourcea: + type: bits + size: U08 + offset: 11 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel10extsourceb: + type: bits + size: U08 + offset: 11 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel10extsourcec: + type: bits + size: U08 + offset: 11 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel11a: + type: bits + size: U08 + offset: 12 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel11b: + type: bits + size: U08 + offset: 12 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel11extsourcea: + type: bits + size: U08 + offset: 12 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel11extsourceb: + type: bits + size: U08 + offset: 12 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel11extsourcec: + type: bits + size: U08 + offset: 12 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel12a: + type: bits + size: U08 + offset: 13 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel12b: + type: bits + size: U08 + offset: 13 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel12extsourcea: + type: bits + size: U08 + offset: 13 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel12extsourceb: + type: bits + size: U08 + offset: 13 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel12extsourcec: + type: bits + size: U08 + offset: 13 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel13a: + type: bits + size: U08 + offset: 14 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel13b: + type: bits + size: U08 + offset: 14 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel13extsourcea: + type: bits + size: U08 + offset: 14 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel13extsourceb: + type: bits + size: U08 + offset: 14 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel13extsourcec: + type: bits + size: U08 + offset: 14 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel14a: + type: bits + size: U08 + offset: 15 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel14b: + type: bits + size: U08 + offset: 15 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel14extsourcea: + type: bits + size: U08 + offset: 15 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel14extsourceb: + type: bits + size: U08 + offset: 15 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel14extsourcec: + type: bits + size: U08 + offset: 15 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel15a: + type: bits + size: U08 + offset: 16 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel15b: + type: bits + size: U08 + offset: 16 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel15extsourcea: + type: bits + size: U08 + offset: 16 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel15extsourceb: + type: bits + size: U08 + offset: 16 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel15extsourcec: + type: bits + size: U08 + offset: 16 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_source_can_address0: + type: bits + size: U16 + offset: 17 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address1: + type: bits + size: U16 + offset: 19 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address2: + type: bits + size: U16 + offset: 21 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address3: + type: bits + size: U16 + offset: 23 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address4: + type: bits + size: U16 + offset: 25 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address5: + type: bits + size: U16 + offset: 27 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address6: + type: bits + size: U16 + offset: 29 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address7: + type: bits + size: U16 + offset: 31 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address8: + type: bits + size: U16 + offset: 33 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address9: + type: bits + size: U16 + offset: 35 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address10: + type: bits + size: U16 + offset: 37 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address11: + type: bits + size: U16 + offset: 39 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address12: + type: bits + size: U16 + offset: 41 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address13: + type: bits + size: U16 + offset: 43 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address14: + type: bits + size: U16 + offset: 45 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address15: + type: bits + size: U16 + offset: 47 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_start_byte0: + type: bits + size: U08 + offset: 49 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte1: + type: bits + size: U08 + offset: 50 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte2: + type: bits + size: U08 + offset: 51 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte3: + type: bits + size: U08 + offset: 52 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte4: + type: bits + size: U08 + offset: 53 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte5: + type: bits + size: U08 + offset: 54 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte6: + type: bits + size: U08 + offset: 55 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte7: + type: bits + size: U08 + offset: 56 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte8: + type: bits + size: U08 + offset: 57 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte9: + type: bits + size: U08 + offset: 58 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte10: + type: bits + size: U08 + offset: 59 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte11: + type: bits + size: U08 + offset: 60 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte12: + type: bits + size: U08 + offset: 61 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte13: + type: bits + size: U08 + offset: 62 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte14: + type: bits + size: U08 + offset: 63 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte15: + type: bits + size: U08 + offset: 64 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_num_bytes0: + type: bits + size: U16 + offset: 65 + address: + - 0 + - 0 + values: + - '1' + - '2' + caninput_source_num_bytes1: + type: bits + size: U16 + offset: 65 + address: + - 1 + - 1 + values: + - '1' + - '2' + caninput_source_num_bytes2: + type: bits + size: U16 + offset: 65 + address: + - 2 + - 2 + values: + - '1' + - '2' + caninput_source_num_bytes3: + type: bits + size: U16 + offset: 65 + address: + - 3 + - 3 + values: + - '1' + - '2' + caninput_source_num_bytes4: + type: bits + size: U16 + offset: 65 + address: + - 4 + - 4 + values: + - '1' + - '2' + caninput_source_num_bytes5: + type: bits + size: U16 + offset: 65 + address: + - 5 + - 5 + values: + - '1' + - '2' + caninput_source_num_bytes6: + type: bits + size: U16 + offset: 65 + address: + - 6 + - 6 + values: + - '1' + - '2' + caninput_source_num_bytes7: + type: bits + size: U16 + offset: 65 + address: + - 7 + - 7 + values: + - '1' + - '2' + caninput_source_num_bytes8: + type: bits + size: U16 + offset: 65 + address: + - 8 + - 8 + values: + - '1' + - '2' + caninput_source_num_bytes9: + type: bits + size: U16 + offset: 65 + address: + - 9 + - 9 + values: + - '1' + - '2' + caninput_source_num_bytes10: + type: bits + size: U16 + offset: 65 + address: + - 10 + - 10 + values: + - '1' + - '2' + caninput_source_num_bytes11: + type: bits + size: U16 + offset: 65 + address: + - 11 + - 11 + values: + - '1' + - '2' + caninput_source_num_bytes12: + type: bits + size: U16 + offset: 65 + address: + - 12 + - 12 + values: + - '1' + - '2' + caninput_source_num_bytes13: + type: bits + size: U16 + offset: 65 + address: + - 13 + - 13 + values: + - '1' + - '2' + caninput_source_num_bytes14: + type: bits + size: U16 + offset: 65 + address: + - 14 + - 14 + values: + - '1' + - '2' + caninput_source_num_bytes15: + type: bits + size: U16 + offset: 65 + address: + - 15 + - 15 + values: + - '1' + - '2' + unused10_67: + type: scalar + size: U08 + offset: 67 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + unused10_68: + type: scalar + size: U08 + offset: 68 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + enable_intcandata_out: + type: bits + size: U08 + offset: 69 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_sel0: + type: bits + size: U08 + offset: 70 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_sel1: + type: bits + size: U08 + offset: 71 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_sel2: + type: bits + size: U08 + offset: 72 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_sel3: + type: bits + size: U08 + offset: 73 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_sel4: + type: bits + size: U08 + offset: 74 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_sel5: + type: bits + size: U08 + offset: 75 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_sel6: + type: bits + size: U08 + offset: 76 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_sel7: + type: bits + size: U08 + offset: 77 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_param_group: + type: array + size: U16 + offset: 78 + shape: + columns: 8 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 65535 + digits: 0 + canoutput_param_start_byte0: + type: bits + size: U08 + offset: 94 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + canoutput_param_start_byte1: + type: bits + size: U08 + offset: 95 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + canoutput_param_start_byte2: + type: bits + size: U08 + offset: 96 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + canoutput_param_start_byte3: + type: bits + size: U08 + offset: 97 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + canoutput_param_start_byte4: + type: bits + size: U08 + offset: 98 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + canoutput_param_start_byte5: + type: bits + size: U08 + offset: 99 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + canoutput_param_start_byte6: + type: bits + size: U08 + offset: 100 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + canoutput_param_start_byte7: + type: bits + size: U08 + offset: 101 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + canoutput_param_num_bytes0: + type: bits + size: U08 + offset: 102 + address: + - 0 + - 1 + values: + - INVALID + - '1' + - '2' + - INVALID + canoutput_param_num_bytes1: + type: bits + size: U08 + offset: 103 + address: + - 0 + - 1 + values: + - INVALID + - '1' + - '2' + - INVALID + canoutput_param_num_bytes2: + type: bits + size: U08 + offset: 104 + address: + - 0 + - 1 + values: + - INVALID + - '1' + - '2' + - INVALID + canoutput_param_num_bytes3: + type: bits + size: U08 + offset: 105 + address: + - 0 + - 1 + values: + - INVALID + - '1' + - '2' + - INVALID + canoutput_param_num_bytes4: + type: bits + size: U08 + offset: 106 + address: + - 0 + - 1 + values: + - INVALID + - '1' + - '2' + - INVALID + canoutput_param_num_bytes5: + type: bits + size: U08 + offset: 107 + address: + - 0 + - 1 + values: + - INVALID + - '1' + - '2' + - INVALID + canoutput_param_num_bytes6: + type: bits + size: U08 + offset: 108 + address: + - 0 + - 1 + values: + - INVALID + - '1' + - '2' + - INVALID + canoutput_param_num_bytes7: + type: bits + size: U08 + offset: 109 + address: + - 0 + - 1 + values: + - INVALID + - '1' + - '2' + - INVALID + unused10_110: + type: scalar + size: U08 + offset: 110 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + unused10_111: + type: scalar + size: U08 + offset: 111 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + unused10_112: + type: scalar + size: U08 + offset: 112 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + unused10_113: + type: scalar + size: U08 + offset: 113 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + speeduino_tsCanId: + type: bits + size: U08 + offset: 114 + address: + - 0 + - 3 + values: + - CAN ID 0 + - CAN ID 1 + - CAN ID 2 + - CAN ID 3 + - CAN ID 4 + - CAN ID 5 + - CAN ID 6 + - CAN ID 7 + - CAN ID 8 + - CAN ID 9 + - CAN ID 10 + - CAN ID 11 + - CAN ID 12 + - CAN ID 13 + - CAN ID 14 + - INVALID + true_address: + type: bits + size: U16 + offset: 115 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + realtime_base_address: + type: bits + size: U16 + offset: 117 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + obd_address: + type: bits + size: U16 + offset: 119 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin0pina: + type: bits + size: U08 + offset: 121 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin1pina: + type: bits + size: U08 + offset: 122 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin2pina: + type: bits + size: U08 + offset: 123 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin3pina: + type: bits + size: U08 + offset: 124 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin4pina: + type: bits + size: U08 + offset: 125 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin5pina: + type: bits + size: U08 + offset: 126 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin6pina: + type: bits + size: U08 + offset: 127 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin7pina: + type: bits + size: U08 + offset: 128 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin8pina: + type: bits + size: U08 + offset: 129 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin9pina: + type: bits + size: U08 + offset: 130 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin10pina: + type: bits + size: U08 + offset: 131 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin11pina: + type: bits + size: U08 + offset: 132 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin12pina: + type: bits + size: U08 + offset: 133 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin13pina: + type: bits + size: U08 + offset: 134 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin14pina: + type: bits + size: U08 + offset: 135 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin15pina: + type: bits + size: U08 + offset: 136 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin0pinb: + type: bits + size: U08 + offset: 137 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin1pinb: + type: bits + size: U08 + offset: 138 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin2pinb: + type: bits + size: U08 + offset: 139 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin3pinb: + type: bits + size: U08 + offset: 140 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin4pinb: + type: bits + size: U08 + offset: 141 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin5pinb: + type: bits + size: U08 + offset: 142 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin6pinb: + type: bits + size: U08 + offset: 143 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin7pinb: + type: bits + size: U08 + offset: 144 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin8pinb: + type: bits + size: U08 + offset: 145 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin9pinb: + type: bits + size: U08 + offset: 146 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin10pinb: + type: bits + size: U08 + offset: 147 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin11pinb: + type: bits + size: U08 + offset: 148 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin12pinb: + type: bits + size: U08 + offset: 149 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin13pinb: + type: bits + size: U08 + offset: 150 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin14pinb: + type: bits + size: U08 + offset: 151 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin15pinb: + type: bits + size: U08 + offset: 152 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + iacStepperInv: + type: bits + size: U08 + offset: 153 + address: + - 0 + - 0 + values: + - 'No' + - 'Yes' + iacCoolTime: + type: bits + size: U08 + offset: 153 + address: + - 1 + - 3 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - INVALID + blankfield: + type: bits + size: U08 + offset: 153 + address: + - 4 + - 4 + values: [] + unused10_153: + type: bits + size: U08 + offset: 153 + address: + - 5 + - 7 + values: [] + iacMaxSteps: + type: scalar + size: U08 + offset: 154 + units: Steps + scale: 3 + transform: 0 + min: 0 + max: '{iacStepHome-3}' + digits: 0 + unused10_154: + type: array + size: U08 + offset: 155 + shape: + columns: 37 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + - number: 10 + size: 0 + data: + crankingEnrichBins: + type: array + size: U08 + offset: 0 + shape: + columns: 4 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + crankingEnrichValues: + type: array + size: U08 + offset: 4 + shape: + columns: 4 + rows: 0 + units: '%' + scale: 5 + transform: 0 + min: 0 + max: 1275 + digits: 0 + rotaryType: + type: bits + size: U08 + offset: 8 + address: + - 0 + - 1 + values: + - FC + - FD + - RX8 + - INVALID + stagingEnabled: + type: bits + size: U08 + offset: 8 + address: + - 2 + - 2 + values: + - 'Off' + - 'On' + stagingMode: + type: bits + size: U08 + offset: 8 + address: + - 3 + - 3 + values: + - Table + - Automatic + EMAPPin: + type: bits + size: U08 + offset: 8 + address: + - 4 + - 7 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + rotarySplitValues: + type: array + size: U08 + offset: 9 + shape: + columns: 8 + rows: 0 + units: degrees + scale: 1 + transform: 0 + min: 0 + max: 40 + digits: 0 + rotarySplitBins: + type: array + size: U08 + offset: 17 + shape: + columns: 8 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + boostSens: + type: scalar + size: U16 + offset: 25 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 5000 + digits: 0 + boostIntv: + type: scalar + size: U08 + offset: 27 + units: ms + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + stagedInjSizePri: + type: scalar + size: U16 + offset: 28 + units: cc/min + scale: 1 + transform: 0 + min: 0 + max: 1500 + digits: 0 + stagedInjSizeSec: + type: scalar + size: U16 + offset: 30 + units: cc/min + scale: 1 + transform: 0 + min: 0 + max: 1500 + digits: 0 + lnchCtrlTPS: + type: scalar + size: U08 + offset: 32 + units: '%TPS' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + flexBoostBins: + type: array + size: U08 + offset: 33 + shape: + columns: 6 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + flexBoostAdj: + type: array + size: S16 + offset: 39 + shape: + columns: 6 + rows: 0 + units: kPa + scale: 1 + transform: 0 + min: -500 + max: 500 + digits: 0 + flexFuelBins: + type: array + size: U08 + offset: 51 + shape: + columns: 6 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + flexFuelAdj: + type: array + size: U08 + offset: 57 + shape: + columns: 6 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + flexAdvBins: + type: array + size: U08 + offset: 63 + shape: + columns: 6 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + flexAdvAdj: + type: array + size: U08 + offset: 69 + shape: + columns: 6 + rows: 0 + units: Deg + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + n2o_enable: + type: bits + size: U08 + offset: 75 + address: + - 0 + - 1 + values: + - 'Off' + - 1 Stage + - 2 stage + - INVALID + n2o_arming_pin: + type: bits + size: U08 + offset: 75 + address: + - 2 + - 7 + values: + - INVALID + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + n2o_minCLT: + type: scalar + size: U08 + offset: 76 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + n2o_maxMAP: + type: scalar + size: U08 + offset: 77 + units: kPa + scale: 2 + transform: 0 + min: 0 + max: 511 + digits: 0 + n2o_minTPS: + type: scalar + size: U08 + offset: 78 + units: '%TPS' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + n2o_maxAFR: + type: scalar + size: U08 + offset: 79 + units: AFR + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + n2o_stage1_pin: + type: bits + size: U08 + offset: 80 + address: + - 0 + - 5 + values: + - INVALID + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + n2o_pin_polarity: + type: bits + size: U08 + offset: 80 + address: + - 6 + - 6 + values: + - HIGH + - LOW + n2o_unused: + type: bits + size: U08 + offset: 80 + address: + - 7 + - 7 + values: + - 'No' + - 'Yes' + n2o_stage1_minRPM: + type: scalar + size: U08 + offset: 81 + units: RPM + scale: 100 + transform: 0 + min: 1000 + max: 10000 + digits: 0 + n2o_stage1_maxRPM: + type: scalar + size: U08 + offset: 82 + units: RPM + scale: 100 + transform: 0 + min: 1000 + max: 10000 + digits: 0 + n2o_stage1_adderMin: + type: scalar + size: U08 + offset: 83 + units: ms + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + n2o_stage1_adderMax: + type: scalar + size: U08 + offset: 84 + units: ms + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + n2o_stage1_retard: + type: scalar + size: U08 + offset: 85 + units: Deg + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + n2o_stage2_pin: + type: bits + size: U08 + offset: 86 + address: + - 0 + - 5 + values: + - INVALID + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + n2o_stage2_unused: + type: bits + size: U08 + offset: 86 + address: + - 6 + - 7 + values: + - 'No' + - 'Yes' + - INVALID + - INVALID + n2o_stage2_minRPM: + type: scalar + size: U08 + offset: 87 + units: RPM + scale: 100 + transform: 0 + min: 1000 + max: 10000 + digits: 0 + n2o_stage2_maxRPM: + type: scalar + size: U08 + offset: 88 + units: RPM + scale: 100 + transform: 0 + min: 1000 + max: 10000 + digits: 0 + n2o_stage2_adderMin: + type: scalar + size: U08 + offset: 89 + units: ms + scale: 0.1 + transform: 0 + min: 0 + max: 32 + digits: 1 + n2o_stage2_adderMax: + type: scalar + size: U08 + offset: 90 + units: ms + scale: 0.1 + transform: 0 + min: 0 + max: 32 + digits: 1 + n2o_stage2_retard: + type: scalar + size: U08 + offset: 91 + units: Deg + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + knock_mode: + type: bits + size: U08 + offset: 92 + address: + - 0 + - 1 + values: + - 'Off' + - Digital + - Analog + - INVALID + knock_pin: + type: bits + size: U08 + offset: 92 + address: + - 2 + - 7 + values: + - INVALID + - INVALID + - '2' + - '3' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - '18' + - '19' + - '20' + - '21' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + knock_trigger: + type: bits + size: U08 + offset: 93 + address: + - 0 + - 0 + values: + - HIGH + - LOW + knock_pullup: + type: bits + size: U08 + offset: 93 + address: + - 1 + - 1 + values: + - 'Off' + - Internal pullup + knock_limiterDisable: + type: bits + size: U08 + offset: 93 + address: + - 2 + - 2 + values: + - 'No' + - 'Yes' + knock_unused: + type: bits + size: U08 + offset: 93 + address: + - 3 + - 4 + values: + - INVALID + - '1' + - '2' + - '3' + knock_count: + type: bits + size: U08 + offset: 93 + address: + - 5 + - 7 + values: + - INVALID + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + knock_threshold: + type: scalar + size: U08 + offset: 94 + units: Volts + scale: 0.1 + transform: 0 + min: 0 + max: 5 + digits: 1 + knock_maxMAP: + type: scalar + size: U08 + offset: 95 + units: kPa + scale: 2 + transform: 0 + min: 0 + max: 511 + digits: 0 + knock_maxRPM: + type: scalar + size: U08 + offset: 96 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 10000 + digits: 0 + knock_window_rpms: + type: array + size: U08 + offset: 97 + shape: + columns: 6 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 10000 + digits: 0 + knock_window_angle: + type: array + size: U08 + offset: 103 + shape: + columns: 6 + rows: 0 + units: deg + scale: 1 + transform: -50 + min: -50 + max: 100 + digits: 0 + knock_window_dur: + type: array + size: U08 + offset: 109 + shape: + columns: 6 + rows: 0 + units: deg + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + knock_maxRetard: + type: scalar + size: U08 + offset: 115 + units: Deg + scale: 1 + transform: 0 + min: 0 + max: 50 + digits: 0 + knock_firstStep: + type: scalar + size: U08 + offset: 116 + units: Deg + scale: 1 + transform: 0 + min: 0 + max: 50 + digits: 0 + knock_stepSize: + type: scalar + size: U08 + offset: 117 + units: Deg + scale: 1 + transform: 0 + min: 0 + max: 50 + digits: 0 + knock_stepTime: + type: scalar + size: U08 + offset: 118 + units: Sec + scale: 0.1 + transform: 0 + min: 0 + max: 2.5 + digits: 1 + knock_duration: + type: scalar + size: U08 + offset: 119 + units: Sec + scale: 0.1 + transform: 0 + min: 0 + max: 2.5 + digits: 1 + knock_recoveryStepTime: + type: scalar + size: U08 + offset: 120 + units: Sec + scale: 0.1 + transform: 0 + min: 0 + max: 2.5 + digits: 1 + knock_recoveryStep: + type: scalar + size: U08 + offset: 121 + units: Deg + scale: 1 + transform: 0 + min: 0 + max: 50 + digits: 0 + fuel2Algorithm: + type: bits + size: U08 + offset: 122 + address: + - 0 + - 2 + values: + - MAP + - TPS + - IMAP/EMAP + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + fuel2Mode: + type: bits + size: U08 + offset: 122 + address: + - 3 + - 5 + values: + - 'Off' + - Multiplied % + - Added + - Switched - Conditional + - Switched - Input based + - INVALID + - INVALID + - INVALID + fuel2SwitchVariable: + type: bits + size: U08 + offset: 122 + address: + - 6 + - 7 + values: + - RPM + - MAP + - TPS + - ETH% + fuel2SwitchValue: + type: scalar + size: U16 + offset: 123 + units: '{ bitStringValue(fuel2SwitchUnits, fuel2SwitchVariable) }' + scale: 1 + transform: 0 + min: 0 + max: 9000 + digits: 0 + fuel2InputPin: + type: bits + size: U08 + offset: 125 + address: + - 0 + - 5 + values: + - INVALID + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + fuel2InputPolarity: + type: bits + size: U08 + offset: 125 + address: + - 6 + - 6 + values: + - LOW + - HIGH + fuel2InputPullup: + type: bits + size: U08 + offset: 125 + address: + - 7 + - 7 + values: + - 'No' + - 'Yes' + vvtCLholdDuty: + type: scalar + size: U08 + offset: 126 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + vvtCLKP: + type: scalar + size: U08 + offset: 127 + units: '%' + scale: 0.03125 + transform: 0 + min: 0 + max: 7.96 + digits: 2 + vvtCLKI: + type: scalar + size: U08 + offset: 128 + units: '%' + scale: 0.03125 + transform: 0 + min: 0 + max: 7.96 + digits: 2 + vvtCLKD: + type: scalar + size: U08 + offset: 129 + units: '%' + scale: 0.00781 + transform: 0 + min: 0 + max: 1.99 + digits: 3 + vvtCLMinAng: + type: scalar + size: S16 + offset: 130 + units: deg + scale: 1 + transform: 0 + min: -360 + max: 360 + digits: 0 + vvtCLMaxAng: + type: scalar + size: S16 + offset: 132 + units: deg + scale: 1 + transform: 0 + min: -360 + max: 360 + digits: 0 + crankingEnrichTaper: + type: scalar + size: U08 + offset: 134 + units: s + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + fuelPressureEnable: + type: bits + size: U08 + offset: 135 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + oilPressureEnable: + type: bits + size: U08 + offset: 135 + address: + - 1 + - 1 + values: + - 'Off' + - 'On' + oilPressureProtEnbl: + type: bits + size: U08 + offset: 135 + address: + - 2 + - 2 + values: + - 'Off' + - 'On' + fuelPressurePin: + type: bits + size: U08 + offset: 136 + address: + - 0 + - 3 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + oilPressurePin: + type: bits + size: U08 + offset: 136 + address: + - 4 + - 7 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + fuelPressureMin: + type: scalar + size: S08 + offset: 137 + units: psi + scale: 1 + transform: 0 + min: -100 + max: 127 + digits: 0 + fuelPressureMax: + type: scalar + size: U08 + offset: 138 + units: psi + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + oilPressureMin: + type: scalar + size: S08 + offset: 139 + units: psi + scale: 1 + transform: 0 + min: -100 + max: 127 + digits: 0 + oilPressureMax: + type: scalar + size: U08 + offset: 140 + units: psi + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + oilPressureProtRPM: + type: array + size: U08 + offset: 141 + shape: + columns: 4 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + oilPressureProtMins: + type: array + size: U08 + offset: 145 + shape: + columns: 4 + rows: 0 + units: psi + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + wmiEnabled: + type: bits + size: U08 + offset: 149 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + wmiMode: + type: bits + size: U08 + offset: 149 + address: + - 1 + - 2 + values: + - Simple + - Proportional + - Openloop + - Closedloop + wmiAdvEnabled: + type: bits + size: U08 + offset: 149 + address: + - 7 + - 7 + values: + - 'Off' + - 'On' + wmiTPS: + type: scalar + size: U08 + offset: 150 + units: '%TPS' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + wmiRPM: + type: scalar + size: U08 + offset: 151 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 10000 + digits: 0 + wmiMAP: + type: scalar + size: U08 + offset: 152 + units: kPa + scale: 2 + transform: 0 + min: 0 + max: 511 + digits: 0 + wmiMAP2: + type: scalar + size: U08 + offset: 153 + units: kPa + scale: 2 + transform: 0 + min: 0 + max: 511 + digits: 0 + wmiIAT: + type: scalar + size: U08 + offset: 154 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + wmiOffset: + type: scalar + size: S08 + offset: 155 + units: ms + scale: 1 + transform: 0 + min: -12.7 + max: 12.7 + digits: 0 + wmiIndicatorEnabled: + type: bits + size: U08 + offset: 156 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + wmiIndicatorPin: + type: bits + size: U08 + offset: 156 + address: + - 1 + - 6 + values: + - Board Default + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + wmiIndicatorPolarity: + type: bits + size: U08 + offset: 156 + address: + - 7 + - 7 + values: + - Normal + - Inverted + wmiEmptyEnabled: + type: bits + size: U08 + offset: 157 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + wmiEmptyPin: + type: bits + size: U08 + offset: 157 + address: + - 1 + - 6 + values: + - Board Default + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + wmiEmptyPolarity: + type: bits + size: U08 + offset: 157 + address: + - 7 + - 7 + values: + - Normal + - Inverted + wmiEnabledPin: + type: bits + size: U08 + offset: 158 + address: + - 0 + - 5 + values: + - Board Default + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + wmiAdvBins: + type: array + size: U08 + offset: 159 + shape: + columns: 6 + rows: 0 + units: kPa + scale: 2 + transform: 0 + min: 0 + max: 511 + digits: 0 + wmiAdvAdj: + type: array + size: U08 + offset: 165 + shape: + columns: 6 + rows: 0 + units: Deg + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + vvtCLminDuty: + type: scalar + size: U08 + offset: 171 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + vvtCLmaxDuty: + type: scalar + size: U08 + offset: 172 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + vvt2Pin: + type: bits + size: U08 + offset: 173 + address: + - 0 + - 5 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + fuelTempBins: + type: array + size: U08 + offset: 174 + shape: + columns: 6 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + fuelTempValues: + type: array + size: U08 + offset: 180 + shape: + columns: 6 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + spark2Algorithm: + type: bits + size: U08 + offset: 186 + address: + - 0 + - 2 + values: + - MAP + - TPS + - IMAP/EMAP + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + spark2Mode: + type: bits + size: U08 + offset: 186 + address: + - 3 + - 5 + values: + - 'Off' + - Multiplied % + - Added + - Switched - Conditional + - Switched - Input based + - INVALID + - INVALID + - INVALID + spark2SwitchVariable: + type: bits + size: U08 + offset: 186 + address: + - 6 + - 7 + values: + - RPM + - MAP + - TPS + - ETH% + spark2SwitchValue: + type: scalar + size: U16 + offset: 187 + units: '{ bitStringValue(fuel2SwitchUnits, spark2SwitchVariable) }' + scale: 1 + transform: 0 + min: 0 + max: 9000 + digits: 0 + spark2InputPin: + type: bits + size: U08 + offset: 189 + address: + - 0 + - 5 + values: + - INVALID + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + spark2InputPolarity: + type: bits + size: U08 + offset: 189 + address: + - 6 + - 6 + values: + - LOW + - HIGH + spark2InputPullup: + type: bits + size: U08 + offset: 189 + address: + - 7 + - 7 + values: + - 'No' + - 'Yes' + unused11_190_191: + type: array + size: U08 + offset: 90 + shape: + columns: 2 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + - number: 11 + size: 0 + data: + veTable2: + type: array + size: U08 + offset: 0 + shape: + columns: 16 + rows: 16 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + fuelRPM2Bins: + type: array + size: U08 + offset: 256 + shape: + columns: 16 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fuelLoad2Bins: + type: array + size: U08 + offset: 272 + shape: + columns: 16 + rows: 0 + units: '{ bitStringValue(algorithmUnits , fuel2Algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + - number: 12 + size: 0 + data: + wmiTable: + type: array + size: U08 + offset: 0 + shape: + columns: 8 + rows: 8 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + rpmBinsWMI: + type: array + size: U08 + offset: 64 + shape: + columns: 8 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + mapBinsWMI: + type: array + size: U08 + offset: 72 + shape: + columns: 8 + rows: 0 + units: kPa + scale: 2 + transform: 0 + min: 0 + max: 511 + digits: 0 + - number: 13 + size: 0 + data: + outputInverted0: + type: bits + size: U08 + offset: 0 + address: + - 0 + - 0 + values: + - Active high + - Active low + outputInverted1: + type: bits + size: U08 + offset: 0 + address: + - 1 + - 1 + values: + - Active high + - Active low + outputInverted2: + type: bits + size: U08 + offset: 0 + address: + - 2 + - 2 + values: + - Active high + - Active low + outputInverted3: + type: bits + size: U08 + offset: 0 + address: + - 3 + - 3 + values: + - Active high + - Active low + outputInverted4: + type: bits + size: U08 + offset: 0 + address: + - 4 + - 4 + values: + - Active high + - Active low + outputInverted5: + type: bits + size: U08 + offset: 0 + address: + - 5 + - 5 + values: + - Active high + - Active low + outputInverted6: + type: bits + size: U08 + offset: 0 + address: + - 6 + - 6 + values: + - Active high + - Active low + outputInverted7: + type: bits + size: U08 + offset: 0 + address: + - 7 + - 7 + values: + - Active high + - Active low + unused12_1: + type: scalar + size: U08 + offset: 1 + units: bits + scale: 1 + transform: 0 + min: 0 + max: 0 + digits: .nan + outputPin: + type: array + size: U08 + offset: 2 + shape: + columns: 8 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + outputPin0: + type: bits + size: U08 + offset: 2 + address: + - 0 + - 7 + values: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + outputPin1: + type: bits + size: U08 + offset: 3 + address: + - 0 + - 7 + values: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + outputPin2: + type: bits + size: U08 + offset: 4 + address: + - 0 + - 7 + values: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + outputPin3: + type: bits + size: U08 + offset: 5 + address: + - 0 + - 7 + values: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + outputPin4: + type: bits + size: U08 + offset: 6 + address: + - 0 + - 7 + values: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + outputPin5: + type: bits + size: U08 + offset: 7 + address: + - 0 + - 7 + values: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + outputPin6: + type: bits + size: U08 + offset: 8 + address: + - 0 + - 7 + values: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + outputPin7: + type: bits + size: U08 + offset: 9 + address: + - 0 + - 7 + values: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - '54' + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + outputDelay: + type: array + size: U08 + offset: 10 + shape: + columns: 8 + rows: 0 + units: S + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + firstDataIn: + type: array + size: U08 + offset: 18 + shape: + columns: 8 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 65535 + digits: 0 + firstDataIn0: + type: bits + size: U08 + offset: 18 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + firstDataIn1: + type: bits + size: U08 + offset: 19 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + firstDataIn2: + type: bits + size: U08 + offset: 20 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + firstDataIn3: + type: bits + size: U08 + offset: 21 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + firstDataIn4: + type: bits + size: U08 + offset: 22 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + firstDataIn5: + type: bits + size: U08 + offset: 23 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + firstDataIn6: + type: bits + size: U08 + offset: 24 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + firstDataIn7: + type: bits + size: U08 + offset: 25 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + secondDataIn: + type: array + size: U08 + offset: 26 + shape: + columns: 8 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 65535 + digits: 0 + secondDataIn0: + type: bits + size: U08 + offset: 26 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + secondDataIn1: + type: bits + size: U08 + offset: 27 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + secondDataIn2: + type: bits + size: U08 + offset: 28 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + secondDataIn3: + type: bits + size: U08 + offset: 29 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + secondDataIn4: + type: bits + size: U08 + offset: 30 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + secondDataIn5: + type: bits + size: U08 + offset: 31 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + secondDataIn6: + type: bits + size: U08 + offset: 32 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + secondDataIn7: + type: bits + size: U08 + offset: 33 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + unused13_35_49: + type: array + size: U08 + offset: 34 + shape: + columns: 16 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + firstTarget: + type: array + size: S16 + offset: 50 + shape: + columns: 8 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: -32768 + max: 32768 + digits: 0 + secondTarget: + type: array + size: S16 + offset: 66 + shape: + columns: 8 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: -32768 + max: 32768 + digits: 0 + firstCompType0: + type: bits + size: U08 + offset: 82 + address: + - 0 + - 2 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + secondCompType0: + type: bits + size: U08 + offset: 82 + address: + - 3 + - 5 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + bitwise0: + type: bits + size: U08 + offset: 82 + address: + - 6 + - 7 + values: + - Disabled + - AND + - OR + - XOR + firstCompType1: + type: bits + size: U08 + offset: 83 + address: + - 0 + - 2 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + secondCompType1: + type: bits + size: U08 + offset: 83 + address: + - 3 + - 5 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + bitwise1: + type: bits + size: U08 + offset: 83 + address: + - 6 + - 7 + values: + - Disabled + - AND + - OR + - XOR + firstCompType2: + type: bits + size: U08 + offset: 84 + address: + - 0 + - 2 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + secondCompType2: + type: bits + size: U08 + offset: 84 + address: + - 3 + - 5 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + bitwise2: + type: bits + size: U08 + offset: 84 + address: + - 6 + - 7 + values: + - Disabled + - AND + - OR + - XOR + firstCompType3: + type: bits + size: U08 + offset: 85 + address: + - 0 + - 2 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + secondCompType3: + type: bits + size: U08 + offset: 85 + address: + - 3 + - 5 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + bitwise3: + type: bits + size: U08 + offset: 85 + address: + - 6 + - 7 + values: + - Disabled + - AND + - OR + - XOR + firstCompType4: + type: bits + size: U08 + offset: 86 + address: + - 0 + - 2 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + secondCompType4: + type: bits + size: U08 + offset: 86 + address: + - 3 + - 5 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + bitwise4: + type: bits + size: U08 + offset: 86 + address: + - 6 + - 7 + values: + - Disabled + - AND + - OR + - XOR + firstCompType5: + type: bits + size: U08 + offset: 87 + address: + - 0 + - 2 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + secondCompType5: + type: bits + size: U08 + offset: 87 + address: + - 3 + - 5 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + bitwise5: + type: bits + size: U08 + offset: 87 + address: + - 6 + - 7 + values: + - Disabled + - AND + - OR + - XOR + firstCompType6: + type: bits + size: U08 + offset: 88 + address: + - 0 + - 2 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + secondCompType6: + type: bits + size: U08 + offset: 88 + address: + - 3 + - 5 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + bitwise6: + type: bits + size: U08 + offset: 88 + address: + - 6 + - 7 + values: + - Disabled + - AND + - OR + - XOR + firstCompType7: + type: bits + size: U08 + offset: 89 + address: + - 0 + - 2 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + secondCompType7: + type: bits + size: U08 + offset: 89 + address: + - 3 + - 5 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + bitwise7: + type: bits + size: U08 + offset: 89 + address: + - 6 + - 7 + values: + - Disabled + - AND + - OR + - XOR + candID: + type: array + size: U16 + offset: 90 + shape: + columns: 8 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + unused12_106_127: + type: array + size: U08 + offset: 106 + shape: + columns: 22 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + - number: 14 + size: 0 + data: + advTable2: + type: array + size: U08 + offset: 0 + shape: + columns: 16 + rows: 16 + units: deg + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + rpmBins3: + type: array + size: U08 + offset: 256 + shape: + columns: 16 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + mapBins2: + type: array + size: U08 + offset: 272 + shape: + columns: 16 + rows: 0 + units: '{ bitStringValue(algorithmUnits , ignAlgorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{ignLoadMax}' + digits: 0 +menus: + settings: + title: Settings + subMenus: + engine_constants: + title: Engine Constants + page: 0 + condition: '' + injChars: + title: Injector Characteristics + page: 0 + condition: '' + triggerSettings: + title: Trigger Setup + page: 0 + condition: '' + airdensity_curve: + title: IAT Density + page: 0 + condition: '' + baroFuel_curve: + title: Barometric Correction + page: 0 + condition: '' + reset_control: + title: Reset Control + page: 0 + condition: '' + std_separator: + title: '' + page: 0 + condition: '' + gaugeLimits: + title: Gauge Limits + page: 0 + condition: '' + io_summary: + title: I/O Summary + page: 0 + condition: '' + prgm_out_config: + title: Programmable outputs + page: 0 + condition: '' + tuning: + title: Tuning + subMenus: + std_realtime: + title: Realtime Display + page: 0 + condition: '' + accelEnrichments: + title: Acceleration Enrichment + page: 0 + condition: '' + egoControl: + title: AFR/O2 + page: 3 + condition: '' + RevLimiterS: + title: Engine Protection + page: 2 + condition: '' + flexFueling: + title: Flex Fuel + page: 2 + condition: '' + veTableDialog: + title: VE Table + page: 0 + condition: '' + sparkTbl: + title: Spark Table + page: 2 + condition: '' + afrTable1Tbl: + title: AFR Table + page: 5 + condition: '' + std_separator: + title: '' + page: 0 + condition: '' + fuelTable2Dialog: + title: Second fuel Table + page: 11 + condition: '' + sparkTable2Dialog: + title: Second spark Table + page: 14 + condition: '' + inj_trimad: + title: Sequential fuel trim + page: 9 + condition: '' + stagingTableDialog: + title: Staged Injection + page: 10 + condition: '{ nCylinders <= 4 }' + fuelTemp_curve: + title: Fuel Temp Correction + page: 0 + condition: '{ flexEnabled }' + spark: + title: Spark + subMenus: + sparkSettings: + title: Spark Settings + page: 0 + condition: '' + sparkTbl: + title: Spark Table + page: 2 + condition: '' + dwellSettings: + title: Dwell settings + page: 0 + condition: '' + dwell_correction_curve: + title: Dwell Compensation + page: 0 + condition: '' + iat_retard_curve: + title: IAT Retard + page: 0 + condition: '' + clt_advance_curve: + title: Cold Advance + page: 0 + condition: '' + rotary_ignition: + title: Rotary Ignition + page: 0 + condition: '{ sparkMode == 4 }' + startupIdle: + title: Startup/Idle + subMenus: + crankPW: + title: Cranking Settings + page: 0 + condition: '' + primePW: + title: Priming Pulsewidth + page: 0 + condition: '' + warmup: + title: Warmup Enrichment + page: 0 + condition: '' + ASE: + title: Afterstart Enrichment (ASE) + page: 0 + condition: '' + std_separator: + title: '' + page: 0 + condition: '' + idleSettings: + title: Idle Control + page: 0 + condition: '' + iacClosedLoop_curve: + title: Idle - RPM targets + page: 7 + condition: >- + { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || + idleAdvEnabled >= 1 } + iacPwm_curve: + title: Idle - PWM Duty Cycle + page: 7 + condition: '{ iacAlgorithm == 2 || iacAlgorithm == 6}' + iacPwmCrank_curve: + title: Idle - PWM Cranking Duty Cycle + page: 7 + condition: '{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6}' + iacStep_curve: + title: Idle - Stepper Motor + page: 7 + condition: '{ iacAlgorithm == 4 }' + iacStepCrank_curve: + title: Idle - Stepper Motor Cranking + page: 7 + condition: '{ iacAlgorithm == 4 || iacAlgorithm == 5 }' + idleUpSettings: + title: Idle Up Settings + page: 0 + condition: >- + { iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 4 || + iacAlgorithm == 5 || iacAlgorithm == 6 } + idleAdvanceSettings: + title: Idle Advance Settings + page: 0 + condition: '' + accessories: + title: Accessories + subMenus: + fanSettings: + title: Thermo Fan + page: 0 + condition: '' + LaunchControl: + title: Launch Control / Flat Shift + page: 0 + condition: '' + fuelpump: + title: Fuel Pump + page: 0 + condition: '' + NitrousControl: + title: Nitrous + page: 0 + condition: '' + vssSettings: + title: VSS and Gear detection + page: 0 + condition: '' + std_separator: + title: '' + page: 0 + condition: '' + boostSettings: + title: Boost Control + page: 0 + condition: '' + boostLoad: + title: Boost Targets/Load + page: 8 + condition: '{ boostEnabled }' + vvtSettings: + title: VVT Control + page: 0 + condition: '' + vvtTbl: + title: VVT duty cycle + page: 8 + condition: '{ vvtEnabled }' + wmiSettings: + title: WMI Control + page: 0 + condition: '{ !vvtEnabled }' + wmiTbl: + title: WMI duty cycle + page: 8 + condition: '{ !vvtEnabled && wmiEnabled && wmiMode > 1 }' + tacho: + title: Tacho Output + page: 0 + condition: '' + can_serial3IO: + title: Canbus/Secondary Serial IO Interface + page: 0 + condition: '' + Canin_config: + title: External Auxillary Input Channel Configuration + page: 0 + condition: '{enable_secondarySerial || (enable_intcan && intcan_available)}' + Auxin_config: + title: Local Auxillary Input Channel Configuration + page: 0 + condition: '' + serial3IO: + title: Canbus/Secondary Serial IO Interface + page: 0 + condition: '' + pressureSensors: + title: Fuel/Oil pressure + page: 0 + condition: '' + tools: + title: Tools + subMenus: + mapCal: + title: Calibrate Pressure Sensors + page: 0 + condition: '' + batCal: + title: Calibrate Voltage Reading + page: 0 + condition: '' + std_ms2gentherm: + title: Calibrate Temperature Sensors + page: 0 + condition: '' + std_ms2geno2: + title: Calibrate AFR Sensor + page: 0 + condition: '{ egoType > 0 }' + sensorFilters: + title: Set analog sensor filters + page: 0 + condition: '' + 3dTuningMaps: + title: 3D Tuning Maps + subMenus: + veTable1Map: + title: Fuel Table + page: 0 + condition: '' + sparkMap: + title: Spark Table + page: 3 + condition: '' + afrTable1Map: + title: AFR Target Table + page: 0 + condition: '' + hardwareTesting: + title: Hardware Testing + subMenus: + outputtest1: + title: Test Output Hardware + page: 0 + condition: '' + stm32cmd: + title: STM32 Commands + page: 0 + condition: '' + help: + title: Help + subMenus: + helpGeneral: + title: Speeduino Help + page: 0 + condition: '' +dialogs: + engine_constants_southwest: + title: Speeduino Board + panels: {} + fields: + - name: stoich + title: Stoichiometric ratio + - name: injLayout + title: Injector Layout + - name: pinLayout + title: Board Layout + - name: mapSample + title: MAP Sample method + engine_constants_west: + title: '' + panels: + std_injection: + layout: North + fields: [] + panels: {} + engine_constants_southwest: + fields: [] + panels: {} + fields: [] + engine_constants_northeast: + title: Oddfire Angles + panels: {} + fields: + - name: oddfire2 + title: Channel 2 angle + condition: '{ engineType == 1 }' + - name: oddfire3 + title: Channel 3 angle + condition: '{ engineType == 1 && nCylinders >= 3 }' + - name: oddfire4 + title: Channel 4 angle + condition: '{ engineType == 1 && nCylinders >= 4 }' + engine_constants_east: + title: '' + panels: + engine_constants_northeast: + layout: North + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: '' + engine_constants_warning: + title: '' + panels: {} + fields: + - name: _fieldText_ + title: >- + !Warning: The board you have selected may not have enough channels for + sequential fuel! + engine_constants: + title: '' + layout: border + panels: + engine_constants_warning: + layout: North + fields: [] + panels: {} + engine_constants_west: + layout: West + fields: [] + panels: {} + engine_constants_east: + layout: East + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/Engine_Constants + flexFuelSettings: + title: '' + layout: yAxis + panels: {} + fields: + - name: flexEnabled + title: Flex Fuel Sensor + - name: flexFreqLow + title: Low (E0) + condition: '{ flexEnabled }' + - name: flexFreqHigh + title: High (E100) + condition: '{ flexEnabled }' + flexFuelWest: + title: '' + panels: + flex_fuel_curve: + condition: '{ flexEnabled }' + fields: [] + panels: {} + flex_adv_curve: + condition: '{ flexEnabled }' + fields: [] + panels: {} + fields: [] + flexFuelEast: + title: '' + panels: + flex_boost_curve: + condition: '{ flexEnabled && boostEnabled }' + fields: [] + panels: {} + fields: [] + flexCurves: + title: '' + layout: xAxis + panels: + flexFuelWest: + layout: West + fields: [] + panels: {} + flexFuelEast: + layout: East + fields: [] + panels: {} + fields: [] + flexFueling: + title: Fuel Sensor Settings + layout: border + panels: + flexFuelSettings: + layout: North + fields: [] + panels: {} + flexCurves: + layout: South + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/Flex_Fuel + knock_windows: + title: Knock Windows + layout: xAxis + panels: + knock_window_angle_curve: + layout: West + condition: '{ knock_mode }' + fields: [] + panels: {} + knock_window_duration_curve: + layout: East + condition: '{ knock_mode }' + fields: [] + panels: {} + fields: [] + knock_settings_west: + title: Settings + layout: yAxis + panels: {} + fields: + - name: knock_mode + title: Knock Mode + - name: knock_pin + title: Knock Pin + condition: '{ knock_mode }' + - name: knock_trigger + title: Knock active when pin is + condition: '{ knock_mode == 1 }' + - name: knock_pullup + title: Use pullup + condition: '{ knock_mode == 1 }' + knock_settings_east: + title: Detection and Response + panels: {} + fields: + - name: _fieldText_ + title: '#Detection' + - name: knock_count + title: Knock count required + condition: '{ knock_mode == 1}' + - name: knock_threshold + title: Knock threshold required + condition: '{ knock_mode == 2}' + - name: knock_maxMAP + title: Maximum MAP + condition: '{ knock_mode }' + - name: knock_maxRPM + title: Maximum RPM + condition: '{ knock_mode }' + - name: _fieldText_ + title: '#Retard' + - name: knock_maxRetard + title: Total retard + condition: '{ knock_mode }' + - name: knock_firstStep + title: First step size + condition: '{ knock_mode }' + - name: knock_stepSize + title: Other step size + condition: '{ knock_mode }' + - name: knock_stepTime + title: Step time + condition: '{ knock_mode }' + - name: _fieldText_ + title: '#Recovery' + - name: knock_duration + title: Retard duration + condition: '{ knock_mode }' + - name: knock_recoveryStepTime + title: Recovery step time + condition: '{ knock_mode }' + - name: knock_recoveryStep + title: Recovery step size + condition: '{ knock_mode }' + knock_settings_top: + title: '' + layout: xAxis + panels: + knock_settings_west: + layout: West + fields: [] + panels: {} + knock_settings_east: + layout: East + fields: [] + panels: {} + fields: [] + knockSettings: + title: '' + layout: border + panels: + knock_settings_top: + layout: North + fields: [] + panels: {} + knock_windows: + layout: South + fields: [] + panels: {} + fields: [] + help: http://speeduino.com/wiki/index.php/Knock + vss_gear_1: + title: '' + layout: xAxis + panels: {} + fields: + - name: vssRatio1 + title: Speed ratio 1 + vss_gear_2: + title: '' + layout: xAxis + panels: {} + fields: + - name: vssRatio2 + title: Speed ratio 2 + vss_gear_3: + title: '' + layout: xAxis + panels: {} + fields: + - name: vssRatio3 + title: Speed ratio 3 + vss_gear_4: + title: '' + layout: xAxis + panels: {} + fields: + - name: vssRatio4 + title: Speed ratio 4 + vss_gear_5: + title: '' + layout: xAxis + panels: {} + fields: + - name: vssRatio5 + title: Speed ratio 5 + vss_gear_6: + title: '' + layout: xAxis + panels: {} + fields: + - name: vssRatio6 + title: Speed ratio 6 + vss_gear_detection: + title: Gear Detection + layout: yAxis + panels: + vss_gear_1: + fields: [] + panels: {} + vss_gear_2: + fields: [] + panels: {} + vss_gear_3: + fields: [] + panels: {} + vss_gear_4: + fields: [] + panels: {} + vss_gear_5: + fields: [] + panels: {} + vss_gear_6: + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: After setting 'Pulses per km/mile' above + - name: _fieldText_ + title: Drive in each gear (any speed) and press appropriate button + vss_calibration: + title: VSS Calibration + panels: {} + fields: + - name: vssPulsesPerKm + title: Pulses Per KM + condition: '{ vssMode > 1 }' + - name: vssSmoothing + title: Smoothing Factor + condition: '{ vssMode > 1 }' + vssSettings: + title: '' + layout: yAxis + panels: + vss_calibration: + fields: [] + panels: {} + vss_gear_detection: + fields: [] + panels: {} + fields: + - name: vssMode + title: VSS Input Mode + - name: vssPin + title: VSS Pin + condition: '{ vssMode > 1 }' + help: https://wiki.speeduino.com/en/configuration/VSS + tacho: + title: Tacho + panels: {} + fields: + - name: tachoPin + title: Output pin + - name: tachoDiv + title: Output speed + - name: tachoDuration + title: Pulse duration + - name: useTachoSweep + title: Tacho sweep on boot + - name: tachoSweepMaxRPM + title: Tacho sweep Max RPM + condition: '{ useTachoSweep }' + accelEnrichments_aeSettings: + title: '' + panels: {} + fields: + - name: aeMode + title: Enrichment mode + - name: aeApplyMode + title: Enrichment method + - name: taeThresh + title: TPSdot Threshold + condition: '{ aeMode == 0 }' + - name: maeThresh + title: MAPdot Threshold + condition: '{ aeMode == 1 }' + - name: aeTime + title: Accel Time + - name: aeTaperMin + title: Taper Start RPM + - name: aeTaperMax + title: Taper End RPM + accelEnrichments_coldAdj: + title: Acceleration Enrichment cold adjustment + panels: {} + fields: + - name: aeColdPct + title: Cold adjustment + - name: aeColdTaperMin + title: Cold adjustment taper start temperature + - name: aeColdTaperMax + title: Cold adjustment taper end temperature + accelEnrichments_south: + title: Decelleration Fuel Cutoff (DFCO) + panels: {} + fields: + - name: dfcoEnabled + title: Enabled + - name: dfcoTPSThresh + title: TPS Threshold + condition: '{ dfcoEnabled }' + - name: dfcoMinCLT + title: Minimum engine temperature + condition: '{ dfcoEnabled }' + - name: dfcoDelay + title: Cutoff delay + condition: '{ dfcoEnabled }' + - name: dfcoRPM + title: Cutoff RPM + condition: '{ dfcoEnabled }' + - name: dfcoHyster + title: RPM Hysteresis + condition: '{ dfcoEnabled }' + accelEnrichments_north_south: + title: '' + panels: {} + fields: [] + accelEnrichments_north: + title: '' + layout: xAxis + panels: + time_accel_tpsdot_curve: + condition: '{ aeMode == 0 }' + fields: [] + panels: {} + time_accel_mapdot_curve: + condition: '{ aeMode == 1 }' + fields: [] + panels: {} + fields: [] + accelEnrichments_center: + title: Acceleration Enrichment + layout: xAxis + panels: + accelEnrichments_aeSettings: + fields: [] + panels: {} + accelEnrichments_coldAdj: + fields: [] + panels: {} + fields: [] + accelEnrichments: + title: Acceleration Enrichment + panels: + accelEnrichments_north: + layout: North + fields: [] + panels: {} + accelEnrichments_north_south: + layout: Center + fields: [] + panels: {} + accelEnrichments_center: + layout: Center + fields: [] + panels: {} + accelEnrichments_south: + layout: South + fields: [] + panels: {} + fields: [] + help: http://speeduino.com/wiki/index.php/Acceleration_Wizard + veTableDialog_north: + title: '' + panels: + veTable1Tbl: + fields: [] + panels: {} + fields: [] + veTableDialog_south: + title: '' + panels: {} + fields: + - name: multiplyMAP + title: Multiply VE value by MAP ratio + - name: includeAFR + title: Multiply by ratio of AFR to Target AFR + condition: '{ egoType == 2 && !incorporateAFR || (incorporateAFR==includeAFR) }' + - name: incorporateAFR + title: Multiply by ratio of stoich AFR/target AFR (incorporate AFR) + condition: '{ !includeAFR || (incorporateAFR==includeAFR) }' + veTableDialog: + title: VE Table + panels: + veTableDialog_north: + layout: North + fields: [] + panels: {} + veTableDialog_south: + layout: South + fields: [] + panels: {} + fields: [] + fuelTable2Dialog_switch: + title: Switch Conditions + layout: xAxis + panels: {} + fields: + - name: fuel2SwitchVariable + title: 'Use secondary table when:' + - name: fuel2SwitchValue + title: 'is greater than:' + fuelTable2Dialog_input: + title: Input Options + layout: yAxis + panels: {} + fields: + - name: fuel2InputPin + title: Use secondary table when pin + - name: fuel2InputPolarity + title: Is + - name: fuel2InputPullup + title: Use internal pullup on pin + condition: '{ fuel2InputPolarity == 0 }' + fuelTable2Dialog_north: + title: '' + panels: + fuelTable2Dialog_switch: + condition: '{ fuel2Mode == 3 }' + fields: [] + panels: {} + fuelTable2Dialog_input: + condition: '{ fuel2Mode == 4 }' + fields: [] + panels: {} + fields: + - name: fuel2Mode + title: Secondary fuel table mode + - name: fuel2Algorithm + title: Load source + condition: '{ fuel2Mode }' + fuelTable2Dialog_south: + title: '' + panels: + fuelTable2Tbl: + fields: [] + panels: {} + fields: [] + fuelTable2Dialog: + title: Fuel Table 2 + panels: + fuelTable2Dialog_north: + layout: North + fields: [] + panels: {} + fuelTable2Dialog_south: + layout: South + condition: '{ fuel2Mode }' + fields: [] + panels: {} + fields: [] + sparkTable2Dialog_switch: + title: Switch Conditions + layout: xAxis + panels: {} + fields: + - name: spark2SwitchVariable + title: 'Use secondary table when:' + - name: spark2SwitchValue + title: 'is greater than:' + sparkTable2Dialog_input: + title: Input Options + layout: yAxis + panels: {} + fields: + - name: spark2InputPin + title: Use secondary table when pin + - name: spark2InputPolarity + title: Is + - name: spark2InputPullup + title: Use internal pullup on pin + condition: '{ spark2InputPolarity == 0 }' + sparkTable2Dialog_north: + title: '' + panels: + sparkTable2Dialog_switch: + condition: '{ spark2Mode == 3 }' + fields: [] + panels: {} + sparkTable2Dialog_input: + condition: '{ spark2Mode == 4 }' + fields: [] + panels: {} + fields: + - name: spark2Mode + title: Secondary advance table mode + - name: spark2Algorithm + title: Load source + condition: '{ spark2Mode }' + sparkTable2Dialog_south: + title: '' + panels: + spark2Tbl: + fields: [] + panels: {} + fields: [] + sparkTable2Dialog: + title: Spark Table 2 + panels: + sparkTable2Dialog_north: + layout: North + fields: [] + panels: {} + sparkTable2Dialog_south: + layout: South + condition: '{ spark2Mode }' + fields: [] + panels: {} + fields: [] + injAngleDialog: + title: Injector close angles + panels: + injector_timing_curve: + fields: [] + panels: {} + fields: [] + injOpenTimeDialog: + title: Injector opening time + panels: + injector_voltage_curve: + fields: [] + panels: {} + fields: + - name: injOpen + title: Injector Open Time + - name: battVCorMode + title: Battery Voltage Correction Mode + injChars: + title: Injector Characteristics + panels: + injOpenTimeDialog: + fields: [] + panels: {} + injAngleDialog: + fields: [] + panels: {} + fields: + - name: dutyLim + title: Injector Duty Limit + help: https://wiki.speeduino.com/en/configuration/Injector_Characteristics + egoControl: + title: '' + panels: {} + fields: + - name: egoType + title: Sensor Type + - name: _fieldText_ + title: '#Please ensure you calibrate your O2 sensor in the Tools menu' + - name: egoAlgorithm + title: Algorithm + condition: '{ egoType }' + - name: egoCount + title: Ignition Events per Step + condition: '{ egoType && (egoAlgorithm < 3) }' + - name: egoLimit + title: Controller Auth +/- + condition: '{ egoType && (egoAlgorithm < 3) }' + - name: ego_min + title: 'Only correct above:' + condition: '{ egoType && (egoAlgorithm < 3) }' + - name: ego_max + title: 'and correct below:' + condition: '{ egoType && (egoAlgorithm < 3) }' + - name: egoTemp + title: Active Above Coolant + condition: '{ egoType && (egoAlgorithm < 3) }' + - name: egoRPM + title: Active Above RPM + condition: '{ egoType && (egoAlgorithm < 3) }' + - name: egoTPSMax + title: Active Below TPS + condition: '{ egoType && (egoAlgorithm < 3) }' + - name: ego_sdelay + title: EGO delay after start + condition: '{ (egoAlgorithm < 3) }' + - name: egoKP + title: PID Proportional Gain + condition: '{ egoType && (egoAlgorithm == 2) }' + - name: egoKI + title: PID Integral + condition: '{ egoType && (egoAlgorithm == 2) }' + - name: egoKD + title: PID Derivative + condition: '{ egoType && (egoAlgorithm == 2) }' + help: https://wiki.speeduino.com/en/configuration/O2 + fanSettings: + title: Fan Settings + layout: '7' + panels: {} + fields: + - name: fanEnable + title: Fan Mode + - name: fanWhenOff + title: Allow fan when off + condition: '{ fanEnable }' + - name: fanWhenCranking + title: Allow fan when cranking + condition: '{ fanEnable }' + - name: fanPin + title: Fan output pin + condition: '{ fanEnable }' + - name: fanInv + title: Fan Output Inverted + condition: '{ fanEnable }' + - name: fanSP + title: Fan switching temperature + condition: '{ fanEnable }' + - name: fanHyster + title: Fan hysteresis + condition: '{ fanEnable }' + help: https://wiki.speeduino.com/en/configuration/Thermo_fan + stepper_idle: + title: Stepper Idle + panels: {} + fields: + - name: iacStepTime + title: Step time (ms) + condition: '{ iacAlgorithm == 4 || iacAlgorithm == 5 }' + - name: iacCoolTime + title: Cool time (ms) + condition: '{ iacAlgorithm == 4 || iacAlgorithm == 5 }' + - name: iacStepHome + title: Home steps + condition: '{ iacAlgorithm == 4 || iacAlgorithm == 5 }' + - name: iacStepHyster + title: Minimum Steps + condition: '{ iacAlgorithm == 4 || iacAlgorithm == 5 }' + - name: iacMaxSteps + title: Don't exceed + condition: '{ iacAlgorithm == 4 || iacAlgorithm == 5 }' + - name: iacStepperInv + title: Stepper Inverted + condition: '{ iacAlgorithm == 4 || iacAlgorithm == 5 }' + pwm_idle: + title: PWM Idle + panels: {} + fields: + - name: iacChannels + title: Number of outputs + condition: '{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6}' + - name: idleFreq + title: Idle valve frequency + condition: '{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6}' + - name: iacPWMdir + title: Idle valve direction + condition: '{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6}' + closedloop_idle: + title: Closed loop Idle + panels: {} + fields: + - name: idleKP + title: P + condition: '{ iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6}' + - name: idleKI + title: I + condition: '{ iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6}' + - name: idleKD + title: D + condition: '{ iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6}' + - name: iacCLminDuty + title: Minimum valve duty + condition: '{ iacAlgorithm == 3 || iacAlgorithm == 6}' + - name: iacCLmaxDuty + title: Maximum valve duty + condition: '{ iacAlgorithm == 3 || iacAlgorithm == 6}' + - name: iacTPSlimit + title: Integeral reset above TPS + - name: iacRPMlimitHysteresis + title: Integeral reset RPM Hysteresis + idleSettings: + title: Idle Settings + panels: + pwm_idle: + fields: [] + panels: {} + stepper_idle: + fields: [] + panels: {} + closedloop_idle: + fields: [] + panels: {} + fields: + - name: iacAlgorithm + title: Idle control type + - name: idleTaperTime + title: Crank to run taper + condition: '{ iacAlgorithm == 2 || iacAlgorithm == 4 }' + - name: _fieldText_ + title: '#Fast Idle' + - name: iacFastTemp + title: Fast idle temp + condition: '{ iacAlgorithm == 1 }' + help: https://wiki.speeduino.com/en/configuration/Idle + idleUpInputSettingsPanel: + title: Idle Up Input Settings + layout: yAxis + panels: {} + fields: + - name: idleUpEnabled + title: Idle Up Enabled + - name: idleUpPin + title: Idle Up Pin + condition: '{ idleUpEnabled }' + - name: idleUpPolarity + title: Idle Up Pin Polarity + condition: '{ idleUpEnabled }' + - name: idleUpAdder + title: Idle Up Amount + condition: '{ idleUpEnabled }' + idleUpOutputSettingsPanel: + title: Idle Up Output Settings + layout: yAxis + panels: {} + fields: + - name: idleUpOutputEnabled + title: Idle Up Output Enabled + condition: '{ idleUpEnabled }' + - name: idleUpOutputInv + title: Idle Up Output Inverted + - name: idleUpOutputPin + title: Idle Up Output Pin + condition: '{ idleUpEnabled && idleUpOutputEnabled }' + idleUpSettings: + title: Idle Up Settings + panels: + idleUpInputSettingsPanel: + fields: [] + panels: {} + idleUpOutputSettingsPanel: + fields: [] + panels: {} + fields: [] + fuelpump: + title: Fuel pump + panels: {} + fields: + - name: fuelPumpPin + title: Fuel pump pin + - name: fpPrime + title: Fuel pump prime duration + crankingEnrichDialog: + title: Cranking Enrichment + layout: yAxis + panels: + cranking_enrich_curve: + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: '#Note' + - name: _fieldText_ + title: >- + Values are specified as modifiers to the normal fueling. Eg 100% = No + change. + crankingIgnOptions: + title: Cranking Timing + layout: yAxis + panels: {} + fields: + - name: CrankAng + title: Cranking advance Angle + condition: '{ ignCranklock == 0 }' + - name: ignBypassEnable + title: Cranking bypass + - name: ignBypassPin + title: Bypass output pin + - name: ignCranklock + title: Fix cranking timing with trigger + condition: >- + { TrigPattern == 1 || TrigPattern == 4 || TrigPattern == 10 || + TrigPattern == 9 } + crankingOptions: + title: '' + layout: yAxis + panels: {} + fields: + - name: crankRPM + title: Cranking RPM (Max) + - name: tpsflood + title: Flood Clear level + - name: fpPrime + title: Fuel pump prime duration + - name: primingDelay + title: Injectors priming delay + - name: crankingEnrichTaper + title: Cranking enrichment taper time + primePW: + title: Priming Pulsewidth + panels: + priming_pw_curve: + fields: [] + panels: {} + fields: [] + crankPW: + title: Cranking Settings + layout: yAxis + panels: + crankingOptions: + layout: North + fields: [] + panels: {} + crankingEnrichDialog: + layout: Center + fields: [] + panels: {} + crankingIgnOptions: + layout: South + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/Cranking + ASE_amount: + title: Enrichment amount (%) + layout: yAxis + panels: + afterstart_enrichment_curve: + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: Defines the fuel enrichment percentage after start. + - name: _fieldText_ + title: This is needed to keep engine running after start + - name: _fieldText_ + title: Common values are 5% when engine is hot to 50% when engine is cold. + ASE_time: + title: Duration (s) + layout: yAxis + panels: + afterstart_enrichment_time: + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: How long time the After Start Enrichment is applied in seconds. + - name: _fieldText_ + title: >- + Usually this is varies from 1-2s when engine is hot up to 20s on a + cold engine. + - name: aseTaperTime + title: Transition time to disable + ASE: + title: Afterstart Enrichment(ASE) + layout: yAxis + panels: + ASE_amount: + fields: [] + panels: {} + ASE_time: + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: '#Time and duration curves share common coolant values' + triggerSettings: + title: Trigger Settings + layout: '4' + panels: {} + fields: + - name: TrigPattern + title: Trigger Pattern + - name: numTeeth + title: Primary base teeth + condition: >- + { TrigPattern == 0 || TrigPattern == 2 || TrigPattern == 11 || + TrigPattern == 18 || TrigPattern == 19 } + - name: TrigSpeed + title: Primary trigger speed + condition: '{ TrigPattern == 0 }' + - name: missingTeeth + title: Missing teeth + condition: '{ TrigPattern == 0 }' + - name: TrigAngMul + title: Trigger angle multiplier + condition: '{ TrigPattern == 11 }' + - name: TrigAng + title: Trigger Angle + - name: _fieldText_ + title: This number represents the angle ATDC when + - name: _fieldText_ + title: 'tooth #1 passes the primary sensor.' + - name: _fieldText_ + title: '' + - name: SkipCycles + title: Skip Revolutions + - name: _fieldText_ + title: 'Note: This is the number of revolutions that will be skipped during' + - name: _fieldText_ + title: cranking before the injectors and coils are fired + - name: TrigEdge + title: Trigger edge + - name: TrigEdgeSec + title: Secondary trigger edge + condition: >- + { (TrigPattern == 0 && TrigSpeed == 0) || TrigPattern == 2 || + TrigPattern == 9 || TrigPattern == 12 || TrigPattern == 18 || + TrigPattern == 19 } + - name: _fieldText_ + title: Missing Tooth Secondary type + - name: TrigFilter + title: Trigger Filter + condition: '{ TrigPattern != 13 }' + - name: useResync + title: Re-sync every cycle + condition: >- + { TrigPattern == 2 || TrigPattern == 4 || TrigPattern == 7 || + TrigPattern == 12 || TrigPattern == 9 || TrigPattern == 13 || + TrigPattern == 18 || TrigPattern == 19 } + help: https://wiki.speeduino.com/en/decoders + lockSparkSettings: + title: Locked timing + panels: {} + fields: + - name: fixAngEnable + title: Enabled Fixed/Locked timing + - name: FixAng + title: Fixed Angle + condition: '{ fixAngEnable }' + - name: _fieldText_ + title: >- + #Note: During cranking the fixed/locked timing angle is overriden by + the Cranking advance angle value above + newIgnitionMode: + title: New Ignition Mode + panels: {} + fields: + - name: _fieldText_ + title: >- + This option is currently will improve accuracy on most compatible + triggers + - name: _fieldText_ + title: However if timing issues are encountered, please disable this + - name: perToothIgn + title: Use new ignition mode + sparkSettings: + title: Spark Settings + layout: '4' + panels: + lockSparkSettings: + fields: [] + panels: {} + newIgnitionMode: + condition: >- + {TrigPattern == 0 || TrigPattern == 1 || TrigPattern == 2 || + TrigPattern == 3 || TrigPattern == 4 || TrigPattern == 9 || + TrigPattern == 12 || TrigPattern == 13 || TrigPattern == 18 || + TrigPattern == 19} + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: >- + !Warning: The board you have selected may not have enough channels for + sequential ignition! + - name: ignAlgorithm + title: Ignition load source + - name: sparkMode + title: Spark output mode + - name: CrankAng + title: Cranking advance Angle + - name: IgInv + title: Spark Outputs triggers + help: https://wiki.speeduino.com/en/configuration/Spark_Settings + dwellSettings: + title: Dwell Settings + layout: '4' + panels: {} + fields: + - name: dwellcrank + title: Cranking dwell + - name: dwellrun + title: Running dwell + - name: sparkDur + title: Spark duration + - name: _fieldText_ + title: '' + - name: _fieldText_ + title: '#Note' + - name: _fieldText_ + title: The above times are for 12V. Voltage correction + - name: _fieldText_ + title: is applied. At higher voltages the time is reduced + - name: _fieldText_ + title: and when low it is increased + - name: _fieldText_ + title: '' + - name: _fieldText_ + title: Overdwell protection + - name: useDwellLim + title: Use Overdwell protection + - name: dwellLim + title: Max dwell time + condition: '{ useDwellLim }' + - name: _fieldText_ + title: 'Note: Set the maximum dwell time at least 3ms above' + - name: _fieldText_ + title: your desired dwell time (Including cranking) + - name: idleAdvEnabled + title: Idle advance mode + - name: idleAdvAlgorithm + title: Idle detect mode + condition: '{ idleAdvEnabled >= 1 }' + - name: idleAdvDelay + title: Delay before idle control starts (s) + condition: '{ idleAdvEnabled >= 1 }' + - name: idleAdvRPM + title: Active Below RPM + condition: '{ idleAdvEnabled >= 1 }' + - name: idleAdvTPS + title: Active Below TPS + condition: '{ idleAdvEnabled >= 1 && idleAdvAlgorithm == 0 }' + - name: CTPSEnabled + title: Closed Throttle Sensor Enabled + condition: '{ idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 }' + - name: CTPSPin + title: Closed Throttle Sensor Pin + condition: '{ idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 && CTPSEnabled == 1 }' + - name: CTPSPolarity + title: Closed Throttle Sensor Pin Polarity + condition: '{ idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 && CTPSEnabled == 1 }' + help: https://wiki.speeduino.com/en/configuration/Dwell + idleAdvanceSettings: + title: Idle Advance Settings + layout: xAxis + panels: + idleAdvanceSettings_east: + fields: [] + panels: {} + idle_advance_curve: + condition: '{ idleAdvEnabled >= 1 }' + fields: [] + panels: {} + iacClosedLoop_curve: + condition: >- + { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || + idleAdvEnabled >= 1 } + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/IdleAdvance + rotary_ignition: + title: Rotary Ignition + layout: '4' + panels: + rotaryTrailing_curve: + fields: [] + panels: {} + fields: + - name: rotaryType + title: Ignition Configuration + boostCut: + title: Boost Cut + panels: {} + fields: + - name: boostCutEnabled + title: Enable Boost limit + - name: boostLimit + title: Boost Limit + condition: '{ boostCutEnabled }' + boostLoad: + title: '' + panels: + boostTbl: + fields: [] + panels: {} + fields: + - name: boostType + title: Mode + - name: _fieldText_ + title: In open loop mode, the values in this table are duty cycle % + - name: _fieldText_ + title: In closed loop mode, the values are boost targets in kPa + revLimiterDialog: + title: Rev Limiter + panels: {} + fields: + - name: _fieldText_ + title: Rev Limiter + - name: _fieldText_ + title: '!Soft limiter only available with ignition cut' + - name: SoftRevLim + title: Soft rev limit + condition: '{ engineProtectType == 1 || engineProtectType == 3 }' + - name: SoftLimitMode + title: Soft limiter mode + condition: '{ engineProtectType == 1 || engineProtectType == 3 }' + - name: SoftLimRetard + title: Soft limit timing + condition: '{ engineProtectType == 1 || engineProtectType == 3 }' + - name: SoftLimMax + title: Soft limit max time + condition: '{ engineProtectType == 1 || engineProtectType == 3 }' + - name: HardRevLim + title: Hard Rev limit + oilPressureProtection: + title: Oil Pressure + panels: + oil_pressure_prot_curve: + condition: '{ oilPressureEnable && oilPressureProtEnbl }' + fields: [] + panels: {} + fields: + - name: oilPressureProtEnbl + title: Oil Pressure Protection + condition: '{ oilPressureEnable }' + engineProtectionWest: + title: '' + panels: + protectIndicatorPanel: + condition: '{ engineProtectType }' + fields: [] + panels: {} + fields: + - name: engineProtectType + title: Protection Cut + - name: engineProtectMaxRPM + title: Engine Protection RPM min + condition: '{ engineProtectType }' + - name: hardCutType + title: Cut method + condition: '{ engineProtectType == 1 || engineProtectType == 3 }' + RevLimiterS: + title: Engine Protection and Limiters + layout: xAxis + panels: + engineProtectionWest: + fields: [] + panels: {} + revLimiterDialog: + condition: '{ engineProtectType }' + fields: [] + panels: {} + boostCut: + condition: '{ engineProtectType }' + fields: [] + panels: {} + oilPressureProtection: + condition: '{ engineProtectType }' + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/Rev_Limits + clutchInput: + title: Clutch input + panels: {} + fields: + - name: launchPin + title: Clutch Input Pin + condition: '{ launchEnable || flatSEnable }' + - name: launchHiLo + title: Clutch enabled when signal is + condition: '{ launchEnable || flatSEnable }' + - name: lnchPullRes + title: Clutch Pullup Resistor + condition: '{ launchEnable || flatSEnable }' + - name: flatSArm + title: Launch / Flat Shift switch RPM + condition: '{ launchEnable || flatSEnable }' + LaunchControl: + title: Launch Control / Flat shift + layout: '6' + panels: + clutchInput: + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: Launch Control + - name: launchEnable + title: Enable Launch + - name: lnchCtrlTPS + title: TPS threshold + condition: '{ launchEnable }' + - name: lnchSoftLim + title: Soft rev limit + condition: '{ launchEnable }' + - name: lnchRetard + title: Soft limit absolute timing + condition: '{ launchEnable }' + - name: lnchHardLim + title: Hard rev limit + condition: '{ launchEnable }' + - name: lnchFuelAdd + title: Fuel adder during launch + condition: '{ launchEnable }' + - name: _fieldText_ + title: Flat Shift + - name: flatSEnable + title: Enable flat shift + - name: flatSSoftWin + title: Soft rev window + condition: '{ flatSEnable }' + - name: flatSRetard + title: Soft limit absolute timing + condition: '{ flatSEnable }' + help: https://wiki.speeduino.com/en/configuration/Launch_Flatshift + NitrousStage1: + title: Stage 1 + panels: {} + fields: + - name: n2o_stage1_pin + title: Nitrous Output Pin + - name: n2o_stage1_minRPM + title: Minimum Engage RPM + - name: n2o_stage1_maxRPM + title: Maximum Engage RPM + - name: n2o_stage1_adderMin + title: Fuel adder @ Min RPM + - name: n2o_stage1_adderMax + title: Fuel adder @ Max RPM + - name: n2o_stage1_retard + title: Ignition retard when active + NitrousStage2: + title: Stage 2 + panels: {} + fields: + - name: n2o_stage2_pin + title: Nitrous Output Pin + - name: n2o_stage2_minRPM + title: Minimum Engage RPM + - name: n2o_stage2_maxRPM + title: Maximum Engage RPM + - name: n2o_stage2_adderMin + title: Fuel adder @ Min RPM + - name: n2o_stage2_adderMax + title: Fuel adder @ Max RPM + - name: n2o_stage2_retard + title: Ignition retard when active + NitrousMain: + title: Settings + panels: {} + fields: + - name: n2o_enable + title: Nitrous Mode + - name: n2o_arming_pin + title: Arming Pin + condition: '{ n2o_enable > 0 }' + - name: n2o_pin_polarity + title: Nitrous is armed when pin is + condition: '{ n2o_enable > 0 }' + - name: n2o_minCLT + title: Minimum CLT + condition: '{ n2o_enable > 0 }' + - name: n2o_minTPS + title: Minimum TPS + condition: '{ n2o_enable > 0 }' + - name: n2o_maxMAP + title: Maximum MAP + condition: '{ n2o_enable > 0 }' + - name: n2o_maxAFR + title: Leanest AFR + condition: '{ n2o_enable > 0 }' + NitrousControl: + title: Nitrous + panels: + NitrousMain: + layout: North + fields: [] + panels: {} + NitrousStage1: + layout: West + condition: '{ n2o_enable > 0 }' + fields: [] + panels: {} + NitrousStage2: + layout: East + condition: '{ n2o_enable > 1 }' + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/Nitrous_Control + OLED: + title: OLED Display + layout: '2' + panels: {} + fields: + - name: display + title: Display Type + - name: _fieldText_ + title: '#Note' + - name: _fieldText_ + title: ECU must be rebooted after changing above value + - name: display1 + title: Field 1 + condition: '{ display }' + - name: display2 + title: Field 2 + condition: '{ display }' + - name: display3 + title: Field 3 + condition: '{ display }' + - name: display4 + title: Field 4 + condition: '{ display }' + batCal: + title: Calibrate voltage reading + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/Sensor_Calibration + mapCal: + title: Calibrate MAP + panels: {} + fields: + - name: _fieldText_ + title: '#MAP Sensor' + - name: mapMin + title: kPa At 0.0 Volts + - name: mapMax + title: kPa At 5.0 Volts + - name: legacyMAP + title: Use legacy MAP reading + - name: _fieldText_ + title: '#Baro Sensor' + - name: useExtBaro + title: Use external Baro sensor + - name: baroPin + title: Analog pin to use for ext. Baro sensor + condition: '{ useExtBaro }' + - name: baroMin + title: kPa At 0.0 Volts + condition: '{ useExtBaro }' + - name: baroMax + title: kPa At 5.0 Volts + condition: '{ useExtBaro }' + - name: _fieldText_ + title: '#EMAP Sensor' + - name: useEMAP + title: Use EMAP sensor + - name: EMAPPin + title: Analog pin to use for ext. Baro sensor + condition: '{ useEMAP }' + - name: EMAPMin + title: kPa At 0.0 Volts + condition: '{ useEMAP }' + - name: EMAPMax + title: kPa At 5.0 Volts + condition: '{ useEMAP }' + help: https://wiki.speeduino.com/en/configuration/Sensor_Calibration + sensorFilters: + title: Analog sensor filters + panels: {} + fields: + - name: _fieldText_ + title: >- + The values here set the amount of filtering to apply to each analog + input + - name: _fieldText_ + title: >- + Higher values result in stronger filtering, but slower response times + for readings + - name: _fieldText_ + title: '#Most setups will NOT require changes to the default filter values' + - name: _fieldText_ + title: '' + - name: fuelPressureEnable + title: Enabled + - name: fuelPressurePin + title: Pin + condition: '{ fuelPressureEnable }' + - name: fuelPressureMin + title: Pressure at 0v + condition: '{ fuelPressureEnable }' + - name: fuelPressureMax + title: Pressure at 5v + condition: '{ fuelPressureEnable }' + fuelPressureDialog: + title: Fuel Pressure + layout: xAxis + panels: + fuelPressureSettings: + fields: [] + panels: {} + fields: + - name: oilPressureEnable + title: Enabled + - name: oilPressurePin + title: Pin + condition: '{ oilPressureEnable }' + - name: oilPressureMin + title: Pressure at 0v + condition: '{ oilPressureEnable }' + - name: oilPressureMax + title: Pressure at 5v + condition: '{ oilPressureEnable }' + oilPressureDialog: + title: Oil Pressure + layout: xAxis + panels: + oilPressureSettings: + fields: [] + panels: {} + fields: [] + pressureSensors: + title: Pressure Transducers + panels: + fuelPressureDialog: + fields: [] + panels: {} + oilPressureDialog: + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/Sensor_Calibration + boostSettings: + title: Boost Control + panels: + boostCut: + fields: [] + panels: {} + fields: + - name: boostEnabled + title: Boost Control Enabled + - name: boostType + title: Boost control type + condition: '{ boostEnabled }' + - name: boostPin + title: Boost output pin + condition: '{ boostEnabled }' + - name: boostFreq + title: Boost solenoid freq. + condition: '{ boostEnabled }' + - name: boostMinDuty + title: Valve minimum duty cycle + condition: '{ boostEnabled && boostType == 1 }' + - name: boostMaxDuty + title: Valve maximum duty cycle + condition: '{ boostEnabled && boostType == 1 }' + - name: _fieldText_ + title: Closed Loop settings + - name: boostMode + title: Control mode + condition: '{ boostEnabled && boostType == 1 }' + - name: boostIntv + title: Control interval + condition: '{ boostEnabled && boostType == 1 }' + - name: boostKP + title: P + condition: '{ boostEnabled && boostMode && boostType == 1 }' + - name: boostKI + title: I + condition: '{ boostEnabled && boostMode && boostType == 1 }' + - name: boostKD + title: D + condition: '{ boostEnabled && boostMode && boostType == 1 }' + help: https://wiki.speeduino.com/en/configuration/Boost_Control + vvtClosedLoop: + title: Closed loop + panels: {} + fields: + - name: vvtCLUseHold + title: Hold duty used + - name: vvtCLholdDuty + title: Hold duty + condition: '{ vvtCLUseHold }' + - name: vvtCLAlterFuelTiming + title: Adjust fuel timing + - name: vvtCLMinAng + title: Cam angle @ 0% duty + - name: _fieldText_ + title: '' + - name: vvtCLKP + title: Proportional Gain + - name: vvtCLKI + title: Integral Gain + - name: vvtCLKD + title: Differential Gain + - name: vvtCLminDuty + title: Minimum valve duty + condition: '{ vvtEnabled && vvtMode == 2 }' + - name: vvtCLmaxDuty + title: Maximum valve duty + condition: '{ vvtEnabled && vvtMode == 2 }' + vvtSettings: + title: VVT Control + panels: + vvtClosedLoop: + condition: '{ vvtEnabled && vvtMode == 2 }' + fields: [] + panels: {} + fields: + - name: vvtEnabled + title: VVT Control Enabled + - name: vvtMode + title: VVT Mode + condition: '{ vvtEnabled }' + - name: _fieldText_ + title: >- + #Please note that close loop is currently experimental for Miata + patterns ONLY + - name: vvtLoadSource + title: Load source + condition: '{ vvtEnabled }' + - name: VVTasOnOff + title: Use VVT map as On / Off only + condition: '{ vvtEnabled && vvtMode != 2 }' + - name: vvt1Pin + title: VVT output pin + condition: '{ vvtEnabled }' + - name: vvtFreq + title: VVT solenoid freq. + condition: '{ vvtEnabled }' + - name: vvtPWMdir + title: Increased duty direction + condition: '{ vvtEnabled }' + wmiSettings: + title: WMI Control + panels: + wmi_adv_curve: + condition: '{ wmiEnabled && wmiAdvEnabled }' + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: '#Experimental!' + - name: wmiEnabled + title: WMI Control Enabled + - name: wmiMode + title: WMI Mode + condition: '{ wmiEnabled }' + - name: wmiTPS + title: WMI min TPS + condition: '{ wmiEnabled }' + - name: wmiRPM + title: WMI min RPM + condition: '{ wmiEnabled }' + - name: wmiMAP + title: WMI min MAP + condition: '{ wmiEnabled }' + - name: wmiMAP2 + title: WMI max MAP + condition: '{ wmiEnabled && wmiMode == 1}' + - name: wmiIAT + title: WMI min IAT + condition: '{ wmiEnabled }' + - name: wmiOffset + title: WMI offset + condition: '{ wmiEnabled && wmiMode == 3}' + - name: _fieldText_ + title: '' + - name: vvt1Pin + title: WMI PWM output pin + condition: '{ wmiEnabled }' + - name: vvtFreq + title: WMI PWM freq. + condition: '{ wmiEnabled }' + - name: _fieldText_ + title: '' + - name: wmiEnabledPin + title: WMI enabled output pin + condition: '{ wmiEnabled }' + - name: _fieldText_ + title: '' + - name: wmiEmptyEnabled + title: WMI tank empty input + condition: '{ wmiEnabled }' + - name: wmiEmptyPin + title: WMI tank empty pin + condition: '{ wmiEnabled }' + - name: wmiEmptyPolarity + title: WMI tank empty polarity + condition: '{ wmiEnabled }' + - name: _fieldText_ + title: '' + - name: wmiIndicatorEnabled + title: WMI tank indicator output + condition: '{ wmiEnabled }' + - name: wmiIndicatorPin + title: WMI tank indicator pin + condition: '{ wmiEnabled }' + - name: wmiIndicatorPolarity + title: WMI tank indicator polarity + condition: '{ wmiEnabled }' + - name: _fieldText_ + title: '' + - name: wmiAdvEnabled + title: Iginition advance correction + condition: '{ wmiEnabled }' + warmup: + title: Warmup Enrichment (WUE) - Percent Multiplier + panels: + warmup_curve: + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: Final enrichment value must be 100%. + - name: _fieldText_ + title: '' + inj_trim1TblTitle: + title: 'Channel #1' + panels: + fuelTrimTable1Tbl: + condition: '{ fuelTrimEnabled }' + fields: [] + panels: {} + fields: [] + inj_trim2TblTitle: + title: 'Channel #2' + panels: + fuelTrimTable2Tbl: + condition: '{ fuelTrimEnabled }' + fields: [] + panels: {} + fields: [] + inj_trim3TblTitle: + title: 'Channel #3' + panels: + fuelTrimTable3Tbl: + condition: '{ fuelTrimEnabled }' + fields: [] + panels: {} + fields: [] + inj_trim4TblTitle: + title: 'Channel #4' + panels: + fuelTrimTable4Tbl: + condition: '{ fuelTrimEnabled }' + fields: [] + panels: {} + fields: [] + inj_trimadt: + title: '' + layout: xAxis + panels: + inj_trim1TblTitle: + fields: [] + panels: {} + inj_trim2TblTitle: + fields: [] + panels: {} + fields: [] + inj_trimadb: + title: '' + layout: xAxis + panels: + inj_trim3TblTitle: + fields: [] + panels: {} + inj_trim4TblTitle: + fields: [] + panels: {} + fields: [] + inj_trim_enable: + title: '' + panels: {} + fields: + - name: fuelTrimEnabled + title: Individual fuel trim enabled + condition: '{ injLayout == 3 && nCylinders <= 4 }' + inj_trimad: + title: Injector Cyl 1-4 Trims + layout: yAxis + panels: + inj_trim_enable: + layout: North + fields: [] + panels: {} + inj_trimadt: + layout: Center + fields: [] + panels: {} + inj_trimadb: + layout: South + fields: [] + panels: {} + fields: [] + stagingTableDialog_north: + title: '' + panels: {} + fields: + - name: stagingEnabled + title: Staging enabled + - name: stagingMode + title: Staging mode + - name: stagedInjSizePri + title: Size of primary injectors + condition: '{ stagingEnabled }' + - name: stagedInjSizeSec + title: Size of secondary injectors + condition: '{ stagingEnabled }' + stagingTableDialog_south: + title: '' + panels: + stagingTbl: + condition: '{ stagingMode == 0 }' + fields: [] + panels: {} + fields: [] + stagingTableDialog: + title: Staged injection + panels: + stagingTableDialog_north: + layout: North + fields: [] + panels: {} + stagingTableDialog_south: + layout: South + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/Staged_Injection + outputtest_warningmessage: + title: '' + panels: {} + fields: + - name: _fieldText_ + title: >- + WARNING! USE AT YOUR OWN RISK. INCORRECT USE WILL DAMAGE YOUR + HARDWARE! + - name: _fieldText_ + title: Do not attempt to use this page whilst your engine is running! + - name: _fieldText_ + title: >- + Forcing the Injector or Spark outputs could cause flooding of your + engine or permanent damage to ignition coils! + enableoutputtestbuttons: + title: Enable Test Controls + layout: xAxis + panels: {} + fields: [] + outputtestinj1: + title: Injector CH1 + layout: yAxis + panels: {} + fields: [] + outputtestinj2: + title: Injector CH2 + layout: yAxis + panels: {} + fields: [] + outputtestinj3: + title: Injector CH3 + layout: yAxis + panels: {} + fields: [] + outputtestinj4: + title: Injector CH4 + layout: yAxis + panels: {} + fields: [] + outputtestinj5: + title: Injector CH5 + layout: yAxis + panels: {} + fields: [] + outputtestinj6: + title: Injector CH6 + layout: yAxis + panels: {} + fields: [] + outputtestinj7: + title: Injector CH7 + layout: yAxis + panels: {} + fields: [] + outputtestinj8: + title: Injector CH8 + layout: yAxis + panels: {} + fields: [] + outputtest_injectors: + title: Injector Driver Output Test + layout: xAxis + panels: + outputtestinj1: + fields: [] + panels: {} + outputtestinj2: + fields: [] + panels: {} + outputtestinj3: + fields: [] + panels: {} + outputtestinj4: + fields: [] + panels: {} + outputtestinj5: + fields: [] + panels: {} + outputtestinj6: + fields: [] + panels: {} + outputtestinj7: + fields: [] + panels: {} + outputtestinj8: + fields: [] + panels: {} + fields: [] + outputtestspk1: + title: Spark CH1 + layout: yAxis + panels: {} + fields: [] + outputtestspk2: + title: Spark CH2 + layout: yAxis + panels: {} + fields: [] + outputtestspk3: + title: Spark CH3 + layout: yAxis + panels: {} + fields: [] + outputtestspk4: + title: Spark CH4 + layout: yAxis + panels: {} + fields: [] + outputtestspk5: + title: Spark CH5 + layout: yAxis + panels: {} + fields: [] + outputtestspk6: + title: Spark CH6 + layout: yAxis + panels: {} + fields: [] + outputtestspk7: + title: Spark CH7 + layout: yAxis + panels: {} + fields: [] + outputtestspk8: + title: Spark CH8 + layout: yAxis + panels: {} + fields: [] + outputtest_spark: + title: Spark Driver Output Test + layout: xAxis + panels: + outputtestspk1: + fields: [] + panels: {} + outputtestspk2: + fields: [] + panels: {} + outputtestspk3: + fields: [] + panels: {} + outputtestspk4: + fields: [] + panels: {} + outputtestspk5: + fields: [] + panels: {} + outputtestspk6: + fields: [] + panels: {} + outputtestspk7: + fields: [] + panels: {} + outputtestspk8: + fields: [] + panels: {} + fields: [] + outputtest1: + title: Test Output Hardware + panels: + enableoutputtestbuttons: + fields: [] + panels: {} + outputtest_injectors: + fields: [] + panels: {} + outputtest_spark: + fields: [] + panels: {} + outputtest_warningmessage: + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/Hardware_testing_page + stm32cmd: + title: STM32 Commands + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: >- + If Secondary Serial or Internal CANBUS is DISABLED then any input + channel assigned to that external source will NOT function + canAuxinput_alias: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Input Alias + - name: AUXin00Alias + title: '' + condition: >- + {(caninput_sel0a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel0b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin01Alias + title: '' + condition: >- + {(caninput_sel1a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel1b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin02Alias + title: '' + condition: >- + {(caninput_sel2a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel2b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin03Alias + title: '' + condition: >- + {(caninput_sel3a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel3b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin04Alias + title: '' + condition: >- + {(caninput_sel4a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel4b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin05Alias + title: '' + condition: >- + {(caninput_sel5a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel5b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin06Alias + title: '' + condition: >- + {(caninput_sel6a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel6b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin07Alias + title: '' + condition: >- + {(caninput_sel7a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel7b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin08Alias + title: '' + condition: >- + {(caninput_sel8a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel8b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin09Alias + title: '' + condition: >- + {(caninput_sel9a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel9b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin10Alias + title: '' + condition: >- + {(caninput_sel10a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel10b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin11Alias + title: '' + condition: >- + {(caninput_sel11a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel11b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin12Alias + title: '' + condition: >- + {(caninput_sel12a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel12b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin13Alias + title: '' + condition: >- + {(caninput_sel13a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel13b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin14Alias + title: '' + condition: >- + {(caninput_sel14a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel14b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin15Alias + title: '' + condition: >- + {(caninput_sel15a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel15b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + caninput_sel: + title: '' + panels: {} + fields: + - name: _fieldText_ + title: CAN Input Channel on/off + - name: caninput_sel0a + title: CAN Input 0 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel0b + title: CAN Input 0 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel1a + title: CAN Input 1 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel1b + title: CAN Input 1 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel2a + title: CAN Input 2 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel2b + title: CAN Input 2 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel3a + title: CAN Input 3 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel3b + title: CAN Input 3 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel4a + title: CAN Input 4 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel4b + title: CAN Input 4 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel5a + title: CAN Input 5 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel5b + title: CAN Input 5 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel6a + title: CAN Input 6 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel6b + title: CAN Input 6 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel7a + title: CAN Input 7 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel7b + title: CAN Input 7 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel8a + title: CAN Input 8 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel8b + title: CAN Input 8 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel9a + title: CAN Input 9 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel9b + title: CAN Input 9 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel10a + title: CAN Input 10 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel10b + title: CAN Input 10 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel11a + title: CAN Input 11 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel11b + title: CAN Input 11 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel12a + title: CAN Input 12 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel12b + title: CAN Input 12 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel13a + title: CAN Input 13 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel13b + title: CAN Input 13 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel14a + title: CAN Input 14 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel14b + title: CAN Input 14 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel15a + title: CAN Input 15 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel15b + title: CAN Input 15 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + caninput_parameter_group: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Source CAN Address + - name: caninput_source_can_address0 + title: '' + condition: >- + { (caninput_sel0a == 1 || caninput_sel0b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address1 + title: '' + condition: >- + { (caninput_sel1a == 1 || caninput_sel1b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address2 + title: '' + condition: >- + { (caninput_sel2a == 1 || caninput_sel2b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address3 + title: '' + condition: >- + { (caninput_sel3a == 1 || caninput_sel3b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address4 + title: '' + condition: >- + { (caninput_sel4a == 1 || caninput_sel4b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address5 + title: '' + condition: >- + { (caninput_sel5a == 1 || caninput_sel5b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address6 + title: '' + condition: >- + { (caninput_sel6a == 1 || caninput_sel6b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address7 + title: '' + condition: >- + { (caninput_sel7a == 1 || caninput_sel7b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address8 + title: '' + condition: >- + { (caninput_sel8a == 1 || caninput_sel8b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address9 + title: '' + condition: >- + { (caninput_sel9a == 1 || caninput_sel9b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address10 + title: '' + condition: >- + { (caninput_sel10a == 1 || caninput_sel10b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address11 + title: '' + condition: >- + { (caninput_sel11a == 1 || caninput_sel11b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address12 + title: '' + condition: >- + { (caninput_sel12a == 1 || caninput_sel12b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address13 + title: '' + condition: >- + { (caninput_sel13a == 1 || caninput_sel13b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address14 + title: '' + condition: >- + { (caninput_sel14a == 1 || caninput_sel14b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address15 + title: '' + condition: >- + { (caninput_sel15a == 1 || caninput_sel15b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + caninput_parameter_start_byte: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: source data start byte + - name: caninput_source_start_byte0 + title: '' + condition: >- + { (caninput_sel0a == 1 || caninput_sel0b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte1 + title: '' + condition: >- + { (caninput_sel1a == 1 || caninput_sel1b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte2 + title: '' + condition: >- + { (caninput_sel2a == 1 || caninput_sel2b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte3 + title: '' + condition: >- + { (caninput_sel3a == 1 || caninput_sel3b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte4 + title: '' + condition: >- + { (caninput_sel4a == 1 || caninput_sel4b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte5 + title: '' + condition: >- + { (caninput_sel5a == 1 || caninput_sel5b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte6 + title: '' + condition: >- + { (caninput_sel6a == 1 || caninput_sel6b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte7 + title: '' + condition: >- + { (caninput_sel7a == 1 || caninput_sel7b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte8 + title: '' + condition: >- + { (caninput_sel8a == 1 || caninput_sel8b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte9 + title: '' + condition: >- + { (caninput_sel9a == 1 || caninput_sel9b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte10 + title: '' + condition: >- + { (caninput_sel10a == 1 || caninput_sel10b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte11 + title: '' + condition: >- + { (caninput_sel11a == 1 || caninput_sel11b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte12 + title: '' + condition: >- + { (caninput_sel12a == 1 || caninput_sel12b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte13 + title: '' + condition: >- + { (caninput_sel13a == 1 || caninput_sel13b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte14 + title: '' + condition: >- + { (caninput_sel14a == 1 || caninput_sel14b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte15 + title: '' + condition: >- + { (caninput_sel15a == 1 || caninput_sel15b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + caninput_parameter_num_byte: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Input Parameter Number of Bytes + - name: caninput_source_num_bytes0 + title: '' + condition: >- + { (caninput_sel0a == 1 || caninput_sel0b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes1 + title: '' + condition: >- + { (caninput_sel1a == 1 || caninput_sel1b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes2 + title: '' + condition: >- + { (caninput_sel2a == 1 || caninput_sel2b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes3 + title: '' + condition: >- + { (caninput_sel3a == 1 || caninput_sel3b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes4 + title: '' + condition: >- + { (caninput_sel4a == 1 || caninput_sel4b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes5 + title: '' + condition: >- + { (caninput_sel5a == 1 || caninput_sel5b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes6 + title: '' + condition: >- + { (caninput_sel6a == 1 || caninput_sel6b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes7 + title: '' + condition: >- + { (caninput_sel7a == 1 || caninput_sel7b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes8 + title: '' + condition: >- + { (caninput_sel8a == 1 || caninput_sel8b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes9 + title: '' + condition: >- + { (caninput_sel9a == 1 || caninput_sel9b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes10 + title: '' + condition: >- + { (caninput_sel10a == 1 || caninput_sel10b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes11 + title: '' + condition: >- + { (caninput_sel11a == 1 || caninput_sel11b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes12 + title: '' + condition: >- + { (caninput_sel12a == 1 || caninput_sel12b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes13 + title: '' + condition: >- + { (caninput_sel13a == 1 || caninput_sel13b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes14 + title: '' + condition: >- + { (caninput_sel14a == 1 || caninput_sel14b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes15 + title: '' + condition: >- + { (caninput_sel15a == 1 || caninput_sel15b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + caninput_serial_can: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Serial/CAN + - name: caninput_sel0extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel0extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel0extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel1extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel1extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel1extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel2extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel2extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel2extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel3extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel3extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel3extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel4extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel4extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel4extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel5extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel5extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel5extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel6extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel6extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel6extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel7extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel7extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel7extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel8extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel8extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel8extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel9extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel9extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel9extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel10extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel10extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel10extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel11extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel11extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel11extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel12extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel12extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel12extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel13extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel13extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel13extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel14extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel14extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel14extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel15extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel15extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel15extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + caninconfig_blank1: + title: '' + panels: {} + fields: + - name: _fieldText_ + title: '' + Canin_config1: + title: '' + layout: xAxis + panels: + canAuxinput_alias: + fields: [] + panels: {} + caninconfig_blank1: + fields: [] + panels: {} + caninput_sel: + fields: [] + panels: {} + caninput_serial_can: + fields: [] + panels: {} + caninput_parameter_group: + fields: [] + panels: {} + caninput_parameter_start_byte: + fields: [] + panels: {} + caninput_parameter_num_byte: + fields: [] + panels: {} + fields: [] + Canin_config: + title: '' + layout: yAxis + panels: + Auxin_north: + fields: [] + panels: {} + Canin_config1: + fields: [] + panels: {} + fields: [] + help: >- + http://speeduino.com/wiki/index.php/Secondary_Serial_IO_interface#Read_external_analog_data + canAuxoutput_alias: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Input Alias + - name: AUXin00Alias + title: '' + condition: '{canoutput_sel0}' + - name: AUXin01Alias + title: '' + condition: '{canoutput_sel1}' + - name: AUXin02Alias + title: '' + condition: '{canoutput_sel2}' + - name: AUXin03Alias + title: '' + condition: '{canoutput_sel3}' + - name: AUXin04Alias + title: '' + condition: '{canoutput_sel4}' + - name: AUXin05Alias + title: '' + condition: '{canoutput_sel5}' + - name: AUXin06Alias + title: '' + condition: '{canoutput_sel6}' + - name: AUXin07Alias + title: '' + condition: '{canoutput_sel7}' + canoutput_sel: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: CAN Output Channel on/off + - name: canoutput_sel0 + title: CAN Output 0 + condition: '{ enable_intcandata_out}' + - name: canoutput_sel1 + title: CAN Output 1 + condition: '{ enable_intcandata_out }' + - name: canoutput_sel2 + title: CAN Output 2 + condition: '{ enable_intcandata_out }' + - name: canoutput_sel3 + title: CAN Output 3 + condition: '{ enable_intcandata_out }' + - name: canoutput_sel4 + title: CAN Output 4 + condition: '{ enable_intcandata_out }' + - name: canoutput_sel5 + title: CAN Output 5 + condition: '{ enable_intcandata_out }' + - name: canoutput_sel6 + title: CAN Output 6 + condition: '{ enable_intcandata_out }' + - name: canoutput_sel7 + title: CAN Output 7 + condition: '{ enable_intcandata_out }' + canoutput_parameter_group: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Output Parameter Group + - name: canoutput_param_group + title: '' + - name: canoutput_param_group + title: '' + - name: canoutput_param_group + title: '' + - name: canoutput_param_group + title: '' + - name: canoutput_param_group + title: '' + - name: canoutput_param_group + title: '' + - name: canoutput_param_group + title: '' + - name: canoutput_param_group + title: '' + canoutput_parameter_start_byte: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Output Parameter Start Byte + - name: canoutput_param_start_byte0 + title: '' + condition: '{ canoutput_sel0 && enable_intcandata_out }' + - name: canoutput_param_start_byte1 + title: '' + condition: '{ canoutput_sel1 && enable_intcandata_out }' + - name: canoutput_param_start_byte2 + title: '' + condition: '{ canoutput_sel2 && enable_intcandata_out }' + - name: canoutput_param_start_byte3 + title: '' + condition: '{ canoutput_sel3 && enable_intcandata_out }' + - name: canoutput_param_start_byte4 + title: '' + condition: '{ canoutput_sel4 && enable_intcandata_out }' + - name: canoutput_param_start_byte5 + title: '' + condition: '{ canoutput_sel5 && enable_intcandata_out }' + - name: canoutput_param_start_byte6 + title: '' + condition: '{ canoutput_sel6 && enable_intcandata_out }' + - name: canoutput_param_start_byte7 + title: '' + condition: '{ canoutput_sel7 && enable_intcandata_out }' + canoutput_parameter_num_byte: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Output Parameter Number of Bytes + - name: canoutput_param_num_bytes0 + title: '' + condition: '{ canoutput_sel0 && enable_intcandata_out }' + - name: canoutput_param_num_bytes1 + title: '' + condition: '{ canoutput_sel1 && enable_intcandata_out }' + - name: canoutput_param_num_bytes2 + title: '' + condition: '{ canoutput_sel2 && enable_intcandata_out }' + - name: canoutput_param_num_bytes3 + title: '' + condition: '{ canoutput_sel3 && enable_intcandata_out }' + - name: canoutput_param_num_bytes4 + title: '' + condition: '{ canoutput_sel4 && enable_intcandata_out }' + - name: canoutput_param_num_bytes5 + title: '' + condition: '{ canoutput_sel5 && enable_intcandata_out }' + - name: canoutput_param_num_bytes6 + title: '' + condition: '{ canoutput_sel6 && enable_intcandata_out }' + - name: canoutput_param_num_bytes7 + title: '' + condition: '{ canoutput_sel7 && enable_intcandata_out }' + canoutconfig_blank1: + title: '' + panels: {} + fields: + - name: _fieldText_ + title: '' + Canout_config1: + title: '' + layout: xAxis + panels: + canAuxoutput_alias: + fields: [] + panels: {} + canoutconfig_blank1: + fields: [] + panels: {} + canoutput_sel: + fields: [] + panels: {} + canoutput_parameter_group: + fields: [] + panels: {} + canoutput_parameter_start_byte: + fields: [] + panels: {} + canoutput_parameter_num_byte: + fields: [] + panels: {} + fields: [] + Canout_config2: + title: CAN Data Out + panels: {} + fields: + - name: enable_intcandata_out + title: Enable CanBus data Output + Canout_config: + title: '' + layout: yAxis + panels: + Canout_config2: + fields: [] + panels: {} + Canout_config1: + fields: [] + panels: {} + fields: [] + help: '' + can_serial3IO: + title: CanBus/Secondary Serial IO interface + panels: {} + fields: + - name: enable_secondarySerial + title: Enable Second Serial + - name: enable_intcan + title: Enable Internal Canbus + - name: true_address + title: True Canbus Address + - name: _fieldText_ + title: >- + NOTE! Realtime Data Base Address MUST be at least 0x16 GREATER than + the True Address as they are reserved for future expansion + - name: realtime_base_address + title: Realtime Data Base Can Address + - name: obd_address + title: Speeduino OBD address + help: http://speeduino.com/wiki/index.php/Secondary_Serial_IO_interface + serial3IO: + title: Secondary Serial IO interface + panels: {} + fields: + - name: enable_secondarySerial + title: Enable Second Serial + - name: enable_intcan + title: Enable Internal Canbus + - name: true_address + title: True Canbus Address + - name: _fieldText_ + title: >- + NOTE! Realtime Data Base Address MUST be at least 0x16 GREATER than + the True Address as they are reserved for future expansion + - name: realtime_base_address + title: Realtime Data Base Can Address + - name: obd_address + title: Speeduino OBD address + help: http://speeduino.com/wiki/index.php/Serial3_IO_interface + reset_control: + title: Reset Control + panels: {} + fields: + - name: resetControl + title: Control Type + - name: resetControlPin + title: Control Pin + Auxinput_pin_selection: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Source + - name: Auxin0pina + title: 'Local Analog Source 0 Pin No:' + condition: >- + {(caninput_sel0a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin0pinb + title: 'Local Digital Source 0 Pin No:' + condition: >- + {(caninput_sel0a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin1pina + title: 'Local Analog Source 1 Pin No:' + condition: >- + {(caninput_sel1a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin1pinb + title: 'Local Digital Source 1 Pin No:' + condition: >- + {(caninput_sel1a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin2pina + title: 'Local Analog Source 2 Pin No:' + condition: >- + {(caninput_sel2a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin2pinb + title: 'Local Digital Source 2 Pin No:' + condition: >- + {(caninput_sel2a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin3pina + title: 'Local Analog Source 3 Pin No:' + condition: >- + {(caninput_sel3a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin3pinb + title: 'Local Digital Source 3 Pin No:' + condition: >- + {(caninput_sel3a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin4pina + title: 'Local Analog Source 4 Pin No:' + condition: >- + {(caninput_sel4a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin4pinb + title: 'Local Digital Source 4 Pin No:' + condition: >- + {(caninput_sel4a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin5pina + title: 'Local Analog Source 5 Pin No:' + condition: >- + {(caninput_sel5a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin5pinb + title: 'Local Digital Source 5 Pin No:' + condition: >- + {(caninput_sel5a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin6pina + title: 'Local Analog Source 6 Pin No:' + condition: >- + {(caninput_sel6a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin6pinb + title: 'Local Digital Source 6 Pin No:' + condition: >- + {(caninput_sel6a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin7pina + title: 'Local Analog Source 7 Pin No:' + condition: >- + {(caninput_sel7a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin7pinb + title: 'Local Digital Source 7 Pin No:' + condition: >- + {(caninput_sel7a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin8pina + title: 'Local Analog Source 8 Pin No:' + condition: >- + {(caninput_sel8a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin8pinb + title: 'Local Digital Source 8 Pin No:' + condition: >- + {(caninput_sel8a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin9pina + title: 'Local Analog Source 9 Pin No:' + condition: >- + {(caninput_sel9a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin9pinb + title: 'Local Digital Source 9 Pin No:' + condition: >- + {(caninput_sel9a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin10pina + title: 'Local Analog Source 10 Pin No:' + condition: >- + {(caninput_sel10a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b == + 2 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin10pinb + title: 'Local Digital Source 10 Pin No:' + condition: >- + {(caninput_sel10a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b == + 3 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin11pina + title: 'Local Analog Source 11 Pin No:' + condition: >- + {(caninput_sel11a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b == + 2 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin11pinb + title: 'Local Digital Source 11 Pin No:' + condition: >- + {(caninput_sel11a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b == + 3 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin12pina + title: 'Local Analog Source 12 Pin No:' + condition: >- + {(caninput_sel12a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b == + 2 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin12pinb + title: 'Local Digital Source 12 Pin No:' + condition: >- + {(caninput_sel12a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b == + 3 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin13pina + title: 'Local Analog Source 13 Pin No:' + condition: >- + {(caninput_sel13a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b == + 2 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin13pinb + title: 'Local Digital Source 13 Pin No:' + condition: >- + {(caninput_sel13a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b == + 3 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin14pina + title: 'Local Analog Source 14 Pin No:' + condition: >- + {(caninput_sel14a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b == + 2 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin14pinb + title: 'Local Digital Source 14 Pin No:' + condition: >- + {(caninput_sel14a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b == + 3 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin15pina + title: 'Local Analog Source 15 Pin No:' + condition: >- + {(caninput_sel15a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b == + 2 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin15pinb + title: 'Local Digital Source 15 Pin No:' + condition: >- + {(caninput_sel15a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b == + 3 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + Auxinput_alias: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Input Alias + - name: AUXin00Alias + title: '' + condition: >- + {(caninput_sel0a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel0b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin01Alias + title: '' + condition: >- + {(caninput_sel1a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel1b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin02Alias + title: '' + condition: >- + {(caninput_sel2a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel2b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin03Alias + title: '' + condition: >- + {(caninput_sel3a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel3b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin04Alias + title: '' + condition: >- + {(caninput_sel4a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel4b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin05Alias + title: '' + condition: >- + {(caninput_sel5a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel5b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin06Alias + title: '' + condition: >- + {(caninput_sel6a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel6b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin07Alias + title: '' + condition: >- + {(caninput_sel7a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel7b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin08Alias + title: '' + condition: >- + {(caninput_sel8a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel8b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin09Alias + title: '' + condition: >- + {(caninput_sel9a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel9b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin10Alias + title: '' + condition: >- + {(caninput_sel10a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel10b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin11Alias + title: '' + condition: >- + {(caninput_sel11a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel11b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin12Alias + title: '' + condition: >- + {(caninput_sel12a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel12b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin13Alias + title: '' + condition: >- + {(caninput_sel13a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel13b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin14Alias + title: '' + condition: >- + {(caninput_sel14a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel14b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin15Alias + title: '' + condition: >- + {(caninput_sel15a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel15b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + Auxinput_channelenable: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Aux Input Channel Enable + - name: caninput_sel0a + title: AUX Input 0 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel0b + title: AUX Input 0 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel1a + title: AUX Input 1 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel1b + title: AUX Input 1 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel2a + title: AUX Input 2 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel2b + title: AUX Input 2 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel3a + title: AUX Input 3 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel3b + title: AUX Input 3 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel4a + title: AUX Input 4 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel4b + title: AUX Input 4 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel5a + title: AUX Input 5 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel5b + title: AUX Input 5 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel6a + title: AUX Input 6 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel6b + title: AUX Input 6 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel7a + title: AUX Input 7 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel7b + title: AUX Input 7 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel8a + title: AUX Input 8 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel8b + title: AUX Input 8 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel9a + title: AUX Input 9 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel9b + title: AUX Input 9 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel10a + title: AUX Input 10 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel10b + title: AUX Input 10 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel11a + title: AUX Input 11 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel11b + title: AUX Input 11 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel12a + title: AUX Input 12 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel12b + title: AUX Input 12 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel13a + title: AUX Input 13 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel13b + title: AUX Input 13 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel14a + title: AUX Input 14 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel14b + title: AUX Input 14 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel15a + title: AUX Input 15 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel15b + title: AUX Input 15 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + Auxin_south: + title: Auxillary Input Configuration + layout: xAxis + panels: + Auxinput_alias: + fields: [] + panels: {} + Auxinput_channelenable: + fields: [] + panels: {} + Auxinput_pin_selection: + fields: [] + panels: {} + fields: [] + Auxin_config: + title: '' + layout: yAxis + panels: + Auxin_north: + fields: [] + panels: {} + Auxin_south: + fields: [] + panels: {} + fields: [] + gaugeLimits: + title: Gauge Limits + panels: {} + fields: + - name: _fieldText_ + title: '#RPM' + - name: rpmwarn + title: Warning + - name: rpmdang + title: Danger + - name: rpmhigh + title: High + - name: _fieldText_ + title: '#MAP' + - name: mapwarn + title: Warning + - name: mapdang + title: Danger + - name: maphigh + title: High + io_summary: + title: I/O Summary + panels: {} + fields: [] + prgm_out_pin_selection_1: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: outputInverted0 + title: '' + condition: '{outputPin[0]}' + - name: outputInverted1 + title: '' + condition: '{outputPin[1]}' + - name: outputInverted2 + title: '' + condition: '{outputPin[2]}' + - name: outputInverted3 + title: '' + condition: '{outputPin[3]}' + - name: outputInverted4 + title: '' + condition: '{outputPin[4]}' + - name: outputInverted5 + title: '' + condition: '{outputPin[5]}' + - name: outputInverted6 + title: '' + condition: '{outputPin[6]}' + - name: outputInverted7 + title: '' + condition: '{outputPin[7]}' + prgm_out_pin_selection_2: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: firstDataIn0 + title: if( + condition: '{outputPin[0]}' + - name: firstDataIn1 + title: if( + condition: '{outputPin[1]}' + - name: firstDataIn2 + title: if( + condition: '{outputPin[2]}' + - name: firstDataIn3 + title: if( + condition: '{outputPin[3]}' + - name: firstDataIn4 + title: if( + condition: '{outputPin[4]}' + - name: firstDataIn5 + title: if( + condition: '{outputPin[5]}' + - name: firstDataIn6 + title: if( + condition: '{outputPin[6]}' + - name: firstDataIn7 + title: if( + condition: '{outputPin[7]}' + prgm_out_pin_selection_3: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: firstCompType0 + title: '' + condition: '{outputPin[0]}' + - name: firstCompType1 + title: '' + condition: '{outputPin[1]}' + - name: firstCompType2 + title: '' + condition: '{outputPin[2]}' + - name: firstCompType3 + title: '' + condition: '{outputPin[3]}' + - name: firstCompType4 + title: '' + condition: '{outputPin[4]}' + - name: firstCompType5 + title: '' + condition: '{outputPin[5]}' + - name: firstCompType6 + title: '' + condition: '{outputPin[6]}' + - name: firstCompType7 + title: '' + condition: '{outputPin[7]}' + prgm_out_pin_selection_4: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + prgm_out_pin_selection_5: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: bitwise0 + title: ) + condition: '{outputPin[0]}' + - name: bitwise1 + title: ) + condition: '{outputPin[1]}' + - name: bitwise2 + title: ) + condition: '{outputPin[2]}' + - name: bitwise3 + title: ) + condition: '{outputPin[3]}' + - name: bitwise4 + title: ) + condition: '{outputPin[4]}' + - name: bitwise5 + title: ) + condition: '{outputPin[6]}' + - name: bitwise6 + title: ) + condition: '{outputPin[6]}' + - name: bitwise7 + title: ) + condition: '{outputPin[7]}' + prgm_out_pin_selection_6: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: secondDataIn0 + title: '' + condition: '{outputPin[0] && bitwise0}' + - name: secondDataIn1 + title: '' + condition: '{outputPin[1] && bitwise1}' + - name: secondDataIn2 + title: '' + condition: '{outputPin[2] && bitwise2}' + - name: secondDataIn3 + title: '' + condition: '{outputPin[3] && bitwise3}' + - name: secondDataIn4 + title: '' + condition: '{outputPin[4] && bitwise4}' + - name: secondDataIn5 + title: '' + condition: '{outputPin[5] && bitwise5}' + - name: secondDataIn6 + title: '' + condition: '{outputPin[6] && bitwise6}' + - name: secondDataIn7 + title: '' + condition: '{outputPin[7] && bitwise7}' + prgm_out_pin_selection_: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + prgm_out_pin_selection_7: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: secondCompType0 + title: '' + condition: '{outputPin[0] && bitwise0}' + - name: secondCompType1 + title: '' + condition: '{outputPin[1] && bitwise1}' + - name: secondCompType2 + title: '' + condition: '{outputPin[2] && bitwise2}' + - name: secondCompType3 + title: '' + condition: '{outputPin[3] && bitwise3}' + - name: secondCompType4 + title: '' + condition: '{outputPin[4] && bitwise4}' + - name: secondCompType5 + title: '' + condition: '{outputPin[5] && bitwise5}' + - name: secondCompType6 + title: '' + condition: '{outputPin[6] && bitwise6}' + - name: secondCompType6 + title: '' + condition: '{outputPin[7] && bitwise7}' + prgm_out_pin_selection_8: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: secondTarget + title: '' + - name: secondTarget + title: '' + - name: secondTarget + title: '' + - name: secondTarget + title: '' + - name: secondTarget + title: '' + - name: secondTarget + title: '' + - name: secondTarget + title: '' + - name: secondTarget + title: '' + prgm_out_pin_selection_9: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: outputDelay + title: during + - name: outputDelay + title: during + - name: outputDelay + title: during + - name: outputDelay + title: during + - name: outputDelay + title: during + - name: outputDelay + title: during + - name: outputDelay + title: during + - name: outputDelay + title: during + prgm_out_alias: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Input Alias + - name: prgm_out00Alias + title: '' + condition: '{outputPin[0]}' + - name: prgm_out01Alias + title: '' + condition: '{outputPin[1]}' + - name: prgm_out02Alias + title: '' + condition: '{outputPin[2]}' + - name: prgm_out03Alias + title: '' + condition: '{outputPin[3]}' + - name: prgm_out04Alias + title: '' + condition: '{outputPin[4]}' + - name: prgm_out05Alias + title: '' + condition: '{outputPin[5]}' + - name: prgm_out06Alias + title: '' + condition: '{outputPin[6]}' + - name: prgm_out07Alias + title: '' + condition: '{outputPin[7]}' + prgm_out_channelenable: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: 'Pin No:' + - name: outputPin0 + title: '' + - name: outputPin1 + title: '' + - name: outputPin2 + title: '' + - name: outputPin3 + title: '' + - name: outputPin4 + title: '' + - name: outputPin5 + title: '' + - name: outputPin6 + title: '' + - name: outputPin7 + title: '' + prgm_out_unique: + title: '' + layout: xAxis + panels: + prgm_out_channelenable: + fields: [] + panels: {} + prgm_out_alias: + fields: [] + panels: {} + prgm_out_pin_selection_1: + fields: [] + panels: {} + prgm_out_pin_selection_2: + fields: [] + panels: {} + prgm_out_pin_selection_3: + fields: [] + panels: {} + prgm_out_pin_selection_4: + fields: [] + panels: {} + prgm_out_pin_selection_5: + fields: [] + panels: {} + prgm_out_pin_selection_6: + fields: [] + panels: {} + prgm_out_pin_selection_7: + fields: [] + panels: {} + prgm_out_pin_selection_8: + fields: [] + panels: {} + prgm_out_pin_selection_9: + fields: [] + panels: {} + fields: [] + prgm_out_rules_1_condition_1: + title: Condition 1 + layout: xAxis + panels: {} + fields: + - name: firstDataIn0 + title: '' + condition: '{outputPin[0]}' + - name: firstCompType0 + title: '' + condition: '{outputPin[0]}' + - name: firstTarget + title: '' + prgm_out_rules_1_condition_2: + title: Condition 2 + layout: xAxis + panels: {} + fields: + - name: secondDataIn0 + title: '' + condition: '{outputPin[0] && bitwise0}' + - name: secondCompType0 + title: '' + condition: '{outputPin[0] && bitwise0}' + - name: secondTarget + title: '' + prgm_out_rules_2_condition_1: + title: Condition 1 + layout: xAxis + panels: {} + fields: + - name: firstDataIn1 + title: '' + condition: '{outputPin[1]}' + - name: firstCompType1 + title: '' + condition: '{outputPin[1]}' + - name: firstTarget + title: '' + prgm_out_rules_2_condition_2: + title: Condition 2 + layout: xAxis + panels: {} + fields: + - name: secondDataIn1 + title: '' + condition: '{outputPin[1] && bitwise1}' + - name: secondCompType1 + title: '' + condition: '{outputPin[1] && bitwise1}' + - name: secondTarget + title: '' + prgm_out_rules_3_condition_1: + title: Condition 1 + layout: xAxis + panels: {} + fields: + - name: firstDataIn2 + title: '' + condition: '{outputPin[2]}' + - name: firstCompType2 + title: '' + condition: '{outputPin[2]}' + - name: firstTarget + title: '' + prgm_out_rules_3_condition_2: + title: Condition 2 + layout: xAxis + panels: {} + fields: + - name: secondDataIn2 + title: '' + condition: '{outputPin[2] && bitwise2}' + - name: secondCompType2 + title: '' + condition: '{outputPin[2] && bitwise2}' + - name: secondTarget + title: '' + prgm_out_rules_4_condition_1: + title: Condition 1 + layout: xAxis + panels: {} + fields: + - name: firstDataIn3 + title: '' + condition: '{outputPin[3]}' + - name: firstCompType3 + title: '' + condition: '{outputPin[3]}' + - name: firstTarget + title: '' + prgm_out_rules_4_condition_2: + title: Condition 2 + layout: xAxis + panels: {} + fields: + - name: secondDataIn3 + title: '' + condition: '{outputPin[3] && bitwise3}' + - name: secondCompType3 + title: '' + condition: '{outputPin[3] && bitwise3}' + - name: secondTarget + title: '' + prgm_out_rules_5_condition_1: + title: Condition 1 + layout: xAxis + panels: {} + fields: + - name: firstDataIn4 + title: '' + condition: '{outputPin[4]}' + - name: firstCompType4 + title: '' + condition: '{outputPin[4]}' + - name: firstTarget + title: '' + prgm_out_rules_5_condition_2: + title: Condition 2 + layout: xAxis + panels: {} + fields: + - name: secondDataIn4 + title: '' + condition: '{outputPin[4] && bitwise4}' + - name: secondCompType4 + title: '' + condition: '{outputPin[4] && bitwise4}' + - name: secondTarget + title: '' + prgm_out_rules_6_condition_1: + title: Condition 1 + layout: xAxis + panels: {} + fields: + - name: firstDataIn5 + title: '' + condition: '{outputPin[5]}' + - name: firstCompType5 + title: '' + condition: '{outputPin[5]}' + - name: firstTarget + title: '' + prgm_out_rules_6_condition_2: + title: Condition 2 + layout: xAxis + panels: {} + fields: + - name: secondDataIn5 + title: '' + condition: '{outputPin[5] && bitwise5}' + - name: secondCompType5 + title: '' + condition: '{outputPin[5] && bitwise5}' + - name: secondTarget + title: '' + prgm_out_rules_7_condition_1: + title: Condition 1 + layout: xAxis + panels: {} + fields: + - name: firstDataIn6 + title: '' + condition: '{outputPin[6]}' + - name: firstCompType6 + title: '' + condition: '{outputPin[6]}' + - name: firstTarget + title: '' + prgm_out_rules_7_condition_2: + title: Condition 2 + layout: xAxis + panels: {} + fields: + - name: secondDataIn6 + title: '' + condition: '{outputPin[6] && bitwise6}' + - name: secondCompType6 + title: '' + condition: '{outputPin[6] && bitwise6}' + - name: secondTarget + title: '' + prgm_out_rules_8_condition_1: + title: Condition 1 + layout: xAxis + panels: {} + fields: + - name: firstDataIn7 + title: '' + condition: '{outputPin[7]}' + - name: firstCompType7 + title: '' + condition: '{outputPin[7]}' + - name: firstTarget + title: '' + prgm_out_rules_8_condition_2: + title: Condition 2 + layout: xAxis + panels: {} + fields: + - name: secondDataIn7 + title: '' + condition: '{outputPin[7] && bitwise7}' + - name: secondCompType7 + title: '' + condition: '{outputPin[7] && bitwise7}' + - name: secondTarget + title: '' + prgm_out_rules_1: + title: Rule 1 + layout: yAxis + panels: + prgm_out_rules_1_condition_1: + fields: [] + panels: {} + prgm_out_rules_1_condition_2: + fields: [] + panels: {} + fields: + - name: outputPin0 + title: Output Pin Num + - name: prgm_out00Alias + title: Rule Alias + condition: '{outputPin[0]}' + - name: outputInverted0 + title: Output Polarity + condition: '{outputPin[0]}' + - name: outputDelay + title: Activation Delay + - name: bitwise0 + title: 2nd Condition + condition: '{outputPin[0]}' + prgm_out_rules_2: + title: Rule 2 + layout: yAxis + panels: + prgm_out_rules_2_condition_1: + fields: [] + panels: {} + prgm_out_rules_2_condition_2: + fields: [] + panels: {} + fields: + - name: outputPin1 + title: Output Pin Num + - name: prgm_out01Alias + title: Rule Alias + condition: '{outputPin[1]}' + - name: outputInverted1 + title: Output Polarity + condition: '{outputPin[1]}' + - name: outputDelay + title: Activation Delay + - name: bitwise1 + title: 2nd Condition + condition: '{outputPin[1]}' + prgm_out_rules_3: + title: Rule 3 + layout: yAxis + panels: + prgm_out_rules_3_condition_1: + fields: [] + panels: {} + prgm_out_rules_3_condition_2: + fields: [] + panels: {} + fields: + - name: outputPin2 + title: Output Pin Num + - name: prgm_out02Alias + title: Rule Alias + condition: '{outputPin[2]}' + - name: outputInverted2 + title: Output Polarity + condition: '{outputPin[2]}' + - name: outputDelay + title: Activation Delay + - name: bitwise2 + title: 2nd Condition + condition: '{outputPin[2]}' + prgm_out_rules_4: + title: Rule 4 + layout: yAxis + panels: + prgm_out_rules_4_condition_1: + fields: [] + panels: {} + prgm_out_rules_4_condition_2: + fields: [] + panels: {} + fields: + - name: outputPin3 + title: Output Pin Num + - name: prgm_out03Alias + title: Rule Alias + condition: '{outputPin[3]}' + - name: outputInverted3 + title: Output Polarity + condition: '{outputPin[3]}' + - name: outputDelay + title: Activation Delay + - name: bitwise3 + title: 2nd Condition + condition: '{outputPin[3]}' + prgm_out_rules_5: + title: Rule 5 + layout: yAxis + panels: + prgm_out_rules_5_condition_1: + fields: [] + panels: {} + prgm_out_rules_5_condition_2: + fields: [] + panels: {} + fields: + - name: outputPin4 + title: Output Pin Num + - name: prgm_out04Alias + title: Rule Alias + condition: '{outputPin[4]}' + - name: outputInverted4 + title: Output Polarity + condition: '{outputPin[4]}' + - name: outputDelay + title: Activation Delay + - name: bitwise4 + title: 2nd Condition + condition: '{outputPin[4]}' + prgm_out_rules_6: + title: Rule 6 + layout: yAxis + panels: + prgm_out_rules_6_condition_1: + fields: [] + panels: {} + prgm_out_rules_6_condition_2: + fields: [] + panels: {} + fields: + - name: outputPin5 + title: Output Pin Num + - name: prgm_out05Alias + title: Rule Alias + condition: '{outputPin[5]}' + - name: outputInverted5 + title: Output Polarity + condition: '{outputPin[5]}' + - name: outputDelay + title: Activation Delay + - name: bitwise5 + title: 2nd Condition + condition: '{outputPin[5]}' + prgm_out_rules_7: + title: Rule 7 + layout: yAxis + panels: + prgm_out_rules_7_condition_1: + fields: [] + panels: {} + prgm_out_rules_7_condition_2: + fields: [] + panels: {} + fields: + - name: outputPin6 + title: Output Pin Num + - name: prgm_out06Alias + title: Rule Alias + condition: '{outputPin[6]}' + - name: outputInverted6 + title: Output Polarity + condition: '{outputPin[6]}' + - name: outputDelay + title: Activation Delay + - name: bitwise6 + title: 2nd Condition + condition: '{outputPin[6]}' + prgm_out_rules_8: + title: Rule 8 + layout: yAxis + panels: + prgm_out_rules_8_condition_1: + fields: [] + panels: {} + prgm_out_rules_8_condition_2: + fields: [] + panels: {} + fields: + - name: outputPin7 + title: Output Pin Num + - name: prgm_out07Alias + title: Rule Alias + condition: '{outputPin[7]}' + - name: outputInverted7 + title: Output Polarity + condition: '{outputPin[7]}' + - name: outputDelay + title: Activation Delay + - name: bitwise7 + title: 2nd Condition + condition: '{outputPin[7]}' + prgm_out_rules_master: + title: '' + layout: card + panels: + prgm_out_rules_1: + layout: Center + condition: '{ prgm_out_selection == 0 }' + fields: [] + panels: {} + prgm_out_rules_2: + layout: Center + condition: '{ prgm_out_selection == 1 }' + fields: [] + panels: {} + prgm_out_rules_3: + layout: Center + condition: '{ prgm_out_selection == 2 }' + fields: [] + panels: {} + prgm_out_rules_4: + layout: Center + condition: '{ prgm_out_selection == 3 }' + fields: [] + panels: {} + prgm_out_rules_5: + layout: Center + condition: '{ prgm_out_selection == 4 }' + fields: [] + panels: {} + prgm_out_rules_6: + layout: Center + condition: '{ prgm_out_selection == 5 }' + fields: [] + panels: {} + prgm_out_rules_7: + layout: Center + condition: '{ prgm_out_selection == 6 }' + fields: [] + panels: {} + prgm_out_rules_8: + layout: Center + condition: '{ prgm_out_selection == 7 }' + fields: [] + panels: {} + fields: [] + prgm_out_config: + title: '' + layout: yAxis + panels: + prgm_out_rules_master: + fields: [] + panels: {} + fields: + - name: prgm_out_selection + title: Select Rule Number +curves: + time_accel_tpsdot_curve: + title: TPS based AE + labels: + - TPSdot + - Added + xAxis: + - 0 + - 1200 + - 6 + yAxis: + - 0 + - 250 + - 4 + xBins: + - taeBins + - TPSdot + yBins: + - taeRates + size: [] + time_accel_mapdot_curve: + title: MAP based AE + labels: + - MAPdot + - Added + xAxis: + - 0 + - 1200 + - 6 + yAxis: + - 0 + - 250 + - 4 + xBins: + - maeBins + - MAPdot + yBins: + - maeRates + size: [] + dwell_correction_curve: + title: Dwell voltage correction + labels: + - Voltage + - Dwell + xAxis: + - 6 + - 22 + - 6 + yAxis: + - 0 + - 255 + - 6 + xBins: + - brvBins + - batteryVoltage + yBins: + - dwellRates + size: [] + injector_voltage_curve: + title: Injector voltage correction + labels: + - Voltage + - Injector + xAxis: + - 6 + - 22 + - 6 + yAxis: + - 0 + - 255 + - 6 + xBins: + - brvBins + - batteryVoltage + yBins: + - injBatRates + size: [] + injector_timing_curve: + title: Injector timing + labels: + - RPM + - Injector + xAxis: + - 0 + - 7000 + - 6 + yAxis: + - 0 + - 720 + - 5 + xBins: + - injAngRPM + - rpm + yBins: + - injAng + size: [] + airdensity_curve: + title: IAT density correction + labels: + - Air Temperature + - Fuel Amount + xAxis: + - -40 + - 160 + - 6 + yAxis: + - 0 + - 255 + - 6 + xBins: + - airDenBins + - iat + yBins: + - airDenRates + size: [] + baroFuel_curve: + title: Baro fuel correction + labels: + - Baro Pressure + - Fuel Amount + xAxis: + - 75 + - 112 + - 6 + yAxis: + - 0 + - 255 + - 6 + xBins: + - baroFuelBins + - baro + yBins: + - baroFuelValues + size: [] + fuelTemp_curve: + title: Fuel temp correction + labels: + - Fuel Temperature + - Fuel Amount + xAxis: + - -40 + - 125 + - 6 + yAxis: + - 0 + - 255 + - 6 + xBins: + - fuelTempBins + - fuelTemp + yBins: + - fuelTempValues + size: [] + iat_retard_curve: + title: IAT timing retard + labels: + - Inlet Air Temp + - Retard + xAxis: + - -40 + - 200 + - 5 + yAxis: + - 0 + - 30 + - 5 + xBins: + - iatRetBins + - iat + yBins: + - iatRetRates + size: [] + clt_advance_curve: + title: Cold Advance + labels: + - Coolant Temp + - Advance + xAxis: + - -40 + - 200 + - 5 + yAxis: + - -12.7 + - 12.7 + - 5 + xBins: + - cltAdvBins + - coolant + yBins: + - cltAdvValues + size: [] + idle_advance_curve: + title: Idle Advance + labels: + - RPM Delta + - Advance + xAxis: + - -500 + - 500 + - 5 + yAxis: + - -15 + - 50 + - 5 + xBins: + - idleAdvBins + - CLIdleDelta + yBins: + - idleAdvValues + size: + - 450 + - 200 + iacPwm_curve: + title: IAC PWM Duty + labels: + - Coolant Temperature + - Valve + xAxis: + - -40 + - 315 + - 6 + yAxis: + - 0 + - 100 + - 4 + xBins: + - iacBins + - coolant + yBins: + - iacOLPWMVal + size: [] + iacPwmCrank_curve: + title: IAC PWM Cranking Duty + labels: + - Coolant Temperature + - Valve + xAxis: + - -40 + - 215 + - 6 + yAxis: + - 0 + - 100 + - 4 + xBins: + - iacCrankBins + - coolant + yBins: + - iacCrankDuty + size: [] + iacStep_curve: + title: IAC Stepper Motor + labels: + - Coolant Temperature + - Motor + xAxis: + - -40 + - 315 + - 6 + yAxis: + - 0 + - 850 + - 4 + xBins: + - iacBins + - coolant + yBins: + - iacOLStepVal + size: [] + iacStepCrank_curve: + title: IAC Stepper Motor Cranking + labels: + - Coolant Temperature + - Motor + xAxis: + - -40 + - 120 + - 6 + yAxis: + - 0 + - 850 + - 4 + xBins: + - iacCrankBins + - coolant + yBins: + - iacCrankSteps + size: [] + iacClosedLoop_curve: + title: Idle RPM Targets + labels: + - Coolant Temperature + - Motor + xAxis: + - -40 + - 120 + - 6 + yAxis: + - 0 + - 2000 + - 4 + xBins: + - iacBins + - coolant + yBins: + - iacCLValues + size: + - 450 + - 200 + rotaryTrailing_curve: + title: Rotary Trailing Split + labels: + - Engine load + - Split + xAxis: + - 0 + - '{ fuelLoadMax }' + - 5 + yAxis: + - 0 + - 40 + - 4 + xBins: + - rotarySplitBins + - fuelLoad + yBins: + - rotarySplitValues + size: [] + warmup_curve: + title: Warmup Enrichment (WUE) Curve + labels: + - Coolant + - WUE % + xAxis: + - -40 + - 210 + - 9 + yAxis: + - 0 + - 240 + - 6 + xBins: + - wueBins + - coolant + yBins: + - wueRates + size: [] + cranking_enrich_curve: + title: Cranking Enrichment Curve + labels: + - Coolant + - Fuel Modifier + xAxis: + - -40 + - 110 + - 9 + yAxis: + - 0 + - 400 + - 6 + xBins: + - crankingEnrichBins + - coolant + yBins: + - crankingEnrichValues + size: [] + priming_pw_curve: + title: Priming Pulsewidth + labels: + - Coolant + - PW + xAxis: + - -40 + - 110 + - 4 + yAxis: + - 0 + - 10 + - 4 + xBins: + - primeBins + - coolant + yBins: + - primePulse + size: [] + afterstart_enrichment_curve: + title: ASE - Enrichment % + labels: + - Coolant + - Enrichment + xAxis: + - -40 + - 110 + - 4 + yAxis: + - 0 + - 200 + - 4 + xBins: + - aseBins + - coolant + yBins: + - asePct + size: + - 50 + - 250 + afterstart_enrichment_time: + title: ASE - Duration + labels: + - Coolant + - Time + xAxis: + - -40 + - 110 + - 4 + yAxis: + - 0 + - 20 + - 4 + xBins: + - aseBins + - coolant + yBins: + - aseCount + size: + - 50 + - 250 + flex_fuel_curve: + title: Flex Fuel Adjustments + labels: + - Ethanol + - Fuel + xAxis: + - 0 + - 100 + - 10 + yAxis: + - 50 + - 250 + - 5 + xBins: + - flexFuelBins + - flex + yBins: + - flexFuelAdj + size: + - 400 + - 200 + flex_adv_curve: + title: Flex Timing Advance + labels: + - Ethanol + - Advance + xAxis: + - 0 + - 100 + - 10 + yAxis: + - 0 + - 50 + - 5 + xBins: + - flexAdvBins + - flex + yBins: + - flexAdvAdj + size: + - 400 + - 200 + flex_boost_curve: + title: Flex Boost Adjustments + labels: + - Ethanol + - Boost + xAxis: + - 0 + - 100 + - 10 + yAxis: + - -100 + - 200 + - 5 + xBins: + - flexBoostBins + - flex + yBins: + - flexBoostAdj + size: + - 400 + - 200 + knock_window_angle_curve: + title: Knock Window + labels: + - RPM + - Window Start + xAxis: + - 0 + - 8000 + - 9 + yAxis: + - -100 + - 100 + - 11 + xBins: + - knock_window_rpms + - rpm + yBins: + - knock_window_angle + size: + - 400 + - 200 + knock_window_duration_curve: + title: Knock Window Duration + labels: + - RPM + - Window Duration + xAxis: + - 0 + - 8000 + - 9 + yAxis: + - 0 + - 100 + - 10 + xBins: + - knock_window_rpms + - rpm + yBins: + - knock_window_dur + size: + - 400 + - 200 + oil_pressure_prot_curve: + title: Oil Pressure Protection + labels: + - RPM + - Minimum PSI + xAxis: + - 0 + - 8000 + - 9 + yAxis: + - 0 + - 150 + - 3 + xBins: + - oilPressureProtRPM + - rpm + yBins: + - oilPressureProtMins + size: + - 400 + - 200 + warmup_afr_curve: + title: Target Adjustment + labels: + - Coolant + - Offset + xAxis: + - -40 + - 210 + - 9 + yAxis: + - -4 + - 1 + - 5 + xBins: + - wueBins + - coolant + yBins: + - wueAFR + size: [] + warmup_analyzer_curve: + title: Warmup Enrichment + labels: + - Coolant + - Current WUE + - Coolant + - Recommended WUE + xAxis: + - -40 + - 210 + - 9 + yAxis: + - 100 + - 255 + - 6 + xBins: + - wueBins + - coolant + yBins: + - wueRecommended + size: [] + wmi_adv_curve: + title: WMI Timing Advance + labels: + - kPa + - Advance + xAxis: + - 0 + - 511 + - 20 + yAxis: + - 0 + - 50 + - 5 + xBins: + - wmiAdvBins + - map + yBins: + - wmiAdvAdj + size: + - 400 + - 200 +tables: + veTable1Tbl: + map: veTable1Map + title: VE Table + page: 2 + xBins: + - rpmBins + - rpm + yBins: + - fuelLoadBins + - fuelLoad + xyLabels: + - RPM + - 'Fuel Load:' + zBins: + - veTable + gridHeight: 2 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - (RICHER) + - (LEANER) + help: http://speeduino.com/wiki/index.php/Tuning + fuelTable2Tbl: + map: fuel2Map + title: Fuel Table 2 + page: 11 + xBins: + - fuelRPM2Bins + - rpm + yBins: + - fuelLoad2Bins + - fuelLoad2 + xyLabels: + - RPM + - 'Fuel Load:' + zBins: + - veTable2 + gridHeight: 2 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - (RICHER) + - (LEANER) + help: http://speeduino.com/wiki/index.php/Tuning + sparkTbl: + map: sparkMap + title: Ignition Advance Table + page: 3 + xBins: + - rpmBins2 + - rpm + yBins: + - mapBins1 + - ignLoad + xyLabels: + - RPM + - 'Ignition Load:' + zBins: + - advTable1 + gridHeight: 3 + gridOrient: [] + upDownLabel: + - ADVANCING + - RETARDING + spark2Tbl: + map: spark2Map + title: Second Ignition Advance Table + page: 14 + xBins: + - rpmBins3 + - rpm + yBins: + - mapBins2 + - ignLoad + xyLabels: + - RPM + - 'Ignition Load:' + zBins: + - advTable2 + gridHeight: 3 + gridOrient: [] + upDownLabel: + - ADVANCING + - RETARDING + afrTable1Tbl: + map: afrTable1Map + title: AFR Table + page: 5 + xBins: + - rpmBinsAFR + - rpm + yBins: + - loadBinsAFR + - fuelLoad + xyLabels: [] + zBins: + - afrTable + gridHeight: 1 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - RICHER + - LEANER + boostTbl: + map: boostMap + title: Boost Duty / Target + page: 8 + xBins: + - rpmBinsBoost + - rpm + yBins: + - tpsBinsBoost + - throttle + xyLabels: [] + zBins: + - boostTable + gridHeight: 3 + gridOrient: [] + upDownLabel: + - HIGHER + - LOWER + vvtTbl: + map: vvtMap + title: VVT control Table + page: 8 + xBins: + - rpmBinsVVT + - rpm + yBins: + - loadBinsVVT + - vvtLoad + xyLabels: + - RPM + - 'VVT Load:' + zBins: + - vvtTable + gridHeight: 3 + gridOrient: [] + upDownLabel: + - HIGHER + - LOWER + wmiTbl: + map: wmiMapMap + title: WMI control Table + page: 8 + xBins: + - rpmBinsWMI + - rpm + yBins: + - mapBinsWMI + - map + xyLabels: + - RPM + - 'WMI Load:' + zBins: + - wmiTable + gridHeight: 3 + gridOrient: [] + upDownLabel: + - HIGHER + - LOWER + stagingTbl: + map: stagingMap + title: Fuel Staging Table + page: 10 + xBins: + - rpmBinsStaging + - rpm + yBins: + - loadBinsStaging + - fuelLoad + xyLabels: [] + zBins: + - stagingTable + gridHeight: 3 + gridOrient: [] + upDownLabel: + - HIGHER + - LOWER + fuelTrimTable1Tbl: + map: fuelTrimTable1Map + title: Fuel trim Table 1 + page: 9 + xBins: + - fuelTrim1rpmBins + - rpm + yBins: + - fuelTrim1loadBins + - fuelLoad + xyLabels: [] + zBins: + - fuelTrim1Table + gridHeight: 2 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - (RICHER) + - (LEANER) + help: http://speeduino.com/wiki/index.php/Tuning + fuelTrimTable2Tbl: + map: fuelTrimTable2Map + title: Fuel trim Table 2 + page: 9 + xBins: + - fuelTrim2rpmBins + - rpm + yBins: + - fuelTrim2loadBins + - fuelLoad + xyLabels: [] + zBins: + - fuelTrim2Table + gridHeight: 2 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - (RICHER) + - (LEANER) + help: http://speeduino.com/wiki/index.php/Tuning + fuelTrimTable3Tbl: + map: fuelTrimTable3Map + title: Fuel trim Table 3 + page: 9 + xBins: + - fuelTrim3rpmBins + - rpm + yBins: + - fuelTrim3loadBins + - fuelLoad + xyLabels: [] + zBins: + - fuelTrim3Table + gridHeight: 2 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - (RICHER) + - (LEANER) + help: http://speeduino.com/wiki/index.php/Tuning + fuelTrimTable4Tbl: + map: fuelTrimTable4Map + title: Fuel trim Table 4 + page: 9 + xBins: + - fuelTrim4rpmBins + - rpm + yBins: + - fuelTrim4loadBins + - fuelLoad + xyLabels: [] + zBins: + - fuelTrim4Table + gridHeight: 2 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - (RICHER) + - (LEANER) + help: http://speeduino.com/wiki/index.php/Tuning +outputChannels: + ochGetCommand: + value: r\$tsCanId\x30%2o%2c + ochBlockSize: + value: '117' + secl: + type: scalar + size: U08 + offset: 0 + units: sec + scale: 1 + transform: 0 + status1: + type: scalar + size: U08 + offset: 1 + units: bits + scale: 1 + transform: 0 + inj1Status: + type: bits + size: U08 + offset: 1 + units: '' + scale: '' + transform: '' + inj2Status: + type: bits + size: U08 + offset: 1 + units: '' + scale: '' + transform: '' + inj3Status: + type: bits + size: U08 + offset: 1 + units: '' + scale: '' + transform: '' + inj4Status: + type: bits + size: U08 + offset: 1 + units: '' + scale: '' + transform: '' + DFCOOn: + type: bits + size: U08 + offset: 1 + units: '' + scale: '' + transform: '' + boostCutFuel: + type: bits + size: U08 + offset: 1 + units: '' + scale: '' + transform: '' + toothLog1Ready: + type: bits + size: U08 + offset: 1 + units: '' + scale: '' + transform: '' + toothLog2Ready: + type: bits + size: U08 + offset: 1 + units: '' + scale: '' + transform: '' + engine: + type: scalar + size: U08 + offset: 2 + units: bits + scale: 1 + transform: 0 + running: + type: bits + size: U08 + offset: 2 + units: '' + scale: '' + transform: '' + crank: + type: bits + size: U08 + offset: 2 + units: '' + scale: '' + transform: '' + ase: + type: bits + size: U08 + offset: 2 + units: '' + scale: '' + transform: '' + warmup: + type: bits + size: U08 + offset: 2 + units: '' + scale: '' + transform: '' + tpsaccaen: + type: bits + size: U08 + offset: 2 + units: '' + scale: '' + transform: '' + tpsaccden: + type: bits + size: U08 + offset: 2 + units: '' + scale: '' + transform: '' + mapaccaen: + type: bits + size: U08 + offset: 2 + units: '' + scale: '' + transform: '' + mapaccden: + type: bits + size: U08 + offset: 2 + units: '' + scale: '' + transform: '' + syncLossCounter: + type: scalar + size: U08 + offset: 3 + units: '' + scale: 1 + transform: 0 + map: + type: scalar + size: U16 + offset: 4 + units: kpa + scale: 1 + transform: 0 + iatRaw: + type: scalar + size: U08 + offset: 6 + units: °C + scale: 1 + transform: 0 + coolantRaw: + type: scalar + size: U08 + offset: 7 + units: °C + scale: 1 + transform: 0 + batCorrection: + type: scalar + size: U08 + offset: 8 + units: '%' + scale: 1 + transform: 0 + batteryVoltage: + type: scalar + size: U08 + offset: 9 + units: V + scale: 0.1 + transform: 0 + afr: + type: scalar + size: U08 + offset: 10 + units: O2 + scale: 0.1 + transform: 0 + egoCorrection: + type: scalar + size: U08 + offset: 11 + units: '%' + scale: 1 + transform: 0 + airCorrection: + type: scalar + size: U08 + offset: 12 + units: '%' + scale: 1 + transform: 0 + warmupEnrich: + type: scalar + size: U08 + offset: 13 + units: '%' + scale: 1 + transform: 0 + rpm: + type: scalar + size: U16 + offset: 14 + units: rpm + scale: 1 + transform: 0 + accelEnrich: + type: scalar + size: U08 + offset: 16 + units: '%' + scale: 2 + transform: 0 + gammaEnrich: + type: scalar + size: U16 + offset: 17 + units: '%' + scale: 1 + transform: 0 + VE1: + type: scalar + size: U08 + offset: 19 + units: '%' + scale: 1 + transform: 0 + VE2: + type: scalar + size: U08 + offset: 20 + units: '%' + scale: 1 + transform: 0 + afrTarget: + type: scalar + size: U08 + offset: 21 + units: O2 + scale: 0.1 + transform: 0 + TPSdot: + type: scalar + size: U08 + offset: 22 + units: '%/s' + scale: 10 + transform: 0 + advance: + type: scalar + size: S08 + offset: 23 + units: deg + scale: 1 + transform: 0 + tps: + type: scalar + size: U08 + offset: 24 + units: '%' + scale: 1 + transform: 0 + loopsPerSecond: + type: scalar + size: U16 + offset: 25 + units: loops + scale: 1 + transform: 0 + freeRAM: + type: scalar + size: U16 + offset: 27 + units: bytes + scale: 1 + transform: 0 + boostTarget: + type: scalar + size: U08 + offset: 29 + units: kPa + scale: 2 + transform: 0 + boostDuty: + type: scalar + size: U08 + offset: 30 + units: '%' + scale: 1 + transform: 0 + status2: + type: scalar + size: U08 + offset: 31 + units: bits + scale: 1 + transform: 0 + launchHard: + type: bits + size: U08 + offset: 31 + units: '' + scale: '' + transform: '' + launchSoft: + type: bits + size: U08 + offset: 31 + units: '' + scale: '' + transform: '' + hardLimitOn: + type: bits + size: U08 + offset: 31 + units: '' + scale: '' + transform: '' + softlimitOn: + type: bits + size: U08 + offset: 31 + units: '' + scale: '' + transform: '' + boostCutSpark: + type: bits + size: U08 + offset: 31 + units: '' + scale: '' + transform: '' + error: + type: bits + size: U08 + offset: 31 + units: '' + scale: '' + transform: '' + idleControlOn: + type: bits + size: U08 + offset: 31 + units: '' + scale: '' + transform: '' + sync: + type: bits + size: U08 + offset: 31 + units: '' + scale: '' + transform: '' + rpmDOT: + type: scalar + size: S16 + offset: 32 + units: rpm/s + scale: 1 + transform: 0 + flex: + type: scalar + size: U08 + offset: 34 + units: '%' + scale: 1 + transform: 0 + flexFuelCor: + type: scalar + size: U08 + offset: 35 + units: '%' + scale: 1 + transform: 0 + flexIgnCor: + type: scalar + size: S08 + offset: 36 + units: deg + scale: 1 + transform: 0 + idleLoad: + type: scalar + size: U08 + offset: 37 + units: '{ bitStringValue( idleUnits , iacAlgorithm ) }' + scale: >- + { (iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 || + iacMaxSteps <= 255) ? 1.000 : 2.000 } + transform: 0 + testoutputs: + type: scalar + size: U08 + offset: 38 + units: bits + scale: 1 + transform: 0 + testenabled: + type: bits + size: U08 + offset: 38 + units: '' + scale: '' + transform: '' + testactive: + type: bits + size: U08 + offset: 38 + units: '' + scale: '' + transform: '' + afr2: + type: scalar + size: U08 + offset: 39 + units: O2 + scale: 0.1 + transform: 0 + baro: + type: scalar + size: U08 + offset: 40 + units: kpa + scale: 1 + transform: 0 + auxin_gauge0: + type: scalar + size: U16 + offset: 41 + units: '' + scale: 1 + transform: 0 + auxin_gauge1: + type: scalar + size: U16 + offset: 43 + units: '' + scale: 1 + transform: 0 + auxin_gauge2: + type: scalar + size: U16 + offset: 45 + units: '' + scale: 1 + transform: 0 + auxin_gauge3: + type: scalar + size: U16 + offset: 47 + units: '' + scale: 1 + transform: 0 + auxin_gauge4: + type: scalar + size: U16 + offset: 49 + units: '' + scale: 1 + transform: 0 + auxin_gauge5: + type: scalar + size: U16 + offset: 51 + units: '' + scale: 1 + transform: 0 + auxin_gauge6: + type: scalar + size: U16 + offset: 53 + units: '' + scale: 1 + transform: 0 + auxin_gauge7: + type: scalar + size: U16 + offset: 55 + units: '' + scale: 1 + transform: 0 + auxin_gauge8: + type: scalar + size: U16 + offset: 57 + units: '' + scale: 1 + transform: 0 + auxin_gauge9: + type: scalar + size: U16 + offset: 59 + units: '' + scale: 1 + transform: 0 + auxin_gauge10: + type: scalar + size: U16 + offset: 61 + units: '' + scale: 1 + transform: 0 + auxin_gauge11: + type: scalar + size: U16 + offset: 63 + units: '' + scale: 1 + transform: 0 + auxin_gauge12: + type: scalar + size: U16 + offset: 65 + units: '' + scale: 1 + transform: 0 + auxin_gauge13: + type: scalar + size: U16 + offset: 67 + units: '' + scale: 1 + transform: 0 + auxin_gauge14: + type: scalar + size: U16 + offset: 69 + units: '' + scale: 1 + transform: 0 + auxin_gauge15: + type: scalar + size: U16 + offset: 71 + units: '' + scale: 1 + transform: 0 + tpsADC: + type: scalar + size: U08 + offset: 73 + units: ADC + scale: 1 + transform: 0 + errors: + type: scalar + size: U08 + offset: 74 + units: bits + scale: 1 + transform: 0 + errorNum: + type: bits + size: U08 + offset: 74 + units: '' + scale: '' + transform: '' + currentError: + type: bits + size: U08 + offset: 74 + units: '' + scale: '' + transform: '' + pulseWidth: + type: scalar + size: U16 + offset: 75 + units: ms + scale: 0.001 + transform: 0 + pulseWidth2: + type: scalar + size: U16 + offset: 77 + units: ms + scale: 0.001 + transform: 0 + pulseWidth3: + type: scalar + size: U16 + offset: 79 + units: ms + scale: 0.001 + transform: 0 + pulseWidth4: + type: scalar + size: U16 + offset: 81 + units: ms + scale: 0.001 + transform: 0 + status3: + type: scalar + size: U08 + offset: 83 + units: bits + scale: 1 + transform: 0 + resetLockOn: + type: bits + size: U08 + offset: 83 + units: '' + scale: '' + transform: '' + nitrousOn: + type: bits + size: U08 + offset: 83 + units: '' + scale: '' + transform: '' + fuel2Active: + type: bits + size: U08 + offset: 83 + units: '' + scale: '' + transform: '' + vssRefresh: + type: bits + size: U08 + offset: 83 + units: '' + scale: '' + transform: '' + halfSync: + type: bits + size: U08 + offset: 83 + units: '' + scale: '' + transform: '' + nSquirts: + type: bits + size: U08 + offset: 83 + units: '' + scale: '' + transform: '' + engineProtectStatus: + type: scalar + size: U08 + offset: 84 + units: bits + scale: 1 + transform: 0 + engineProtectRPM: + type: bits + size: U08 + offset: 84 + units: '' + scale: '' + transform: '' + engineProtectMAP: + type: bits + size: U08 + offset: 84 + units: '' + scale: '' + transform: '' + engineProtectOil: + type: bits + size: U08 + offset: 84 + units: '' + scale: '' + transform: '' + engineProtectAFR: + type: bits + size: U08 + offset: 84 + units: '' + scale: '' + transform: '' + engineProtectOth: + type: bits + size: U08 + offset: 84 + units: '' + scale: '' + transform: '' + IOError: + type: bits + size: U08 + offset: 84 + units: '' + scale: '' + transform: '' + unused1: + type: scalar + size: U08 + offset: 84 + units: ADC + scale: 1 + transform: 0 + fuelLoad: + type: scalar + size: S16 + offset: 85 + units: '{ bitStringValue( algorithmUnits , algorithm ) }' + scale: 1 + transform: 0 + ignLoad: + type: scalar + size: S16 + offset: 87 + units: '{ bitStringValue( algorithmUnits , ignAlgorithm ) }' + scale: 1 + transform: 0 + dwell: + type: scalar + size: U16 + offset: 89 + units: ms + scale: 0.001 + transform: 0 + CLIdleTarget: + type: scalar + size: U08 + offset: 91 + units: RPM + scale: 10 + transform: 0 + MAPdot: + type: scalar + size: U08 + offset: 92 + units: kPa/s + scale: 10 + transform: 0 + vvt1Angle: + type: scalar + size: S08 + offset: 93 + units: deg + scale: 1 + transform: 0 + vvt1Target: + type: scalar + size: U08 + offset: 94 + units: deg + scale: 1 + transform: 0 + vvt1Duty: + type: scalar + size: U08 + offset: 95 + units: '%' + scale: 1 + transform: 0 + flexBoostCor: + type: scalar + size: S16 + offset: 96 + units: kPa + scale: 1 + transform: 0 + baroCorrection: + type: scalar + size: U08 + offset: 98 + units: '%' + scale: 1 + transform: 0 + veCurr: + type: scalar + size: U08 + offset: 99 + units: '%' + scale: 1 + transform: 0 + ASECurr: + type: scalar + size: U08 + offset: 100 + units: '%' + scale: 1 + transform: 0 + vss: + type: scalar + size: U16 + offset: 101 + units: km/h + scale: 1 + transform: 0 + gear: + type: scalar + size: U08 + offset: 103 + units: '' + scale: 1 + transform: 0 + fuelPressure: + type: scalar + size: U08 + offset: 104 + units: PSI + scale: 1 + transform: 0 + oilPressure: + type: scalar + size: U08 + offset: 105 + units: PSI + scale: 1 + transform: 0 + wmiPW: + type: scalar + size: U08 + offset: 106 + units: '%' + scale: 1 + transform: 0 + wmiEmpty: + type: scalar + size: U08 + offset: 107 + units: bits + scale: 1 + transform: 0 + wmiEmptyBit: + type: bits + size: U08 + offset: 107 + units: '' + scale: '' + transform: '' + vvt2Angle: + type: scalar + size: S08 + offset: 108 + units: deg + scale: 1 + transform: 0 + vvt2Target: + type: scalar + size: U08 + offset: 109 + units: deg + scale: 1 + transform: 0 + vvt2Duty: + type: scalar + size: U08 + offset: 110 + units: '%' + scale: 1 + transform: 0 + outputsStatus0: + type: bits + size: U08 + offset: 111 + units: '' + scale: '' + transform: '' + outputsStatus1: + type: bits + size: U08 + offset: 111 + units: '' + scale: '' + transform: '' + outputsStatus2: + type: bits + size: U08 + offset: 111 + units: '' + scale: '' + transform: '' + outputsStatus3: + type: bits + size: U08 + offset: 111 + units: '' + scale: '' + transform: '' + outputsStatus4: + type: bits + size: U08 + offset: 111 + units: '' + scale: '' + transform: '' + outputsStatus5: + type: bits + size: U08 + offset: 111 + units: '' + scale: '' + transform: '' + outputsStatus6: + type: bits + size: U08 + offset: 111 + units: '' + scale: '' + transform: '' + outputsStatus7: + type: bits + size: U08 + offset: 111 + units: '' + scale: '' + transform: '' + fuelTempRaw: + type: scalar + size: U08 + offset: 112 + units: °C + scale: 1 + transform: 0 + fuelTempCor: + type: scalar + size: U08 + offset: 113 + units: '%' + scale: 1 + transform: 0 + advance1: + type: scalar + size: U08 + offset: 114 + units: '%' + scale: 1 + transform: 0 + advance2: + type: scalar + size: U08 + offset: 115 + units: '%' + scale: 1 + transform: 0 + unused116: + type: scalar + size: U08 + offset: 116 + units: '' + scale: 1 + transform: 0 + coolant: + value: '{ (coolantRaw - 40) * 1.8 + 32 }' + iat: + value: '{ (iatRaw - 40) * 1.8 + 32 }' + fuelTemp: + value: '{ (fuelTempRaw - 40) * 1.8 + 32 }' + time: + value: '{ timeNow }' + seconds: + value: '{ secl }' + throttle: + value: '{ tps }' + revolutionTime: + value: '{ rpm ? ( 60000.0 / rpm) : 0 }' + strokeMultipler: + value: '{ twoStroke == 1 ? 1 : 2 }' + cycleTime: + value: '{ revolutionTime * strokeMultipler }' + pulseLimit: + value: '{ cycleTime / nSquirts }' + nFuelChannels: + value: '{ arrayValue( array.boardFuelOutputs, pinLayout ) }' + nIgnChannels: + value: '{ arrayValue( array.boardIgnOutputs, pinLayout ) }' + sequentialFuelAvailable: + value: '{ nCylinders <= nFuelChannels }' + sequentialIgnitionAvailable: + value: '{ nCylinders <= nIgnChannels }' + dutyCycle: + value: '{ rpm ? ( 100.0*pulseWidth/pulseLimit ) : 0 }' + stgDutyCycle: + value: '{ rpm && stagingEnabled ? ( 100.0*pulseWidth3/pulseLimit ) : 0 }' + boostCutOut: + value: '{ boostCutFuel || boostCutSpark }' + lambda: + value: '{ afr / stoich }' + lambdaTarget: + value: '{ afrTarget / stoich }' + MAPxRPM: + value: '{ rpm * map }' + loopsPerRev: + value: '{ loopsPerSecond / (rpm / 60) }' + req_fuel: + value: '{ reqFuel }' + bat_correction: + value: '{ battVCorMode ? 100 : batCorrection }' + inj_open: + value: '{ battVCorMode ? ((injOpen * batCorrection) / 100) : injOpen }' + ase_enrich: + value: '{ ASECurr }' + map_multiply_amt: + value: '{ multiplyMAP ? map : 100 }' + map_bar: + value: '{ (map - baro) / 101.33 }' + map_psi: + value: '{ (map - baro) * 0.145038 }' + map_inhg: + value: '{ (baro - map) * 0.2953007 }' + map_vacboost: + value: '{ map < baro ? -map_inhg : map_psi }' + vssMPH: + value: '{ vss / 1.60934 }' + fuelLoadMax: + value: '{ (algorithm == 0 || algorithm == 2) ? 511 : 100 }' + ignLoadMax: + value: '{ (ignAlgorithm == 0 || ignAlgorithm == 2) ? 511 : 100 }' + fuelLoad2: + value: >- + { fuel2Algorithm == 0 ? map : fuel2Algorithm == 1 ? tps : fuel2Algorithm + == 2 ? 0 : 0 } + vvtLoad: + value: '{ (vvtLoadSource == 0) ? map : tps }' + boostTableLimit: + value: '{ boostType == 0 ? 100 : 511 }' + CLIdleDelta: + value: '{ CLIdleTarget - rpm }' +help: + nCylinders: Cylinder count + alternate: >- + Whether or not the injectors should be fired at the same time. This setting + is ignored when Sequential is selected below, however it will still affect + the req_fuel value. + engineType: >- + Engines with an equal number of degrees between all firings (This is most + engines) should select Even fire. Some 2 and 6 cylinder engines are Odd fire + however. + twoStroke: Four-Stroke (most engines), Two-stroke. + nInjectors: Number of primary injectors. + mapSample: >- + The method used for calculating the MAP reading\nFor 1-2 Cylinder engines, + Cycle Minimum is recommended.\nFor more than 2 cylinders Cycle Average is + recommended + stoich: >- + The stoichiometric ration of the fuel being used. For flex fuel, choose the + primary fuel + injLayout: >- + The injector layout and timing to be used. Options are: \n 1. Paired - 2 + injectors per output. Outputs active is equal to half the number of + cylinders. Outputs are timed over 1 crank revolution. \n 2. Semi-sequential: + Same as paired except that injector channels are mirrored (1&4, 2&3) meaning + the number of outputs used are equal to the number of cylinders. Only valid + for 4 cylinders or less. \n 3. Banked: 2 outputs only used. \n 4. + Sequential: 1 injector per output and outputs used equals the number of + cylinders. Injection is timed over full cycle. + TrigPattern: The type of input trigger decoder to be used. + useResync: >- + If enabled, sync will be rechecked once every full cycle from the cam input. + This is good for accuracy, however if your cam input is noisy then this can + cause issues. + trigPatternSec: Cam mode/type also known as Secondary Trigger Pattern. + numTeeth: Number of teeth on Primary Wheel. + TrigSpeed: Primary trigger speed. + missingTeeth: Number of Missing teeth on Primary Wheel. + TrigAng: >- + The Angle ATDC when tooth No:1 on the primary wheel passes the primary + sensor. The range of this field is -360 to +360 degrees. + TrigAngMul: >- + A multiplier used by non-360 degree tooth wheels (i.e. Wheels where the + tooth count doesn't divide evenly into 360. Usage: (360 * ) / + tooth_count = Whole number + SkipCycles: >- + The number of revolutions that will be skipped during cranking before the + injectors and coils are fired. + TrigEdge: The Trigger edge of the primary sensor.\nLeading.\nTrailing. + TrigEdgeSec: The Trigger edge of the secondary (Cam) sensor.\nLeading.\nTrailing. + TrigFilter: >- + Tuning of the trigger filter algorithm. The more aggressive the setting, the + more noise will be removed, however this increases the chance of some true + readings being filtered out (False positive). Medium is safe for most + setups. Only select 'Aggressive' if no other options are working + sparkMode: >- + Wasted Spark: Ignition outputs are on the channels <= half the number of + cylinders. Eg 4 cylinder outputs on IGN1 and IGN2.\nSingle Channel: All + ignition pulses are output on IGN1.\nWasted COP: Ignition pulses are output + on all ignition channels up to the number of cylinders. Eg 4 cylinder + outputs on all ignition channels. Note that your board needs to have same + number of igntion outputs as cylinders to be able to run this + IgInv: >- + Whether the spark fires when the ignition signal goes high or goes low. + Nearly all ignition systems use 'Going Low' but please verify this as damage + to coils can result from the incorrect selection. (NOTE: THIS IS NOT + MEGASQUIRT. THIS SETTING IS USUALLY THE OPPOSITE OF WHAT THEY USE!) + sparkDur: The duration of the spark at full dwell. Typically around 1ms + fixAngEnable: >- + If enabled, timing will be locked/fixed and the ignition map will be + ignored. Note that this value will be overriden by the fixed cranking value + when cranking + FixAng: Timing will be locked at this value if the above is enabled + crankRPM: >- + The cranking RPM threshold. When RPM is lower than this value (and above 0) + the system will be considered to be cranking + tpsflood: >- + Keep throttle over this value to disable the priming pulse and cranking + fuel. Used to prevent flood or clear already flooded engine + fanInv: 0 + fanHyster: >- + The number of degrees of hysteresis to be used in controlling the fan. + Recommended values are between 2 and 5 + fanWhenCranking: >- + Whether the fan should be disabled or continue running when the engine is + cranking + fanWhenOff: Whether the fan will continue to run when the engine is turned off + fanPin: >- + The Arduino pin that the fan control signal will output on. This is NOT + necesarrily the same as the connector pin on any particlar board + fanSP: The trigger temperature for the fan. Fan will be enabled above this temp + vssPulsesPerKm: The number of pulses on the VSS signal per KM/Mile + vssSmoothing: >- + A smoothing factor to help reduce noise in the VSS signal. Typical values + are between 0 and 50 + aeTime: The duration of the acceleration enrichment + aseTaperTime: Transition time to disable ASE + iacChannels: >- + The number of output channels used for PWM valves. Select 1 for 2-wire + valves or 2 for 3-wire valves. + iacStepTime: >- + Duration of each stepping pulse. Values that are too low can cause the motor + to behave erratically or not at all. See the manual for suggested step times + iacCoolTime: >- + Cool time between each step. Set to zero if you don't want any cooling at + all + iacStepHome: >- + Homing steps to perform on startup. Must be greater than the fully open + steps value + iacMaxSteps: >- + Maximum number of steps the IAC can be moved away from the home position. + Should always be less than Homing steps. + iacStepHyster: The minimum number of steps to move in any one go. + iacAlgorithm: >- + Selects method of idle control.\nNone = no idle control valve.\nOn/Off + valve.\nPWM valve (2,3 wire).\nStepper Valve (4,6,8 wire). + iacPWMdir: >- + Normal PWM valves increase RPM with higher duty. If RPM decreases with + higher duty then select Reverse + iacCLminDuty: >- + When using closed loop idle control, this is the minimum duty cycle that the + PID loop will allow. Combined with the maximum value, this specifies the + working range of your idle valve + iacCLmaxDuty: >- + When using closed loop idle control, this is the maximum duty cycle that the + PID loop will allow. Combined with the minimum value, this specifies the + working range of your idle valve + iacTPSlimit: >- + When using OL+CL idle control, if the TPS is higher than this value closed + loop idle resets the integeral of the PID (To prevent RPM dips comming back + to idle) + iacRPMlimitHysteresis: >- + When using closed loop idle control, if the closed loop Target RPM + this + value is higher than the actual RPM, closed loop idle resets the integeral + of the PID (To prevent RPM dips comming back to idle) + iacFastTemp: >- + Below this temperature, the idle output will be high (On). Above this + temperature, it will turn off. + idleUpPolarity: >- + Normal polarity is a ground switch where an earthed signal activates the + Idle Up. The internal pullup will be enabled with Normal polarity. \n + Inverted may be used if a 5v signal is used to enable the Idle Up. + CTPSPolarity: >- + Normal polarity is a ground switch where an earthed signal activates the + closed throttle position. The internal pullup will be enabled with Normal + polarity. \n Inverted may be used if a 5v signal is used to enable the + closed throttle position. + idleUpAdder: >- + The amount (In either Duty Cycle % or Steps (Depending on the idle control + method in use), that the idle control will increase by when Idle Up is + active + idleAdvEnabled: >- + Added setting adds curve values to current spark table values when user + defined idle is active. \n Switched setting overrides spark table values and + uses curve values for idle ignition timing. + idleAdvAlgorithm: >- + Use Throttle position sensor (TPS) or closed throttle position sensor (CTPS) + to detect idle state. + idleAdvDelay: >- + The number of seconds after sync is achieved before the idle advance control + begins + idleTaperTime: Soft time transition from crank to running PWM targets + oddfire2: >- + The ATDC angle of channel 2 for oddfire engines. This is relative to the TDC + angle of channel 1 + oddfire3: >- + The ATDC angle of channel 3 for oddfire engines. This is relative to the TDC + angle of channel 1 (NOT channel 2) + oddfire4: >- + The ATDC angle of channel 4 for oddfire engines. This is relative to the TDC + angle of channel 1 (NOT channel 3) + aeColdPct: >- + Acceleration enrichment adjustment for cold engine. Cold adjustment % is + tapered between start and end temperatures.\n100% = no adjustment. + aeColdTaperMin: >- + AE cold adjustment taper start temperature. When coolant is below this + value, full cold adjustment is applied. + aeColdTaperMax: >- + AE cold adjustment taper end temperature. When coolant is above this value, + no cold adjustment is applied. + dfcoRPM: >- + The RPM above which DFCO will be active. Typically set a few hundred RPM + above maximum idle speed + dfcoHyster: >- + Hysteresis for DFCO RPM. 200-300 RPM is typical for this, however a higher + value may be needed if the RPM is fluctuating around the cutout speed + dfcoTPSThresh: >- + The TPS value below which DFCO will be active. Typical value is 5%-10%, but + higher may be needed if TPS signal is noisy + dfcoDelay: Delay for activate DFCO. + dfcoMinCLT: Minimum temperature to enable DFCO. + launchPin: >- + The ARDUINO pin that the clutch switch is connected to. This is NOT the pin + on the connector, but the pin it relates to on the arduino + launchHiLo: >- + Whether the signal is High or Low when the clutch pedal is engaged. For a + ground switching input (Most clutch switches), this should be LOW + lnchPullRes: >- + Whether the internal pullup resistor is enabled or left floating. For a + ground switching input (Most clutch switches), select Pullup. For a 0v-5v + input, select Floating + ignBypassPin: >- + The ARDUINO pin that the ignition bypass is connected to. This is NOT the + pin on the connector, but the pin it relates to on the arduino + ignBypassEnable: >- + If turned on, a ground signal will be output during cranking on the + specified pin. This is used to bypass the Speeduino ignition control during + cranking. + ignCranklock: >- + On certain low resolution ignition patterns, the cranking timing can be + locked to occur when a pulse is recieved. + multiplyMAP: >- + If enabled, the MAP reading is included directly into the pulsewidth + calculation by multiplying the VE lookup value by the MAP:Baro ratio. This + results in a flatter VE table that can be easier to tune in some instances. + VE table must be retuned when this value is changed. + legacyMAP: >- + Use the legacy method of reading the MAP sensor that was used prior to the + 201905 firmware. This should ONLY be enabled if you are upgrading from a + firmware earlier than this + includeAFR: >- + When enabled, the current AFR reading is incorporated directly in the + pulsewidth calculation as a percentage of the current target ratio. VE table + must be retuned when this value is changed. + incorporateAFR: >- + When enabled, the AFR stoich/AFR target -ratio is incorporated directly in + the pulsewidth calculation. When enabled, AFR target table affects + pulsewidth even with EGO disabled. VE table must be retuned when this value + is changed. + useExtBaro: >- + By Default, Speeduino will measure barometric pressure upon startup. + Optionally however, a 2nd pressure sensor can be used to perform live + barometric readings whilst the system is on. + flexEnabled: Turns on readings from the Flex sensor and enables the below adjustments + flexFreqLow: >- + The frequency of the sensor at 0% ethanol (50Hz for standard GM/Continental + sensor) + flexFreqHigh: >- + The frequency of the sensor at 100% ethanol (150Hz for standard + GM/Continental sensor) + flexFuelAdj: >- + Fuel % to be used for the current ethanol % (Typically 100% @ 0%, 163% @ + 100%) + flexAdvAdj: >- + Additional advance (in degrees) for the current ethanol % (Typically 0 @ 0%, + 10-20 @ 100%) + flexBoostAdj: >- + Adjustment, in kPa, to the boost target for the current ethanol %. Negative + values are allowed to lower boost at lower ethanol % if necessary. + n2o_arming_pin: Pin that the nitrous arming/enagement switch is on. + n2o_pin_polarity: >- + Whether Nitrous is active (Armed) when the pin is LOW or HIGH. If LOW is + selected, the internal pullup will be used. + flatSArm: >- + The RPM switch point that determines whether an eganged clutch is for launch + control or flat shift. Below this figure, an engaged clutch is considered to + be for launch, above this figure an active clutch input will be considered a + flat shift. This should be set at least several hundred RPM above idle + flatSSoftWin: >- + The number of RPM below the flat shift point where the softlimit will be + applied (aka Soft limit window). Recommended values are 200-1000 + flatSRetard: >- + The absolute timing (BTDC) that will be used when within the soft limit + window + engineProtectType: >- + Whether the engine protect an rev limiter will cut the fuel, the ignition or + both + hardCutType: >- + How the cuts should be performed for rev/launch limits. Full cut will stop + all fuel/ignition events, Rolling cut will step through all ignition + outputs, only cutting a limited number per revolution + SoftLimitMode: >- + Fixed: the soft limiter will retard the ignition advance to the specified + value.\nRelative: current timing advance will be retarted by the specified + amount + HardRevLim: >- + The hard rev limit is the point that the fuel or ignition (or both) will be + cut completely to reduce increasing RPMs + engineProtectMaxRPM: >- + The RPM point that engine protections will engage from. Below this RPM + value, engine protections will NOT be active + fuel2InputPin: >- + The Arduino pin that is being used to trigger the second fuel table to be + active + fuel2InputPolarity: >- + Whether the 2nd fuel table should be active when input is high or low. This + should be LOW for a typical ground switching input + fuel2InputPullup: >- + Whether to use the built in PULLUP for the switching input. This should be + Yes for a typical ground switching input + enable_secondarySerial: >- + This Enables the secondary serial port . Secondary serial is serial3 on + mega2560 processor, and Serial2 on STM32 and Teensy processor + cltAdvValues: >- + This curve can be used to advance ignition timing when engine is warming up. + This can also be used to warm up the catalytic converters in cold start by + retarding timing. Or even as safety feature to retard timing when engine is + too hot to prevent knock. + true_address: This is the 11bit Can address of the Speeduino ECU + realtime_base_address: >- + This is the 11bit CAN address of the realtime data broadcast from the + Speeduino ECU. This MUST be at least 0x16 greater than the true address + AUXin00Alias: The Ascii alias asigned to Aux input channel 0 + AUXin01Alias: The Ascii alias asigned to Aux input channel 1 + AUXin02Alias: The Ascii alias asigned to Aux input channel 2 + AUXin03Alias: The Ascii alias asigned to Aux input channel 3 + AUXin04Alias: The Ascii alias asigned to Aux input channel 4 + AUXin05Alias: The Ascii alias asigned to Aux input channel 5 + AUXin06Alias: The Ascii alias asigned to Aux input channel 6 + AUXin07Alias: The Ascii alias asigned to Aux input channel 7 + AUXin08Alias: The Ascii alias asigned to Aux input channel 8 + AUXin09Alias: The Ascii alias asigned to Aux input channel 9 + AUXin10Alias: The Ascii alias asigned to Aux input channel 10 + AUXin11Alias: The Ascii alias asigned to Aux input channel 11 + AUXin12Alias: The Ascii alias asigned to Aux input channel 12 + AUXin13Alias: The Ascii alias asigned to Aux input channel 13 + AUXin14Alias: The Ascii alias asigned to Aux input channel 14 + AUXin15Alias: The Ascii alias asigned to Aux input channel 15 + caninput_sel0a: This Enables local analog/digital on input channel 0 + caninput_sel1a: This Enables local analog/digital on input channel 1 + caninput_sel2a: This Enables local analog/digital on input channel 2 + caninput_sel3a: This Enables local analog/digital on input channel 3 + caninput_sel4a: This Enables local analog/digital on input channel 4 + caninput_sel5a: This Enables local analog/digital on input channel 5 + caninput_sel6a: This Enables local analog/digital on input channel 6 + caninput_sel7a: This Enables local analog/digital on input channel 7 + caninput_sel8a: This Enables local analog/digital on input channel 8 + caninput_sel9a: This Enables local analog/digital on input channel 9 + caninput_sel10a: This Enables local analog/digital on input channel 10 + caninput_sel11a: This Enables local analog/digital on input channel 11 + caninput_sel12a: This Enables local analog/digital on input channel 12 + caninput_sel13a: This Enables local analog/digital on input channel 13 + caninput_sel14a: This Enables local analog/digital on input channel 14 + caninput_sel15a: This Enables local analog/digital on input channel 15 + fpPrime: Duration to power fuel pump on to ensure fuel line pressure. + primingDelay: >- + Delay to priming after fuel pump is on, used to wait fuel line get + pressurized correctly. + idleUpOutputEnabled: >- + Enable an output that is toggled by the idle up input pin. An example use is + driving an AC fan relay. + idleUpOutputInv: >- + No = When the idle up pin is high the output is active (grounding), when the + idle up pin is low the output is inactive. Yes = When the idle up pin is + high the output is inactive, when the idle up pin is low the output is + active (grounding). + crankingEnrichTaper: >- + Taper time from cranking enrichment to ASE or run (after engine has + started). + lnchCtrlTPS: The minimum RPM that launch control will engage at + lnchSoftLim: >- + The RPM point that the launch control ignition timing adjustment will engage + (When under launch conditions). Should be below the hard rev limit RPM + lnchRetard: >- + When under launch conditions (Eg Clutch engaged) the ignition timing will be + set to this when above the Soft rev limit. This will override any other + ignition modifiers + lnchHardLim: >- + The RPM point above which the fuel and/or ignition will be cut when launch + is active (Eg Clutch engaged). See the Engine Protection dialog to set + whether it is fuel, ignition or both that are cut. + lnchFuelAdd: >- + The additional fuel % that will be added during Soft and Hard launch + conditions. Set to 0 for no fuel modifier. + caninput_sel0b: >- + This Enables External CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 0 + caninput_sel1b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 1 + caninput_sel2b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 2 + caninput_sel3b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 3 + caninput_sel4b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 4 + caninput_sel5b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 5 + caninput_sel6b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 6 + caninput_sel7b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 7 + caninput_sel8b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 8 + caninput_sel9b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 9 + caninput_sel10b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 10 + caninput_sel11b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 11 + caninput_sel12b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 12 + caninput_sel13b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 13 + caninput_sel14b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 14 + caninput_sel15b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 15 + caninput_source_can_address0: The source 11bit CAN address of the data for channel 0 + caninput_source_can_address1: The source 11bit CAN address of the data for channel 1 + caninput_source_can_address2: The source 11bit CAN address of the data for channel 2 + caninput_source_can_address3: The source 11bit CAN address of the data for channel 3 + caninput_source_can_address4: The source 11bit CAN address of the data for channel 4 + caninput_source_can_address5: The source 11bit CAN address of the data for channel 5 + caninput_source_can_address6: The source 11bit CAN address of the data for channel 6 + caninput_source_can_address7: The source 11bit CAN address of the data for channel 7 + caninput_source_can_address8: The source 11bit CAN address of the data for channel 8 + caninput_source_can_address9: The source 11bit CAN address of the data for channel 9 + caninput_source_can_address10: The source 11bit CAN address of the data for channel 10 + caninput_source_can_address11: The source 11bit CAN address of the data for channel 11 + caninput_source_can_address12: The source 11bit CAN address of the data for channel 12 + caninput_source_can_address13: The source 11bit CAN address of the data for channel 13 + caninput_source_can_address14: The source 11bit CAN address of the data for channel 14 + caninput_source_can_address15: The source 11bit CAN address of the data for channel 15 + caninput_source_start_byte0: The Starting byte the data begins at for channel 0 + caninput_source_start_byte1: The Starting byte the data begins at for channel 1 + caninput_source_start_byte2: The Starting byte the data begins at for channel 2 + caninput_source_start_byte3: The Starting byte the data begins at for channel 3 + caninput_source_start_byte4: The Starting byte the data begins at for channel 4 + caninput_source_start_byte5: The Starting byte the data begins at for channel 5 + caninput_source_start_byte6: The Starting byte the data begins at for channel 6 + caninput_source_start_byte7: The Starting byte the data begins at for channel 7 + caninput_source_start_byte8: The Starting byte the data begins at for channel 8 + caninput_source_start_byte9: The Starting byte the data begins at for channel 9 + caninput_source_start_byte10: The Starting byte the data begins at for channel 10 + caninput_source_start_byte11: The Starting byte the data begins at for channel 11 + caninput_source_start_byte12: The Starting byte the data begins at for channel 12 + caninput_source_start_byte13: The Starting byte the data begins at for channel 13 + caninput_source_start_byte14: The Starting byte the data begins at for channel 14 + caninput_source_start_byte15: The Starting byte the data begins at for channel 15 + caninput_source_num_bytes0: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes1: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes2: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes3: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes4: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes5: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes6: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes7: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes8: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes9: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes10: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes11: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes12: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes13: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes14: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes15: >- + The number of bytes the data is made from starting at selected start byte + number + cmdEnableTestMode: >- + Click this to enable test mode. This will not be available if the engine is + running + cmdStopTestMode: Click this to disable test mode + cmdtestinj150dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestinj250dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestinj350dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestinj450dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestinj550dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestinj650dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestinj750dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestinj850dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestspk150dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestspk250dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestspk350dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestspk450dc: This will cycle the output at 50% Duty cycle at a 1s interval + ADCFILTER_TPS: 'Recommended value: 50' + ADCFILTER_CLT: 'Recommended value: 180' + ADCFILTER_IAT: 'Recommended value: 180' + ADCFILTER_O2: 'Recommended value: 128' + ADCFILTER_BAT: 'Recommended value: 128' + ADCFILTER_MAP: >- + This setting is only available when using the Instantaneious MAP sampling + method. Recommended value: 20 + ADCFILTER_BARO: >- + This setting is only available when using an external Baro sensor. + Recommended value: 64 + boostIntv: >- + The closed loop control interval will run every this many ms. Generally + values between 50% and 100% of the valve frequency work best + VVTasOnOff: >- + Whether or not the VVT table should be treated as on and off control only. + If you are using the VVT map to control a switch, this should be Yes. If you + are using the VVT control to drive a PWM signal, this should be No + stagedInjSizePri: >- + Size of the primary injectors. The sum of the Pri and Sec injectors values + MUST match the value used in the req_fuel calculation + stagedInjSizeSec: >- + Size of the secondary injectors. The sum of the Pri and Sec injectors values + MUST match the value used in the req_fuel calculation + resetControl: >- + How to control the Arduino's automatic reset feature. NOTE: Some of these + settings require modifying your hardware and replacing the Arduino + bootloader. See the Wiki for more details.\n\nDisabled: Allow the Arduino to + reset when a new serial connection is made.\n\nPrevent When Running: Hold + the control pin high while the engine is running.\n\nPrevent Always: Always + hold the control pin high.\n\nSerial Command: Normally hold the control pin + high, but pull it low when the 'U' serial command is issued and reset upon + receiving more data. + resetControlPin: The Arduino pin used to control resets. + battVCorMode: >- + The Battery Voltage Correction value from the table below can either be + applied on the whole injection Pulse Width value, or only on the Open Time + value. diff --git a/public/tunes/202103.ini b/public/tunes/202103.ini new file mode 100644 index 0000000..d003c6a --- /dev/null +++ b/public/tunes/202103.ini @@ -0,0 +1,5117 @@ +;------------------------------------------------------------------------------- +#unset CAN_COMMANDS +#unset enablehardware_test + +[MegaTune] + MTversion = 2.25 + + queryCommand = "Q" + signature = "speeduino 202103" + versionInfo = "S" ;This info is what is displayed to user + +[TunerStudio] + iniSpecVersion = 3.64 + +;------------------------------------------------------------------------------- + +[SettingGroups] + ; the referenceName will over-ride previous, so if you are creating a + ; settingGroup with a reference name of lambdaSensor, it will replace the + ; setting group defined in the settingGroups.xml of the TunerStudio config + ; folder. If is is an undefined referenceName, it will be added. + ; keyword = referenceName, DisplayName + + ;settingGroup = boostUnits, "Boost table units" + ;settingOption = DEFAULT, "kPa" + ;settingOption = BOOSTPSI, "PSI" + settingGroup = enablehardware_test, "Enable Hardware Test Page" + + settingGroup = resetcontrol_group, "Reset Control Features" + settingOption = resetcontrol_standard, "Basic Options Only" + settingOption = resetcontrol_adv, "Advanced Features (16u2 Firmware Update Required)" + +[PcVariables] + ; valid types: boolean, double, int, list + ; + ; no offset as they are local variables. + ; entry format the same as Constants, except there is no offset. + ; arrays are not yet supported. + ; name = class, type, shape, units, scale, translate, lo, hi, digits + ; name = type, min, max; + ; + ; type List: value will be index. + tsCanId = bits, U08, [0:3], "CAN ID 0", "CAN ID 1", "CAN ID 2", "CAN ID 3", "CAN ID 4", "CAN ID 5", "CAN ID 6", "CAN ID 7", "CAN ID 8", "CAN ID 9", "CAN ID 10","CAN ID 11","CAN ID 12","CAN ID 13","CAN ID 14","INVALID" + rpmhigh = scalar, U16, "rpm", 1, 0, 0, 30000, 0 + rpmwarn = scalar, U16, "rpm", 1, 0, 0, 30000, 0 + rpmdang = scalar, U16, "rpm", 1, 0, 0, 30000, 0 + maphigh = scalar, U16, "kPa", 1, 0, 0, 30000, 0 + mapwarn = scalar, U16, "kPa", 1, 0, 0, 30000, 0 + mapdang = scalar, U16, "kPa", 1, 0, 0, 30000, 0 + +#if LAMBDA + wueAFR = array, S16, [10], "Lambda", { 0.1 / stoich }, 0.000, -0.300, 0.300, 3 +#else + wueAFR = array, S16, [10], "AFR", 0.1, 0.0, -4.0, 4.0, 1 +#endif + wueRecommended = array, U08, [10], "%", 1.0, 0.0, 100, 255.0, 0 + + idleUnits = bits, U08, [0:2], "None", "On/Off", "Duty Cycle", "Duty Cycle", "Steps", "Steps" + + boardFuelOutputs = array, U08, [128], " ", 1.0, 0, 0, 255, 0, noMsqSave + boardIgnOutputs = array, U08, [128], " ", 1.0, 0, 0, 255, 0, noMsqSave + boardHasRTC = array, U08, [128], " ", 1.0, 0, 0, 255, 0, noMsqSave + + #define loadSourceNames = "MAP", "TPS", "IMAP/EMAP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + #define loadSourceUnits = "kPa", "% TPS", "%", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + algorithmNames = bits, U08, [0:2], $loadSourceNames + ;algorithmUnits = bits, U08, [0:2], $loadSourceUnits + algorithmUnits = bits, U08, [0:2], "kPa", "% TPS", "%", "% TPS", "INVALID", "INVALID", "INVALID", "INVALID" + algorithmLimits= array, U16, [8], "", 1.0, 0, 0, 511, 0, noMsqSave + fuel2SwitchUnits = bits, U08, [0:2], "rpm", "kPa", "% TPS", "%", "% TPS", "INVALID", "INVALID", "INVALID" + #define all_IO_Pins = "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + #define IO_Pins_no_def = "INVALID", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + #define bitwise_def = "Disabled", "AND", "OR", "XOR" + #define comparator_def = "==", "!=", ">", ">=", "<", "<=", "INVALID", "INVALID" + #define comp_IO_Pins = "Disabled", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + #define fullStatus_def_1= "seconds", "status bits", "Engine status", "syncLossCounter", "MAP (Kpa)", "INVALID", "IAT / MAT", "coolant", "batCorrection", "battery voltage x10", "O2", "egoCorrection", "iatCorrection", "wueCorrection", "RPM", "INVALID", "AEamount/2", "GammaE", "INVALID", "VE1", "VE2", "AFR Target", "TPS DOT", "Advance", "TPS", "loopsPerSecond", "INVALID", "free RAM", "INVALID", "boostTarget/2", "Boost duty", "spark bits", "RPM DOT" + #define fullStatus_def_2= "INVALID", "ethanolPct", "flexCorrection", "flexIgnCorrection", "idle Load", "testOutputs", "O2_2", "baro", "Aux in 1", "INVALID", "Aux in 2", "INVALID", "Aux in 3", "INVALID", "Aux in 4", "INVALID", "Aux in 5", "INVALID", "Aux in 6", "INVALID", "Aux in 7", "INVALID", "Aux in 8", "INVALID", "Aux in 9", "INVALID", "Aux in 10", "INVALID", "Aux in 11", "INVALID", "Aux in 12", "INVALID", "Aux in 13", "INVALID", "Aux in 14" + #define fullStatus_def_3= "INVALID", "Aux in 15", "INVALID", "Aux in 16", "INVALID", "TPS ADC", "Error code", "Pulsewidth 1", "INVALID", "Pulsewidth 2", "INVALID", "Pulsewidth 3", "INVALID", "Pulsewidth 4", "INVALID", "status bits 3", "engineProtectStatus", "Fuel load", "INVALID", "Ignition load", "INVALID", "dwell", "INVALID", "idle C.L. target", "MAP DOT", "VVT1 Angle", "VVT1 Target", "VVT1 duty", "flexBoostCorrection", "INVALID", "baro Correction" + #define fullStatus_def_4= "Current VE", "ASE Value", "vss", "INVALID", "Gear", "Fuel Pressure", "Oil Pressure", "INVALID", "WMI duty", "WMI empty", "VVT2 angle", "VVT2 target", "VVT2 duty", "outputs status", "Fuel temp", "Fuel temp correction", "Advance 1", "Advance 2" + #define fullStatus_def = $fullStatus_def_1, $fullStatus_def_2, $fullStatus_def_3, $fullStatus_def_4 + + boostTableLabels = bits, U08, [0:1], "Duty Cycle %", "kPa" + prgm_out_selection = bits, U08, [0:2], "1", "2", "3", "4", "5", "6", "7", "8" + + fuelLoadMax = scalar, U08, "", 1, 0, 0, 511, 0 + ignLoadMax = scalar, U08, "", 1, 0, 0, 511, 0 + fuel2LoadMax = scalar, U08, "", 1, 0, 0, 511, 0 + ign2LoadMax = scalar, U08, "", 1, 0, 0, 511, 0 + AUXin00Alias = string, ASCII, 20 + AUXin01Alias = string, ASCII, 20 + AUXin02Alias = string, ASCII, 20 + AUXin03Alias = string, ASCII, 20 + AUXin04Alias = string, ASCII, 20 + AUXin05Alias = string, ASCII, 20 + AUXin06Alias = string, ASCII, 20 + AUXin07Alias = string, ASCII, 20 + AUXin08Alias = string, ASCII, 20 + AUXin09Alias = string, ASCII, 20 + AUXin10Alias = string, ASCII, 20 + AUXin11Alias = string, ASCII, 20 + AUXin12Alias = string, ASCII, 20 + AUXin13Alias = string, ASCII, 20 + AUXin14Alias = string, ASCII, 20 + AUXin15Alias = string, ASCII, 20 + + prgm_out00Alias = string, ASCII, 20 + prgm_out01Alias = string, ASCII, 20 + prgm_out02Alias = string, ASCII, 20 + prgm_out03Alias = string, ASCII, 20 + prgm_out04Alias = string, ASCII, 20 + prgm_out05Alias = string, ASCII, 20 + prgm_out06Alias = string, ASCII, 20 + prgm_out07Alias = string, ASCII, 20 + + ;Define aliases for all the triggers. Naming pattern matches that used in decoders.ino + #define trigger_missingTooth = 0 + #define trigger_BasicDistributor = 1 + #define trigger_DualWheel = 2 + #define trigger_GM7X = 3 + #define trigger_4G63 = 4 + #define trigger_24X = 5 + #define trigger_Jeep2000 = 6 + #define trigger_Audi135 = 7 + #define trigger_HondaD17 = 8 + #define trigger_Miata9905 = 9 + #define trigger_MazdaAU = 10 + #define trigger_non360 = 11 + #define trigger_Nissan360 = 12 + #define trigger_Subaru67 = 13 + #define trigger_Daihatsu = 14 + #define trigger_Harley = 15 + #define trigger_ThirtySixMinus222 = 16 + #define trigger_ThirtySixMinus21 = 17 + #define trigger_420a = 18 + #define trigger_Webber = 19 + #define trigger_FordST170 = 20 + +[Constants] + + ;---------------------------------------------------------------------------- + ; Constants Definition + ; -------------------- + ; + ; Scalar Values + ; ------------- + ; The scaling and translation values are used as follows: + ; msValue = userValue / scale - translate + ; userValue = (msValue + translate) * scale + ; + ; + ; Temperatures are fine, check out the Fielding IAC example (fastIdleT). + ; + ; Array Values + ; ------------ + ; Arrays are specified just like scalars, except that they have a "shape" + ; entry in the fourth parameter. The shape allows you to define lists or + ; tables, for example [8] defines a list with eight values and [2x4] defines + ; a table with eight values (two rows and four columns). Tables may be + ; stored in either "X-" or "Y-order." X-order means that memory is layed + ; out like. + ; + ; [x1,y1] [x2,y1]...[xn,y1] [x1,y2]... + ; + ; Y-order would be + ; + ; [x1,y1] [x1,y2]...[x1,yn] [x2,y1]... + ; + ; To use the TableEditor, you must define two lists and a table, and + ; the lengths of the lists must correspond to the shape of the table. + ; + ; Bit Fields + ; ---------- + ; Bits are numbered 0-7, the rightmost being bit zero. The basic + ; data word that stores bit fields must be unsigned. + ; + ; You need NOT supply the correct number of labels matching the + ; number of bits you've specified (one bit requires 2 values, two + ; bits requires 4 values and so on). If you neglect to supply enough + ; labels, they will be synthesized using the sequence "1", "2" and so + ; on based upon their position in the sequence (the cltType and matType + ; will end up with identical lists). + ; + ; If you specify a label as "INVALID" (all upper case), then it will + ; not be displayed in the combo box, so you can leave out values that + ; make no sense. + ; + ;---------------------------------------------------------------------------- + + endianness = little + nPages = 14 + pageSize = 128, 288, 288, 128, 288, 128, 240, 384, 192, 192, 288, 192, 128, 288 + + ; New commands + pageIdentifier = "\$tsCanId\x01", "\$tsCanId\x02", "\$tsCanId\x03", "\$tsCanId\x04", "\$tsCanId\x05", "\$tsCanId\x06", "\$tsCanId\x07", "\$tsCanId\x08", "\$tsCanId\x09", "\$tsCanId\x0A", "\$tsCanId\x0B", "\$tsCanId\x0C", "\$tsCanId\x0D", "\$tsCanId\x0E" + burnCommand = "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i", "b%2i" + pageReadCommand = "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c", "p%2i%2o%2c" + pageValueWrite = "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v" + pageChunkWrite = "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v", "M%2i%2o%2c%v" + crc32CheckCommand = "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i", "d%2i" + + blockingFactor = 256 + tableBlockingFactor = 2048 + delayAfterPortOpen=1000 + ;validateArrayBounds = true + blockReadTimeout = 2000 + ;tsWriteBlocks = on + interWriteDelay = 1 ;Ignored when tsWriteBlocks is on + pageActivationDelay = 10 + restrictSquirtRelationship = false ;This requires TS 3.1 or above + + ;New for TS 3.0.08ish upwards, define lists of standard I/O options + + #define PIN_OUT10inv = "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + #define PIN_OUT16inv = "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + #define PIN_16inv = "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + + #define ANALOG_PIN = "A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", $PIN_16inv, $PIN_16inv, $PIN_16inv + #define DIGITAL_PIN = "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + #define ANALOG_DIG_PIN_LIST = $DIGITAL_PIN, $ANALOG_PIN + #define tsCanId_list = "CAN ID 0", "CAN ID 1", "CAN ID 2", "CAN ID 3", "CAN ID 4", "CAN ID 5", "CAN ID 6", "CAN ID 7", "CAN ID 8", "CAN ID 9", "CAN ID 10","CAN ID 11","CAN ID 12","CAN ID 13","CAN ID 14","INVALID" + #define CAN_ADDRESS_HEX_inv255 = $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT16inv, $PIN_OUT10inv, "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + #define CAN_ADDRESS_HEX_00XX = "INVALID", "0x001", "0x002", "0x003", "0x004", "0x005", "0x006", "0x007", "0x008", "0x009", "0x00A", "0x00B", "0x00C", "0x00D", "0x00E", "0x00F", "0x010", "0x011", "0x012", "0x013", "0x014", "0x015", "0x016", "0x017", "0x018", "0x019", "0x01A", "0x01B", "0x01C", "0x01D", "0x01E", "0x01F", "0x020", "0x021", "0x022", "0x023", "0x024", "0x025", "0x026", "0x027", "0x028", "0x029", "0x02A", "0x02B", "0x02C", "0x02D", "0x02E", "0x02F", "0x030", "0x031", "0x032", "0x033", "0x034", "0x035", "0x036", "0x037", "0x038", "0x039", "0x03A", "0x03B", "0x03C", "0x03D", "0x03E", "0x03F", "0x040", "0x041", "0x042", "0x043", "0x044", "0x045", "0x046", "0x047", "0x048", "0x049", "0x04A", "0x04B", "0x04C", "0x04D", "0x04E", "0x04F", "0x050", "0x051", "0x052", "0x053", "0x054", "0x055", "0x056", "0x057", "0x058", "0x059", "0x05A", "0x05B", "0x05C", "0x05D", "0x05E", "0x05F" ,"0x060", "0x061", "0x062", "0x063", "0x064", "0x065", "0x066", "0x067", "0x068", "0x069", "0x06A", "0x06B", "0x06C", "0x06D", "0x06E", "0x06F", "0x070", "0x071", "0x072", "0x073", "0x074", "0x075", "0x076", "0x077", "0x078", "0x079", "0x07A", "0x07B", "0x07C", "0x07D", "0x07E", "0x07F", "0x080", "0x081", "0x082", "0x083", "0x084", "0x085", "0x086", "0x087", "0x088", "0x089", "0x08A", "0x08B", "0x08C", "0x08D", "0x08E", "0x08F" ,"0x090", "0x091", "0x092", "0x093", "0x094", "0x095", "0x096", "0x097", "0x098", "0x099", "0x09A", "0x09B", "0x09C", "0x09D", "0x09E", "0x09F", "0x0A0", "0x0A1", "0x0A2", "0x0A3", "0x0A4", "0x0A5", "0x0A6", "0x0A7", "0x0A8", "0x0A9", "0x0AA", "0x0AB", "0x0AC", "0x0AD", "0x0AE", "0x0AF", "0x0B0", "0x0B1", "0x0B2", "0x0B3", "0x0B4", "0x0B5", "0x0B6", "0x0B7", "0x0B8", "0x0B9", "0x0BA", "0x0BB", "0x0BC", "0x0BD", "0x0BE", "0x0BF" ,"0x0C0", "0x0C1", "0x0C2", "0x0C3", "0x0C4", "0x0C5", "0x0C6", "0x0C7", "0x0C8", "0x0C9", "0x0CA", "0x0CB", "0x0CC", "0x0CD", "0x0CE", "0x0CF", "0x0D0", "0x0D1", "0x0D2", "0x0D3", "0x0D4", "0x0D5", "0x0D6", "0x0D7", "0x0D8", "0x0D9", "0x0DA", "0x0DB", "0x0DC", "0x0DD", "0x0DE", "0x0DF", "0x0E0", "0x0E1", "0x0E2", "0x0E3", "0x0E4", "0x0E5", "0x0E6", "0x0E7", "0x0E8", "0x0E9", "0x0EA", "0x0EB", "0x0EC", "0x0ED", "0x0EE", "0x0EF" ,"0x0F0", "0x0F1", "0x0F2", "0x0F3", "0x0F4", "0x0F5", "0x0F6", "0x0F7", "0x0F8", "0x0F9", "0x0FA", "0x0FB", "0x0FC", "0x0FD", "0x0FE", "0x0FF" + #define CAN_ADDRESS_HEX_01XX = "0x100", "0x101", "0x102", "0x103", "0x104", "0x105", "0x106", "0x107", "0x108", "0x109", "0x10A", "0x10B", "0x10C", "0x10D", "0x10E", "0x10F", "0x110", "0x111", "0x112", "0x113", "0x114", "0x115", "0x116", "0x117", "0x118", "0x119", "0x11A", "0x11B", "0x11C", "0x11D", "0x11E", "0x11F", "0x120", "0x121", "0x122", "0x123", "0x124", "0x125", "0x126", "0x127", "0x128", "0x129", "0x12A", "0x12B", "0x12C", "0x12D", "0x12E", "0x12F", "0x130", "0x131", "0x132", "0x133", "0x134", "0x135", "0x136", "0x137", "0x138", "0x139", "0x13A", "0x13B", "0x13C", "0x13D", "0x13E", "0x13F", "0x140", "0x141", "0x142", "0x143", "0x144", "0x145", "0x146", "0x147", "0x148", "0x149", "0x14A", "0x14B", "0x14C", "0x14D", "0x14E", "0x14F", "0x150", "0x151", "0x152", "0x153", "0x154", "0x155", "0x156", "0x157", "0x158", "0x159", "0x15A", "0x15B", "0x15C", "0x15D", "0x15E", "0x15F" ,"0x160", "0x161", "0x162", "0x163", "0x164", "0x165", "0x166", "0x167", "0x168", "0x169", "0x16A", "0x16B", "0x16C", "0x16D", "0x16E", "0x16F", "0x170", "0x171", "0x172", "0x173", "0x174", "0x175", "0x176", "0x177", "0x178", "0x179", "0x17A", "0x17B", "0x17C", "0x17D", "0x17E", "0x17F", "0x180", "0x181", "0x182", "0x183", "0x184", "0x185", "0x186", "0x187", "0x188", "0x189", "0x18A", "0x18B", "0x18C", "0x18D", "0x18E", "0x18F" ,"0x190", "0x191", "0x192", "0x193", "0x194", "0x195", "0x196", "0x197", "0x198", "0x199", "0x19A", "0x19B", "0x19C", "0x19D", "0x19E", "0x19F", "0x1A0", "0x1A1", "0x1A2", "0x1A3", "0x1A4", "0x1A5", "0x1A6", "0x1A7", "0x1A8", "0x1A9", "0x1AA", "0x1AB", "0x1AC", "0x1AD", "0x1AE", "0x1AF", "0x1B0", "0x1B1", "0x1B2", "0x1B3", "0x1B4", "0x1B5", "0x1B6", "0x1B7", "0x1B8", "0x1B9", "0x1BA", "0x1BB", "0x1BC", "0x1BD", "0x1BE", "0x1BF" ,"0x1C0", "0x1C1", "0x1C2", "0x1C3", "0x1C4", "0x1C5", "0x1C6", "0x1C7", "0x1C8", "0x1C9", "0x1CA", "0x1CB", "0x1CC", "0x1CD", "0x1CE", "0x1CF", "0x1D0", "0x1D1", "0x1D2", "0x1D3", "0x1D4", "0x1D5", "0x1D6", "0x1D7", "0x1D8", "0x1D9", "0x1DA", "0x1DB", "0x1DC", "0x1DD", "0x1DE", "0x1DF", "0x1E0", "0x1E1", "0x1E2", "0x1E3", "0x1E4", "0x1E5", "0x1E6", "0x1E7", "0x1E8", "0x1E9", "0x1EA", "0x1EB", "0x1EC", "0x1ED", "0x1EE", "0x1EF" ,"0x1F0", "0x1F1", "0x1F2", "0x1F3", "0x1F4", "0x1F5", "0x1F6", "0x1F7", "0x1F8", "0x1F9", "0x1FA", "0x1FB", "0x1FC", "0x1FD", "0x1FE", "0x1FF" + #define CAN_ADDRESS_HEX_02XX = "0x200", "0x201", "0x202", "0x203", "0x204", "0x205", "0x206", "0x207", "0x208", "0x209", "0x20A", "0x20B", "0x20C", "0x20D", "0x20E", "0x20F", "0x210", "0x211", "0x212", "0x213", "0x214", "0x215", "0x216", "0x217", "0x218", "0x219", "0x21A", "0x21B", "0x21C", "0x21D", "0x21E", "0x21F", "0x220", "0x221", "0x222", "0x223", "0x224", "0x225", "0x226", "0x227", "0x228", "0x229", "0x22A", "0x22B", "0x22C", "0x22D", "0x22E", "0x22F", "0x230", "0x231", "0x232", "0x233", "0x234", "0x235", "0x236", "0x237", "0x238", "0x239", "0x23A", "0x23B", "0x23C", "0x23D", "0x23E", "0x23F", "0x240", "0x241", "0x242", "0x243", "0x244", "0x245", "0x246", "0x247", "0x248", "0x249", "0x24A", "0x24B", "0x24C", "0x24D", "0x24E", "0x24F", "0x250", "0x251", "0x252", "0x253", "0x254", "0x255", "0x256", "0x257", "0x258", "0x259", "0x25A", "0x25B", "0x25C", "0x25D", "0x25E", "0x25F" ,"0x260", "0x261", "0x262", "0x263", "0x264", "0x265", "0x266", "0x267", "0x268", "0x269", "0x26A", "0x26B", "0x26C", "0x26D", "0x26E", "0x26F", "0x270", "0x271", "0x272", "0x273", "0x274", "0x275", "0x276", "0x277", "0x278", "0x279", "0x27A", "0x27B", "0x27C", "0x27D", "0x27E", "0x27F", "0x280", "0x281", "0x282", "0x283", "0x284", "0x285", "0x286", "0x287", "0x288", "0x289", "0x28A", "0x28B", "0x28C", "0x28D", "0x28E", "0x28F" ,"0x290", "0x291", "0x292", "0x293", "0x294", "0x295", "0x296", "0x297", "0x298", "0x299", "0x29A", "0x29B", "0x29C", "0x29D", "0x29E", "0x29F", "0x2A0", "0x2A1", "0x2A2", "0x2A3", "0x2A4", "0x2A5", "0x2A6", "0x2A7", "0x2A8", "0x2A9", "0x2AA", "0x2AB", "0x2AC", "0x2AD", "0x2AE", "0x2AF", "0x2B0", "0x2B1", "0x2B2", "0x2B3", "0x2B4", "0x2B5", "0x2B6", "0x2B7", "0x2B8", "0x2B9", "0x2BA", "0x2BB", "0x2BC", "0x2BD", "0x2BE", "0x2BF" ,"0x2C0", "0x2C1", "0x2C2", "0x2C3", "0x2C4", "0x2C5", "0x2C6", "0x2C7", "0x2C8", "0x2C9", "0x2CA", "0x2CB", "0x2CC", "0x2CD", "0x2CE", "0x2CF", "0x2D0", "0x2D1", "0x2D2", "0x2D3", "0x2D4", "0x2D5", "0x2D6", "0x2D7", "0x2D8", "0x2D9", "0x2DA", "0x2DB", "0x2DC", "0x2DD", "0x2DE", "0x2DF", "0x2E0", "0x2E1", "0x2E2", "0x2E3", "0x2E4", "0x2E5", "0x2E6", "0x2E7", "0x2E8", "0x2E9", "0x2EA", "0x2EB", "0x2EC", "0x2ED", "0x2EE", "0x2EF" ,"0x2F0", "0x2F1", "0x2F2", "0x2F3", "0x2F4", "0x2F5", "0x2F6", "0x2F7", "0x2F8", "0x2F9", "0x2FA", "0x2FB", "0x2FC", "0x2FD", "0x2FE", "0x2FF" + #define CAN_ADDRESS_HEX_03XX = "0x300", "0x301", "0x302", "0x303", "0x304", "0x305", "0x306", "0x307", "0x308", "0x309", "0x30A", "0x30B", "0x30C", "0x30D", "0x30E", "0x30F", "0x310", "0x311", "0x312", "0x313", "0x314", "0x315", "0x316", "0x317", "0x318", "0x319", "0x31A", "0x31B", "0x31C", "0x31D", "0x31E", "0x31F", "0x320", "0x321", "0x322", "0x323", "0x324", "0x325", "0x326", "0x327", "0x328", "0x329", "0x32A", "0x32B", "0x32C", "0x32D", "0x32E", "0x32F", "0x330", "0x331", "0x332", "0x333", "0x334", "0x335", "0x336", "0x337", "0x338", "0x339", "0x33A", "0x33B", "0x33C", "0x33D", "0x33E", "0x33F", "0x340", "0x341", "0x342", "0x343", "0x344", "0x345", "0x346", "0x347", "0x348", "0x349", "0x34A", "0x34B", "0x34C", "0x34D", "0x34E", "0x34F", "0x350", "0x351", "0x352", "0x353", "0x354", "0x355", "0x356", "0x357", "0x358", "0x359", "0x35A", "0x35B", "0x35C", "0x35D", "0x35E", "0x35F" ,"0x360", "0x361", "0x362", "0x363", "0x364", "0x365", "0x366", "0x367", "0x368", "0x369", "0x36A", "0x36B", "0x36C", "0x36D", "0x36E", "0x36F", "0x370", "0x371", "0x372", "0x373", "0x374", "0x375", "0x376", "0x377", "0x378", "0x379", "0x37A", "0x37B", "0x37C", "0x37D", "0x37E", "0x37F", "0x380", "0x381", "0x382", "0x383", "0x384", "0x385", "0x386", "0x387", "0x388", "0x389", "0x38A", "0x38B", "0x38C", "0x38D", "0x38E", "0x38F" ,"0x390", "0x391", "0x392", "0x393", "0x394", "0x395", "0x396", "0x397", "0x398", "0x399", "0x39A", "0x39B", "0x39C", "0x39D", "0x39E", "0x39F", "0x3A0", "0x3A1", "0x3A2", "0x3A3", "0x3A4", "0x3A5", "0x3A6", "0x3A7", "0x3A8", "0x3A9", "0x3AA", "0x3AB", "0x3AC", "0x3AD", "0x3AE", "0x3AF", "0x3B0", "0x3B1", "0x3B2", "0x3B3", "0x3B4", "0x3B5", "0x3B6", "0x3B7", "0x3B8", "0x3B9", "0x3BA", "0x3BB", "0x3BC", "0x3BD", "0x3BE", "0x3BF" ,"0x3C0", "0x3C1", "0x3C2", "0x3C3", "0x3C4", "0x3C5", "0x3C6", "0x3C7", "0x3C8", "0x3C9", "0x3CA", "0x3CB", "0x3CC", "0x3CD", "0x3CE", "0x3CF", "0x3D0", "0x3D1", "0x3D2", "0x3D3", "0x3D4", "0x3D5", "0x3D6", "0x3D7", "0x3D8", "0x3D9", "0x3DA", "0x3DB", "0x3DC", "0x3DD", "0x3DE", "0x3DF", "0x3E0", "0x3E1", "0x3E2", "0x3E3", "0x3E4", "0x3E5", "0x3E6", "0x3E7", "0x3E8", "0x3E9", "0x3EA", "0x3EB", "0x3EC", "0x3ED", "0x3EE", "0x3EF" ,"0x3F0", "0x3F1", "0x3F2", "0x3F3", "0x3F4", "0x3F5", "0x3F6", "0x3F7", "0x3F8", "0x3F9", "0x3FA", "0x3FB", "0x3FC", "0x3FD", "0x3FE", "0x3FF" + #define CAN_ADDRESS_HEX_04XX = "0x400", "0x401", "0x402", "0x403", "0x404", "0x405", "0x406", "0x407", "0x408", "0x409", "0x40A", "0x40B", "0x40C", "0x40D", "0x40E", "0x40F", "0x410", "0x411", "0x412", "0x413", "0x414", "0x415", "0x416", "0x417", "0x418", "0x419", "0x41A", "0x41B", "0x41C", "0x41D", "0x41E", "0x41F", "0x420", "0x421", "0x422", "0x423", "0x424", "0x425", "0x426", "0x427", "0x428", "0x429", "0x42A", "0x42B", "0x42C", "0x42D", "0x42E", "0x42F", "0x430", "0x431", "0x432", "0x433", "0x434", "0x435", "0x436", "0x437", "0x438", "0x439", "0x43A", "0x43B", "0x43C", "0x43D", "0x43E", "0x43F", "0x440", "0x441", "0x442", "0x443", "0x444", "0x445", "0x446", "0x447", "0x448", "0x449", "0x44A", "0x44B", "0x44C", "0x44D", "0x44E", "0x44F", "0x450", "0x451", "0x452", "0x453", "0x454", "0x455", "0x456", "0x457", "0x458", "0x459", "0x45A", "0x45B", "0x45C", "0x45D", "0x45E", "0x45F" ,"0x460", "0x461", "0x462", "0x463", "0x464", "0x465", "0x466", "0x467", "0x468", "0x469", "0x46A", "0x46B", "0x46C", "0x46D", "0x46E", "0x46F", "0x470", "0x471", "0x472", "0x473", "0x474", "0x475", "0x476", "0x477", "0x478", "0x479", "0x47A", "0x47B", "0x47C", "0x47D", "0x47E", "0x47F", "0x480", "0x481", "0x482", "0x483", "0x484", "0x485", "0x486", "0x487", "0x488", "0x489", "0x48A", "0x48B", "0x48C", "0x48D", "0x48E", "0x48F" ,"0x490", "0x491", "0x492", "0x493", "0x494", "0x495", "0x496", "0x497", "0x498", "0x499", "0x49A", "0x49B", "0x49C", "0x49D", "0x49E", "0x49F", "0x4A0", "0x4A1", "0x4A2", "0x4A3", "0x4A4", "0x4A5", "0x4A6", "0x4A7", "0x4A8", "0x4A9", "0x4AA", "0x4AB", "0x4AC", "0x4AD", "0x4AE", "0x4AF", "0x4B0", "0x4B1", "0x4B2", "0x4B3", "0x4B4", "0x4B5", "0x4B6", "0x4B7", "0x4B8", "0x4B9", "0x4BA", "0x4BB", "0x4BC", "0x4BD", "0x4BE", "0x4BF" ,"0x4C0", "0x4C1", "0x4C2", "0x4C3", "0x4C4", "0x4C5", "0x4C6", "0x4C7", "0x4C8", "0x4C9", "0x4CA", "0x4CB", "0x4CC", "0x4CD", "0x4CE", "0x4CF", "0x4D0", "0x4D1", "0x4D2", "0x4D3", "0x4D4", "0x4D5", "0x4D6", "0x4D7", "0x4D8", "0x4D9", "0x4DA", "0x4DB", "0x4DC", "0x4DD", "0x4DE", "0x4DF", "0x4E0", "0x4E1", "0x4E2", "0x4E3", "0x4E4", "0x4E5", "0x4E6", "0x4E7", "0x4E8", "0x4E9", "0x4EA", "0x4EB", "0x4EC", "0x4ED", "0x4EE", "0x4EF" ,"0x4F0", "0x4F1", "0x4F2", "0x4F3", "0x4F4", "0x4F5", "0x4F6", "0x4F7", "0x4F8", "0x4F9", "0x4FA", "0x4FB", "0x4FC", "0x4FD", "0x4FE", "0x4FF" + #define CAN_ADDRESS_HEX_05XX = "0x500", "0x501", "0x502", "0x503", "0x504", "0x505", "0x506", "0x507", "0x508", "0x509", "0x50A", "0x50B", "0x50C", "0x50D", "0x50E", "0x50F", "0x510", "0x511", "0x512", "0x513", "0x514", "0x515", "0x516", "0x517", "0x518", "0x519", "0x51A", "0x51B", "0x51C", "0x51D", "0x51E", "0x51F", "0x520", "0x521", "0x522", "0x523", "0x524", "0x525", "0x526", "0x527", "0x528", "0x529", "0x52A", "0x52B", "0x52C", "0x52D", "0x52E", "0x52F", "0x530", "0x531", "0x532", "0x533", "0x534", "0x535", "0x536", "0x537", "0x538", "0x539", "0x53A", "0x53B", "0x53C", "0x53D", "0x53E", "0x53F", "0x540", "0x541", "0x542", "0x543", "0x544", "0x545", "0x546", "0x547", "0x548", "0x549", "0x54A", "0x54B", "0x54C", "0x54D", "0x54E", "0x54F", "0x550", "0x551", "0x552", "0x553", "0x554", "0x555", "0x556", "0x557", "0x558", "0x559", "0x55A", "0x55B", "0x55C", "0x55D", "0x55E", "0x55F" ,"0x560", "0x561", "0x562", "0x563", "0x564", "0x565", "0x566", "0x567", "0x568", "0x569", "0x56A", "0x56B", "0x56C", "0x56D", "0x56E", "0x56F", "0x570", "0x571", "0x572", "0x573", "0x574", "0x575", "0x576", "0x577", "0x578", "0x579", "0x57A", "0x57B", "0x57C", "0x57D", "0x57E", "0x57F", "0x580", "0x581", "0x582", "0x583", "0x584", "0x585", "0x586", "0x587", "0x588", "0x589", "0x58A", "0x58B", "0x58C", "0x58D", "0x58E", "0x58F" ,"0x590", "0x591", "0x592", "0x593", "0x594", "0x595", "0x596", "0x597", "0x598", "0x599", "0x59A", "0x59B", "0x59C", "0x59D", "0x59E", "0x59F", "0x5A0", "0x5A1", "0x5A2", "0x5A3", "0x5A4", "0x5A5", "0x5A6", "0x5A7", "0x5A8", "0x5A9", "0x5AA", "0x5AB", "0x5AC", "0x5AD", "0x5AE", "0x5AF", "0x5B0", "0x5B1", "0x5B2", "0x5B3", "0x5B4", "0x5B5", "0x5B6", "0x5B7", "0x5B8", "0x5B9", "0x5BA", "0x5BB", "0x5BC", "0x5BD", "0x5BE", "0x5BF" ,"0x5C0", "0x5C1", "0x5C2", "0x5C3", "0x5C4", "0x5C5", "0x5C6", "0x5C7", "0x5C8", "0x5C9", "0x5CA", "0x5CB", "0x5CC", "0x5CD", "0x5CE", "0x5CF", "0x5D0", "0x5D1", "0x5D2", "0x5D3", "0x5D4", "0x5D5", "0x5D6", "0x5D7", "0x5D8", "0x5D9", "0x5DA", "0x5DB", "0x5DC", "0x5DD", "0x5DE", "0x5DF", "0x5E0", "0x5E1", "0x5E2", "0x5E3", "0x5E4", "0x5E5", "0x5E6", "0x5E7", "0x5E8", "0x5E9", "0x5EA", "0x5EB", "0x5EC", "0x5ED", "0x5EE", "0x5EF" ,"0x5F0", "0x5F1", "0x5F2", "0x5F3", "0x5F4", "0x5F5", "0x5F6", "0x5F7", "0x5F8", "0x5F9", "0x5FA", "0x5FB", "0x5FC", "0x5FD", "0x5FE", "0x5FF" + #define CAN_ADDRESS_HEX_06XX = "0x600", "0x601", "0x602", "0x603", "0x604", "0x605", "0x606", "0x607", "0x608", "0x609", "0x60A", "0x60B", "0x60C", "0x60D", "0x60E", "0x60F", "0x610", "0x611", "0x612", "0x613", "0x614", "0x615", "0x616", "0x617", "0x618", "0x619", "0x61A", "0x61B", "0x61C", "0x61D", "0x61E", "0x61F", "0x620", "0x621", "0x622", "0x623", "0x624", "0x625", "0x626", "0x627", "0x628", "0x629", "0x62A", "0x62B", "0x62C", "0x62D", "0x62E", "0x62F", "0x630", "0x631", "0x632", "0x633", "0x634", "0x635", "0x636", "0x637", "0x638", "0x639", "0x63A", "0x63B", "0x63C", "0x63D", "0x63E", "0x63F", "0x640", "0x641", "0x642", "0x643", "0x644", "0x645", "0x646", "0x647", "0x648", "0x649", "0x64A", "0x64B", "0x64C", "0x64D", "0x64E", "0x64F", "0x650", "0x651", "0x652", "0x653", "0x654", "0x655", "0x656", "0x657", "0x658", "0x659", "0x65A", "0x65B", "0x65C", "0x65D", "0x65E", "0x65F" ,"0x660", "0x661", "0x662", "0x663", "0x664", "0x665", "0x666", "0x667", "0x668", "0x669", "0x66A", "0x66B", "0x66C", "0x66D", "0x66E", "0x66F", "0x670", "0x671", "0x672", "0x673", "0x674", "0x675", "0x676", "0x677", "0x678", "0x679", "0x67A", "0x67B", "0x67C", "0x67D", "0x67E", "0x67F", "0x680", "0x681", "0x682", "0x683", "0x684", "0x685", "0x686", "0x687", "0x688", "0x689", "0x68A", "0x68B", "0x68C", "0x68D", "0x68E", "0x68F" ,"0x690", "0x691", "0x692", "0x693", "0x694", "0x695", "0x696", "0x697", "0x698", "0x699", "0x69A", "0x69B", "0x69C", "0x69D", "0x69E", "0x69F", "0x6A0", "0x6A1", "0x6A2", "0x6A3", "0x6A4", "0x6A5", "0x6A6", "0x6A7", "0x6A8", "0x6A9", "0x6AA", "0x6AB", "0x6AC", "0x6AD", "0x6AE", "0x6AF", "0x6B0", "0x6B1", "0x6B2", "0x6B3", "0x6B4", "0x6B5", "0x6B6", "0x6B7", "0x6B8", "0x6B9", "0x6BA", "0x6BB", "0x6BC", "0x6BD", "0x6BE", "0x6BF" ,"0x6C0", "0x6C1", "0x6C2", "0x6C3", "0x6C4", "0x6C5", "0x6C6", "0x6C7", "0x6C8", "0x6C9", "0x6CA", "0x6CB", "0x6CC", "0x6CD", "0x6CE", "0x6CF", "0x6D0", "0x6D1", "0x6D2", "0x6D3", "0x6D4", "0x6D5", "0x6D6", "0x6D7", "0x6D8", "0x6D9", "0x6DA", "0x6DB", "0x6DC", "0x6DD", "0x6DE", "0x6DF", "0x6E0", "0x6E1", "0x6E2", "0x6E3", "0x6E4", "0x6E5", "0x6E6", "0x6E7", "0x6E8", "0x6E9", "0x6EA", "0x6EB", "0x6EC", "0x6ED", "0x6EE", "0x6EF" ,"0x6F0", "0x6F1", "0x6F2", "0x6F3", "0x6F4", "0x6F5", "0x6F6", "0x6F7", "0x6F8", "0x6F9", "0x6FA", "0x6FB", "0x6FC", "0x6FD", "0x6FE", "0x6FF" + #define CAN_ADDRESS_HEX_07XX = "0x700", "0x701", "0x702", "0x703", "0x704", "0x705", "0x706", "0x707", "0x708", "0x709", "0x70A", "0x70B", "0x70C", "0x70D", "0x70E", "0x70F", "0x710", "0x711", "0x712", "0x713", "0x714", "0x715", "0x716", "0x717", "0x718", "0x719", "0x71A", "0x71B", "0x71C", "0x71D", "0x71E", "0x71F", "0x720", "0x721", "0x722", "0x723", "0x724", "0x725", "0x726", "0x727", "0x728", "0x729", "0x72A", "0x72B", "0x72C", "0x72D", "0x72E", "0x72F", "0x730", "0x731", "0x732", "0x733", "0x734", "0x735", "0x736", "0x737", "0x738", "0x739", "0x73A", "0x73B", "0x73C", "0x73D", "0x73E", "0x73F", "0x740", "0x741", "0x742", "0x743", "0x744", "0x745", "0x746", "0x747", "0x748", "0x749", "0x74A", "0x74B", "0x74C", "0x74D", "0x74E", "0x74F", "0x750", "0x751", "0x752", "0x753", "0x754", "0x755", "0x756", "0x757", "0x758", "0x759", "0x75A", "0x75B", "0x75C", "0x75D", "0x75E", "0x75F" ,"0x760", "0x761", "0x762", "0x763", "0x764", "0x765", "0x766", "0x767", "0x768", "0x769", "0x76A", "0x76B", "0x76C", "0x76D", "0x76E", "0x76F", "0x770", "0x771", "0x772", "0x773", "0x774", "0x775", "0x776", "0x777", "0x778", "0x779", "0x77A", "0x77B", "0x77C", "0x77D", "0x77E", "0x77F", "0x780", "0x781", "0x782", "0x783", "0x784", "0x785", "0x786", "0x787", "0x788", "0x789", "0x78A", "0x78B", "0x78C", "0x78D", "0x78E", "0x78F" ,"0x790", "0x791", "0x792", "0x793", "0x794", "0x795", "0x796", "0x797", "0x798", "0x799", "0x79A", "0x79B", "0x79C", "0x79D", "0x79E", "0x79F", "0x7A0", "0x7A1", "0x7A2", "0x7A3", "0x7A4", "0x7A5", "0x7A6", "0x7A7", "0x7A8", "0x7A9", "0x7AA", "0x7AB", "0x7AC", "0x7AD", "0x7AE", "0x7AF", "0x7B0", "0x7B1", "0x7B2", "0x7B3", "0x7B4", "0x7B5", "0x7B6", "0x7B7", "0x7B8", "0x7B9", "0x7BA", "0x7BB", "0x7BC", "0x7BD", "0x7BE", "0x7BF" ,"0x7C0", "0x7C1", "0x7C2", "0x7C3", "0x7C4", "0x7C5", "0x7C6", "0x7C7", "0x7C8", "0x7C9", "0x7CA", "0x7CB", "0x7CC", "0x7CD", "0x7CE", "0x7CF", "0x7D0", "0x7D1", "0x7D2", "0x7D3", "0x7D4", "0x7D5", "0x7D6", "0x7D7", "0x7D8", "0x7D9", "0x7DA", "0x7DB", "0x7DC", "0x7DD", "0x7DE", "0x7DF", "0x7E0", "0x7E1", "0x7E2", "0x7E3", "0x7E4", "0x7E5", "0x7E6", "0x7E7", "0x7E8", "0x7E9", "0x7EA", "0x7EB", "0x7EC", "0x7ED", "0x7EE", "0x7EF" ,"0x7F0", "0x7F1", "0x7F2", "0x7F3", "0x7F4", "0x7F5", "0x7F6", "0x7F7", "0x7F8", "0x7F9", "0x7FA", "0x7FB", "0x7FC", "0x7FD", "0x7FE", "0x7FF" + #define CAN_ADDRESS_HEX = $CAN_ADDRESS_HEX_01XX, $CAN_ADDRESS_HEX_02XX, $CAN_ADDRESS_HEX_03XX, $CAN_ADDRESS_HEX_04XX, $CAN_ADDRESS_HEX_05XX, $CAN_ADDRESS_HEX_06XX, $CAN_ADDRESS_HEX_07XX, $CAN_ADDRESS_HEX_inv255 + + + + +;-------------------------------------------------- +;Start Page 1 +;Page 1 is all general settings. Note that some of these (algorithm and ignAlgorithm) MUST come before their use in the bitStringValue() calls in the fuel and ignition tables +;-------------------------------------------------- +page = 1 + aseTaperTime = scalar, U08, 0, "S", 0.1, 0.0, 0.0, 25.5, 1 + aeColdPct = scalar, U08, 1, "%", 1.0, 0, 100, 255, 0 ;AE cold adjustment % +#if CELSIUS + aeColdTaperMin = scalar, U08, 2, "C", 1.0, -40, -40, 215, 0 ;AE cold adjustment, taper start clt (full adjustment) +#else + aeColdTaperMin = scalar, U08, 2, "F", 1.8, -22.23, -40, 215, 0 ;AE cold adjustment, taper start clt (full adjustment) +#endif + + aeMode = bits, U08, 3, [0:1], "TPS", "MAP", "INVALID", "INVALID" + battVCorMode = bits, U08, 3, [2:2], "Whole PW", "Open Time only" + SoftLimitMode = bits, U08, 3, [3:3], "Fixed", "Relative " + useTachoSweep = bits, U08, 3, [4:4], "Off", "On" + aeApplyMode = bits, U08, 3, [5:5], "PW Multiplier", "PW Adder" + multiplyMAP = bits, U08, 3, [6:7], "Off", "Baro", "Fixed", "INVALID" + wueRates = array, U08, 4, [10], "%", 1.0, 0.0, 0.0, 255, 0 + crankingPct = scalar, U08, 14, "%", 1.0, 0.0, 0.0, 255, 0 + pinLayout = bits, U08, 15, [0:7], "INVALID", "Speeduino v0.2", "Speeduino v0.3", "Speeduino v0.4", "INVALID", "INVALID", "01-05 MX5 PNP", "INVALID", "96-97 MX5 PNP", "NA6 MX5 PNP", "Turtana PCB", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "Plazomat I/O 0.1", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "Daz V6 Shield 0.1", "BMW PnP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "NO2C", "UA4C", "INVALID", "INVALID", "INVALID", "DIY-EFI CORE4 v1.0", "INVALID", "INVALID", "INVALID", "INVALID", "dvjcodec Teensy RevA", "dvjcodec Teensy RevB", "INVALID", "JUICEBOX", "INVALID", "Drop Bear", "INVALID", "INVALID", "INVALID", "INVALID", "Black STM32F407VET6 V0.1", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + tachoPin = bits, U08, 16, [0:5], "Board Default", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + tachoDiv = bits, U08, 16, [6:7], "Normal", "Half", "INVALID", "INVALID" + tachoDuration = scalar, U08, 17, "ms", 1.0, 0.0, 1.0, 6.0, 0 + maeThresh = scalar, U08, 18, "kPa/s", 1.0, 0.0, 0.0, 255, 0 ;MAP threshold for triggering AE + taeThresh = scalar, U08, 19, "%/s", 1.0, 0.0, 0.0, 255, 0 ;TPS threshold for triggering AE + aeTime = scalar, U08, 20, "ms", 10, 0.0, 0.0, 2550, 0 + + ; Display (Options for what the display is showing) + display = bits, U08, 21, [0:2], "Unused", "Adafruit 128x32", "Generic 128x32", "Adafruit 128x64", "Generic 128x64", "INVALID", "INVALID", "INVALID" + display1 = bits, U08, 21, [3:5], "RPM", "PW", "Advance", "VE", "GammaE", "TPS", "IAT", "CLT" + display2 = bits, U08, 21, [6:7], "O2", "Voltage", "CPU", "Mem" + + display3 = bits, U08, 22, [0:2], "RPM", "PW", "Advance", "VE", "GammaE", "TPS", "IAT", "CLT" + display4 = bits, U08, 22, [3:4], "O2", "Voltage", "CPU", "Mem" + display5 = bits, U08, 22, [5:7], "RPM", "PW", "Advance", "VE", "GammaE", "TPS", "IAT", "CLT" + + displayB1 = bits, U08, 23, [0:3], "RPM", "PW", "Advance", "VE", "GammaE", "TPS", "IAT", "CLT" + displayB2 = bits, U08, 23, [4:7], "RPM", "PW", "Advance", "VE", "GammaE", "TPS", "IAT", "CLT" + + reqFuel = scalar, U08, 24, "ms", 0.1, 0.0, 0.0, 25.5, 1 + divider = scalar, U08, 25, "", 1.0, 0.0 + alternate = bits, U08, 26, [0:0], "Simultaneous", "Alternating" + multiplyMAP1 = bits, U08, 26, [1:1], "No", "Yes" + includeAFR = bits, U08, 26, [2:2], "No", "Yes" + hardCutType = bits, U08, 26, [3:3], "Full", "Rolling" + ignAlgorithm = bits, U08, 26, [4:6], $loadSourceNames + indInjAng = bits, U08, 26, [7:7], "Disabled", "Enabled" + injOpen = scalar, U08, 27, "ms", 0.1, 0.0, 0.1, 25.5, 1 + injAng = array, U16, 28, [4], "deg", 1.0, 0.0, 0.0, 720, 0 + + ; Config1 + mapSample = bits, U08, 36, [0:1], "Instantaneous", "Cycle Average", "Cycle Minimum", "Event Average" + twoStroke = bits, U08, 36, [2:2], "Four-stroke", "Two-stroke" + injType = bits, U08, 36, [3:3], "Port", "Throttle Body" + nCylinders = bits, U08, 36, [4:7], "INVALID","1","2","3","4","5","6","INVALID","8","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID" + + ; Config2 + algorithm = bits, U08, 37, [0:2], $loadSourceNames ;Has to be called algorithm for the req fuel calculator to work :( + fixAngEnable = bits, U08, 37, [3:3], "Off", "On" + nInjectors = bits, U08, 37, [4:7], "INVALID","1","2","3","4","5","6","INVALID","8","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID" + + ; Config3 + engineType = bits, U08, 38, [0:0], "Even fire", "Odd fire" + flexEnabled = bits, U08, 38, [1:1], "Off", "On" + legacyMAP = bits, U08, 38, [2:2], "No", "Yes" ;Whether to use the older legacy MAP reading that had the pullup enabled + baroCorr = bits, U08, 38, [3:3], "Off", "On" + injLayout = bits, U08, 38, [4:5], "Paired", "Semi-Sequential", "INVALID", "Sequential" + perToothIgn = bits, U08, 38, [6:6], "No", "Yes" + dfcoEnabled = bits, U08, 38, [7:7], "Off", "On" + +#if CELSIUS + aeColdTaperMax = scalar, U08, 39, "C", 1.0, -40, -40, 215, 0 ;AE cold adjustment, taper start clt (full adjustment) +#else + aeColdTaperMax = scalar, U08, 39, "F", 1.8, -22.23, -40, 215, 0 ;AE cold adjustment, taper end clt (no adjustment) +#endif + + dutyLim = scalar, U08, 40, "%", 1.0, 0.0, 0.0, 95.0, 0 + flexFreqLow = scalar, U08, 41, "Hz", 1.0, 0.0, 0.0, 250.0, 0 + flexFreqHigh = scalar, U08, 42, "Hz", 1.0, 0.0, 0.0, 250.0, 0 + + boostMaxDuty = scalar, U08, 43, "%", 1.0, 0.0, 0.0, 100.0, 0 + tpsMin = scalar, U08, 44, "ADC", 1.0, 0.0, 0.0, 255.0, 0 + tpsMax = scalar, U08, 45, "ADC", 1.0, 0.0, 0.0, 255.0, 0 + mapMin = scalar, S08, 46, "kpa", 1.0, 0.0, -100, 127.0, 0 + mapMax = scalar, U16, 47, "kpa", 1.0, 0.0, 0.0, 25500, 0 + fpPrime = scalar, U08, 49, "s", 1.0, 0.0, 0.0, 255.0, 0 + stoich = scalar, U08, 50, ":1", 0.1, 0.0, 0.0, 25.5, 1 + oddfire2 = scalar, U16, 51, "deg", 1.0, 0.0, 0.0, 720, 0 ; * ( 2 byte) + oddfire3 = scalar, U16, 53, "deg", 1.0, 0.0, 0.0, 720, 0 ; * ( 2 byte) + oddfire4 = scalar, U16, 55, "deg", 1.0, 0.0, 0.0, 720, 0 ; * ( 2 byte) + + idleUpPin = bits, U08, 57, [0:5], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + idleUpPolarity= bits, U08, 57, [6:6], "Normal", "Inverted" + idleUpEnabled = bits, U08, 57, [7:7], "Off", "On" + idleUpAdder = scalar, U08, 58, "% / Steps", 1.0, 0.0, 0.0, 250.0, 0 + aeTaperMin = scalar, U08, 59, "RPM", 100, 0.0, 1000, 10000, 0 + aeTaperMax = scalar, U08, 60, "RPM", 100, 0.0, 2000, 10000, 0 + + iacCLminDuty = scalar, U08, 61, "%", 1.0, 0.0, 0.0, 100.0, 0 ; Minimum and maximum duty cycles when using closed loop idle + iacCLmaxDuty = scalar, U08, 62, "%", 1.0, 0.0, 0.0, 100.0, 0 + boostMinDuty = scalar, U08, 63, "%", 1.0, 0.0, 0.0, 100.0, 0 ; Minimum and maximum duty cycles for boost control + + baroMin = scalar, S08, 64, "kpa", 1.0, 0.0, -100, 127.0, 0 + baroMax = scalar, U16, 65, "kpa", 1.0, 0.0, 0.0, 25500, 0 + EMAPMin = scalar, S08, 67, "kpa", 1.0, 0.0, -100, 127.0, 0 + EMAPMax = scalar, U16, 68, "kpa", 1.0, 0.0, 0.0, 25500, 0 + + fanWhenOff = bits, U08, 70, [0:0], "No", "Yes" + fanWhenCranking = bits, U08, 70, [1:1], "No", "Yes" + useDwellMap = bits, U08, 70, [2:2], "No", "Yes" + unused_fan_bits = bits, U08, 70, [3:4] + rtc_mode = bits, U08, 70, [5:6], "Off", "On-board", "INVALID", "INVALID" + incorporateAFR = bits, U08, 70, [7:7], "No", "Yes" + + asePct = array, U08, 71, [4], "%", 1.0, 0.0, 0, 155, 0 + aseCount = array, U08, 75, [4], "s", 1.0, 0.0, 0.0, 255, 0 ; Values for the afterstart enrichment curve +#if CELSIUS + aseBins = array, U08, 79, [4], "C", 1.0, -40, -40, 215, 0 +#else + aseBins = array, U08, 79, [4], "F", 1.8, -22.23, -40, 215, 0 +#endif + primePulse = array, U08, 83, [4], "ms", 0.5, 0.0, 0.0, 127.5, 1 +#if CELSIUS + primeBins = array, U08, 87, [4], "C", 1.0, -40, -40, 215, 0 +#else + primeBins = array, U08, 87, [4], "F", 1.8, -22.23, -40, 215, 0 +#endif + CTPSPin = bits, U08, 91, [0:5], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + CTPSPolarity = bits, U08, 91, [6:6], "Normal", "Inverted" + CTPSEnabled = bits, U08, 91, [7:7], "Off", "On" + idleAdvEnabled = bits, U08, 92, [0:1], "Off", "Added", "Switched", "INVALID" + idleAdvAlgorithm = bits, U08, 92, [2:2], "TPS", "CTPS" + idleAdvDelay = bits, U08, 92, [3:7], "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "INVALID", "INVALID" + idleAdvRPM = scalar, U08, 93, "rpm", 100, 0.0, 100, 25500, 0 + idleAdvTPS = scalar, U08, 94, "%", 1, 0, 0, 120, 0 + + injAngRPM = array, U08, 95, [4], "RPM", 100, 0.0, 100, 10000, 0 + idleTaperTime = scalar, U08, 99, "S", 0.1, 0.0, 0.0, 25.5, 1 + dfcoDelay = scalar, U08, 100, "S", 0.1, 0.0, 0.0, 25.5, 1 ;Remainder of DFCO settings are in page 4 +#if CELSIUS + dfcoMinCLT = scalar, U08, 101, "C", 1.0, -40, -40, 215, 0 +#else + dfcoMinCLT = scalar, U08, 101, "F", 1.8, -22.23, -40, 215, 0 +#endif + + ;VSS settings + vssMode = bits, U08, 102, [0:1], "Off", "INVALID", "Pulses per KM", "Pulses per mile" ;INVALID value will be CAN + ;vssPullup = bits, U08, 102, [1:1], "Off", "On" + vssPin = bits, U08, 102, [2:7], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + vssPulsesPerKm= scalar, U16, 103, "pulses", 1.0, 0.0, 0.0, 25500, 0 + vssSmoothing = scalar, U08, 105, "%", 1.0, 0, 0, 255, 0 + vssRatio1 = scalar, U16, 106, "km/h per 1000rpm", 0.1, 0, 0, 99.9, 1 + vssRatio2 = scalar, U16, 108, "km/h per 1000rpm", 0.1, 0, 0, 99.9, 1 + vssRatio3 = scalar, U16, 110, "km/h per 1000rpm", 0.1, 0, 0, 99.9, 1 + vssRatio4 = scalar, U16, 112, "km/h per 1000rpm", 0.1, 0, 0, 99.9, 1 + vssRatio5 = scalar, U16, 114, "km/h per 1000rpm", 0.1, 0, 0, 99.9, 1 + vssRatio6 = scalar, U16, 116, "km/h per 1000rpm", 0.1, 0, 0, 99.9, 1 + + ;Idle up output (AC Fan) seettings + idleUpOutputEnabled = bits, U08, 118, [0:0], "Off", "On" + idleUpOutputInv = bits, U08, 118, [1:1], "No", "Yes" + idleUpOutputPin = bits, U08, 118, [2:7], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + + tachoSweepMaxRPM = scalar, U08, 119, "RPM", 100, 0.0, 100, 10000, 0 + primingDelay = scalar, U08, 120, "S", 0.1, 0.0, 0.0, 25.5, 1 + + iacTPSlimit = scalar, U08, 121, "%", 1, 0, 0, 100, 0 + iacRPMlimitHysteresis = scalar, U08, 122, "RPM", 10, 0, 10, 2500, 0 + + rtc_trim = scalar, S08, 123, "ppm", 1, 0, -127, 127, 0 + idleAdvVss = scalar, U08, 124, "km/h", 1, 0.0, 0.0, 255, 0 + unused2_95 = array, U08, 125, [3], "%", 1.0, 0.0, 0.0, 255, 0 + +;Page 2 is the fuel map and axis bins only +page = 2 + ; name = bits, type, offset, bits + ; name = array, type, offset, shape, units, scale, translate, lo, hi, digits + ; name = scalar, type, offset, units, scale, translate, lo, hi, digits + veTable = array, U08, 0, [16x16],"%", 1.0, 0.0, 0.0, 255.0, 0 + rpmBins = array, U08, 256, [ 16], "RPM", 100.0, 0.0, 100.0, 25500.0, 0 + fuelLoadBins = array, U08, 272, [ 16], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + ;fuelLoadBins = array, U08, 272, [ 16], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, { arrayValue(rpmBins , algorithm) }, 0 + +;-------------------------------------------------- +;Start Ignition table (Page 3) +;-------------------------------------------------- +page = 3 + advTable1 = array, U08, 0,[16x16], "deg", 1.0, -40, -40, 215.0, 0 + rpmBins2 = array, U08, 256,[ 16], "RPM", 100.0, 0.0, 100, 25500, 0 + mapBins1 = array, U08, 272, [ 16], { bitStringValue(algorithmUnits , ignAlgorithm) }, 2.0, 0.0, 0.0, {ignLoadMax}, 0 ; This name has to be used in order for the table to show up in MLVs table. I can't find the regexs that make this work :( + +;-------------------------------------------------- +;Start Page 4 +;These are primarily ignition related settings (Previously part of page 2) +;-------------------------------------------------- +page = 4 + TrigAng = scalar, S16, 0, "Deg", 1, 0, -360, 360, 0 + FixAng = scalar, S08, 2, "Deg", 1, 0, -64, 64, 0 ; Allow negative values here + CrankAng = scalar, U08, 3, "Deg", 1, 0, -10, 80, 0 + TrigAngMul = scalar, U08, 4, "", 1, 0, 0, 88, 0 ; Multiplier for tooth counts that don't evenly divide into 360 + TrigEdge = bits, U08, 5,[0:0], "RISING", "FALLING" + TrigSpeed = bits, U08, 5,[1:1], "Crank Speed", "Cam Speed" + IgInv = bits, U08, 5,[2:2], "Going Low", "Going High" + TrigPattern= bits, U08, 5,[3:7], "Missing Tooth", "Basic Distributor", "Dual Wheel", "GM 7X", "4G63 / Miata / 3000GT", "GM 24X", "Jeep 2000", "Audi 135", "Honda D17", "Miata 99-05", "Mazda AU", "Non-360 Dual", "Nissan 360", "Subaru 6/7", "Daihatsu +1", "Harley EVO", "36-2-2-2", "36-2-1", "DSM 420a", "Weber-Marelli", "Ford ST170", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + TrigEdgeSec= bits, U08, 6,[0:0], "RISING", "FALLING" + fuelPumpPin= bits , U08, 6,[1:6], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + useResync = bits, U08, 6,[7:7], "No", "Yes" + sparkDur = scalar, U08, 7, "ms", 0.1, 0, 0, 25.5, 1 ; Spark duration + trigPatternSec = bits,U08, 8,[0:6], "Single tooth cam", "4-1 cam", "Poll level", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + PollLevelPol = bits, U08, 8,[7:7], "Low", "High", + +;Reset Control + bootloaderCaps = scalar, U08, 9, "level", 1, 0, 0, 255, 0 +#if resetcontrol_adv + resetControl = bits, U08, 10,[0:1], "Disabled", "Prevent When Running", "Prevent Always", "Serial Command" +#else + resetControl = bits, U08, 10,[0:1], "Disabled", "INVALID", "INVALID", "Serial Command" +#endif + resetControlPin = bits, U08, 10,[2:7], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + + SkipCycles = scalar, U08, 11, "cycles", 1, 0, 0, 255, 0 + + ; name = array, type, offset, shape, units, scale, translate, lo, hi, digits + ; name = scalar, type, offset, units, scale, translate, lo, hi, digits +;Dwell control + boostType = bits, U08, 12, [0:0], "Open Loop", "Closed Loop" + useDwellLim = bits, U08, 12, [1:1], "Off", "On" + sparkMode = bits, U08, 12, [2:4], "Wasted Spark", "Single Channel", "Wasted COP", "Sequential", "Rotary", "INVALID", "INVALID", "INVALID" + TrigFilter = bits, U08, 12, [5:6], "Off", "Weak", "Medium", "Aggressive" + ignCranklock = bits, U08, 12, [7:7], "Off", "On" + dwellcrank = scalar, U08, 13, "ms", 0.1, 0, 0, 25, 1 + dwellrun = scalar, U08, 14, "ms", 0.1, 0, 0, 8, 1 ;running dwell variable railed to 8 - who needs more than 8ms? + numTeeth = scalar, U08, 15, "teeth", 1.0, 0.0, 0.0, 255, 0 + missingTeeth = scalar, U08, 16, "teeth", 1.0, 0.0, 0.0, 255, 0 + + crankRPM = scalar, U08, 17, "rpm", 10, 0.0, 100, 1000, 0 + tpsflood = scalar, U08, 18, "%", 1.0, 0.0, 0.0, 255.0, 0 + +;Rev Limits + SoftRevLim = scalar, U08, 19, "rpm", 100, 0.0, 100, 25500, 0 + SoftLimRetard = scalar, U08, 20, "deg", 1.0, 0.0, 0.0, 80, 0 + SoftLimMax = scalar, U08, 21, "s", 0.1, 0.0, 0.0, 25.5, 1 + HardRevLim = scalar, U08, 22, "rpm", 100, 0.0, 100, 25500, 0 + +;TPS based acceleration enrichment + taeBins = array, U08, 23, [ 4], "%/s", 10.0, 0.0, 0.00, 2550.0, 0 + taeRates = array, U08, 27, [ 4], "%", 1.0, 0.0, 0.00, 255.0, 0 ; 4 bytes +;WUE Bins (Needed somewhere to put these + #if CELSIUS + wueBins = array, U08, 31, [10], "C", 1.0, -40, -40, 102.0, 0 + #else + wueBins = array, U08, 31, [10], "F", 1.8, -22.23, -40, 215.0, 0 + #endif +;Dwell config options + dwellLim = scalar, U08, 41, "ms", 1, 0, 0, 32, 0 + dwellRates = array, U08, 42, [6], "%", 1.0, 0.0, 0.00, 255.0, 0 + +;IAT (Inlet air temp) timing retard + #if CELSIUS + iatRetBins = array, U08, 48, [ 6], "C", 1.0, 0.0, 0.00, 255.0, 0 + #else + iatRetBins = array, U08, 48, [ 6], "F", 1.8, 17.77, 0.00, 255.0, 0 ; No -40 degree offset here + #endif + iatRetRates = array, U08, 54, [ 6], "deg", 1.0, 0.0, 0.00, 255.0, 0 +;Decelleration Fuel Cut Off (DFCO) + dfcoRPM = scalar, U08, 60, "RPM", 10.0, 0.0, 100, 2550, 0 + dfcoHyster = scalar, U08, 61, "RPM", 1.0, 0.0, 100, 255.0, 0 + dfcoTPSThresh= scalar, U08, 62, "%", 1.0, 0.0, 0, 100.0, 0 +;Cranking ignition bypass + ignBypassEnable = bits, U08, 63, [0:0], "Off", "On" + ignBypassPin = bits, U08, 63, [1:6], "INVALID", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + ignBypassHiLo = bits, U08, 63, [7:7], "LOW", "HIGH" +;Analog input filter levels (Note max values are 254 so that default values of 255 can be overwirtten on bootup) + ADCFILTER_TPS = scalar, U08, 64, "%", 1.0, 0.0, 0, 240, 0 + ADCFILTER_CLT = scalar, U08, 65, "%", 1.0, 0.0, 0, 240, 0 + ADCFILTER_IAT = scalar, U08, 66, "%", 1.0, 0.0, 0, 240, 0 + ADCFILTER_O2 = scalar, U08, 67, "%", 1.0, 0.0, 0, 240, 0 + ADCFILTER_BAT = scalar, U08, 68, "%", 1.0, 0.0, 0, 240, 0 + ADCFILTER_MAP = scalar, U08, 69, "%", 1.0, 0.0, 0, 240, 0 + ADCFILTER_BARO = scalar, U08, 70, "%", 1.0, 0.0, 0, 240, 0 + +;CLT (Coolant temp) timing Advance/Retard + #if CELSIUS + cltAdvBins = array, U08, 71, [ 6], "C", 1.0, -40, -40, 102.0, 0 + #else + cltAdvBins = array, U08, 71, [ 6], "F", 1.8, -22.23, -40, 215.0, 0 ; No -40 degree offset here + #endif + cltAdvValues = array, S08, 77, [ 6], "deg", 1.0, -15, -15, 15, 0 + +;MAP based acceleration enrichment + maeBins = array, U08, 83, [ 4], "kpa/s", 10.0, 0.0, 0.00, 2550.0, 0 + maeRates = array, U08, 87, [ 4], "%", 1.0, 0.0, 0.00, 255.0, 0 ; 4 bytes + + batVoltCorrect = scalar, S08, 91, "v", 0.1, 0.0, -2, 2, 1 ;Battery reading calibration value. Note: Signed value + +;Baro fuel correction + baroFuelBins = array, U08, 92, [8], "kPa", 1.0, 0, 70, 120, 0 ; Bins for the Baro correction curve + baroFuelValues = array, U08, 100, [8], "%", 1.0, 0, 0, 255, 0 ; % Values for same + +;Idle timing advance + idleAdvBins = array, U08, 108, [6], "RPM", 10.0, -50, -500, 500, 0 + idleAdvValues = array, U08, 114, [6], "deg", 1.0, -15, -15, 50, 0 + + engineProtectMaxRPM = scalar, U08, 120, "rpm", 100, 0.0, 100, 25500, 0 + + unused4_120 = array, U08, 121, [7], "%", 1.0, 0.0, 0.0, 255, 0 +;-------------------------------------------------- + +;Start AFR page +;-------------------------------------------------- +page = 5 +#if LAMBDA + ; TODO: enable this later! + ; afrTable = array, U08, 0,[16x16], "Lambda", { 0.1 / stoich }, 0.0000, 0.00, 2.00, 3 +#else + afrTable = array, U08, 0,[16x16], "AFR", 0.1, 0.0, 7, 25.5, 1 +#endif + + rpmBinsAFR = array, U08, 256,[ 16], "RPM", 100.0, 0.0, 100, 25500, 0 + loadBinsAFR = array, U08, 272,[ 16], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + +;-------------------------------------------------- +;Start page 6 +; Page 6 is all settings associated with O2/AFR +;-------------------------------------------------- +page = 6 + egoAlgorithm = bits , U08, 0, [0:1], "Simple", "INVALID", "PID", "No correction" ; * ( 1 byte) + egoType = bits , U08, 0, [2:3], "Disabled", "Narrow Band", "Wide Band", "INVALID" ; egoOption + boostEnabled = bits, U08, 0, [4:4], "Off", "On" + vvtEnabled = bits, U08, 0, [5:5], "Off", "On" + engineProtectType = bits, U08, 0, [6:7], "Off", "Spark Only", "Fuel Only","Both" + + egoKP = scalar, U08, 1, "%", 1.0, 0.0, 0.0, 200.0, 0 ; * ( 1 byte) + egoKI = scalar, U08, 2, "%", 1.0, 0.0, 0.0, 200.0, 0 ; * ( 1 byte) + egoKD = scalar, U08, 3, "%", 1.0, 0.0, 0.0, 200.0, 0 ; * ( 1 byte) + #if CELSIUS + egoTemp = scalar, U08, 4, "C", 1.0, -40, -40, 102.0, 0 + #else + egoTemp = scalar, U08, 4, "F", 1.8, -22.23, -40, 215.0, 0 + #endif + egoCount = scalar, U08, 5, "", 4.0, 0.0, 4.0, 255.0, 0 ; * ( 1 byte) + vvtMode = bits, U08, 6, [0:1], "On/Off", "Open Loop", "Closed loop", "INVALID" + vvtLoadSource = bits, U08, 6, [2:3], "MAP", "TPS", "INVALID", "INVALID" + vvtPWMdir = bits, U08, 6, [4:4], "Advance", "Retard" + vvtCLUseHold = bits, U08, 6, [5:5], "No", "Yes" + vvtCLAlterFuelTiming = bits, U08, 6, [6:6], "No", "Yes" + boostCutEnabled = bits, U08, 6, [7:7], "Off", "On" + egoLimit = scalar, U08, 7, "", 1, 0, 0, 16, 0 + ego_min = scalar, U08, 8, "AFR", 0.1, 0.0, 7, 25, 1 + ego_max = scalar, U08, 9, "AFR", 0.1, 0.0, 7, 25, 1 + ego_sdelay = scalar, U08, 10, "sec", 1, 0, 0, 120, 0 + egoRPM = scalar, U08, 11, "rpm", 100, 0.0, 100, 25500, 0 + egoTPSMax = scalar, U08, 12, "%", 1, 0, 0, 120, 0 + vvt1Pin = bits , U08, 13, [0:5], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + useExtBaro = bits, U08, 13, [6:6], "No", "Yes" + boostMode = bits, U08, 13, [7:7], "Simple", "Full" + boostPin = bits, U08, 14, [0:5], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + VVTasOnOff = bits, U08, 14, [6:6], "No", "Yes" + useEMAP = bits, U08, 14, [7:7], "No", "Yes" + brvBins = array, U08, 15, [6], "V", 0.1, 0, 6, 24, 1 ; Bins for the battery reference voltage + injBatRates = array, U08, 21, [6], "%", 1, 0, 0, 255, 0 ;Values for injector pulsewidth vs voltage + #if CELSIUS + airDenBins = array, U08, 27, [9], "C", 1.0, -40, -40, 215, 0 ; Bins for the air density correction curve + #else + airDenBins = array, U08, 27, [9], "F", 1.8, -22.23, -40, 215, 0 ; Bins for the air density correction curve + #endif + airDenRates = array, U08, 36, [9], "%", 1.0, 0.0, 0, 255, 0 ; Values for the air density correction curve + +; PWM Frequencies + boostFreq = scalar, U08, 45, "Hz", 2.0, 0.0, 10, 511, 0 + vvtFreq = scalar, U08, 46, "Hz", 2.0, 0.0, 10, 511, 0 + idleFreq = scalar, U08, 47, "Hz", 2.0, 0.0, 10, 511, 0 + +; Launch Control + launchPin = bits , U08, 48, [0:5], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + launchEnable= bits, U08, 48, [6:6], "No", "Yes" + launchHiLo = bits, U08, 48, [7:7], "LOW", "HIGH" + + lnchSoftLim = scalar, U08, 49, "rpm", 100, 0.0, 100, 25500, 0 + lnchRetard = scalar, S08, 50, "deg", 1.0, 0.0, -30, 40, 0 + lnchHardLim = scalar, U08, 51, "rpm", 100, 0.0, 100, 25500, 0 + lnchFuelAdd = scalar, U08, 52, "%", 1.0, 0.0, 0.0, 80, 0 + + idleKP = scalar, U08, 53, "%", 0.03125, 0.0, 0.0, 7.96, 2 ; * ( 1 byte) + idleKI = scalar, U08, 54, "%", 0.03125, 0.0, 0.0, 7.96, 2 ; * ( 1 byte) + idleKD = scalar, U08, 55, "%", 0.00781, 0.0, 0.0, 1.99, 3 ; * ( 1 byte) + boostLimit = scalar, U08, 56, "kPa", 2.0, 0.0, 0.0, 511.0, 0 + boostKP = scalar, U08, 57, "%", 1.0, 0.0, 0.0, 200.0, 0 ; * ( 1 byte) + boostKI = scalar, U08, 58, "%", 1.0, 0.0, 0.0, 200.0, 0 ; * ( 1 byte) + boostKD = scalar, U08, 59, "%", 1.0, 0.0, 0.0, 200.0, 0 ; * ( 1 byte) + + lnchPullRes = bits, U08, 60, [0:0], "Float" , "Pullup" + iacPWMrun = bits, U08, 60, [1:1], "No", "Yes" + fuelTrimEnabled= bits, U08, 60, [2:2], "No", "Yes" + flatSEnable = bits, U08, 60, [3:3], "No", "Yes" +; Baro Sensor pin + baroPin = bits, U08, 60, [4:7], "A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15" + +; Flat shift + flatSSoftWin = scalar, U08, 61, "rpm", 100, 0.0, 100, 25500, 0 + flatSRetard = scalar, U08, 62, "deg", 1.0, 0.0, 0.0, 80, 0 + flatSArm = scalar, U08, 63, "rpm", 100, 0.0, 100, 25500, 0 + + iacCLValues = array, U08, 64, [10], "RPM", 10.0, 0.0, 0, 2550, 0 + iacOLStepVal = array, U08, 74, [10], "Steps", 3, 0, 0, 765, 0 + iacOLPWMVal = array, U08, 84, [10], "Duty %", 1.0, 0, 0, 100, 0 + #if CELSIUS + iacBins = array, U08, 94, [10], "C", 1.0, -40, -40, 215, 0 + #else + iacBins = array, U08, 94, [10], "F", 1.8, -22.23, -40, 215, 0 + #endif + iacCrankSteps= array, U08, 104, [4], "Steps", 3, 0, 0, 765, 0 + iacCrankDuty = array, U08, 108, [4], "Duty %", 1.0, 0, 0, 100, 0 + #if CELSIUS + iacCrankBins = array, U08, 112, [4], "C", 1.0, -40, -40, 215, 0 + #else + iacCrankBins = array, U08, 112, [4], "F", 1.8, -22.23, -40, 215, 0 + #endif + + iacAlgorithm = bits , U08, 116, [0:2], "None", "On/Off", "PWM Open loop", "PWM Closed loop", "Stepper Open Loop", "Stepper Closed Loop", "PWM Closed+Open loop", "INVALID" + iacStepTime = bits , U08, 116, [3:5], "INVALID","1", "2", "3", "4", "5", "6","INVALID" + iacChannels = bits, U08, 116, [6:6], "1", "2" + iacPWMdir = bits , U08, 116, [7:7], "Normal", "Reverse" + + #if CELSIUS + iacFastTemp = scalar, U08, 117, "C", 1.0, -40, -40, 215, 0 + #else + iacFastTemp = scalar, U08, 117, "F", 1.8, -22.23, -40, 215, 0 + #endif + + iacStepHome = scalar, U08, 118, "Steps", 3, 0, 0, 765, 0 + iacStepHyster= scalar, U08, 119, "Steps", 1, 0, 1.0, 10, 0 + + ; Begin fan control vairables + fanInv = bits, U08, 120, [0:0], "No", "Yes" + fanEnable = bits, U08, 120, [1:1], "Off", "On/Off" + fanPin = bits, U08, 120, [2:7], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + #if CELSIUS + fanSP = scalar, U08, 121, "C", 1.0, -40, -40, 215.0, 0 + fanHyster = scalar, U08, 122, "C", 1.0, 0.0, 0.0, 40, 0 + #else + fanSP = scalar, U08, 121, "F", 1.8, -22.23, -40, 215.0, 0 + fanHyster = scalar, U08, 122, "F", 1.0, 0.0, 0.0, 40, 0 + #endif + fanFreq = scalar, U08 , 123, "Hz", 2.0, 0.0, 10, 511, 0 + #if CELSIUS + fanPWMBins = array, U08, 124, [4], "C", 1.0, -40, -40, 215, 0 + #else + fanPWMBins = array, U08, 124, [4], "F", 1.8, -22.23, -40, 215, 0 + #endif + +;-------------------------------------------------- +;Boost and vvt maps (Page 7) +;-------------------------------------------------- +page = 7 + boostTable = array, U08, 0,[8x8], { bitStringValue( boostTableLabels, boostType ) }, 2.0, 0.0, 0, {boostTableLimit}, 0 + rpmBinsBoost = array, U08, 64,[ 8], "RPM", 100.0, 0.0, 100, 25500, 0 + tpsBinsBoost = array, U08, 72,[ 8], "TPS", 1.0, 0.0, 0.0, 255.0, 0 + vvtTable = array, U08, 80,[8x8], "%", 1.0, 0.0, 0, 100, 0 + rpmBinsVVT = array, U08, 144,[ 8], "RPM", 100.0, 0.0, 100, 25500, 0 + loadBinsVVT = array, U08, 152,[ 8], { bitStringValue(algorithmUnits , vvtLoadSource) }, 1.0, 0.0, 0.0, 255.0, 0 +;Fuel staging Table + stagingTable = array, U08, 160, [8x8], "%", 1.0, 0.0, 0.0, 100.0, 0 + rpmBinsStaging= array, U08, 224, [ 8], "RPM", 100.0, 0.0, 100.0, 25500.0, 0 + loadBinsStaging= array, U08, 232, [ 8], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + +;-------------------------------------------------- +;Sequential fuel trim tables (Page 8) +;-------------------------------------------------- +page = 8 + fuelTrim1Table = array, U08, 0,[6x6], "%", 1.0, -128, -50, 50, 0 + fuelTrim1rpmBins = array, U08, 36,[ 6], "RPM", 100.0, 0.0, 0, 25500, 0 + fuelTrim1loadBins = array, U08, 42,[ 6], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + + fuelTrim2Table = array, U08, 48,[6x6], "%", 1.0, -128, -50, 50, 0 + fuelTrim2rpmBins = array, U08, 84,[ 6], "RPM", 100.0, 0.0, 0, 25500, 0 + fuelTrim2loadBins = array, U08, 90,[ 6], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + + fuelTrim3Table = array, U08, 96,[6x6], "%", 1.0, -128, -50, 50, 0 + fuelTrim3rpmBins = array, U08, 132,[ 6], "RPM", 100.0, 0.0, 0, 25500, 0 + fuelTrim3loadBins = array, U08, 138,[ 6], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + + fuelTrim4Table = array, U08, 144,[6x6], "%", 1.0, -128, -50, 50, 0 + fuelTrim4rpmBins = array, U08, 180,[ 6], "RPM", 100.0, 0.0, 0, 25500, 0 + fuelTrim4loadBins = array, U08, 186,[ 6], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + + fuelTrim5Table = array, U08, 192,[6x6], "%", 1.0, -128, -50, 50, 0 + fuelTrim5rpmBins = array, U08, 228,[ 6], "RPM", 100.0, 0.0, 0, 25500, 0 + fuelTrim5loadBins = array, U08, 234,[ 6], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + + fuelTrim6Table = array, U08, 240,[6x6], "%", 1.0, -128, -50, 50, 0 + fuelTrim6rpmBins = array, U08, 276,[ 6], "RPM", 100.0, 0.0, 0, 25500, 0 + fuelTrim6loadBins = array, U08, 282,[ 6], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + + fuelTrim7Table = array, U08, 288,[6x6], "%", 1.0, -128, -50, 50, 0 + fuelTrim7rpmBins = array, U08, 324,[ 6], "RPM", 100.0, 0.0, 0, 25500, 0 + fuelTrim7loadBins = array, U08, 330,[ 6], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + + fuelTrim8Table = array, U08, 336,[6x6], "%", 1.0, -128, -50, 50, 0 + fuelTrim8rpmBins = array, U08, 372,[ 6], "RPM", 100.0, 0.0, 0, 25500, 0 + fuelTrim8loadBins = array, U08, 378,[ 6], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + +;-------------------------------------------------- +;CANBUS control and Auxillary io(Page 9) +;-------------------------------------------------- +page = 9 + enable_secondarySerial = bits, U08, 0, [0:0], "Disable", "Enable" + intcan_available = bits, U08, 0, [1:1], "Disable", "Enable" + enable_intcan = bits, U08, 0, [2:2], "Disable", "Enable" + + caninput_sel0a = bits, U08, 1, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel0b = bits, U08, 1, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel0extsourcea = bits, U08, 1, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel0extsourceb = bits, U08, 1, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel0extsourcec = bits, U08, 1, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel1a = bits, U08, 2, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel1b = bits, U08, 2, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel1extsourcea = bits, U08, 2, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel1extsourceb = bits, U08, 2, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel1extsourcec = bits, U08, 2, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel2a = bits, U08, 3, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel2b = bits, U08, 3, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel2extsourcea = bits, U08, 3, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel2extsourceb = bits, U08, 3, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel2extsourcec = bits, U08, 3, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel3a = bits, U08, 4, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel3b = bits, U08, 4, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel3extsourcea = bits, U08, 4, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel3extsourceb = bits, U08, 4, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel3extsourcec = bits, U08, 4, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel4a = bits, U08, 5, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel4b = bits, U08, 5, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel4extsourcea = bits, U08, 5, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel4extsourceb = bits, U08, 5, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel4extsourcec = bits, U08, 5, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel5a = bits, U08, 6, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel5b = bits, U08, 6, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel5extsourcea = bits, U08, 6, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel5extsourceb = bits, U08, 6, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel5extsourcec = bits, U08, 6, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel6a = bits, U08, 7, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel6b = bits, U08, 7, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel6extsourcea = bits, U08, 7, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel6extsourceb = bits, U08, 7, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel6extsourcec = bits, U08, 7, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel7a = bits, U08, 8, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel7b = bits, U08, 8, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel7extsourcea = bits, U08, 8, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel7extsourceb = bits, U08, 8, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel7extsourcec = bits, U08, 8, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel8a = bits, U08, 9, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel8b = bits, U08, 9, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel8extsourcea = bits, U08, 9, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel8extsourceb = bits, U08, 9, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel8extsourcec = bits, U08, 9, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel9a = bits, U08, 10, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel9b = bits, U08, 10, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel9extsourcea = bits, U08, 10, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel9extsourceb = bits, U08, 10, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel9extsourcec = bits, U08, 10, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel10a = bits, U08, 11, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel10b = bits, U08, 11, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel10extsourcea = bits, U08, 11, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel10extsourceb = bits, U08, 11, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel10extsourcec = bits, U08, 11, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel11a = bits, U08, 12, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel11b = bits, U08, 12, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel11extsourcea = bits, U08, 12, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel11extsourceb = bits, U08, 12, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel11extsourcec = bits, U08, 12, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel12a = bits, U08, 13, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel12b = bits, U08, 13, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel12extsourcea = bits, U08, 13, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel12extsourceb = bits, U08, 13, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel12extsourcec = bits, U08, 13, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel13a = bits, U08, 14, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel13b = bits, U08, 14, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel13extsourcea = bits, U08, 14, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel13extsourceb = bits, U08, 14, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel13extsourcec = bits, U08, 14, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel14a = bits, U08, 15, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel14b = bits, U08, 15, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel14extsourcea = bits, U08, 15, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel14extsourceb = bits, U08, 15, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel14extsourcec = bits, U08, 15, [7:7], "INVALID", "Via Internal CAN" + + caninput_sel15a = bits, U08, 16, [0:1], "Off", "INVALID", "Analog_local", "Digital_local" + caninput_sel15b = bits, U08, 16, [2:3], "Off", "External Source", "Analog_local", "Digital_local" + caninput_sel15extsourcea = bits, U08, 16, [5:5], "Via Secondary Serial", "INVALID" + caninput_sel15extsourceb = bits, U08, 16, [6:6], "Via Secondary Serial", "Via Internal CAN" + caninput_sel15extsourcec = bits, U08, 16, [7:7], "INVALID", "Via Internal CAN" + + caninput_source_can_address0 = bits, U16, 17, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address1 = bits, U16, 19, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address2 = bits, U16, 21, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address3 = bits, U16, 23, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address4 = bits, U16, 25, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address5 = bits, U16, 27, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address6 = bits, U16, 29, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address7 = bits, U16, 31, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address8 = bits, U16, 33, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address9 = bits, U16, 35, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address10 = bits, U16, 37, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address11 = bits, U16, 39, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address12 = bits, U16, 41, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address13 = bits, U16, 43, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address14 = bits, U16, 45, [0:10], $CAN_ADDRESS_HEX + caninput_source_can_address15 = bits, U16, 47, [0:10], $CAN_ADDRESS_HEX + + caninput_source_start_byte0 = bits, U08, 49, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte1 = bits, U08, 50, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte2 = bits, U08, 51, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte3 = bits, U08, 52, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte4 = bits, U08, 53, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte5 = bits, U08, 54, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte6 = bits, U08, 55, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte7 = bits, U08, 56, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte8 = bits, U08, 57, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte9 = bits, U08, 58, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte10 = bits, U08, 59, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte11 = bits, U08, 60, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte12 = bits, U08, 61, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte13 = bits, U08, 62, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte14 = bits, U08, 63, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + caninput_source_start_byte15 = bits, U08, 64, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + + caninput_source_num_bytes0 = bits, U16, 65, [0:0], "1", "2" + caninput_source_num_bytes1 = bits, U16, 65, [1:1], "1", "2" + caninput_source_num_bytes2 = bits, U16, 65, [2:2], "1", "2" + caninput_source_num_bytes3 = bits, U16, 65, [3:3], "1", "2" + caninput_source_num_bytes4 = bits, U16, 65, [4:4], "1", "2" + caninput_source_num_bytes5 = bits, U16, 65, [5:5], "1", "2" + caninput_source_num_bytes6 = bits, U16, 65, [6:6], "1", "2" + caninput_source_num_bytes7 = bits, U16, 65, [7:7], "1", "2" + caninput_source_num_bytes8 = bits, U16, 65, [8:8], "1", "2" + caninput_source_num_bytes9 = bits, U16, 65, [9:9], "1", "2" + caninput_source_num_bytes10 = bits, U16, 65, [10:10], "1", "2" + caninput_source_num_bytes11 = bits, U16, 65, [11:11], "1", "2" + caninput_source_num_bytes12 = bits, U16, 65, [12:12], "1", "2" + caninput_source_num_bytes13 = bits, U16, 65, [13:13], "1", "2" + caninput_source_num_bytes14 = bits, U16, 65, [14:14], "1", "2" + caninput_source_num_bytes15 = bits, U16, 65, [15:15], "1", "2" + + unused10_67 = scalar, U08, 67, "", 1, 0, 0, 255, 0 + unused10_68 = scalar, U08, 68, "", 1, 0, 0, 255, 0 + + enable_intcandata_out = bits, U08, 69, [0:0], "Off", "On" + canoutput_sel0 = bits, U08, 70, [0:0], "Off", "On" + canoutput_sel1 = bits, U08, 71, [0:0], "Off", "On" + canoutput_sel2 = bits, U08, 72, [0:0], "Off", "On" + canoutput_sel3 = bits, U08, 73, [0:0], "Off", "On" + canoutput_sel4 = bits, U08, 74, [0:0], "Off", "On" + canoutput_sel5 = bits, U08, 75, [0:0], "Off", "On" + canoutput_sel6 = bits, U08, 76, [0:0], "Off", "On" + canoutput_sel7 = bits, U08, 77, [0:0], "Off", "On" + canoutput_param_group = array , U16, 78, [ 8], "", 1, 0, 0, 65535, 0 + canoutput_param_start_byte0 = bits, U08, 94, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + canoutput_param_start_byte1 = bits, U08, 95, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + canoutput_param_start_byte2 = bits, U08, 96, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + canoutput_param_start_byte3 = bits, U08, 97, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + canoutput_param_start_byte4 = bits, U08, 98, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + canoutput_param_start_byte5 = bits, U08, 99, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + canoutput_param_start_byte6 = bits, U08, 100, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + canoutput_param_start_byte7 = bits, U08, 101, [0:2], "0", "1", "2", "3", "4", "5", "6", "7" + canoutput_param_num_bytes0 = bits, U08, 102, [0:1], "INVALID", "1", "2", "INVALID" + canoutput_param_num_bytes1 = bits, U08, 103, [0:1], "INVALID", "1", "2", "INVALID" + canoutput_param_num_bytes2 = bits, U08, 104, [0:1], "INVALID", "1", "2", "INVALID" + canoutput_param_num_bytes3 = bits, U08, 105, [0:1], "INVALID", "1", "2", "INVALID" + canoutput_param_num_bytes4 = bits, U08, 106, [0:1], "INVALID", "1", "2", "INVALID" + canoutput_param_num_bytes5 = bits, U08, 107, [0:1], "INVALID", "1", "2", "INVALID" + canoutput_param_num_bytes6 = bits, U08, 108, [0:1], "INVALID", "1", "2", "INVALID" + canoutput_param_num_bytes7 = bits, U08, 109, [0:1], "INVALID", "1", "2", "INVALID" + + unused10_110 = scalar, U08, 110, "", 1, 0, 0, 255, 0 + unused10_111 = scalar, U08, 111, "", 1, 0, 0, 255, 0 + unused10_112 = scalar, U08, 112, "", 1, 0, 0, 255, 0 + unused10_113 = scalar, U08, 113, "", 1, 0, 0, 255, 0 + + speeduino_tsCanId = bits, U08, 114, [0:3], $tsCanId_list + true_address = bits, U16, 115, [0:10], $CAN_ADDRESS_HEX + realtime_base_address = bits, U16, 117, [0:10], $CAN_ADDRESS_HEX + obd_address = bits, U16, 119, [0:10], $CAN_ADDRESS_HEX + + Auxin0pina = bits, U08, 121, [0:5], $ANALOG_PIN + Auxin1pina = bits, U08, 122, [0:5], $ANALOG_PIN + Auxin2pina = bits, U08, 123, [0:5], $ANALOG_PIN + Auxin3pina = bits, U08, 124, [0:5], $ANALOG_PIN + Auxin4pina = bits, U08, 125, [0:5], $ANALOG_PIN + Auxin5pina = bits, U08, 126, [0:5], $ANALOG_PIN + Auxin6pina = bits, U08, 127, [0:5], $ANALOG_PIN + Auxin7pina = bits, U08, 128, [0:5], $ANALOG_PIN + Auxin8pina = bits, U08, 129, [0:5], $ANALOG_PIN + Auxin9pina = bits, U08, 130, [0:5], $ANALOG_PIN + Auxin10pina = bits, U08, 131, [0:5], $ANALOG_PIN + Auxin11pina = bits, U08, 132, [0:5], $ANALOG_PIN + Auxin12pina = bits, U08, 133, [0:5], $ANALOG_PIN + Auxin13pina = bits, U08, 134, [0:5], $ANALOG_PIN + Auxin14pina = bits, U08, 135, [0:5], $ANALOG_PIN + Auxin15pina = bits, U08, 136, [0:5], $ANALOG_PIN + + Auxin0pinb = bits, U08, 137, [0:5], $DIGITAL_PIN + Auxin1pinb = bits, U08, 138, [0:5], $DIGITAL_PIN + Auxin2pinb = bits, U08, 139, [0:5], $DIGITAL_PIN + Auxin3pinb = bits, U08, 140, [0:5], $DIGITAL_PIN + Auxin4pinb = bits, U08, 141, [0:5], $DIGITAL_PIN + Auxin5pinb = bits, U08, 142, [0:5], $DIGITAL_PIN + Auxin6pinb = bits, U08, 143, [0:5], $DIGITAL_PIN + Auxin7pinb = bits, U08, 144, [0:5], $DIGITAL_PIN + Auxin8pinb = bits, U08, 145, [0:5], $DIGITAL_PIN + Auxin9pinb = bits, U08, 146, [0:5], $DIGITAL_PIN + Auxin10pinb = bits, U08, 147, [0:5], $DIGITAL_PIN + Auxin11pinb = bits, U08, 148, [0:5], $DIGITAL_PIN + Auxin12pinb = bits, U08, 149, [0:5], $DIGITAL_PIN + Auxin13pinb = bits, U08, 150, [0:5], $DIGITAL_PIN + Auxin14pinb = bits, U08, 151, [0:5], $DIGITAL_PIN + Auxin15pinb = bits, U08, 152, [0:5], $DIGITAL_PIN + + iacStepperInv = bits, U08, 153, [0:0], "No", "Yes" + iacCoolTime = bits, U08, 153, [1:3], "0", "1", "2", "3", "4", "5", "6","INVALID" + blankfield = bits, U08, 153, [4:4], "","" + + unused10_153 = bits, U08, 153, [5:7], "" + + iacMaxSteps = scalar, U08, 154, "Steps", 3, 0, 0, {iacStepHome-3}, 0 + + unused10_154 = array, U08, 155, [37], "", 1, 0, 0, 255, 0 + +page = 10 +#if CELSIUS + crankingEnrichBins = array, U08, 0, [4], "C", 1.0, -40, -40, 215, 0 +#else + crankingEnrichBins = array, U08, 0, [4], "F", 1.8, -22.23, -40, 215, 0 +#endif + crankingEnrichValues= array, U08, 4, [4], "%", 5.0, 0.0, 0, 1275, 0 ; Values for the cranking enrichment curve + + rotaryType = bits , U08, 8, [0:1], "FC", "FD", "RX8", "INVALID" + stagingEnabled = bits , U08, 8, [2:2], "Off","On" + stagingMode = bits , U08, 8, [3:3], "Table","Automatic" + EMAPPin = bits, U08, 8, [4:7], "A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15" + + rotarySplitValues = array, U08, 9, [8], "degrees", 1.0, 0.0, 0.0, 40, 0 + rotarySplitBins = array, U08, 17, [8], { bitStringValue(algorithmUnits , algorithm) }, 2.0, 0.0, 0.0, {fuelLoadMax}, 0 + + boostSens = scalar, U16, 25, "", 1, 0, 0, 5000, 0 + boostIntv = scalar, U08, 27, "ms", 1, 0, 0, 250, 0 + stagedInjSizePri = scalar, U16, 28, "cc/min", 1, 0, 0, 1500, 0 + stagedInjSizeSec = scalar, U16, 30, "cc/min", 1, 0, 0, 1500, 0 + lnchCtrlTPS = scalar, U08, 32, "%TPS", 1, 0, 0, 100, 0 + + flexBoostBins = array, U08, 33, [6], "%", 1.0, 0.0, 0.0, 250.0, 0 + ; The boost range is obviously arbitrary since int16_t has ~32k in both directions + flexBoostAdj = array, S16, 39, [6], "kPa", 1.0, 0.0, -500.0, 500.0, 0 + flexFuelBins = array, U08, 51, [6], "%", 1.0, 0.0, 0.0, 250.0, 0 + flexFuelAdj = array, U08, 57, [6], "%", 1.0, 0.0, 0.0, 250.0, 0 + flexAdvBins = array, U08, 63, [6], "%", 1.0, 0.0, 0.0, 250.0, 0 + flexAdvAdj = array, U08, 69, [6], "Deg", 1.0, -40, -40, 215.0, 0 + + n2o_enable = bits , U08, 75, [0:1], "Off","1 Stage","2 stage", "INVALID" + n2o_arming_pin = bits , U08, 75, [2:7], $IO_Pins_no_def +#if CELSIUS + n2o_minCLT = scalar, U08, 76, "C", 1.0, -40, -40, 215, 0 +#else + n2o_minCLT = scalar, U08, 76, "F", 1.8, -22.23, -40, 215, 0 +#endif + n2o_maxMAP = scalar, U08, 77, "kPa", 2.0, 0.0, 0.0, 511.0, 0 + n2o_minTPS = scalar, U08, 78, "%TPS", 1.0, 0.0, 0.0, 100, 0 + n2o_maxAFR = scalar, U08, 79, "AFR", 0.1, 0.0, 0.0, 25.5, 1 + + n2o_stage1_pin = bits , U08, 80, [0:5], $IO_Pins_no_def + n2o_pin_polarity = bits , U08, 80, [6:6], "HIGH", "LOW" + n2o_unused = bits , U08, 80, [7:7], "No", "Yes" + n2o_stage1_minRPM = scalar, U08, 81, "RPM", 100, 0.0, 1000, 10000, 0 + n2o_stage1_maxRPM = scalar, U08, 82, "RPM", 100, 0.0, 1000, 10000, 0 + n2o_stage1_adderMin = scalar, U08, 83, "ms", 0.1, 0, 0, 25.5, 1 + n2o_stage1_adderMax = scalar, U08, 84, "ms", 0.1, 0, 0, 25.5, 1 + n2o_stage1_retard = scalar, U08, 85, "Deg", 1.0, 0.0, 0.0, 250.0, 0 + + n2o_stage2_pin = bits , U08, 86, [0:5], $IO_Pins_no_def + n2o_stage2_unused = bits , U08, 86, [6:7], "No", "Yes", "INVALID", "INVALID" + n2o_stage2_minRPM = scalar, U08, 87, "RPM", 100, 0.0, 1000, 10000, 0 + n2o_stage2_maxRPM = scalar, U08, 88, "RPM", 100, 0.0, 1000, 10000, 0 + n2o_stage2_adderMin = scalar, U08, 89, "ms", 0.1, 0, 0, 32, 1 + n2o_stage2_adderMax = scalar, U08, 90, "ms", 0.1, 0, 0, 32, 1 + n2o_stage2_retard = scalar, U08, 91, "Deg", 1.0, 0.0, 0.0, 250.0, 0 + + ; Knock settings + knock_mode = bits , U08, 92, [0:1], "Off","Digital","Analog", "INVALID" + knock_pin = bits , U08, 92, [2:7], "INVALID", "INVALID", "2", "3", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "18", "19", "20", "21", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15", "INVALID" + + knock_trigger = bits , U08, 93, [0:0], "HIGH", "LOW" + knock_pullup = bits , U08, 93, [1:1], "Off", "Internal pullup" + knock_limiterDisable= bits , U08, 93, [2:2], "No", "Yes" + knock_unused = bits , U08, 93, [3:4], "INVALID", "1", "2", "3" + + ;Knock detection / filters + knock_count = bits , U08, 93, [5:7], "INVALID", "1", "2", "3", "4", "5", "6", "7" + knock_threshold = scalar, U08, 94, "Volts", 0.1, 0.0, 0.0, 5.0, 1 + knock_maxMAP = scalar, U08, 95, "kPa", 2.0, 0.0, 0.0, 511.0, 0 + knock_maxRPM = scalar, U08, 96, "RPM", 100.0, 0.0, 0, 10000, 0 + knock_window_rpms = array, U08, 97, [6], "RPM", 100.0, 0.0, 0, 10000, 0 + knock_window_angle = array, U08, 103, [6], "deg", 1.0, -50, -50, 100, 0 + knock_window_dur = array, U08, 109, [6], "deg", 1.0, 0.0, 0, 100, 0 ;Knock window duration + + ;Retard and recovery + knock_maxRetard = scalar, U08, 115, "Deg", 1.0, 0.0, 0.0, 50, 0 + knock_firstStep = scalar, U08, 116, "Deg", 1.0, 0.0, 0.0, 50, 0 + knock_stepSize = scalar, U08, 117, "Deg", 1.0, 0.0, 0.0, 50, 0 + knock_stepTime = scalar, U08, 118, "Sec", 0.1, 0.0, 0.0, 2.5, 1 + + knock_duration = scalar, U08, 119, "Sec", 0.1, 0.0, 0.0, 2.5, 1 ;//Time after knock retard starts that it should start recovering + knock_recoveryStepTime = scalar, U08, 120, "Sec", 0.1, 0.0, 0.0, 2.5, 1 + knock_recoveryStep = scalar, U08, 121, "Deg", 1.0, 0.0, 0.0, 50, 0 + + ;Things for the 2nd fuel table + fuel2Algorithm = bits, U08, 122, [0:2], $loadSourceNames + fuel2Mode = bits, U08, 122, [3:5], "Off", "Multiplied %", "Added", "Switched - Conditional", "Switched - Input based","INVALID","INVALID","INVALID" + fuel2SwitchVariable = bits, U08, 122, [6:7], "RPM", "MAP", "TPS", "ETH%" + fuel2SwitchValue = scalar, U16, 123, { bitStringValue(fuel2SwitchUnits, fuel2SwitchVariable) }, 1.0, 0.0, 0.0, 9000, 0 + fuel2InputPin = bits , U08, 125, [0:5], $IO_Pins_no_def + fuel2InputPolarity = bits , U08, 125, [6:6], "LOW", "HIGH" + fuel2InputPullup = bits , U08, 125, [7:7], "No", "Yes" + + ;All related to the closed loop VVT control + vvtCLholdDuty = scalar, U08, 126, "%", 1.0, 0.0, 0.0, 100.0, 0 + vvtCLKP = scalar, U08, 127, "%", 0.03125, 0.0, 0.0, 7.96, 2 ; * ( 1 byte) + vvtCLKI = scalar, U08, 128, "%", 0.03125, 0.0, 0.0, 7.96, 2 ; * ( 1 byte) + vvtCLKD = scalar, U08, 129, "%", 0.00781, 0.0, 0.0, 1.99, 3 ; * ( 1 byte) + vvtCLMinAng = scalar, S16, 130, "deg", 1.0, 0.0, -360.0, 360.0, 0 ; * ( 2 bytes) + vvtCLMaxAng = scalar, S16, 132, "deg", 1.0, 0.0, -360.0, 360.0, 0 ; * ( 2 bytes) + + crankingEnrichTaper = scalar, U08, 134, "s", 0.1, 0.0, 0.0, 25.5, 1 + + ;Pressure transducers + fuelPressureEnable = bits, U08, 135, [0:0], "Off", "On" + oilPressureEnable = bits, U08, 135, [1:1], "Off", "On" + oilPressureProtEnbl = bits, U08, 135, [2:2], "Off", "On" + + fuelPressurePin = bits, U08, 136, [0:3], "A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15" + oilPressurePin = bits, U08, 136, [4:7], "A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7", "A8", "A9", "A10", "A11", "A12", "A13", "A14", "A15" + + fuelPressureMin = scalar, S08, 137, "psi", 1.0, 0.0, -100, 127, 0 ;Note signed int + fuelPressureMax = scalar, U08, 138, "psi", 1.0, 0.0, 0.0, 255, 0 + oilPressureMin = scalar, S08, 139, "psi", 1.0, 0.0, -100, 127, 0 ;Note signed int + oilPressureMax = scalar, U08, 140, "psi", 1.0, 0.0, 0.0, 255, 0 + + oilPressureProtRPM = array, U08, 141, [ 4], "RPM", 100.0, 0.0, 100.0, 25500, 0 + oilPressureProtMins = array, U08, 145, [ 4], "psi", 1.0, 0.0, 0.0, 255, 0 + + wmiEnabled = bits, U08, 149, [0:0], "Off", "On" + wmiMode = bits, U08, 149, [1:2], "Simple", "Proportional", "Openloop", "Closedloop" + + wmiAdvEnabled = bits, U08, 149, [7:7], "Off", "On" + + wmiTPS = scalar, U08, 150, "%TPS", 1.0, 0.0, 0.0, 100, 0 + wmiRPM = scalar, U08, 151, "RPM", 100.0, 0.0, 0, 10000, 0 + wmiMAP = scalar, U08, 152, "kPa", 2.0, 0.0, 0.0, 511.0, 0 + wmiMAP2 = scalar, U08, 153, "kPa", 2.0, 0.0, 0.0, 511.0, 0 +#if CELSIUS + wmiIAT = scalar, U08, 154, "C", 1.0, -40, -40, 215, 0 +#else + wmiIAT = scalar, U08, 154, "F", 1.8, -22.23, -40, 215, 0 +#endif + wmiOffset = scalar, S08, 155, "ms", 1.0, 0.0, -12.7, 12.7, 0 ;Note signed int + + wmiIndicatorEnabled = bits, U08, 156, [0:0], "Off", "On" + wmiIndicatorPin = bits, U08, 156, [1:6], "Board Default", $DIGITAL_PIN + wmiIndicatorPolarity = bits , U08, 156, [7:7], "Normal", "Inverted" + + wmiEmptyEnabled = bits, U08, 157, [0:0], "Off", "On" + wmiEmptyPin = bits, U08, 157, [1:6], "Board Default", $DIGITAL_PIN + wmiEmptyPolarity = bits , U08, 157, [7:7], "Normal", "Inverted" + + wmiEnabledPin = bits, U08, 158, [0:5], "Board Default", $DIGITAL_PIN + + wmiAdvBins = array, U08, 159, [6], "kPa", 2.0, 0.0, 0.0, 511.0, 0 + wmiAdvAdj = array, U08, 165, [6], "Deg", 1.0, -40, -40, 215.0, 0 + + vvtCLminDuty = scalar, U08, 171, "%", 1.0, 0.0, 0.0, 100.0, 0 ; Minimum and maximum duty cycles when using closed loop + vvtCLmaxDuty = scalar, U08, 172, "%", 1.0, 0.0, 0.0, 100.0, 0 + vvt2Pin = bits , U08, 173, [0:5], "Board Default", "INVALID", "INVALID", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + + ;Fuel temperature correction + #if CELSIUS + fuelTempBins = array, U08, 174, [6], "C", 1.0, -40, -40, 215, 0 + #else + fuelTempBins = array, U08, 174, [6], "F", 1.8, -22.23, -40, 215, 0 + #endif + fuelTempValues = array, U08, 180, [6], "%", 1.0, 0.0, 0, 255, 0 + + ;Things for the 2nd spark table + spark2Algorithm = bits, U08, 186, [0:2], $loadSourceNames + spark2Mode = bits, U08, 186, [3:5], "Off", "Multiplied %", "Added", "Switched - Conditional", "Switched - Input based","INVALID","INVALID","INVALID" + spark2SwitchVariable = bits, U08, 186, [6:7], "RPM", "MAP", "TPS", "ETH%" + spark2SwitchValue = scalar, U16, 187, { bitStringValue(fuel2SwitchUnits, spark2SwitchVariable) }, 1.0, 0.0, 0.0, 9000, 0 + spark2InputPin = bits , U08, 189, [0:5], $IO_Pins_no_def + spark2InputPolarity = bits , U08, 189, [6:6], "LOW", "HIGH" + spark2InputPullup = bits , U08, 189, [7:7], "No", "Yes" + + unused11_190_191 = array, U08, 190, [2], "RPM", 100.0, 0.0, 100, 25500, 0 + +;Page 11 is the fuel map and axis bins only +page = 11 + ; name = bits, type, offset, bits + ; name = array, type, offset, shape, units, scale, translate, lo, hi, digits + ; name = scalar, type, offset, units, scale, translate, lo, hi, digits + veTable2 = array, U08, 0, [16x16],"%", 1.0, 0.0, 0.0, 255.0, 0 + fuelRPM2Bins = array, U08, 256, [ 16], "RPM", 100.0, 0.0, 0.0, 25500.0, 0 + fuelLoad2Bins = array, U08, 272, [ 16], { bitStringValue(algorithmUnits , fuel2Algorithm) }, 2.0, 0.0, 0.0, { fuel2LoadMax }, 0 + + +;-------------------------------------------------- +;Water methanol inejction maps (Page 12) +;-------------------------------------------------- +page = 12 + wmiTable = array, U08, 0,[8x8], "%", 1.0, 0.0, 0.0, 255.0, 0 + rpmBinsWMI = array, U08, 64,[ 8], "RPM", 100.0, 0.0, 100, 25500, 0 + mapBinsWMI = array, U08, 72,[ 8], "kPa", 2.0, 0.0, 0.0, 511.0, 0 + ;VVT2 map should be here in the middle + dwellTable = array, U08, 160,[4x4], "ms", 0.1, 0.0, 0.1, 8.0, 1 + rpmBinsDwell = array, U08, 176,[ 4], "RPM", 100.0, 0.0, 100, 25500, 0 + mapBinsDwell = array, U08, 180,[ 4], "kPa", 2.0, 0.0, 0.0, 511.0, 0 + +;Page 13 is the programmable outputs +page = 13 + outputInverted0 = bits, U08, 0, [0:0], "Active high", "Active low" + outputInverted1 = bits, U08, 0, [1:1], "Active high", "Active low" + outputInverted2 = bits, U08, 0, [2:2], "Active high", "Active low" + outputInverted3 = bits, U08, 0, [3:3], "Active high", "Active low" + outputInverted4 = bits, U08, 0, [4:4], "Active high", "Active low" + outputInverted5 = bits, U08, 0, [5:5], "Active high", "Active low" + outputInverted6 = bits, U08, 0, [6:6], "Active high", "Active low" + outputInverted7 = bits, U08, 0, [7:7], "Active high", "Active low" + unused12_1 = scalar, U08, 1, "bits", 1.000, 0.000 + outputPin = array, U08, 2, [ 8], "", 1.0, 0.0, 0.0, 255.0, 0 + outputPin0 = bits, U08, 2, [0:7], $comp_IO_Pins + outputPin1 = bits, U08, 3, [0:7], $comp_IO_Pins + outputPin2 = bits, U08, 4, [0:7], $comp_IO_Pins + outputPin3 = bits, U08, 5, [0:7], $comp_IO_Pins + outputPin4 = bits, U08, 6, [0:7], $comp_IO_Pins + outputPin5 = bits, U08, 7, [0:7], $comp_IO_Pins + outputPin6 = bits, U08, 8, [0:7], $comp_IO_Pins + outputPin7 = bits, U08, 9, [0:7], $comp_IO_Pins + outputDelay = array, U08, 10, [ 8], "S", 0.1, 0.0, 0.0, 25.5, 1 + firstDataIn = array, U08, 18, [ 8], "", 1.0, 0.0, 0.0, 65535.0, 0 + firstDataIn0= bits, U08, 18, [0:7], $fullStatus_def + firstDataIn1= bits, U08, 19, [0:7], $fullStatus_def + firstDataIn2= bits, U08, 20, [0:7], $fullStatus_def + firstDataIn3= bits, U08, 21, [0:7], $fullStatus_def + firstDataIn4= bits, U08, 22, [0:7], $fullStatus_def + firstDataIn5= bits, U08, 23, [0:7], $fullStatus_def + firstDataIn6= bits, U08, 24, [0:7], $fullStatus_def + firstDataIn7= bits, U08, 25, [0:7], $fullStatus_def + secondDataIn = array, U08, 26, [ 8], "", 1.0, 0.0, 0.0, 65535.0, 0 + secondDataIn0= bits, U08, 26, [0:7], $fullStatus_def + secondDataIn1= bits, U08, 27, [0:7], $fullStatus_def + secondDataIn2= bits, U08, 28, [0:7], $fullStatus_def + secondDataIn3= bits, U08, 29, [0:7], $fullStatus_def + secondDataIn4= bits, U08, 30, [0:7], $fullStatus_def + secondDataIn5= bits, U08, 31, [0:7], $fullStatus_def + secondDataIn6= bits, U08, 32, [0:7], $fullStatus_def + secondDataIn7= bits, U08, 33, [0:7], $fullStatus_def + unused13_35_49 = array, U08, 34, [ 16], "%", 1.0, 0.0, 0.0, 100.0, 0 + firstTarget = array, S16, 50, [ 8], "", 1.0, 0.0, -32768.0, 32768.0, 0 + secondTarget = array, S16, 66, [ 8], "", 1.0, 0.0, -32768.0, 32768.0, 0 + firstCompType0 = bits, U08, 82, [0:2], $comparator_def + secondCompType0 = bits, U08, 82, [3:5], $comparator_def + bitwise0 = bits, U08, 82, [6:7], $bitwise_def + firstCompType1 = bits, U08, 83, [0:2], $comparator_def + secondCompType1 = bits, U08, 83, [3:5], $comparator_def + bitwise1 = bits, U08, 83, [6:7], $bitwise_def + firstCompType2 = bits, U08, 84, [0:2], $comparator_def + secondCompType2 = bits, U08, 84, [3:5], $comparator_def + bitwise2 = bits, U08, 84, [6:7], $bitwise_def + firstCompType3 = bits, U08, 85, [0:2], $comparator_def + secondCompType3 = bits, U08, 85, [3:5], $comparator_def + bitwise3 = bits, U08, 85, [6:7], $bitwise_def + firstCompType4 = bits, U08, 86, [0:2], $comparator_def + secondCompType4 = bits, U08, 86, [3:5], $comparator_def + bitwise4 = bits, U08, 86, [6:7], $bitwise_def + firstCompType5 = bits, U08, 87, [0:2], $comparator_def + secondCompType5 = bits, U08, 87, [3:5], $comparator_def + bitwise5 = bits, U08, 87, [6:7], $bitwise_def + firstCompType6 = bits, U08, 88, [0:2], $comparator_def + secondCompType6 = bits, U08, 88, [3:5], $comparator_def + bitwise6 = bits, U08, 88, [6:7], $bitwise_def + firstCompType7 = bits, U08, 89, [0:2], $comparator_def + secondCompType7 = bits, U08, 89, [3:5], $comparator_def + bitwise7 = bits, U08, 89, [6:7], $bitwise_def + candID = array, U16, 90, [ 8], "", 1.0, 0.0, 0.0, 255.0, 0 + unused12_106_127= array, U08, 106, [ 22], "%", 1.0, 0.0, 0.0, 255, 0 + +;-------------------------------------------------- +;Second ignition map (Page 14) +;-------------------------------------------------- +page = 14 + advTable2 = array, U08, 0,[16x16], "deg", 1.0, -40, -40, 215.0, 0 + rpmBins3 = array, U08, 256,[ 16], "RPM", 100.0, 0.0, 100, 25500, 0 + mapBins2 = array, U08, 272, [ 16], { bitStringValue(algorithmUnits , ignAlgorithm) }, 2.0, 0.0, 0.0, { ign2LoadMax }, 0 ; This name has to be used in order for the table to show up in MLVs table. I can't find the regexs that make this work :( + + + +;------------------------------------------------------------------------------- + +[EventTriggers] + triggeredPageRefresh = 1, { vssRefresh > 0 } + +[ConstantsExtensions] + requiresPowerCycle = nCylinders + requiresPowerCycle = pinLayout + requiresPowerCycle = fanPin + requiresPowerCycle = reqFuel + requiresPowerCycle = numTeeth + requiresPowerCycle = missingTeeth + requiresPowerCycle = trigPatternSec + requiresPowerCycle = injOpen + requiresPowerCycle = IgInv + requiresPowerCycle = fanInv + requiresPowerCycle = boostEnabled + requiresPowerCycle = vvtEnabled +; requiresPowerCycle = vvtChannels + requiresPowerCycle = boostFreq + requiresPowerCycle = vvtFreq + requiresPowerCycle = idleFreq + requiresPowerCycle = sparkMode + requiresPowerCycle = launchPin + requiresPowerCycle = launchEnable + requiresPowerCycle = launchHiLo + requiresPowerCycle = flexEnabled + requiresPowerCycle = vssMode + requiresPowerCycle = oddfire2 + requiresPowerCycle = oddfire3 + requiresPowerCycle = oddfire4 + requiresPowerCycle = iacCLminDuty + requiresPowerCycle = iacCLmaxDuty + requiresPowerCycle = useExtBaro + requiresPowerCycle = useEMAP + requiresPowerCycle = baroPin + requiresPowerCycle = rotaryType + requiresPowerCycle = stagedInjSizePri + requiresPowerCycle = stagedInjSizeSec + requiresPowerCycle = stagingEnabled + requiresPowerCycle = resetControl + requiresPowerCycle = resetControlPin + requiresPowerCycle = n2o_enable + requiresPowerCycle = n2o_arming_pin + requiresPowerCycle = n2o_pin_polarity + requiresPowerCycle = knock_mode + requiresPowerCycle = knock_pin + requiresPowerCycle = knock_trigger + requiresPowerCycle = knock_pullup + requiresPowerCycle = idleUpEnabled + requiresPowerCycle = idleUpOutputEnabled + requiresPowerCycle = CTPSEnabled + requiresPowerCycle = CTPSPin + requiresPowerCycle = CTPSPolarity + requiresPowerCycle = legacyMAP + requiresPowerCycle = fuel2InputPin + requiresPowerCycle = fuel2InputPolarity + requiresPowerCycle = wmiEnabled + requiresPowerCycle = wmiEmptyEnabled + requiresPowerCycle = wmiEmptyPin + requiresPowerCycle = wmiEmptyPolarity + requiresPowerCycle = wmiIndicatorEnabled + requiresPowerCycle = wmiIndicatorPin + requiresPowerCycle = wmiIndicatorPolarity + requiresPowerCycle = vvtCLminDuty + requiresPowerCycle = vvtCLmaxDuty + + requiresPowerCycle = caninput_sel0a + requiresPowerCycle = caninput_sel0b + requiresPowerCycle = caninput_sel1a + requiresPowerCycle = caninput_sel1b + requiresPowerCycle = caninput_sel2a + requiresPowerCycle = caninput_sel2b + requiresPowerCycle = caninput_sel3a + requiresPowerCycle = caninput_sel3b + requiresPowerCycle = caninput_sel4a + requiresPowerCycle = caninput_sel4b + requiresPowerCycle = caninput_sel5a + requiresPowerCycle = caninput_sel5b + requiresPowerCycle = caninput_sel6a + requiresPowerCycle = caninput_sel6b + requiresPowerCycle = caninput_sel7a + requiresPowerCycle = caninput_sel7b + requiresPowerCycle = caninput_sel8a + requiresPowerCycle = caninput_sel8b + requiresPowerCycle = caninput_sel9a + requiresPowerCycle = caninput_sel9b + requiresPowerCycle = caninput_sel10a + requiresPowerCycle = caninput_sel10b + requiresPowerCycle = caninput_sel11a + requiresPowerCycle = caninput_sel11b + requiresPowerCycle = caninput_sel12a + requiresPowerCycle = caninput_sel12b + requiresPowerCycle = caninput_sel13a + requiresPowerCycle = caninput_sel13b + requiresPowerCycle = caninput_sel14a + requiresPowerCycle = caninput_sel14b + requiresPowerCycle = caninput_sel15a + requiresPowerCycle = caninput_sel15b + requiresPowerCycle = outputPin + + defaultValue = pinLayout, 1 + defaultValue = TrigPattern, 0 + defaultValue = useResync, 1 + defaultValue = trigPatternSec, 0 + defaultValue = sparkMode, 0 + defaultValue = injAng, 355 355 355 355 + defaultValue = injAngRPM, 500 2000 4500 6500 + defaultValue = nInjectors, 4 + defaultValue = dutyLim, 80 + defaultValue = mapMin, 10 + defaultValue = mapMax, 260 + defaultValue = baroMin, 10 + defaultValue = baroMax, 260 + defaultValue = useEMAP, 0 + defaultValue = EMAPMin, 10 + defaultValue = EMAPMax, 260 + defaultValue = fpPrime, 3 + defaultValue = TrigFilter, 0 + defaultValue = ignCranklock,0 + defaultValue = multiplyMAP, 0 + defaultValue = includeAFR, 0 + defaultValue = incorporateAFR, 0 + defaultValue = stoich, 14.7 + defaultValue = flexEnabled, 0 + defaultValue = oddfire2, 0 + defaultValue = oddfire3, 0 + defaultValue = oddfire4, 0 + defaultValue = flexFreqLow, 50 + defaultValue = flexFreqHigh,150 + defaultValue = fuelPumpPin, 0 + defaultValue = fanPin, 0 + defaultValue = iacCLminDuty,0 + defaultValue = iacCLmaxDuty,100 + defaultValue = iacTPSlimit, 5 + defaultValue = iacRPMlimitHysteresis, 200 + defaultValue = boostMinDuty,0 + defaultValue = boostMaxDuty,100 + defaultValue = boostSens, 2000 + defaultValue = boostIntv, 30 + defaultValue = sparkDur, 1.0 + defaultValue = fixAngEnable,0 + defaultValue = n2o_enable, 0 + defaultValue = speeduino_tsCanId, 0 + defaultValue = true_address, 256 + defaultValue = realtime_base_address, 336 + defaultValue = VVTasOnOff, 0 + defaultValue = stagingEnabled, 0 + defaultValue = lnchCtrlTPS, 0 + defaultValue = resetControl, 0 + defaultValue = bootloaderCaps, 0 + defaultValue = aeTaperMin, 1000 + defaultValue = aeTaperMax, 5000 + defaultValue = aeColdPct, 100 + defaultValue = aeColdTaperMin, 0 + defaultValue = aeColdTaperMax, 60 + defaultValue = aeMode, 0 ;Set aeMode to TPS + defaultValue = batVoltCorrect, 0 + defaultValue = aeApplyMode, 0 + defaultValue = legacyMAP, 0 + defaultValue = battVCorMode, 1 + defaultValue = idleAdvEnabled, 0 ;Idle advance control turned off + defaultValue = aseTaperTime, 0.0 + defaultValue = dfcoDelay, 0.1 + defaultValue = idleTaperTime, 1.0 + defaultValue = dfcoDelay, 0.1 + defaultValue = dfcoMinCLT, 25 + defaultValue = crankingEnrichTaper, 0.1 + defaultValue = boostCutEnabled, 1 + defaultValue = primingDelay, 0.5 + defaultValue = vvtCLminDuty, 0 + defaultValue = vvtCLmaxDuty, 80 ;80% is a completely arbitrary amount for the max duty cycle, but seems inline with most VVT documentation + + ;Default pins + defaultValue = fanPin, 0 + defaultValue = vvt1Pin, 0 + defaultValue = launchPin, 0 + defaultValue = boostPin, 0 + defaultValue = fuelPumpPin, 0 + defaultValue = tachoPin, 0 + defaultValue = tachoDuration, 2 + defaultValue = useTachoSweep, 0 + defaultValue = tachoSweepMaxRPM, 6000 + defaultValue = perToothIgn, 0 + defaultValue = resetControlPin, 0 + + ;Default ADC filter values + defaultValue = ADCFILTER_TPS, 50 + defaultValue = ADCFILTER_CLT, 180 + defaultValue = ADCFILTER_IAT, 180 + defaultValue = ADCFILTER_O2, 100 + defaultValue = ADCFILTER_BAT, 128 + defaultValue = ADCFILTER_MAP, 20 ;This is only used on Instantaneous MAP readings and is intentionally very weak to allow for faster response + defaultValue = ADCFILTER_BARO, 64 + ;Force the controller priority for the filters (Controller knows best here when in doubt) + controllerPriority = ADCFILTER_TPS + controllerPriority = ADCFILTER_CLT + controllerPriority = ADCFILTER_IAT + controllerPriority = ADCFILTER_O2 + controllerPriority = ADCFILTER_BAT + controllerPriority = ADCFILTER_MAP + controllerPriority = ADCFILTER_BARO + ;Again, force the setting from the controller for the trigger edges. This is particularly useful for the Oct 2018 update where the names of the dges changed + controllerPriority = TrigEdge + controllerPriority = TrigEdgeSec + ;VSS Ratios and calibration need controller priority so they can be set with the command buttons + controllerPriority = vssPulsesPerKm + controllerPriority = vssRatio1 + controllerPriority = vssRatio2 + controllerPriority = vssRatio3 + controllerPriority = vssRatio4 + controllerPriority = vssRatio5 + controllerPriority = vssRatio6 + + ;These are the limits for each of the load algorithms (Refer to the PC Variables section) + ;Order is: MAP TPS IMAP/EMAP ITB UNUSED UNUSED UNUSED UNUSED + defaultValue = algorithmLimits, 511 100 511 511 100 100 100 100 + defaultValue = fuelLoadMax, 511 + defaultValue = ignLoadMax, 511 + defaultValue = fuel2LoadMax, 511 + defaultValue = ign2LoadMax, 511 + + ;VSS related settings + defaultValue = vssRatio1, 10.0 + defaultValue = vssRatio2, 16.0 + defaultValue = vssRatio3, 22.0 + defaultValue = vssRatio4, 28.0 + defaultValue = vssRatio5, 34.0 + defaultValue = vssRatio6, 40.0 + controllerPriority = vssRatio1 + controllerPriority = vssRatio2 + controllerPriority = vssRatio3 + controllerPriority = vssRatio4 + controllerPriority = vssRatio5 + controllerPriority = vssRatio6 + defaultValue = vssPulsesPerKm, 3000 + defaultValue = vssSmoothing, 50 + + ;pinLayout = bits, U08, 15, [0:7], "Speeduino v0.1", "Speeduino v0.2", "Speeduino v0.3", "Speeduino v0.4", "INVALID", "INVALID", "01-05 MX5 PNP", "INVALID", "96-97 MX5 PNP", "NA6 MX5 PNP", "Turtana PCB", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "Plazomat I/O 0.1", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "Daz V6 Shield 0.1", "BMW PnP", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "NO2C", "UA4C", "INVALID", "INVALID", "INVALID", "DIY-EFI CORE4 v1.0", "INVALID", "INVALID", "INVALID", "INVALID", "dvjcodec Teensy RevA", "dvjcodec Teensy RevB", "INVALID", "INVALID", "INVALID", "DropBear", "INVALID", "INVALID", "INVALID", "INVALID", "Black STM32F407VET6 V0.1", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID", "INVALID" + defaultValue = boardFuelOutputs, 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 6 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 8 4 4 4 4 8 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 + defaultValue = boardIgnOutputs, 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 6 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 8 4 4 4 4 8 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 + defaultValue = boardHasRTC, 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 + + controllerPriority = bootloaderCaps + + defaultValue = AUXin00Alias, Aux0 + defaultValue = AUXin01Alias, Aux1 + defaultValue = AUXin02Alias, Aux2 + defaultValue = AUXin03Alias, Aux3 + defaultValue = AUXin04Alias, Aux4 + defaultValue = AUXin05Alias, Aux5 + defaultValue = AUXin06Alias, Aux6 + defaultValue = AUXin07Alias, Aux7 + defaultValue = AUXin08Alias, Aux8 + defaultValue = AUXin09Alias, Aux9 + defaultValue = AUXin10Alias, Aux10 + defaultValue = AUXin11Alias, Aux11 + defaultValue = AUXin12Alias, Aux12 + defaultValue = AUXin13Alias, Aux13 + defaultValue = AUXin14Alias, Aux14 + defaultValue = AUXin15Alias, Aux15 + + defaultValue = prgm_out00Alias, PrgmOut0 + defaultValue = prgm_out01Alias, PrgmOut1 + defaultValue = prgm_out02Alias, PrgmOut2 + defaultValue = prgm_out03Alias, PrgmOut3 + defaultValue = prgm_out04Alias, PrgmOut4 + defaultValue = prgm_out05Alias, PrgmOut5 + defaultValue = prgm_out06Alias, PrgmOut6 + defaultValue = prgm_out07Alias, PrgmOut7 + + defaultValue = rpmwarn, 3000 + defaultValue = rpmdang, 5000 + defaultValue = rpmhigh, 8000 + + defaultValue = mapwarn, 200 + defaultValue = mapdang, 245 + defaultValue = maphigh, 255 + +#if LAMBDA + defaultValue = wueAFR, -0.136 -0.102 -0.082 -0.068 -0.054 -0.041 -0.027 -0.014 -0.007 0.000 +#else + defaultValue = wueAFR, -2.0 -1.5 -1.2 -1.0 -0.8 -0.6 -0.4 -0.2 -0.1 0.0 +#endif + +[Menu] + + ;---------------------------------------------------------------------------- + ; There are five pre-defined values that may be used to define your menus. + ; The first four allow access to the "standard" dialog boxes, the last one + ; merely draws a separator (horizontal line) in the menu. + ; + ; std_constants + ; std_enrichments + ; std_realtime + ; std_warmup + ; + ; std_separator + ; + ; If you use any of the std_constants, std_enrichments or std_warmup + ; editors, they may be optionally suffixed with a page number (only + ; useful for multi-page code variants), which causes them to edit the + ; specified page. If you leave off the page specifier, they edit logical + ; page one as specified in the Constants section. + ; + ; There are four special menu names, which when used append to the standard + ; menus of the same name instead of creating a new one. The menu names + ; are "File", "Communications", "Tools" and "Help". + ; + ;---------------------------------------------------------------------------- + +menuDialog = main + + menu = "Settings" + subMenu = engine_constants, "Engine Constants" + subMenu = injChars, "Injector Characteristics" + subMenu = triggerSettings, "Trigger Setup" + ;subMenu = OLED, "OLED Setup" + subMenu = airdensity_curve, "IAT Density" + subMenu = baroFuel_curve, "Barometric Correction" + subMenu = reset_control, "Reset Control" + + subMenu = std_separator + subMenu = gaugeLimits, "Gauge Limits" + + subMenu = std_separator + subMenu = io_summary, "I/O Summary" + subMenu = std_separator + subMenu = prgm_out_config, "Programmable outputs" + + menu = "&Tuning" + subMenu = std_realtime, "Realtime Display" + subMenu = accelEnrichments, "Acceleration Enrichment" + subMenu = egoControl, "AFR/O2", 3 + subMenu = RevLimiterS, "Engine Protection", 2 + subMenu = flexFueling, "Flex Fuel", 2 + subMenu = veTableDialog, "VE Table", 0 + subMenu = sparkTbl, "Spark Table", 2 + subMenu = afrTable1Tbl, "AFR Table", 5 + subMenu = std_separator + subMenu = fuelTable2Dialog, "Second fuel Table", 11 + subMenu = sparkTable2Dialog, "Second spark Table", 14 + subMenu = std_separator + subMenu = inj_trimad, "Sequential fuel trim (1-4)", 9 + subMenu = inj_trimad_B, "Sequential fuel trim (5-8)", 9, { nFuelChannels >= 5 } + subMenu = std_separator + subMenu = stagingTableDialog, "Staged Injection", 10, { nCylinders <= 4 || injType == 1 } ; Can't do staging on more than 4 cylinder engines unless TBI is used + subMenu = std_separator + subMenu = fuelTemp_curve, "Fuel Temp Correction", { flexEnabled } + + menu = "&Spark" + subMenu = sparkSettings, "Spark Settings" + subMenu = sparkTbl, "Spark Table", 2 + subMenu = dwellSettings, "Dwell settings" + subMenu = dwell_correction_curve, "Dwell Compensation" + subMenu = dwell_map, "Dwell Map", { useDwellMap } + subMenu = iat_retard_curve, "IAT Retard" + subMenu = clt_advance_curve, "Cold Advance" + ;subMenu = knockSettings, "Knock Settings" + subMenu = rotary_ignition, "Rotary Ignition", { sparkMode == 4 } + + menu = "&Startup/Idle" + subMenu = crankPW, "Cranking Settings" + subMenu = primePW, "Priming Pulsewidth" + subMenu = warmup, "Warmup Enrichment" + subMenu = ASE, "Afterstart Enrichment (ASE)" + subMenu = std_separator + subMenu = idleSettings, "Idle Control" + subMenu = iacClosedLoop_curve, "Idle - RPM targets", 7, { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || idleAdvEnabled >= 1 } + subMenu = iacPwm_curve, "Idle - PWM Duty Cycle", 7, { iacAlgorithm == 2 || iacAlgorithm == 6} + subMenu = iacPwmCrank_curve, "Idle - PWM Cranking Duty Cycle", 7, { iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6} + subMenu = iacStep_curve, "Idle - Stepper Motor", 7, { iacAlgorithm == 4 } + subMenu = iacStepCrank_curve, "Idle - Stepper Motor Cranking", 7, { iacAlgorithm == 4 || iacAlgorithm == 5 } + subMenu = std_separator + subMenu = idleUpSettings, "Idle Up Settings", { iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 4 || iacAlgorithm == 5 || iacAlgorithm == 6 } + subMenu = std_separator + subMenu = idleAdvanceSettings, "Idle Advance Settings" + + menu = "&Accessories" + subMenu = fanSettings, "Thermo Fan" + subMenu = LaunchControl, "Launch Control / Flat Shift" + subMenu = fuelpump, "Fuel Pump" + subMenu = NitrousControl, "Nitrous" + subMenu = vssSettings, "VSS and Gear detection" + subMenu = std_separator + subMenu = boostSettings, "Boost Control" + subMenu = boostLoad, "Boost Targets/Load", 8, { boostEnabled } + subMenu = std_separator + subMenu = vvtSettings, "VVT Control" + subMenu = vvtTbl, "VVT duty cycle", 8, { vvtEnabled } + subMenu = std_separator + subMenu = wmiSettings, "WMI Control", { !vvtEnabled } + subMenu = wmiTbl, "WMI duty cycle", 8, { !vvtEnabled && wmiEnabled && wmiMode > 1 } + subMenu = std_separator + subMenu = tacho, "Tacho Output" + + subMenu = std_separator + + #if CAN_COMMANDS + subMenu = can_serial3IO, "Canbus/Secondary Serial IO Interface" + subMenu = std_separator + subMenu = Canin_config, "External Auxillary Input Channel Configuration", {enable_secondarySerial || (enable_intcan && intcan_available)} + subMenu = Auxin_config, "Local Auxillary Input Channel Configuration" + ;subMenu = std_separator + ;subMenu = Canout_config, "Canbus Output Configuration" + #else + subMenu = serial3IO, "Canbus/Secondary Serial IO Interface" + subMenu = std_separator + subMenu = Canin_config, "External Auxillary Input Channel Configuration", {enable_secondarySerial || (enable_intcan && intcan_available)} + subMenu = Auxin_config, "Local Auxillary Input Channel Configuration" + #endif + subMenu = pressureSensors, "Fuel/Oil pressure" + + menuDialog = main + menu = "Tools" + subMenu = mapCal, "Calibrate Pressure Sensors" + subMenu = batCal, "Calibrate Voltage Reading" + subMenu = std_ms2gentherm, "Calibrate Temperature Sensors", 0 + subMenu = std_ms2geno2, "Calibrate AFR Sensor", { egoType > 0 } + subMenu = sensorFilters, "Set analog sensor filters" + + menu = "Data Logging" + ;subMenu = sdcard_datalog, "SD Card Datalogging" + ;subMenu = std_ms3SdConsole, "Browse / Import SD Card", { boardHasRTC > 0 } + + menuDialog = main + menu = "3D &Tuning Maps" + subMenu = veTable1Map, "Fuel Table" + subMenu = sparkMap, "Spark Table", 3 + subMenu = afrTable1Map, "AFR Target Table" + +#if enablehardware_test + menuDialog = main + menu = "Hardware Testing" + subMenu = outputtest1, "Test Output Hardware" + subMenu = stm32cmd, "STM32 Commands" + ;subMenu = rtc_settings, "Setup realtime clock" +#endif + + menu = "Help" + subMenu = helpGeneral, "Speeduino Help" +;------------------------------------------------------------------------------- + +[SettingContextHelp] +; constantName = "Help Text" +; These provide the context help in the dialog when these variables are used + nCylinders = "Cylinder count" + alternate = "Whether or not the injectors should be fired at the same time. This setting is ignored when Sequential is selected below, however it will still affect the req_fuel value." + engineType = "Engines with an equal number of degrees between all firings (This is most engines) should select Even fire. Some 2 and 6 cylinder engines are Odd fire however." + twoStroke = "Four-Stroke (most engines), Two-stroke." + nInjectors = "Number of primary injectors." + mapSample = "The method used for calculating the MAP reading\nFor 1-2 Cylinder engines, Cycle Minimum is recommended.\nFor more than 2 cylinders Cycle Average is recommended" + stoich = "The stoichiometric ration of the fuel being used. For flex fuel, choose the primary fuel" + injLayout = "The injector layout and timing to be used. Options are: \n 1. Paired - 2 injectors per output. Outputs active is equal to half the number of cylinders. Outputs are timed over 1 crank revolution. \n 2. Semi-sequential: Same as paired except that injector channels are mirrored (1&4, 2&3) meaning the number of outputs used are equal to the number of cylinders. Only valid for 4 cylinders or less. \n 3. Banked: 2 outputs only used. \n 4. Sequential: 1 injector per output and outputs used equals the number of cylinders. Injection is timed over full cycle. " + + TrigPattern = "The type of input trigger decoder to be used." + useResync = "If enabled, sync will be rechecked once every full cycle from the cam input. This is good for accuracy, however if your cam input is noisy then this can cause issues." + trigPatternSec = "Cam mode/type also known as Secondary Trigger Pattern." + numTeeth = "Number of teeth on Primary Wheel." + TrigSpeed = "Primary trigger speed." + missingTeeth = "Number of Missing teeth on Primary Wheel." + TrigAng = "The Angle ATDC when tooth No:1 on the primary wheel passes the primary sensor. The range of this field is -360 to +360 degrees." + TrigAngMul = "A multiplier used by non-360 degree tooth wheels (i.e. Wheels where the tooth count doesn't divide evenly into 360. Usage: (360 * ) / tooth_count = Whole number" + SkipCycles = "The number of revolutions that will be skipped during cranking before the injectors and coils are fired." + TrigEdge = "The Trigger edge of the primary sensor.\nLeading.\nTrailing." + TrigEdgeSec = "The Trigger edge of the secondary (Cam) sensor.\nLeading.\nTrailing." + TrigFilter = "Tuning of the trigger filter algorithm. The more aggressive the setting, the more noise will be removed, however this increases the chance of some true readings being filtered out (False positive). Medium is safe for most setups. Only select 'Aggressive' if no other options are working" + + sparkMode = "Wasted Spark: Ignition outputs are on the channels <= half the number of cylinders. Eg 4 cylinder outputs on IGN1 and IGN2.\nSingle Channel: All ignition pulses are output on IGN1.\nWasted COP: Ignition pulses are output on all ignition channels up to the number of cylinders. Eg 4 cylinder outputs on all ignition channels. Note that your board needs to have same number of igntion outputs as cylinders to be able to run this" + IgInv = "Whether the spark fires when the ignition signal goes high or goes low. Nearly all ignition systems use 'Going Low' but please verify this as damage to coils can result from the incorrect selection. (NOTE: THIS IS NOT MEGASQUIRT. THIS SETTING IS USUALLY THE OPPOSITE OF WHAT THEY USE!)" + sparkDur = "The duration of the spark at full dwell. Typically around 1ms" + fixAngEnable = "If enabled, timing will be locked/fixed and the ignition map will be ignored. Note that this value will be overriden by the fixed cranking value when cranking" + FixAng = "Timing will be locked at this value if the above is enabled" + + crankRPM = "The cranking RPM threshold. When RPM is lower than this value (and above 0) the system will be considered to be cranking" + tpsflood = "Keep throttle over this value to disable the priming pulse and cranking fuel. Used to prevent flood or clear already flooded engine" + + fanInv = "" + fanHyster = "The number of degrees of hysteresis to be used in controlling the fan. Recommended values are between 2 and 5" + fanWhenCranking = "Whether the fan should be disabled or continue running when the engine is cranking" + fanWhenOff = "Whether the fan will continue to run when the engine is turned off" + fanPin = "The Arduino pin that the fan control signal will output on. This is NOT necesarrily the same as the connector pin on any particlar board" + fanSP = "The trigger temperature for the fan. Fan will be enabled above this temp" + + vssPulsesPerKm = "The number of pulses on the VSS signal per KM/Mile" + vssSmoothing = "A smoothing factor to help reduce noise in the VSS signal. Typical values are between 0 and 50" + + aeTime = "The duration of the acceleration enrichment" + aseTaperTime = "Transition time to disable ASE" + iacChannels = "The number of output channels used for PWM valves. Select 1 for 2-wire valves or 2 for 3-wire valves." + iacStepTime = "Duration of each stepping pulse. Values that are too low can cause the motor to behave erratically or not at all. See the manual for suggested step times" + iacCoolTime = "Cool time between each step. Set to zero if you don't want any cooling at all" + + iacStepHome = "Homing steps to perform on startup. Must be greater than the fully open steps value" + iacMaxSteps = "Maximum number of steps the IAC can be moved away from the home position. Should always be less than Homing steps." + iacStepHyster = "The minimum number of steps to move in any one go." + iacAlgorithm = "Selects method of idle control.\nNone = no idle control valve.\nOn/Off valve.\nPWM valve (2,3 wire).\nStepper Valve (4,6,8 wire)." + iacPWMdir = "Normal PWM valves increase RPM with higher duty. If RPM decreases with higher duty then select Reverse" + iacPWMrun = "Determies if the idle valve runs before engine is cranked over. This can help starting the engine by letting more air in before the RPM sync is acheived." + iacCLminDuty = "When using closed loop idle control, this is the minimum duty cycle that the PID loop will allow. Combined with the maximum value, this specifies the working range of your idle valve" + iacCLmaxDuty = "When using closed loop idle control, this is the maximum duty cycle that the PID loop will allow. Combined with the minimum value, this specifies the working range of your idle valve" + iacTPSlimit = "When using OL+CL idle control, if the TPS is higher than this value closed loop idle resets the integeral of the PID (To prevent RPM dips comming back to idle)" + iacRPMlimitHysteresis = "When using closed loop idle control, if the closed loop Target RPM + this value is higher than the actual RPM, closed loop idle resets the integeral of the PID (To prevent RPM dips comming back to idle)" + iacFastTemp = "Below this temperature, the idle output will be high (On). Above this temperature, it will turn off." + idleUpPolarity = "Normal polarity is a ground switch where an earthed signal activates the Idle Up. The internal pullup will be enabled with Normal polarity. \n Inverted may be used if a 5v signal is used to enable the Idle Up." + CTPSPolarity = "Normal polarity is a ground switch where an earthed signal activates the closed throttle position. The internal pullup will be enabled with Normal polarity. \n Inverted may be used if a 5v signal is used to enable the closed throttle position." + idleUpAdder = "The amount (In either Duty Cycle % or Steps (Depending on the idle control method in use), that the idle control will increase by when Idle Up is active" + idleAdvEnabled = "Added setting adds curve values to current spark table values when user defined idle is active. \n Switched setting overrides spark table values and uses curve values for idle ignition timing." + idleAdvAlgorithm = "Use Throttle position sensor (TPS) or closed throttle position sensor (CTPS) to detect idle state." + idleAdvDelay = "The number of seconds after sync is achieved before the idle advance control begins" + idleTaperTime = "Soft time transition from crank to running PWM targets" + + oddfire2 = "The ATDC angle of channel 2 for oddfire engines. This is relative to the TDC angle of channel 1" + oddfire3 = "The ATDC angle of channel 3 for oddfire engines. This is relative to the TDC angle of channel 1 (NOT channel 2)" + oddfire4 = "The ATDC angle of channel 4 for oddfire engines. This is relative to the TDC angle of channel 1 (NOT channel 3)" + + aeColdPct = "Acceleration enrichment adjustment for cold engine. Cold adjustment % is tapered between start and end temperatures.\n100% = no adjustment." + aeColdTaperMin = "AE cold adjustment taper start temperature. When coolant is below this value, full cold adjustment is applied." + aeColdTaperMax = "AE cold adjustment taper end temperature. When coolant is above this value, no cold adjustment is applied." + dfcoRPM = "The RPM above which DFCO will be active. Typically set a few hundred RPM above maximum idle speed" + dfcoHyster = "Hysteresis for DFCO RPM. 200-300 RPM is typical for this, however a higher value may be needed if the RPM is fluctuating around the cutout speed" + dfcoTPSThresh = "The TPS value below which DFCO will be active. Typical value is 5%-10%, but higher may be needed if TPS signal is noisy" + dfcoDelay = "Delay for activate DFCO." + dfcoMinCLT = "Minimum temperature to enable DFCO." + + launchPin = "The ARDUINO pin that the clutch switch is connected to. This is NOT the pin on the connector, but the pin it relates to on the arduino" + launchHiLo = "Whether the signal is High or Low when the clutch pedal is engaged. For a ground switching input (Most clutch switches), this should be LOW" + lnchPullRes = "Whether the internal pullup resistor is enabled or left floating. For a ground switching input (Most clutch switches), select Pullup. For a 0v-5v input, select Floating" + ignBypassPin = "The ARDUINO pin that the ignition bypass is connected to. This is NOT the pin on the connector, but the pin it relates to on the arduino" + ignBypassEnable = "If turned on, a ground signal will be output during cranking on the specified pin. This is used to bypass the Speeduino ignition control during cranking." + ignCranklock = "On certain low resolution ignition patterns, the cranking timing can be locked to occur when a pulse is recieved." + + multiplyMAP = "If enabled, the MAP reading is included directly into the pulsewidth calculation by multiplying the VE lookup value by the MAP:Baro ratio. This results in a flatter VE table that can be easier to tune in some instances. VE table must be retuned when this value is changed." + legacyMAP = "Use the legacy method of reading the MAP sensor that was used prior to the 201905 firmware. This should ONLY be enabled if you are upgrading from a firmware earlier than this" + includeAFR = "When enabled, the current AFR reading is incorporated directly in the pulsewidth calculation as a percentage of the current target ratio. VE table must be retuned when this value is changed. " + incorporateAFR = "When enabled, the AFR stoich/AFR target -ratio is incorporated directly in the pulsewidth calculation. When enabled, AFR target table affects pulsewidth even with EGO disabled. VE table must be retuned when this value is changed." + useExtBaro = "By Default, Speeduino will measure barometric pressure upon startup. Optionally however, a 2nd pressure sensor can be used to perform live barometric readings whilst the system is on." + + flexEnabled = "Turns on readings from the Flex sensor and enables the below adjustments" + flexFreqLow = "The frequency of the sensor at 0% ethanol (50Hz for standard GM/Continental sensor)" + flexFreqHigh = "The frequency of the sensor at 100% ethanol (150Hz for standard GM/Continental sensor)" + flexFuelAdj = "Fuel % to be used for the current ethanol % (Typically 100% @ 0%, 163% @ 100%)" + flexAdvAdj = "Additional advance (in degrees) for the current ethanol % (Typically 0 @ 0%, 10-20 @ 100%)" + flexBoostAdj = "Adjustment, in kPa, to the boost target for the current ethanol %. Negative values are allowed to lower boost at lower ethanol % if necessary." + + n2o_arming_pin = "Pin that the nitrous arming/enagement switch is on." + n2o_pin_polarity = "Whether Nitrous is active (Armed) when the pin is LOW or HIGH. If LOW is selected, the internal pullup will be used." + + flatSArm = "The RPM switch point that determines whether an eganged clutch is for launch control or flat shift. Below this figure, an engaged clutch is considered to be for launch, above this figure an active clutch input will be considered a flat shift. This should be set at least several hundred RPM above idle" + flatSSoftWin = "The number of RPM below the flat shift point where the softlimit will be applied (aka Soft limit window). Recommended values are 200-1000" + flatSRetard = "The absolute timing (BTDC) that will be used when within the soft limit window" + engineProtectType = "Whether the engine protect an rev limiter will cut the fuel, the ignition or both" + hardCutType = "How the cuts should be performed for rev/launch limits. Full cut will stop all fuel/ignition events, Rolling cut will step through all ignition outputs, only cutting a limited number per revolution" + SoftLimitMode = "Fixed: the soft limiter will retard the ignition advance to the specified value.\nRelative: current timing advance will be retarted by the specified amount" + HardRevLim = "The hard rev limit is the point that the fuel or ignition (or both) will be cut completely to reduce increasing RPMs" + engineProtectMaxRPM = "The RPM point that engine protections will engage from. Below this RPM value, engine protections will NOT be active" + + fuel2InputPin = "The Arduino pin that is being used to trigger the second fuel table to be active" + fuel2InputPolarity = "Whether the 2nd fuel table should be active when input is high or low. This should be LOW for a typical ground switching input" + fuel2InputPullup = "Whether to use the built in PULLUP for the switching input. This should be Yes for a typical ground switching input" + + enable_secondarySerial = "This Enables the secondary serial port . Secondary serial is serial3 on mega2560 processor, and Serial2 on STM32 and Teensy processor " + + cltAdvValues = "This curve can be used to advance ignition timing when engine is warming up. This can also be used to warm up the catalytic converters in cold start by retarding timing. Or even as safety feature to retard timing when engine is too hot to prevent knock." + + wueRates = "Final enrichment value must be 100%." + ;speeduino_tsCanId = "This is the TsCanId that the Speeduino ECU will respond to. This should match the main controller CAN ID in project properties if it is connected directy to TunerStudio, Otherwise the device ID if connected via CAN passthrough" + true_address = "This is the 11bit Can address of the Speeduino ECU " + realtime_base_address = "This is the 11bit CAN address of the realtime data broadcast from the Speeduino ECU. This MUST be at least 0x16 greater than the true address" + ;obd_address = "The 11bit Can address that the Speeduino ECU responds to for OBD2 diagnostic requests" + AUXin00Alias = "The Ascii alias asigned to Aux input channel 0" + AUXin01Alias = "The Ascii alias asigned to Aux input channel 1" + AUXin02Alias = "The Ascii alias asigned to Aux input channel 2" + AUXin03Alias = "The Ascii alias asigned to Aux input channel 3" + AUXin04Alias = "The Ascii alias asigned to Aux input channel 4" + AUXin05Alias = "The Ascii alias asigned to Aux input channel 5" + AUXin06Alias = "The Ascii alias asigned to Aux input channel 6" + AUXin07Alias = "The Ascii alias asigned to Aux input channel 7" + AUXin08Alias = "The Ascii alias asigned to Aux input channel 8" + AUXin09Alias = "The Ascii alias asigned to Aux input channel 9" + AUXin10Alias = "The Ascii alias asigned to Aux input channel 10" + AUXin11Alias = "The Ascii alias asigned to Aux input channel 11" + AUXin12Alias = "The Ascii alias asigned to Aux input channel 12" + AUXin13Alias = "The Ascii alias asigned to Aux input channel 13" + AUXin14Alias = "The Ascii alias asigned to Aux input channel 14" + AUXin15Alias = "The Ascii alias asigned to Aux input channel 15" + + caninput_sel0a = "This Enables local analog/digital on input channel 0 " + caninput_sel1a = "This Enables local analog/digital on input channel 1 " + caninput_sel2a = "This Enables local analog/digital on input channel 2 " + caninput_sel3a = "This Enables local analog/digital on input channel 3 " + caninput_sel4a = "This Enables local analog/digital on input channel 4 " + caninput_sel5a = "This Enables local analog/digital on input channel 5 " + caninput_sel6a = "This Enables local analog/digital on input channel 6 " + caninput_sel7a = "This Enables local analog/digital on input channel 7 " + caninput_sel8a = "This Enables local analog/digital on input channel 8 " + caninput_sel9a = "This Enables local analog/digital on input channel 9 " + caninput_sel10a = "This Enables local analog/digital on input channel 10 " + caninput_sel11a = "This Enables local analog/digital on input channel 11 " + caninput_sel12a = "This Enables local analog/digital on input channel 12 " + caninput_sel13a = "This Enables local analog/digital on input channel 13 " + caninput_sel14a = "This Enables local analog/digital on input channel 14 " + caninput_sel15a = "This Enables local analog/digital on input channel 15 " + + crankRPM = "The cranking RPM threshold. When RPM is lower than this value (and above 0) the system will be considered to be cranking" + tpsflood = "Keep throttle over this value to disable the priming pulse and cranking fuel. Used to prevent flood or clear already flooded engine" + fpPrime = "Duration to power fuel pump on to ensure fuel line pressure." + primingDelay = "Delay to priming after fuel pump is on, used to wait fuel line get pressurized correctly." + + fanInv = "" + fanHyster = "The number of degrees of hysteresis to be used in controlling the fan. Recommended values are between 2 and 5" + + aeTime = "The duration of the acceleration enrichment" + aseTaperTime = "Transition time to disable ASE" + iacChannels = "The number of output channels used for PWM valves. Select 1 for 2-wire valves or 2 for 3-wire valves." + iacStepTime = "Duration of each stepping pulse. Values that are too low can cause the motor to behave erratically or not at all. See the manual for suggested step times" + iacCoolTime = "Cool time between each step. Set to zero if you don't want any cooling at all" + iacStepHome = "Homing steps to perform on startup. Must be greater than the fully open steps value" + iacMaxSteps = "Maximum number of steps the IAC can be moved away from the home position. Should always be less than Homing steps." + iacStepHyster = "The minimum number of steps to move in any one go." + iacAlgorithm = "Selects method of idle control.\nNone = no idle control valve.\nOn/Off valve.\nPWM valve (2,3 wire).\nStepper Valve (4,6,8 wire)." + iacPWMdir = "Normal PWM valves increase RPM with higher duty. If RPM decreases with higher duty then select Reverse" + iacCLminDuty = "When using closed loop idle control, this is the minimum duty cycle that the PID loop will allow. Combined with the maximum value, this specifies the working range of your idle valve" + iacCLmaxDuty = "When using closed loop idle control, this is the maximum duty cycle that the PID loop will allow. Combined with the minimum value, this specifies the working range of your idle valve" + iacFastTemp = "Below this temperature, the idle output will be high (On). Above this temperature, it will turn off." + idleUpPolarity = "Normal polarity is a ground switch where an earthed signal activates the Idle Up. The internal pullup will be enabled with Normal polarity. \n Inverted may be used if a 5v signal is used to enable the Idle Up." + idleUpOutputEnabled = "Enable an output that is toggled by the idle up input pin. An example use is driving an AC fan relay." + idleUpOutputInv = "No = When the idle up pin is high the output is active (grounding), when the idle up pin is low the output is inactive. Yes = When the idle up pin is high the output is inactive, when the idle up pin is low the output is active (grounding)." + CTPSPolarity = "Normal polarity is a ground switch where an earthed signal activates the closed throttle position. The internal pullup will be enabled with Normal polarity. \n Inverted may be used if a 5v signal is used to enable the closed throttle position." + idleUpAdder = "The amount (In either Duty Cycle % or Steps (Depending on the idle control method in use), that the idle control will increase by when Idle Up is active" + idleAdvEnabled = "Added setting adds curve values to current spark table values when user defined idle is active. \n Switched setting overrides spark table values and uses curve values for idle ignition timing." + idleAdvAlgorithm= "Use Throttle position sensor (TPS) or closed throttle position sensor (CTPS) to detect idle state." + idleAdvDelay = "The number of seconds after sync is achieved before the idle advance control begins" + idleTaperTime = "Soft time transition from crank to running PWM targets" + + oddfire2 = "The ATDC angle of channel 2 for oddfire engines. This is relative to the TDC angle of channel 1" + oddfire3 = "The ATDC angle of channel 3 for oddfire engines. This is relative to the TDC angle of channel 1 (NOT channel 2)" + oddfire4 = "The ATDC angle of channel 4 for oddfire engines. This is relative to the TDC angle of channel 1 (NOT channel 3)" + + aeColdPct = "Acceleration enrichment adjustment for cold engine. Cold adjustment % is tapered between start and end temperatures.\n100% = no adjustment." + aeColdTaperMin = "AE cold adjustment taper start temperature. When coolant is below this value, full cold adjustment is applied." + aeColdTaperMax = "AE cold adjustment taper end temperature. When coolant is above this value, no cold adjustment is applied." + dfcoRPM = "The RPM above which DFCO will be active. Typically set a few hundred RPM above maximum idle speed" + dfcoHyster = "Hysteresis for DFCO RPM. 200-300 RPM is typical for this, however a higher value may be needed if the RPM is fluctuating around the cutout speed" + dfcoTPSThresh = "The TPS value below which DFCO will be active. Typical value is 5%-10%, but higher may be needed if TPS signal is noisy" + dfcoDelay = "Delay for activate DFCO." + dfcoMinCLT = "Minimum temperature to enable DFCO." + crankingEnrichTaper = "Taper time from cranking enrichment to ASE or run (after engine has started)." + + launchPin = "The ARDUINO pin that the clutch switch is connected to. This is NOT the pin on the connector, but the pin it relates to on the arduino" + launchHiLo = "Whether the signal is High or Low when the clutch pedal is engaged. For a ground switching input (Most clutch switches), this should be LOW" + lnchPullRes = "Whether the internal pullup resistor is enabled or left floating. For a ground switching input (Most clutch switches), select Pullup. For a 0v-5v input, select Floating" + lnchCtrlTPS = "The minimum RPM that launch control will engage at" + lnchSoftLim = "The RPM point that the launch control ignition timing adjustment will engage (When under launch conditions). Should be below the hard rev limit RPM" + lnchRetard = "When under launch conditions (Eg Clutch engaged) the ignition timing will be set to this when above the Soft rev limit. This will override any other ignition modifiers" + lnchHardLim = "The RPM point above which the fuel and/or ignition will be cut when launch is active (Eg Clutch engaged). See the Engine Protection dialog to set whether it is fuel, ignition or both that are cut." + lnchFuelAdd = "The additional fuel % that will be added during Soft and Hard launch conditions. Set to 0 for no fuel modifier." + ignBypassPin = "The ARDUINO pin that the ignition bypass is connected to. This is NOT the pin on the connector, but the pin it relates to on the arduino" + ignBypassEnable = "If turned on, a ground signal will be output during cranking on the specified pin. This is used to bypass the Speeduino ignition control during cranking." + ignCranklock = "On certain low resolution ignition patterns, the cranking timing can be locked to occur when a pulse is recieved." + + multiplyMAP = "If enabled, the MAP reading is included directly into the pulsewidth calculation by multiplying the VE lookup value by either the MAP:Baro ratio or MAP/100.\n This results in a flatter VE table that can be easier to tune in some instances. The MAP/100 option is generally used for compatibiilty with fuel tables from other ECUs. MAP:Baro ratio is recommended for new tunes. \n VE table must be retuned when this value is changed." + legacyMAP = "Use the legacy method of reading the MAP sensor that was used prior to the 201905 firmware. This should ONLY be enabled if you are upgrading from a firmware earlier than this" + includeAFR = "When enabled, the current AFR reading is incorporated directly in the pulsewidth calculation as a percentage of the current target ratio. VE table must be retuned when this value is changed. " + useExtBaro = "By Default, Speeduino will measure barometric pressure upon startup. Optionally however, a 2nd pressure sensor can be used to perform live barometric readings whilst the system is on." + + flexEnabled = "Turns on readings from the Flex sensor and enables the below adjustments" + flexFreqLow = "The frequency of the sensor at 0% ethanol (50Hz for standard GM/Continental sensor)" + flexFreqHigh = "The frequency of the sensor at 100% ethanol (150Hz for standard GM/Continental sensor)" + flexFuelAdj = "Fuel % to be used for the current ethanol % (Typically 100% @ 0%, 163% @ 100%)" + flexAdvAdj = "Additional advance (in degrees) for the current ethanol % (Typically 0 @ 0%, 10-20 @ 100%)" + flexBoostAdj = "Adjustment, in kPa, to the boost target for the current ethanol %. Negative values are allowed to lower boost at lower ethanol % if necessary." + + n2o_arming_pin = "Pin that the nitrous arming/enagement switch is on." + n2o_pin_polarity= "Whether Nitrous is active (Armed) when the pin is LOW or HIGH. If LOW is selected, the internal pullup will be used." + + flatSArm = "The RPM switch point that determines whether an eganged clutch is for launch control or flat shift. Below this figure, an engaged clutch is considered to be for launch, above this figure an active clutch input will be considered a flat shift. This should be set at least several hundred RPM above idle" + flatSSoftWin = "The number of RPM below the flat shift point where the softlimit will be applied (aka Soft limit window). Recommended values are 200-1000" + flatSRetard = "The absolute timing (BTDC) that will be used when within the soft limit window" + hardCutType = "How hard cuts should be performed for rev/launch limits. Full cut will stop all ignition events, Rolling cut will step through all ignition outputs, only cutting 1 per revolution" + + fuel2InputPin = "The Arduino pin that is being used to trigger the second fuel table to be active" + fuel2InputPolarity = "Whether the 2nd fuel table should be active when input is high or low. This should be LOW for a typical ground switching input" + fuel2InputPullup= "Whether to use the built in PULLUP for the switching input. This should be Yes for a typical ground switching input" + + enable_secondarySerial = "This Enables the secondary serial port . Secondary serial is serial3 on mega2560 processor, and Serial2 on STM32 and Teensy processor " + + cltAdvValues = "This curve can be used to advance ignition timing when engine is warming up. This can also be used to warm up the catalytic converters in cold start by retarding timing. Or even as safety feature to retard timing when engine is too hot to prevent knock." + + ;speeduino_tsCanId = "This is the TsCanId that the Speeduino ECU will respond to. This should match the main controller CAN ID in project properties if it is connected directy to TunerStudio, Otherwise the device ID if connected via CAN passthrough" + true_address = "This is the 11bit Can address of the Speeduino ECU " + realtime_base_address = "This is the 11bit CAN address of the realtime data broadcast from the Speeduino ECU. This MUST be at least 0x16 greater than the true address" + ;obd_address = "The 11bit Can address that the Speeduino ECU responds to for OBD2 diagnostic requests" + AUXin00Alias = "The Ascii alias asigned to Aux input channel 0" + AUXin01Alias = "The Ascii alias asigned to Aux input channel 1" + AUXin02Alias = "The Ascii alias asigned to Aux input channel 2" + AUXin03Alias = "The Ascii alias asigned to Aux input channel 3" + AUXin04Alias = "The Ascii alias asigned to Aux input channel 4" + AUXin05Alias = "The Ascii alias asigned to Aux input channel 5" + AUXin06Alias = "The Ascii alias asigned to Aux input channel 6" + AUXin07Alias = "The Ascii alias asigned to Aux input channel 7" + AUXin08Alias = "The Ascii alias asigned to Aux input channel 8" + AUXin09Alias = "The Ascii alias asigned to Aux input channel 9" + AUXin10Alias = "The Ascii alias asigned to Aux input channel 10" + AUXin11Alias = "The Ascii alias asigned to Aux input channel 11" + AUXin12Alias = "The Ascii alias asigned to Aux input channel 12" + AUXin13Alias = "The Ascii alias asigned to Aux input channel 13" + AUXin14Alias = "The Ascii alias asigned to Aux input channel 14" + AUXin15Alias = "The Ascii alias asigned to Aux input channel 15" + + caninput_sel0a = "This Enables local analog/digital on input channel 0 " + caninput_sel1a = "This Enables local analog/digital on input channel 1 " + caninput_sel2a = "This Enables local analog/digital on input channel 2 " + caninput_sel3a = "This Enables local analog/digital on input channel 3 " + caninput_sel4a = "This Enables local analog/digital on input channel 4 " + caninput_sel5a = "This Enables local analog/digital on input channel 5 " + caninput_sel6a = "This Enables local analog/digital on input channel 6 " + caninput_sel7a = "This Enables local analog/digital on input channel 7 " + caninput_sel8a = "This Enables local analog/digital on input channel 8 " + caninput_sel9a = "This Enables local analog/digital on input channel 9 " + caninput_sel10a = "This Enables local analog/digital on input channel 10 " + caninput_sel11a = "This Enables local analog/digital on input channel 11 " + caninput_sel12a = "This Enables local analog/digital on input channel 12 " + caninput_sel13a = "This Enables local analog/digital on input channel 13 " + caninput_sel14a = "This Enables local analog/digital on input channel 14 " + caninput_sel15a = "This Enables local analog/digital on input channel 15 " + + caninput_sel0b = "This Enables External CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 0 " + caninput_sel1b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 1 " + caninput_sel2b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 2 " + caninput_sel3b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 3 " + caninput_sel4b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 4 " + caninput_sel5b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 5 " + caninput_sel6b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 6 " + caninput_sel7b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 7 " + caninput_sel8b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 8 " + caninput_sel9b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 9 " + caninput_sel10b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 10 " + caninput_sel11b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 11 " + caninput_sel12b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 12 " + caninput_sel13b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 13 " + caninput_sel14b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 14 " + caninput_sel15b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 15 " + + caninput_source_can_address0 = "The source 11bit CAN address of the data for channel 0" + caninput_source_can_address1 = "The source 11bit CAN address of the data for channel 1" + caninput_source_can_address2 = "The source 11bit CAN address of the data for channel 2" + caninput_source_can_address3 = "The source 11bit CAN address of the data for channel 3" + caninput_source_can_address4 = "The source 11bit CAN address of the data for channel 4" + caninput_source_can_address5 = "The source 11bit CAN address of the data for channel 5" + caninput_source_can_address6 = "The source 11bit CAN address of the data for channel 6" + caninput_source_can_address7 = "The source 11bit CAN address of the data for channel 7" + caninput_source_can_address8 = "The source 11bit CAN address of the data for channel 8 " + caninput_source_can_address9 = "The source 11bit CAN address of the data for channel 9" + caninput_source_can_address10 = "The source 11bit CAN address of the data for channel 10" + caninput_source_can_address11 = "The source 11bit CAN address of the data for channel 11" + caninput_source_can_address12 = "The source 11bit CAN address of the data for channel 12" + caninput_source_can_address13 = "The source 11bit CAN address of the data for channel 13" + caninput_source_can_address14 = "The source 11bit CAN address of the data for channel 14" + caninput_source_can_address15 = "The source 11bit CAN address of the data for channel 15" + caninput_source_start_byte0 = "The Starting byte the data begins at for channel 0" + caninput_source_start_byte1 = "The Starting byte the data begins at for channel 1" + caninput_source_start_byte2 = "The Starting byte the data begins at for channel 2" + caninput_source_start_byte3 = "The Starting byte the data begins at for channel 3" + caninput_source_start_byte4 = "The Starting byte the data begins at for channel 4" + caninput_source_start_byte5 = "The Starting byte the data begins at for channel 5" + caninput_source_start_byte6 = "The Starting byte the data begins at for channel 6" + caninput_source_start_byte7 = "The Starting byte the data begins at for channel 7" + caninput_source_start_byte8 = "The Starting byte the data begins at for channel 8" + caninput_source_start_byte9 = "The Starting byte the data begins at for channel 9" + caninput_source_start_byte10 = "The Starting byte the data begins at for channel 10" + caninput_source_start_byte11 = "The Starting byte the data begins at for channel 11" + caninput_source_start_byte12 = "The Starting byte the data begins at for channel 12" + caninput_source_start_byte13 = "The Starting byte the data begins at for channel 13" + caninput_source_start_byte14 = "The Starting byte the data begins at for channel 14" + caninput_source_start_byte15 = "The Starting byte the data begins at for channel 15" + caninput_source_num_bytes0 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes1 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes2 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes3 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes4 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes5 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes6 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes7 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes8 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes9 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes10 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes11 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes12 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes13 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes14 = "The number of bytes the data is made from starting at selected start byte number" + caninput_source_num_bytes15 = "The number of bytes the data is made from starting at selected start byte number" + + cmdEnableTestMode = "Click this to enable test mode. This will not be available if the engine is running" + cmdStopTestMode = "Click this to disable test mode" + cmdtestinj150dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestinj250dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestinj350dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestinj450dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestinj550dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestinj650dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestinj750dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestinj850dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestspk150dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestspk250dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestspk350dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + cmdtestspk450dc = "This will cycle the output at 50% Duty cycle at a 1s interval" + + ADCFILTER_TPS = "Recommended value: 50" + ADCFILTER_CLT = "Recommended value: 180" + ADCFILTER_IAT = "Recommended value: 180" + ADCFILTER_O2 = "Recommended value: 128" + ADCFILTER_BAT = "Recommended value: 128" + ADCFILTER_MAP = "This setting is only available when using the Instantaneious MAP sampling method. Recommended value: 20" + ADCFILTER_BARO = "This setting is only available when using an external Baro sensor. Recommended value: 64" + + boostIntv = "The closed loop control interval will run every this many ms. Generally values between 50% and 100% of the valve frequency work best" + VVTasOnOff = "Whether or not the VVT table should be treated as on and off control only. If you are using the VVT map to control a switch, this should be Yes. If you are using the VVT control to drive a PWM signal, this should be No" + + stagedInjSizePri= "Size of the primary injectors. The sum of the Pri and Sec injectors values MUST match the value used in the req_fuel calculation" + stagedInjSizeSec= "Size of the secondary injectors. The sum of the Pri and Sec injectors values MUST match the value used in the req_fuel calculation" + #if resetcontrol_adv + resetControl = "How to control the Arduino's automatic reset feature. NOTE: Some of these settings require modifying your hardware and replacing the Arduino bootloader. See the Wiki for more details.\n\nDisabled: Allow the Arduino to reset when a new serial connection is made.\n\nPrevent When Running: Hold the control pin high while the engine is running.\n\nPrevent Always: Always hold the control pin high.\n\nSerial Command: Normally hold the control pin high, but pull it low when the 'U' serial command is issued and reset upon receiving more data." + #else + resetControl = "If set to Serial Command, normally hold the control pin high but pull it low when the 'U' serial command is issued and reset upon receiving more data. The control pin should be connected to the Arduino's reset pin." + #endif + resetControlPin = "The Arduino pin used to control resets." + + battVCorMode = "The Battery Voltage Correction value from the table below can either be applied on the whole injection Pulse Width value, or only on the Open Time value." + dwellTable = "Sets the dwell time in milliseconds based on RPM/load. This can be used to reduce stress/wear on ignition system where long dwell is not needed. And other areas can use longer dwell value if needed for stronger spark. Battery voltage correction is applied for these dwell values." + useDwellMap = "In normal operation mode this is set to No and speeduino will use fixed running dwell value. But if different dwell values are required across engine RPM/load range, this can be set to Yes and separate Dwell table defines running dwell value." + +[UserDefined] + +; Enhanced TunerStudio dialogs can be defined here +; MegaTune will over look this section +; These dialogs will over-ride those in the UserDefined Section +; User defined ar loaded first, then if one by the same name is defiend here, +; it will replace the MegaTune definition + +; dialog = name, Title, Layout +; +; valid options for layout are xAxis, yAxis, border +; for an xAxis, each field added will be added from right to left +; A yAxis layout will add fields from top to bottom +; A border layout will expect an additional constraint to determine placement +; valid border constraints are north, South, East, West, Center +; all 5 do not need to be filled. + +; The field name can be either a constant reference, or a reference to another +; dialog which will be added. +; dialogs can be nested and can be mixed with fields + + dialog = engine_constants_southwest, "Speeduino Board" + field = "Stoichiometric ratio", stoich + field = "Injector Layout", injLayout + field = "Board Layout", pinLayout + field = "MAP Sample method", mapSample + + dialog = engine_constants_west, "" + panel = std_injection, North + panel = engine_constants_southwest + + dialog = engine_constants_northeast, "Oddfire Angles" + field = "Channel 2 angle", oddfire2, { engineType == 1 } + field = "Channel 3 angle", oddfire3, { engineType == 1 && nCylinders >= 3 } + field = "Channel 4 angle", oddfire4, { engineType == 1 && nCylinders >= 4 } + + dialog = engine_constants_east, "" + panel = engine_constants_northeast, North + field = "" + + dialog = engine_constants_warning, "" + field = "!Warning: The board you have selected may not have enough channels for sequential fuel!", {}, {}, { injLayout == 3 && !sequentialFuelAvailable } + + dialog = engine_constants, "", border + topicHelp = "https://wiki.speeduino.com/en/configuration/Engine_Constants" + panel = engine_constants_warning, North + panel = engine_constants_west, West + panel = engine_constants_east, East + +; Flex fuel stuff + dialog = flexFuelSettings, "", yAxis + field = "Flex Fuel Sensor ", flexEnabled + field = "Low (E0) ", flexFreqLow, { flexEnabled } + field = "High (E100) ", flexFreqHigh, { flexEnabled } + + dialog = flexFuelWest, "" + panel = flex_fuel_curve, { flexEnabled } + panel = flex_adv_curve, { flexEnabled } + + dialog = flexFuelEast, "" + panel = flex_boost_curve, { flexEnabled && boostEnabled } + + ;dialog = flexCurves, "", indexCard + dialog = flexCurves, "", xAxis + panel = flexFuelWest, West + panel = flexFuelEast, East + + dialog = flexFueling, "Fuel Sensor Settings", border + topicHelp = "https://wiki.speeduino.com/en/configuration/Flex_Fuel" + ;panel = flexFuelWest, West + panel = flexFuelSettings, North + panel = flexCurves, South + +; Knock control settings + dialog = knock_windows, "Knock Windows", xAxis + panel = knock_window_angle_curve, West, { knock_mode } + panel = knock_window_duration_curve, East, { knock_mode } + + dialog = knock_settings_west, "Settings", yAxis + field = "Knock Mode", knock_mode + field = "Knock Pin", knock_pin, { knock_mode } + field = "Knock active when pin is", knock_trigger, { knock_mode == 1 } + field = "Use pullup", knock_pullup, { knock_mode == 1 } + + dialog = knock_settings_east, "Detection and Response" + field = "#Detection" + field = "Knock count required", knock_count, { knock_mode == 1} + field = "Knock threshold required", knock_threshold, { knock_mode == 2} + field = "Maximum MAP", knock_maxMAP, { knock_mode } + field = "Maximum RPM", knock_maxRPM, { knock_mode } + + ;Retard and recovery + field = "#Retard" + field = "Total retard", knock_maxRetard, { knock_mode } + field = "First step size", knock_firstStep, { knock_mode } + field = "Other step size", knock_stepSize, { knock_mode } + field = "Step time", knock_stepTime, { knock_mode } + + field = "#Recovery" + field = "Retard duration", knock_duration, { knock_mode } ;Time before retard starts ending + field = "Recovery step time", knock_recoveryStepTime, { knock_mode } ;Time between each recovery step + field = "Recovery step size", knock_recoveryStep, { knock_mode } + + dialog = knock_settings_top, "", xAxis + panel = knock_settings_west, West + panel = knock_settings_east, East + + dialog = knockSettings, "", border + topicHelp = "http://speeduino.com/wiki/index.php/Knock" + panel = knock_settings_top, North + panel = knock_windows, South + + dialog = vss_gear_1, "", xAxis + field = "Speed ratio 1", vssRatio1 + commandButton = "Set Gear 1", cmdVSSratio1, { vssMode > 1 } + dialog = vss_gear_2, "", xAxis + field = "Speed ratio 2", vssRatio2 + commandButton = "Set Gear 2", cmdVSSratio2, { vssMode > 1 } + dialog = vss_gear_3, "", xAxis + field = "Speed ratio 3", vssRatio3 + commandButton = "Set Gear 3", cmdVSSratio3, { vssMode > 1 } + dialog = vss_gear_4, "", xAxis + field = "Speed ratio 4", vssRatio4 + commandButton = "Set Gear 4", cmdVSSratio4, { vssMode > 1 } + dialog = vss_gear_5, "", xAxis + field = "Speed ratio 5", vssRatio5 + commandButton = "Set Gear 5", cmdVSSratio5, { vssMode > 1 } + dialog = vss_gear_6, "", xAxis + field = "Speed ratio 6", vssRatio6 + commandButton = "Set Gear 6", cmdVSSratio6, { vssMode > 1 } + + dialog = vss_gear_detection, "Gear Detection", yAxis + field = "After setting 'Pulses per km/mile' above" + field = "Drive in each gear (any speed) and press appropriate button" + panel = vss_gear_1 + panel = vss_gear_2 + panel = vss_gear_3 + panel = vss_gear_4 + panel = vss_gear_5 + panel = vss_gear_6 + + dialog = vss_calibration, "VSS Calibration" + field = "Pulses Per KM", vssPulsesPerKm, { vssMode > 1 } + commandButton = "60km/h auto-calibrate", cmdVSS60kmh, { vssMode > 1 } + field = "Smoothing Factor", vssSmoothing, { vssMode > 1 } + + dialog = vssSettings, "", yAxis + topicHelp = "https://wiki.speeduino.com/en/configuration/VSS" + field = "VSS Input Mode", vssMode + field = "VSS Pin", vssPin, { vssMode > 1 } + ;field = "Use Pullup", vssPullup, { vssMode > 1 } + + panel = vss_calibration + panel = vss_gear_detection + + dialog = tacho, "Tacho" + field = "Output pin", tachoPin + field = "Output speed", tachoDiv + field = "Pulse duration", tachoDuration + field = "Tacho sweep on boot", useTachoSweep + field = "Tacho sweep Max RPM", tachoSweepMaxRPM, { useTachoSweep } + + dialog = accelEnrichments_aeSettings, "" + field = "Enrichment mode", aeMode + field = "Enrichment method", aeApplyMode + field = "TPSdot Threshold", taeThresh, { aeMode == 0 } + field = "MAPdot Threshold", maeThresh, { aeMode == 1 } + field = "Accel Time", aeTime + field = "Taper Start RPM", aeTaperMin + field = "Taper End RPM", aeTaperMax + + dialog = accelEnrichments_coldAdj, "Acceleration Enrichment cold adjustment" + field = "Cold adjustment", aeColdPct + field = "Cold adjustment taper start temperature", aeColdTaperMin + field = "Cold adjustment taper end temperature", aeColdTaperMax + + dialog = accelEnrichments_south, "Decelleration Fuel Cutoff (DFCO)" + field = "Enabled", dfcoEnabled + field = "TPS Threshold", dfcoTPSThresh, { dfcoEnabled } + field = "Minimum engine temperature", dfcoMinCLT, { dfcoEnabled } + field = "Cutoff delay", dfcoDelay, { dfcoEnabled } + field = "Cutoff RPM", dfcoRPM, { dfcoEnabled } + field = "RPM Hysteresis", dfcoHyster, { dfcoEnabled } + + dialog = accelEnrichments_north_south, "" + liveGraph = pump_ae_Graph, "AE Graph" + graphLine = afr + graphLine = TPSdot, "%", -2000, 2000, auto, auto + graphLine = MAPdot, "%", -2000, 2000, auto, auto + + dialog = accelEnrichments_north, "", xAxis + panel = time_accel_tpsdot_curve, { aeMode == 0 } + panel = time_accel_mapdot_curve, { aeMode == 1 } + + dialog = accelEnrichments_center, "Acceleration Enrichment", xAxis + panel = accelEnrichments_aeSettings + panel = accelEnrichments_coldAdj + + dialog = accelEnrichments, "Acceleration Enrichment" + topicHelp = "http://speeduino.com/wiki/index.php/Acceleration_Wizard" + panel = accelEnrichments_north, North + panel = accelEnrichments_north_south, Center + panel = accelEnrichments_center, Center + panel = accelEnrichments_south, South + + dialog = veTableDialog_north, "" + panel = veTable1Tbl + + dialog = veTableDialog_south, "" + field = "Multiply VE value by MAP ratio", multiplyMAP + field = "Multiply by ratio of AFR to Target AFR", includeAFR, { egoType == 2 && !incorporateAFR || (incorporateAFR==includeAFR) } + field = "Multiply by ratio of stoich AFR/target AFR (incorporate AFR)", incorporateAFR, { !includeAFR || (incorporateAFR==includeAFR) } + + dialog = veTableDialog, "VE Table" + panel = veTableDialog_north, North + panel = veTableDialog_south, South + + dialog = fuelTable2Dialog_switch, "Switch Conditions", xAxis + field = "Use secondary table when:", fuel2SwitchVariable + field = "is greater than:", fuel2SwitchValue + + dialog = fuelTable2Dialog_input, "Input Options", yAxis + field = "Use secondary table when pin", fuel2InputPin + field = "Is", fuel2InputPolarity + field = "Use internal pullup on pin", fuel2InputPullup, { fuel2InputPolarity == 0 } + + dialog = fuelTable2Dialog_north, "" + field = "Secondary fuel table mode", fuel2Mode + field = "Load source", fuel2Algorithm, { fuel2Mode } + panel = fuelTable2Dialog_switch, { fuel2Mode == 3 } + panel = fuelTable2Dialog_input, { fuel2Mode == 4 } + + dialog = fuelTable2Dialog_south, "" + panel = fuelTable2Tbl + + dialog = fuelTable2Dialog, "Fuel Table 2" + panel = fuelTable2Dialog_north, North + panel = fuelTable2Dialog_south, South, { fuel2Mode } + + dialog = sparkTable2Dialog_switch, "Switch Conditions", xAxis + field = "Use secondary table when:", spark2SwitchVariable + field = "is greater than:", spark2SwitchValue + + dialog = sparkTable2Dialog_input, "Input Options", yAxis + field = "Use secondary table when pin", spark2InputPin + field = "Is", spark2InputPolarity + field = "Use internal pullup on pin", spark2InputPullup, { spark2InputPolarity == 0 } + + dialog = sparkTable2Dialog_north, "" + field = "Secondary advance table mode", spark2Mode + field = "Load source", spark2Algorithm, { spark2Mode } + panel = sparkTable2Dialog_switch, { spark2Mode == 3 } + panel = sparkTable2Dialog_input, { spark2Mode == 4 } + + dialog = sparkTable2Dialog_south, "" + panel = spark2Tbl + + dialog = sparkTable2Dialog, "Spark Table 2" + panel = sparkTable2Dialog_north, North + panel = sparkTable2Dialog_south, South, { spark2Mode } + + dialog = injAngleDialog, "Injector close angles" + panel = injector_timing_curve + + dialog = injOpenTimeDialog, "Injector opening time" + field = "Injector Open Time", injOpen + field = "Battery Voltage Correction Mode", battVCorMode + panel = injector_voltage_curve + + dialog = injChars, "Injector Characteristics" + topicHelp = "https://wiki.speeduino.com/en/configuration/Injector_Characteristics" + field = "Injector Duty Limit", dutyLim + panel = injOpenTimeDialog + panel = injAngleDialog + + dialog = egoControl, "" + topicHelp = "https://wiki.speeduino.com/en/configuration/O2" + field = "Sensor Type", egoType + field = "#Please ensure you calibrate your O2 sensor in the Tools menu", { egoType } + field = "Algorithm", egoAlgorithm, { egoType } + field = "Ignition Events per Step", egoCount, { egoType && (egoAlgorithm < 3) } + field = "Controller Auth +/-", egoLimit, { egoType && (egoAlgorithm < 3) } + field = "Only correct above:", ego_min, { egoType && (egoAlgorithm < 3) } + field = "and correct below:", ego_max, { egoType && (egoAlgorithm < 3) } + + field = "Active Above Coolant", egoTemp, { egoType && (egoAlgorithm < 3) } + field = "Active Above RPM", egoRPM, { egoType && (egoAlgorithm < 3) } + field = "Active Below TPS", egoTPSMax, { egoType && (egoAlgorithm < 3) } + field = "EGO delay after start", ego_sdelay, { (egoAlgorithm < 3) } + field = "PID Proportional Gain", egoKP, { egoType && (egoAlgorithm == 2) } + field = "PID Integral", egoKI, { egoType && (egoAlgorithm == 2) } + field = "PID Derivative", egoKD, { egoType && (egoAlgorithm == 2) } + + dialog = fanSettings,"Fan Settings",7 + topicHelp = "https://wiki.speeduino.com/en/configuration/Thermo_fan" + field = "Fan Mode", fanEnable + field = "Allow fan when off", fanWhenOff, { fanEnable } + field = "Allow fan when cranking", fanWhenCranking, { fanEnable } + field = "Fan output pin", fanPin, { fanEnable } + field = "Fan Output Inverted", fanInv, { fanEnable } + field = "Fan switching temperature", fanSP, { fanEnable } + field = "Fan hysteresis", fanHyster, { fanEnable } + + dialog = stepper_idle, "Stepper Idle" + field = "Step time (ms)", iacStepTime, { iacAlgorithm == 4 || iacAlgorithm == 5 } + field = "Cool time (ms)", iacCoolTime, { iacAlgorithm == 4 || iacAlgorithm == 5 } + field = "Home steps", iacStepHome, { iacAlgorithm == 4 || iacAlgorithm == 5 } + field = "Minimum Steps", iacStepHyster, { iacAlgorithm == 4 || iacAlgorithm == 5 } + field = "Don't exceed", iacMaxSteps, { iacAlgorithm == 4 || iacAlgorithm == 5 } + field = "Stepper Inverted", iacStepperInv, { iacAlgorithm == 4 || iacAlgorithm == 5 } + + dialog = pwm_idle, "PWM Idle" + field = "Number of outputs", iacChannels, { iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 } + field = "Idle valve frequency", idleFreq, { iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 } + field = "Idle valve direction", iacPWMdir, { iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 } + field = "Run before start", iacPWMrun, { iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 } + + dialog = closedloop_idle, "Closed loop Idle" + field = "P", idleKP, { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6} + field = "I", idleKI, { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6} + field = "D", idleKD, { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6} + field = "Minimum valve duty", iacCLminDuty, { iacAlgorithm == 3 || iacAlgorithm == 6} + field = "Maximum valve duty", iacCLmaxDuty, { iacAlgorithm == 3 || iacAlgorithm == 6} + field = "Integeral reset above TPS", iacTPSlimit, { iacAlgorithm == 6 } + field = "Integeral reset RPM Hysteresis", iacRPMlimitHysteresis, { iacAlgorithm == 6 } + + dialog = idleSettings, "Idle Settings" + topicHelp = "https://wiki.speeduino.com/en/configuration/Idle" + field = "Idle control type", iacAlgorithm + field = "Crank to run taper", idleTaperTime, { iacAlgorithm == 2 || iacAlgorithm == 4 } + field = "#Fast Idle" + field = "Fast idle temp", iacFastTemp, { iacAlgorithm == 1 } + panel = pwm_idle + panel = stepper_idle + panel = closedloop_idle + + dialog = idleUpInputSettingsPanel, "Idle Up Input Settings", yAxis + field = "Idle Up Enabled", idleUpEnabled + field = "Idle Up Pin", idleUpPin, { idleUpEnabled } + field = "Idle Up Pin Polarity", idleUpPolarity, { idleUpEnabled } + field = "Idle Up Amount", idleUpAdder, { idleUpEnabled } + + dialog = idleUpOutputSettingsPanel, "Idle Up Output Settings", yAxis + field = "Idle Up Output Enabled", idleUpOutputEnabled, { idleUpEnabled } + field = "Idle Up Output Inverted", idleUpOutputInv, { idleUpEnabled && idleUpOutputEnabled + field = "Idle Up Output Pin", idleUpOutputPin, { idleUpEnabled && idleUpOutputEnabled } + + dialog = idleUpSettings, "Idle Up Settings" + panel = idleUpInputSettingsPanel + panel = idleUpOutputSettingsPanel + + dialog = fuelpump, "Fuel pump" + field = "Fuel pump pin", fuelPumpPin + field = "Fuel pump prime duration", fpPrime + + dialog = crankingEnrichDialog, "Cranking Enrichment", yAxis + panel = cranking_enrich_curve + field = "#Note" + field = "Values are specified as modifiers to the normal fueling. Eg 100% = No change." + + dialog = crankingIgnOptions, "Cranking Timing", yAxis + field = "Cranking advance Angle", CrankAng, { ignCranklock == 0 } + field = "Cranking bypass", ignBypassEnable + field = "Bypass output pin", ignBypassPin { ignBypassEnable } + field = "Fix cranking timing with trigger", ignCranklock, { TrigPattern == 1 || TrigPattern == 4 || TrigPattern == 10 || TrigPattern == 9 } + + dialog = crankingOptions, "", yAxis + field = "Cranking RPM (Max)", crankRPM + field = "Flood Clear level", tpsflood + field = "Fuel pump prime duration", fpPrime + field = "Injectors priming delay", primingDelay + field = "Cranking enrichment taper time", crankingEnrichTaper + + dialog = primePW, "Priming Pulsewidth" + panel = priming_pw_curve + + dialog = crankPW, "Cranking Settings", yAxis + topicHelp = "https://wiki.speeduino.com/en/configuration/Cranking" + panel = crankingOptions, North + panel = crankingEnrichDialog, Center + panel = crankingIgnOptions, South + + dialog = ASE_amount, "Enrichment amount (%)", yAxis + field = "Defines the fuel enrichment percentage after start." + field = "This is needed to keep engine running after start" + field = "Common values are 5% when engine is hot to 50% when engine is cold." + panel = afterstart_enrichment_curve + + dialog = ASE_time, "Duration (s)", yAxis + field = "How long time the After Start Enrichment is applied in seconds." + field = "Usually this is varies from 1-2s when engine is hot up to 20s on a cold engine." + field = "Transition time to disable", aseTaperTime + panel = afterstart_enrichment_time + + dialog = ASE, "Afterstart Enrichment(ASE)", yAxis + field = "#Time and duration curves share common coolant values" + panel = ASE_amount + panel = ASE_time + + dialog = triggerSettings,"Trigger Settings",4 + topicHelp = "https://wiki.speeduino.com/en/decoders" + field = "Trigger Pattern", TrigPattern + field = "Primary base teeth", numTeeth, { TrigPattern == 0 || TrigPattern == 2 || TrigPattern == 11 || TrigPattern == 18 || TrigPattern == 19 } + field = "Primary trigger speed", TrigSpeed, { TrigPattern == 0 } + field = "Missing teeth", missingTeeth, { TrigPattern == 0 } + field = "Trigger angle multiplier", TrigAngMul, { TrigPattern == 11 } + field = "Trigger Angle ", TrigAng + field = "This number represents the angle ATDC when " + field = "tooth #1 passes the primary sensor." + field = "" + field = "Skip Revolutions", SkipCycles + field = "Note: This is the number of revolutions that will be skipped during" + field = "cranking before the injectors and coils are fired" + field = "Trigger edge", TrigEdge { TrigPattern != 4 } ;4G63 uses both edges + field = "Secondary trigger edge", TrigEdgeSec, { (TrigPattern == 0 && TrigSpeed == 0 && trigPatternSec != 2) || TrigPattern == 2 || TrigPattern == 9 || TrigPattern == 12 || TrigPattern == 18 || TrigPattern == 19 || TrigPattern == 20 } ;Missing tooth, dual wheel and Miata 9905, weber-marelli, ST170 + field = "Missing Tooth Secondary type" trigPatternSec, { (TrigPattern == 0&& TrigSpeed == 0) } + field = "Level for 1st phase" PollLevelPol, { (TrigPattern == 0 && TrigSpeed == 0 && trigPatternSec == 2) } + field = "Trigger Filter", TrigFilter, { TrigPattern != 13 } + field = "Re-sync every cycle", useResync, { TrigPattern == 2 || TrigPattern == 4 || TrigPattern == 7 || TrigPattern == 12 || TrigPattern == 9 || TrigPattern == 13 || TrigPattern == 18 || TrigPattern == 19 } ;Dual wheel, 4G63, Audi 135, Nissan 360, Miata 99-05, weber-marelli + + dialog = lockSparkSettings, "Locked timing" + field = "Enabled Fixed/Locked timing", fixAngEnable + field = "Fixed Angle", FixAng, { fixAngEnable } + field = "#Note: During cranking the fixed/locked timing angle is overriden by the Cranking advance angle value above" + + dialog = newIgnitionMode, "New Ignition Mode" + field = "This option will improve accuracy on most compatible triggers" + field = "However if timing issues are encountered, please disable this" + field = "Use new ignition mode", perToothIgn + + dialog = sparkSettings,"Spark Settings",4 + topicHelp = "https://wiki.speeduino.com/en/configuration/Spark_Settings" + field = "!Warning: The board you have selected may not have enough channels for sequential ignition!", {}, {}, { sparkMode == 3 && !sequentialIgnitionAvailable } + field = "Ignition load source", ignAlgorithm + field = "Spark output mode", sparkMode + field = "Cranking advance Angle", CrankAng + field = "Spark Outputs triggers", IgInv + panel = lockSparkSettings + panel = newIgnitionMode, {TrigPattern == 0 || TrigPattern == 1 || TrigPattern == 2 || TrigPattern == 3 || TrigPattern == 4 || TrigPattern == 9 || TrigPattern == 12 || TrigPattern == 13 || TrigPattern == 16 || TrigPattern == 18 || TrigPattern == 19} ;Only works for missing tooth, distributor, dual wheel, GM 7X, 4g63, Miata 99-05, nissan 360, Subaru 6/7, 420a, weber-marelli + + dialog = dwellSettings, "Dwell Settings", 4 + topicHelp = "https://wiki.speeduino.com/en/configuration/Dwell" + field = " Cranking dwell", dwellcrank + field = " Use dwell map", useDwellMap + field = " Running dwell", dwellrun, { useDwellMap == 0 } + field = " Spark duration", sparkDur + field = "" + field = "#Note" + field = "The above times are for 12V. Voltage correction" + field = "is applied. At higher voltages the time is reduced" + field = "and when low it is increased" + field = "" + field = "Overdwell protection" + field = "Use Overdwell protection", useDwellLim + field = "Max dwell time", dwellLim, { useDwellLim } + field = "Note: Set the maximum dwell time at least 3ms above" + field = "your desired dwell time (Including cranking)" + + dialog = idleAdvanceSettings_east + field = "Idle advance mode", idleAdvEnabled + field = "Idle detect mode", idleAdvAlgorithm, { idleAdvEnabled >= 1 } + field = "Delay before idle control starts (s)",idleAdvDelay, { idleAdvEnabled >= 1 } + field = "Active Below RPM", idleAdvRPM, { idleAdvEnabled >= 1 } + field = "Active Below TPS", idleAdvTPS, { idleAdvEnabled >= 1 && idleAdvAlgorithm == 0 } + field = "Active Below VSS", idleAdvVss, { idleAdvEnabled >= 1 && vssMode > 0 } + field = "Closed Throttle Sensor Enabled", CTPSEnabled, { idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 } + field = "Closed Throttle Sensor Pin", CTPSPin, { idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 && CTPSEnabled == 1 } + field = "Closed Throttle Sensor Pin Polarity", CTPSPolarity, { idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 && CTPSEnabled == 1 } + + dialog = idleAdvanceSettings,"Idle Advance Settings", xAxis + topicHelp = "https://wiki.speeduino.com/en/configuration/IdleAdvance" + panel = idleAdvanceSettings_east + panel = idle_advance_curve, { idleAdvEnabled >= 1 } + panel = iacClosedLoop_curve, { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || idleAdvEnabled >= 1 } + + + dialog = rotary_ignition, "Rotary Ignition", 4 + field = "Ignition Configuration", rotaryType + panel = rotaryTrailing_curve + + dialog = boostCut, "Boost Cut" + field = "Enable Boost limit", boostCutEnabled + field = "Boost Limit", boostLimit, { boostCutEnabled } + + dialog = boostLoad, "" + field = "Mode", boostType + field = "In open loop mode, the values in this table are duty cycle %" + field = "In closed loop mode, the values are boost targets in kPa" + panel = boostTbl + + dialog = revLimiterDialog, "Rev Limiter" + field = "Rev Limiter" + field = "!Soft limiter only available with ignition cut", {}, {}, { engineProtectType == 2 } + field = "Soft rev limit", SoftRevLim, { engineProtectType == 1 || engineProtectType == 3 } ;Only available for the protection modes that include ignition. + field = "Soft limiter mode", SoftLimitMode, { engineProtectType == 1 || engineProtectType == 3 } ;Only available for the protection modes that include ignition. + field = "Soft limit timing", SoftLimRetard, { engineProtectType == 1 || engineProtectType == 3 } ;Only available for the protection modes that include ignition. + field = "Soft limit max time", SoftLimMax, { engineProtectType == 1 || engineProtectType == 3 } ;Only available for the protection modes that include ignition. + field = "Hard Rev limit", HardRevLim + + dialog = oilPressureProtection, "Oil Pressure" + field = "Oil Pressure Protection", oilPressureProtEnbl, { oilPressureEnable } + panel = oil_pressure_prot_curve, { oilPressureEnable && oilPressureProtEnbl } + + indicatorPanel = protectIndicatorPanel, 1, { 1 } + indicator = { engineProtectStatus}, "Engine Protect OFF", "Engine Protect ON", green, black, red, black + indicator = { engineProtectRPM }, "Rev Limiter Off", "Rev Limiter ON", green, black, red, black + indicator = { engineProtectMAP }, "Boost Limit OFF", "Boost Limit ON", green, black, red, black + indicator = { engineProtectOil }, "Oil Pres. Protect OFF","Oil Pres. Protect ON",green, black, red, black + indicator = { engineProtectAFR }, "AFR Protect OFF", "AFR Protect ON", green, black, red, black + + dialog = engineProtectionWest, "" + field = "Protection Cut", engineProtectType + field = "Engine Protection RPM min", engineProtectMaxRPM, { engineProtectType } + field = "Cut method", hardCutType, { engineProtectType == 1 || engineProtectType == 3 } ;Only available for the protection modes that include ignition. + panel = protectIndicatorPanel, { engineProtectType } + + dialog = RevLimiterS, "Engine Protection and Limiters", xAxis + topicHelp = "https://wiki.speeduino.com/en/configuration/Rev_Limits" + panel = engineProtectionWest + panel = revLimiterDialog, { engineProtectType } + panel = boostCut, { engineProtectType } + panel = oilPressureProtection, { engineProtectType } + + + dialog = clutchInput, "Clutch input" + field = "Clutch Input Pin", launchPin, { launchEnable || flatSEnable } + field = "Clutch enabled when signal is",launchHiLo, { launchEnable || flatSEnable } + field = "Clutch Pullup Resistor", lnchPullRes, { launchEnable || flatSEnable } + field = "Launch / Flat Shift switch RPM",flatSArm, { launchEnable || flatSEnable } + + dialog = LaunchControl, "Launch Control / Flat shift", 6 + topicHelp = "https://wiki.speeduino.com/en/configuration/Launch_Flatshift" + panel = clutchInput + ; Launch control + field = "Launch Control" + field = "Enable Launch", launchEnable + field = "TPS threshold", lnchCtrlTPS, { launchEnable } + field = "Soft rev limit", lnchSoftLim, { launchEnable } + field = "Soft limit absolute timing", lnchRetard, { launchEnable } + field = "Hard rev limit", lnchHardLim, { launchEnable } + field = "Fuel adder during launch", lnchFuelAdd, { launchEnable } + + ; Flat shift + field = "Flat Shift" + field = "Enable flat shift", flatSEnable + field = "Soft rev window", flatSSoftWin, { flatSEnable } + field = "Soft limit absolute timing", flatSRetard, { flatSEnable } + + dialog = NitrousStage1, "Stage 1" + field = "Nitrous Output Pin", n2o_stage1_pin + field = "Minimum Engage RPM", n2o_stage1_minRPM + field = "Maximum Engage RPM", n2o_stage1_maxRPM + field = "Fuel adder @ Min RPM", n2o_stage1_adderMin + field = "Fuel adder @ Max RPM", n2o_stage1_adderMax + field = "Ignition retard when active", n2o_stage1_retard + + dialog = NitrousStage2, "Stage 2" + field = "Nitrous Output Pin", n2o_stage2_pin + field = "Minimum Engage RPM", n2o_stage2_minRPM + field = "Maximum Engage RPM", n2o_stage2_maxRPM + field = "Fuel adder @ Min RPM", n2o_stage2_adderMin + field = "Fuel adder @ Max RPM", n2o_stage2_adderMax + field = "Ignition retard when active", n2o_stage2_retard + + dialog = NitrousMain, "Settings" + field = "Nitrous Mode", n2o_enable + field = "Arming Pin", n2o_arming_pin, { n2o_enable > 0 } + field = "Nitrous is armed when pin is", n2o_pin_polarity,{ n2o_enable > 0 } + field = "Minimum CLT", n2o_minCLT, { n2o_enable > 0 } + field = "Minimum TPS", n2o_minTPS, { n2o_enable > 0 } + field = "Maximum MAP", n2o_maxMAP, { n2o_enable > 0 } + field = "Leanest AFR", n2o_maxAFR, { n2o_enable > 0 } + + dialog = NitrousControl, "Nitrous" + topicHelp = "https://wiki.speeduino.com/en/configuration/Nitrous_Control" + panel = NitrousMain, North + panel = NitrousStage1, West, { n2o_enable > 0 } + panel = NitrousStage2, East, { n2o_enable > 1 } + + + dialog = OLED, "OLED Display", 2 + field = "Display Type", display + field = "#Note" + field = "ECU must be rebooted after changing above value" + field = "Field 1", display1, { display } + field = "Field 2", display2, { display } + field = "Field 3", display3, { display } + field = "Field 4", display4, { display } + ;field = "Bar 1", displayB1, { display } + ;field = "Bar 2", displayB2, { display > 2 } + + dialog = batCal, "Calibrate voltage reading" + topicHelp = "https://wiki.speeduino.com/en/configuration/Sensor_Calibration" + slider = "Battery Voltage reading offset", batVoltCorrect, horizontal + + dialog = mapCal, "Calibrate MAP" + topicHelp = "https://wiki.speeduino.com/en/configuration/Sensor_Calibration" + field = "#MAP Sensor" + settingSelector = "Common Pressure Sensors" + settingOption = "MPX4115/MPXH6115/KP234", mapMin=10, mapMax=121 ; https://www.nxp.com/docs/en/data-sheet/MPX4115.pdf Vout = VCC * (0.009*P - 0.095) + settingOption = "MPX4250", mapMin=10, mapMax=260 ; https://www.nxp.com/docs/en/data-sheet/MPX4250A.pdf Vout = VCC x (P x 0.004 – 0.04) + settingOption = "GM 1-BAR", mapMin=10, mapMax=105 ; https://speeduino.com/wiki/index.php/File:GM_Table.gif + settingOption = "GM 2-BAR", mapMin=9, mapMax=208 ; https://speeduino.com/wiki/index.php/File:GM_Table.gif + settingOption = "GM 3-BAR", mapMin=1, mapMax=315 ; VOUT = VS*(.00318*P-.00353) + settingOption = "MPXH6300", mapMin=1, mapMax=315 ; https://www.nxp.com/docs/en/data-sheet/MPXH6300A.pdf VOUT = VS*(.00318*P-.00353) + settingOption = "MPX5700", mapMin=-31, mapMax=746 ; https://www.nxp.com/docs/en/data-sheet/MPX5700.pdf Vout = VS*(0.0012858*P+0.04) + settingOption = "MPX6400", mapMin=3, mapMax=416 ; https://www.nxp.com/docs/en/data-sheet/MPXH6400A.pdf VOUT = VS x (0.002421xP–0.00842) + settingOption = "Denso 079800", mapMin=0, mapMax=173 ; http://speeduino.com/forum/viewtopic.php?f=18&t=510&p=7023#p7021 + settingOption = "VW/Audi/Porsche 250kPa", mapMin=26, mapMax=250 ; http://speeduino.com/forum/viewtopic.php?p=17502#p17502 + settingOption = "Bosch 3 Bar TMAP", mapMin=-6, mapMax=323 + + field = "kPa At 0.0 Volts", mapMin + field = "kPa At 5.0 Volts", mapMax + field = "Use legacy MAP reading",legacyMAP + + field = "#Baro Sensor" + field = "Use external Baro sensor", useExtBaro + field = "Analog pin to use for ext. Baro sensor", baroPin, { useExtBaro } + + settingSelector = "Common Pressure Sensors", { useExtBaro } + settingOption = "MPX4115/MPXH6115/KP234", baroMin=10, baroMax=121 ; https://www.nxp.com/docs/en/data-sheet/MPX4115.pdf Vout = VCC * (0.009*P - 0.095) + settingOption = "MPX4250", baroMin=10, baroMax=260 ; https://www.nxp.com/docs/en/data-sheet/MPX4250A.pdf Vout = VCC x (P x 0.004 – 0.04) + settingOption = "GM 1-BAR", baroMin=10, baroMax=105 ; https://speeduino.com/wiki/index.php/File:GM_Table.gif + settingOption = "GM 2-BAR", baroMin=9, baroMax=208 ; https://speeduino.com/wiki/index.php/File:GM_Table.gif + settingOption = "GM 3-BAR", baroMin=1, baroMax=315 ; VOUT = VS*(.00318*P-.00353) + settingOption = "MPXH6300", baroMin=1, baroMax=315 ; https://www.nxp.com/docs/en/data-sheet/MPXH6300A.pdf VOUT = VS*(.00318*P-.00353) + settingOption = "MPX5700", baroMin=-31, baroMax=746 ; https://www.nxp.com/docs/en/data-sheet/MPX5700.pdf Vout = VS*(0.0012858*P+0.04) + settingOption = "MPX6400", baroMin=3, baroMax=416 ; https://www.nxp.com/docs/en/data-sheet/MPXH6400A.pdf VOUT = VS x (0.002421xP–0.00842) + settingOption = "Denso 079800", baroMin=0, baroMax=173 ; http://speeduino.com/forum/viewtopic.php?f=18&t=510&p=7023#p7021 + settingOption = "VW/Audi/Porsche 250kPa", baroMin=26, baroMax=250 ; http://speeduino.com/forum/viewtopic.php?p=17502#p17502 + settingOption = "Bosch 3 Bar TMAP", mapMin=-6, mapMax=323 + + field = "kPa At 0.0 Volts", baroMin, { useExtBaro } + field = "kPa At 5.0 Volts", baroMax, { useExtBaro } + + field = "#EMAP Sensor" + field = "Use EMAP sensor", useEMAP + field = "Analog pin to use for ext. Baro sensor", EMAPPin, { useEMAP } + + settingSelector = "Common Pressure Sensors", { useEMAP } + settingOption = "MPX4115", EMAPMin=10, EMAPMax=118 ; https://www.nxp.com/docs/en/data-sheet/MPX4115.pdf + settingOption = "MPX4250", EMAPMin=10, EMAPMax=260 ; https://www.nxp.com/docs/en/data-sheet/MPX4250A.pdf Vout = VCC x (P x 0.004 – 0.04) + settingOption = "GM 1-BAR", EMAPMin=10, EMAPMax=105 ; https://speeduino.com/wiki/index.php/File:GM_Table.gif + settingOption = "GM 2-BAR", EMAPMin=9, EMAPMax=208 ; https://speeduino.com/wiki/index.php/File:GM_Table.gif + settingOption = "GM 3-BAR", EMAPMin=1, EMAPMax=315 ; VOUT = VS*(.00318*P-.00353) + settingOption = "MPXH6300", EMAPMin=1, EMAPMax=315 ; https://www.nxp.com/docs/en/data-sheet/MPXH6300A.pdf VOUT = VS*(.00318*P-.00353) + settingOption = "MPX5700", EMAPMin=-31, EMAPMax=746 ; https://www.nxp.com/docs/en/data-sheet/MPX5700.pdf Vout = VS*(0.0012858*P+0.04) + settingOption = "MPX6400", EMAPMin=3, EMAPMax=416 ; https://www.nxp.com/docs/en/data-sheet/MPXH6400A.pdf VOUT = VS x (0.002421xP–0.00842) + settingOption = "Denso 079800", EMAPMin=0, EMAPMax=173 ; http://speeduino.com/forum/viewtopic.php?f=18&t=510&p=7023#p7021 + settingOption = "VW/Audi/Porsche 250kPa", EMAPMin=26, EMAPMax=250 ; http://speeduino.com/forum/viewtopic.php?p=17502#p17502 + + field = "kPa At 0.0 Volts", EMAPMin, { useEMAP } + field = "kPa At 5.0 Volts", EMAPMax, { useEMAP } + + dialog = sensorFilters, "Analog sensor filters" + field = "The values here set the amount of filtering to apply to each analog input" + field = "Higher values result in stronger filtering, but slower response times for readings" + field = "#Most setups will NOT require changes to the default filter values" + field = "" + slider = "Throttle Position Sensor", ADCFILTER_TPS, horizontal + slider = "Coolant Sensor", ADCFILTER_CLT, horizontal + slider = "Inlet Air Temp sensor", ADCFILTER_IAT, horizontal + slider = "O2 sensor", ADCFILTER_O2, horizontal + slider = "Battery voltage", ADCFILTER_BAT, horizontal + slider = "MAP sensor", ADCFILTER_MAP, horizontal + slider = "Baro sensor", ADCFILTER_BARO, horizontal, { useExtBaro > 0 } + + dialog = fuelPressureSettings + field = "Enabled", fuelPressureEnable + field = "Pin", fuelPressurePin, { fuelPressureEnable } + settingSelector = "Common Sensors", { fuelPressureEnable } + settingOption = "0-100 PSI", fuelPressureMin=-3, fuelPressureMax=103 ; Vout = VCC x (P x .97 / 200 + 0.5) + settingOption = "0-150 PSI", fuelPressureMin=-18, fuelPressureMax=168 ; Vout = VCC x (P x 0.8 / 150 + 0.1) https://aftermarketindustries.com.au/image/cache/data/aftermarket%20industries%20fuel%20pressure%20sensor%20data%202-500x500.png + field = "Pressure at 0v", fuelPressureMin, { fuelPressureEnable } + field = "Pressure at 5v", fuelPressureMax, { fuelPressureEnable } + + dialog = fuelPressureDialog, "Fuel Pressure", xAxis + gauge = fuelPressureGauge + panel = fuelPressureSettings + + dialog = oilPressureSettings + field = "Enabled", oilPressureEnable + field = "Pin", oilPressurePin, { oilPressureEnable } + settingSelector = "Common Sensors", { oilPressureEnable } + settingOption = "0-100 PSI", oilPressureMin=-3, oilPressureMax=103 ; Vout = VCC x (P x .97 / 200 + 0.5) + settingOption = "0-150 PSI", oilPressureMin=-18, oilPressureMax=168 ; Vout = VCC x (P x 0.8 / 150 + 0.1) https://aftermarketindustries.com.au/image/cache/data/aftermarket%20industries%20fuel%20pressure%20sensor%20data%202-500x500.png + field = "Pressure at 0v", oilPressureMin, { oilPressureEnable } + field = "Pressure at 5v", oilPressureMax, { oilPressureEnable } + + dialog = oilPressureDialog, "Oil Pressure", xAxis + gauge = oilPressureGauge + panel = oilPressureSettings + + dialog = pressureSensors, "Pressure Transducers" + topicHelp = "https://wiki.speeduino.com/en/configuration/Sensor_Calibration" + panel = fuelPressureDialog + panel = oilPressureDialog + + dialog = boostSettings, "Boost Control" + topicHelp = "https://wiki.speeduino.com/en/configuration/Boost_Control" + field = "Boost Control Enabled", boostEnabled + field = "Boost control type", boostType, { boostEnabled } + field = "Boost output pin", boostPin, { boostEnabled } + field = "Boost solenoid freq.", boostFreq, { boostEnabled } + + field = "Valve minimum duty cycle", boostMinDuty, { boostEnabled && boostType == 1 } + field = "Valve maximum duty cycle", boostMaxDuty, { boostEnabled && boostType == 1 } + panel = boostCut + field = "Closed Loop settings" + field = "Control mode", boostMode, { boostEnabled && boostType == 1 } + slider = "Sensitivity", boostSens, horizontal, { boostEnabled && boostType == 1 } + field = "Control interval", boostIntv, { boostEnabled && boostType == 1 } + field = "P", boostKP, { boostEnabled && boostMode && boostType == 1 } + field = "I", boostKI, { boostEnabled && boostMode && boostType == 1 } + field = "D", boostKD, { boostEnabled && boostMode && boostType == 1 } + + dialog = vvtClosedLoop, "Closed loop" + field = "Hold duty used", vvtCLUseHold + field = "Hold duty", vvtCLholdDuty, { vvtCLUseHold } + field = "Adjust fuel timing", vvtCLAlterFuelTiming + field = "Cam angle @ 0% duty", vvtCLMinAng + field = "" + field = "Proportional Gain", vvtCLKP + field = "Integral Gain", vvtCLKI + field = "Differential Gain", vvtCLKD + field = "Minimum valve duty", vvtCLminDuty, { vvtEnabled && vvtMode == 2 } + field = "Maximum valve duty", vvtCLmaxDuty, { vvtEnabled && vvtMode == 2 } + + + dialog = vvtSettings, "VVT Control" + field = "VVT Control Enabled", vvtEnabled + field = "VVT Mode", vvtMode, { vvtEnabled } + field = "#Please note that close loop is currently experimental for Miata patterns ONLY" + field = "Load source", vvtLoadSource, { vvtEnabled } + field = "Use VVT map as On / Off only", VVTasOnOff, { vvtEnabled && vvtMode != 2 } + field = "VVT output pin", vvt1Pin, { vvtEnabled } + field = "VVT solenoid freq.", vvtFreq, { vvtEnabled } + field = "Increased duty direction", vvtPWMdir, { vvtEnabled } + panel = vvtClosedLoop, { vvtEnabled && vvtMode == 2 } + + dialog = wmiSettings, "WMI Control" + field = "#Experimental!" + field = "WMI Control Enabled", wmiEnabled + field = "WMI Mode", wmiMode, { wmiEnabled } + field = "WMI min TPS", wmiTPS, { wmiEnabled } + field = "WMI min RPM", wmiRPM , { wmiEnabled } + field = "WMI min MAP", wmiMAP, { wmiEnabled } + field = "WMI max MAP", wmiMAP2, { wmiEnabled && wmiMode == 1} + field = "WMI min IAT", wmiIAT, { wmiEnabled } + field = "WMI offset", wmiOffset, { wmiEnabled && wmiMode == 3} + field = "" + field = "WMI PWM output pin", vvt1Pin, { wmiEnabled } + field = "WMI PWM freq.", vvtFreq, { wmiEnabled } + field = "" + field = "WMI enabled output pin", wmiEnabledPin, { wmiEnabled } + field = "" + field = "WMI tank empty input", wmiEmptyEnabled, { wmiEnabled } + field = "WMI tank empty pin", wmiEmptyPin, { wmiEnabled } + field = "WMI tank empty polarity", wmiEmptyPolarity, { wmiEnabled } + field = "" + field = "WMI tank indicator output", wmiIndicatorEnabled, { wmiEnabled } + field = "WMI tank indicator pin", wmiIndicatorPin, { wmiEnabled } + field = "WMI tank indicator polarity", wmiIndicatorPolarity, { wmiEnabled } + field = "" + field = "Iginition advance correction", wmiAdvEnabled, { wmiEnabled } + panel = wmi_adv_curve, { wmiEnabled && wmiAdvEnabled } + + dialog = warmup, "Warmup Enrichment (WUE) - Percent Multiplier" + panel = warmup_curve + + ;Fuel trim composite dialog + dialog = inj_trim1TblTitle, "Channel #1" + panel = fuelTrimTable1Tbl, { fuelTrimEnabled } + dialog = inj_trim2TblTitle, "Channel #2" + panel = fuelTrimTable2Tbl, { fuelTrimEnabled } + dialog = inj_trim3TblTitle, "Channel #3" + panel = fuelTrimTable3Tbl, { fuelTrimEnabled } + dialog = inj_trim4TblTitle, "Channel #4" + panel = fuelTrimTable4Tbl, { fuelTrimEnabled } + dialog = inj_trim5TblTitle, "Channel #5" + panel = fuelTrimTable5Tbl, { fuelTrimEnabled } + dialog = inj_trim6TblTitle, "Channel #6" + panel = fuelTrimTable6Tbl, { fuelTrimEnabled } + dialog = inj_trim7TblTitle, "Channel #7" + panel = fuelTrimTable7Tbl, { fuelTrimEnabled } + dialog = inj_trim8TblTitle, "Channel #8" + panel = fuelTrimTable8Tbl, { fuelTrimEnabled } + + dialog = inj_trimadt, "", xAxis + panel = inj_trim1TblTitle + panel = inj_trim2TblTitle + dialog = inj_trimadb, "", xAxis + panel = inj_trim3TblTitle + panel = inj_trim4TblTitle + dialog = inj_trimadt_B, "", xAxis + panel = inj_trim5TblTitle + panel = inj_trim6TblTitle + dialog = inj_trimadb_B, "", xAxis + panel = inj_trim7TblTitle + panel = inj_trim8TblTitle + + dialog = inj_trim_enable, "" + field = "Individual fuel trim enabled", fuelTrimEnabled, { injLayout == 3 && nCylinders <= nFuelChannels } + + dialog = inj_trimad,"Injector Cyl 1-4 Trims", yAxis + panel = inj_trim_enable, North + panel = inj_trimadt, Center + panel = inj_trimadb, South + + dialog = inj_trimad_B,"Injector Cyl 5-8 Trims", yAxis + panel = inj_trim_enable, North + panel = inj_trimadt_B, Center + panel = inj_trimadb_B, South + + ;;Injector staging + dialog = stagingTableDialog_north, "" + field = "Staging enabled", stagingEnabled + field = "Staging mode", stagingMode + field = "Size of primary injectors", stagedInjSizePri, { stagingEnabled } + field = "Size of secondary injectors", stagedInjSizeSec, { stagingEnabled } + + dialog = stagingTableDialog_south, "" + panel = stagingTbl, { stagingMode == 0 } + + dialog = stagingTableDialog, "Staged injection" + topicHelp = "https://wiki.speeduino.com/en/configuration/Staged_Injection" + panel = stagingTableDialog_north, North + panel = stagingTableDialog_south, South + + dialog = outputtest_warningmessage, "" + field = "WARNING! USE AT YOUR OWN RISK. INCORRECT USE WILL DAMAGE YOUR HARDWARE!" + field = "Do not attempt to use this page whilst your engine is running!" + field = "Forcing the Injector or Spark outputs could cause flooding of your engine or permanent damage to ignition coils!" + + + dialog = enableoutputtestbuttons, "Enable Test Controls", xAxis + ;commandButton = "Label Text", command, { Enabled Condition }, optionalFlags + + ; The rem > 0 expression is just for testing.. It works when the arduino is on the Stim with rpm. + ; a status bit there would be the expected real expression + commandButton = "Enable Test Mode", cmdEnableTestMode,{!testenabled && !testactive } + + ; if clickOnCloseIfEnabled is set, then the command assigned to this button will be run on the + ; dialog close, but only if the enable condition is true + ; valid click flags are: + ; clickOnCloseIfEnabled - the command will be sent on dialog close if active condition is true + ; clickOnCloseIfDisabled - the command will be sent on dialog close if active condition is false + ; clickOnClose - the command will be sent on dialog close always + commandButton = "Stop Test Mode", cmdStopTestMode,{testactive}, clickOnCloseIfEnabled + + dialog = outputtestinj1, "Injector CH1", yAxis + commandButton = "Off", cmdtestinj1off,{testactive} + commandButton = "50% DC", cmdtestinj150dc,{!testenabled && testactive} + commandButton = "On", cmdtestinj1on,{!testenabled & testactive} + dialog = outputtestinj2, "Injector CH2", yAxis + commandButton = "Off", cmdtestinj2off,{testactive && nFuelChannels >= 2 } + commandButton = "50% DC", cmdtestinj250dc,{!testenabled && testactive && nFuelChannels >= 2 } + commandButton = "On", cmdtestinj2on,{ !testenabled && testactive && nFuelChannels >= 2 } + dialog = outputtestinj3, "Injector CH3", yAxis + commandButton = "Off", cmdtestinj3off,{ testactive && nFuelChannels >= 3 } + commandButton = "50% DC", cmdtestinj350dc,{!testenabled && testactive && nFuelChannels >= 3 } + commandButton = "On", cmdtestinj3on,{ !testenabled && testactive && nFuelChannels >= 3 } + dialog = outputtestinj4, "Injector CH4", yAxis + commandButton = "Off", cmdtestinj4off,{ testactive && nFuelChannels >= 4 } + commandButton = "50% DC", cmdtestinj450dc,{!testenabled && testactive && nFuelChannels >= 4 } + commandButton = "On", cmdtestinj4on ,{ !testenabled && testactive && nFuelChannels >= 4 } + dialog = outputtestinj5, "Injector CH5", yAxis + commandButton = "Off", cmdtestinj5off,{ testactive && nFuelChannels >= 5 } + commandButton = "50% DC", cmdtestinj550dc,{!testenabled && testactive && nFuelChannels >= 5 } + commandButton = "On", cmdtestinj5on,{ !testenabled && testactive && nFuelChannels >= 5 } + dialog = outputtestinj6, "Injector CH6", yAxis + commandButton = "Off", cmdtestinj6off,{ testactive && nFuelChannels >= 6 } + commandButton = "50% DC", cmdtestinj650dc,{!testenabled && testactive && nFuelChannels >= 6 } + commandButton = "On", cmdtestinj6on ,{ !testenabled & testactive && nFuelChannels >= 6 } + dialog = outputtestinj7, "Injector CH7", yAxis + commandButton = "Off", cmdtestinj7off,{ testactive && nFuelChannels >= 7 } + commandButton = "50% DC", cmdtestinj750dc,{!testenabled && testactive && nFuelChannels >= 7 } + commandButton = "On", cmdtestinj7on,{ !testenabled && testactive && nFuelChannels >= 7 } + dialog = outputtestinj8, "Injector CH8", yAxis + commandButton = "Off", cmdtestinj8off,{ testactive && nFuelChannels >= 8 } + commandButton = "50% DC", cmdtestinj850dc,{!testenabled && testactive && nFuelChannels >= 8 } + commandButton = "On", cmdtestinj8on ,{ !testenabled & testactive && nFuelChannels >= 8 } + + dialog = outputtest_injectors, "Injector Driver Output Test", xAxis + panel = outputtestinj1 + panel = outputtestinj2 + panel = outputtestinj3 + panel = outputtestinj4 + panel = outputtestinj5 + panel = outputtestinj6 + panel = outputtestinj7 + panel = outputtestinj8 + + dialog = outputtestspk1, "Spark CH1 ", yAxis + commandButton = "Off", cmdtestspk1off,{testactive} + commandButton = "50% DC", cmdtestspk150dc,{!testenabled && testactive} + commandButton = "On", cmdtestspk1on,{!testenabled && testactive} + dialog = outputtestspk2, "Spark CH2", yAxis + commandButton = "Off", cmdtestspk2off,{testactive && nIgnChannels >= 2 } + commandButton = "50% DC", cmdtestspk250dc,{!testenabled && testactive && nIgnChannels >= 2 } + commandButton = "On", cmdtestspk2on,{ !testenabled && testactive && nIgnChannels >= 2 } + dialog = outputtestspk3, "Spark CH3", yAxis + commandButton = "Off", cmdtestspk3off,{testactive && nIgnChannels >= 3 } + commandButton = "50% DC", cmdtestspk350dc,{!testenabled && testactive && nIgnChannels >= 3 } + commandButton = "On", cmdtestspk3on,{ !testenabled && testactive && nIgnChannels >= 3 } + dialog = outputtestspk4, "Spark CH4", yAxis + commandButton = "Off", cmdtestspk4off,{testactive && nIgnChannels >= 4 } + commandButton = "50% DC", cmdtestspk450dc,{!testenabled && testactive && nIgnChannels >= 4} + commandButton = "On", cmdtestspk4on,{ !testenabled && testactive && nIgnChannels >= 4 } + dialog = outputtestspk5, "Spark CH5", yAxis + commandButton = "Off", cmdtestspk5off,{testactive && nIgnChannels >= 5 } + commandButton = "50% DC", cmdtestspk550dc,{!testenabled && testactive && nIgnChannels >= 5} + commandButton = "On", cmdtestspk5on,{ !testenabled && testactive && nIgnChannels >= 5 } + dialog = outputtestspk6, "Spark CH6", yAxis + commandButton = "Off", cmdtestspk6off,{testactive && nIgnChannels >= 6 } + commandButton = "50% DC", cmdtestspk650dc,{!testenabled && testactive && nIgnChannels >= 6} + commandButton = "On", cmdtestspk6on,{ !testenabled && testactive && nIgnChannels >= 6 } + dialog = outputtestspk7, "Spark CH7", yAxis + commandButton = "Off", cmdtestspk7off,{testactive && nIgnChannels >= 7 } + commandButton = "50% DC", cmdtestspk750dc,{!testenabled && testactive && nIgnChannels >= 7} + commandButton = "On", cmdtestspk7on,{ !testenabled && testactive && nIgnChannels >= 7 } + dialog = outputtestspk8, "Spark CH8", yAxis + commandButton = "Off", cmdtestspk8off,{testactive && nIgnChannels >= 8 } + commandButton = "50% DC", cmdtestspk850dc,{!testenabled && testactive && nIgnChannels >= 8} + commandButton = "On", cmdtestspk8on,{ !testenabled && testactive && nIgnChannels >= 8 } + + dialog = outputtest_spark, "Spark Driver Output Test", xAxis + panel = outputtestspk1 + panel = outputtestspk2 + panel = outputtestspk3 + panel = outputtestspk4 + panel = outputtestspk5 + panel = outputtestspk6 + panel = outputtestspk7 + panel = outputtestspk8 + + dialog = outputtest1,"Test Output Hardware" + topicHelp = "https://wiki.speeduino.com/en/Hardware_testing_page" + panel = enableoutputtestbuttons + panel = outputtest_injectors + panel = outputtest_spark + ;panel = outputtest_io2 + panel = outputtest_warningmessage + + dialog = stm32cmd, "STM32 Commands", yAxis + commandButton = "Reboot to system", cmdstm32reboot + commandButton = "Reboot to bootloader", cmdstm32bootloader + + dialog = Auxin_north + displayOnlyField = #"Secondary Serial ENABLED", blankfield, {enable_secondarySerial},{enable_secondarySerial} + displayOnlyField = !"Secondary Serial DISABLED", blankfield, {enable_secondarySerial == 0},{enable_secondarySerial == 0} + displayOnlyField = #"Internal CANBUS ENABLED", blankfield, {enable_intcan && intcan_available},{enable_intcan && intcan_available} + displayOnlyField = !"Internal CANBUS DISABLED", blankfield, {enable_intcan == 0 && intcan_available},{enable_intcan == 0 && intcan_available} + displayOnlyField = !"Internal CANBUS NOT AVAILABLE to MCU", blankfield, {enable_intcan == 1 && intcan_available == 0},{enable_intcan == 1 && intcan_available == 0} + displayOnlyField = !"Internal CANBUS NOT AVAILABLE to MCU", blankfield, {enable_intcan == 0 && intcan_available == 0},{enable_intcan == 0 && intcan_available == 0} + field = " If Secondary Serial or Internal CANBUS is DISABLED then any input channel assigned to that external source will NOT function" + + dialog = canAuxinput_alias, "", yAxis + field = "Input Alias" + field = "", AUXin00Alias , {(caninput_sel0a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin01Alias , {(caninput_sel1a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin02Alias , {(caninput_sel2a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin03Alias , {(caninput_sel3a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin04Alias , {(caninput_sel4a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin05Alias , {(caninput_sel5a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin06Alias , {(caninput_sel6a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin07Alias , {(caninput_sel7a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin08Alias , {(caninput_sel8a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin09Alias , {(caninput_sel9a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin10Alias , {(caninput_sel10a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin11Alias , {(caninput_sel11a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin12Alias , {(caninput_sel12a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin13Alias , {(caninput_sel13a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin14Alias , {(caninput_sel14a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin15Alias , {(caninput_sel15a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + + dialog = caninput_sel, "" + ;CAN inputs + field = " CAN Input Channel on/off" + field = "CAN Input 0", caninput_sel0a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 0", caninput_sel0b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 1", caninput_sel1a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 1", caninput_sel1b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 2", caninput_sel2a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 2", caninput_sel2b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 3", caninput_sel3a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 3", caninput_sel3b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 4", caninput_sel4a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 4", caninput_sel4b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 5", caninput_sel5a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 5", caninput_sel5b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 6", caninput_sel6a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 6", caninput_sel6b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 7", caninput_sel7a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 7", caninput_sel7b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 8", caninput_sel8a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 8", caninput_sel8b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 9", caninput_sel9a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 9", caninput_sel9b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 10", caninput_sel10a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 10", caninput_sel10b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 11", caninput_sel11a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 11", caninput_sel11b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 12", caninput_sel12a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 12", caninput_sel12b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 13", caninput_sel13a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 13", caninput_sel13b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 14", caninput_sel14a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 14", caninput_sel14b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "CAN Input 15", caninput_sel15a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "CAN Input 15", caninput_sel15b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + + dialog = caninput_parameter_group, "", yAxis + field = " Source CAN Address" + field = "", caninput_source_can_address0, { (caninput_sel0a == 1 || caninput_sel0b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address1, { (caninput_sel1a == 1 || caninput_sel1b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address2, { (caninput_sel2a == 1 || caninput_sel2b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address3, { (caninput_sel3a == 1 || caninput_sel3b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address4, { (caninput_sel4a == 1 || caninput_sel4b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address5, { (caninput_sel5a == 1 || caninput_sel5b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address6, { (caninput_sel6a == 1 || caninput_sel6b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address7, { (caninput_sel7a == 1 || caninput_sel7b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address8, { (caninput_sel8a == 1 || caninput_sel8b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address9, { (caninput_sel9a == 1 || caninput_sel9b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address10, { (caninput_sel10a == 1 || caninput_sel10b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address11, { (caninput_sel11a == 1 || caninput_sel11b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address12, { (caninput_sel12a == 1 || caninput_sel12b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address13, { (caninput_sel13a == 1 || caninput_sel13b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address14, { (caninput_sel14a == 1 || caninput_sel14b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_can_address15, { (caninput_sel15a == 1 || caninput_sel15b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + + dialog = caninput_parameter_start_byte, "", yAxis + field = " source data start byte" + field = "", caninput_source_start_byte0, { (caninput_sel0a == 1 || caninput_sel0b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte1, { (caninput_sel1a == 1 || caninput_sel1b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte2, { (caninput_sel2a == 1 || caninput_sel2b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte3, { (caninput_sel3a == 1 || caninput_sel3b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte4, { (caninput_sel4a == 1 || caninput_sel4b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte5, { (caninput_sel5a == 1 || caninput_sel5b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte6, { (caninput_sel6a == 1 || caninput_sel6b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte7, { (caninput_sel7a == 1 || caninput_sel7b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte8, { (caninput_sel8a == 1 || caninput_sel8b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte9, { (caninput_sel9a == 1 || caninput_sel9b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte10, { (caninput_sel10a == 1 || caninput_sel10b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte11, { (caninput_sel11a == 1 || caninput_sel11b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte12, { (caninput_sel12a == 1 || caninput_sel12b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte13, { (caninput_sel13a == 1 || caninput_sel13b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte14, { (caninput_sel14a == 1 || caninput_sel14b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_start_byte15, { (caninput_sel15a == 1 || caninput_sel15b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + + dialog = caninput_parameter_num_byte, "", yAxis + field = "Input Parameter Number of Bytes" + field = "", caninput_source_num_bytes0, { (caninput_sel0a == 1 || caninput_sel0b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes1, { (caninput_sel1a == 1 || caninput_sel1b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes2, { (caninput_sel2a == 1 || caninput_sel2b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes3, { (caninput_sel3a == 1 || caninput_sel3b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes4, { (caninput_sel4a == 1 || caninput_sel4b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes5, { (caninput_sel5a == 1 || caninput_sel5b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes6, { (caninput_sel6a == 1 || caninput_sel6b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes7, { (caninput_sel7a == 1 || caninput_sel7b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes8, { (caninput_sel8a == 1 || caninput_sel8b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes9, { (caninput_sel9a == 1 || caninput_sel9b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes10, { (caninput_sel10a == 1 || caninput_sel10b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes11, { (caninput_sel11a == 1 || caninput_sel11b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes12, { (caninput_sel12a == 1 || caninput_sel12b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes13, { (caninput_sel13a == 1 || caninput_sel13b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes14, { (caninput_sel14a == 1 || caninput_sel14b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + field = "", caninput_source_num_bytes15, { (caninput_sel15a == 1 || caninput_sel15b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) } + + dialog = caninput_serial_can, "", yAxis + field = "Serial/CAN" + field = "", caninput_sel0extsourcea, {(caninput_sel0a == 1 || caninput_sel0b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel0extsourceb, {(caninput_sel0a == 1 || caninput_sel0b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel0extsourcec, {(caninput_sel0a == 1 || caninput_sel0b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel1extsourcea, {(caninput_sel1a == 1 || caninput_sel1b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel1extsourceb, {(caninput_sel1a == 1 || caninput_sel1b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel1extsourcec, {(caninput_sel1a == 1 || caninput_sel1b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel2extsourcea, {(caninput_sel2a == 1 || caninput_sel2b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel2extsourceb, {(caninput_sel2a == 1 || caninput_sel2b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel2extsourcec, {(caninput_sel2a == 1 || caninput_sel2b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel3extsourcea, {(caninput_sel3a == 1 || caninput_sel3b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel3extsourceb, {(caninput_sel3a == 1 || caninput_sel3b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel3extsourcec, {(caninput_sel3a == 1 || caninput_sel3b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel4extsourcea, {(caninput_sel4a == 1 || caninput_sel4b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel4extsourceb, {(caninput_sel4a == 1 || caninput_sel4b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel4extsourcec, {(caninput_sel4a == 1 || caninput_sel4b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel5extsourcea, {(caninput_sel5a == 1 || caninput_sel5b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel5extsourceb, {(caninput_sel5a == 1 || caninput_sel5b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel5extsourcec, {(caninput_sel5a == 1 || caninput_sel5b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel6extsourcea, {(caninput_sel6a == 1 || caninput_sel6b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel6extsourceb, {(caninput_sel6a == 1 || caninput_sel6b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel6extsourcec, {(caninput_sel6a == 1 || caninput_sel6b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel7extsourcea, {(caninput_sel7a == 1 || caninput_sel7b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel7extsourceb, {(caninput_sel7a == 1 || caninput_sel7b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel7extsourcec, {(caninput_sel7a == 1 || caninput_sel7b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel8extsourcea, {(caninput_sel8a == 1 || caninput_sel8b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel8extsourceb, {(caninput_sel8a == 1 || caninput_sel8b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel8extsourcec, {(caninput_sel8a == 1 || caninput_sel8b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel9extsourcea, {(caninput_sel9a == 1 || caninput_sel9b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel9extsourceb, {(caninput_sel9a == 1 || caninput_sel9b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel9extsourcec, {(caninput_sel9a == 1 || caninput_sel9b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel10extsourcea, {(caninput_sel10a == 1 || caninput_sel10b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel10extsourceb, {(caninput_sel10a == 1 || caninput_sel10b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel10extsourcec, {(caninput_sel10a == 1 || caninput_sel10b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel11extsourcea, {(caninput_sel11a == 1 || caninput_sel11b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))} + field = "", caninput_sel11extsourceb, {(caninput_sel11a == 1 || caninput_sel11b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel11extsourcec, {(caninput_sel11a == 1 || caninput_sel11b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel12extsourcea, {(caninput_sel12a == 1 || caninput_sel12b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}} + field = "", caninput_sel12extsourceb, {(caninput_sel12a == 1 || caninput_sel12b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel12extsourcec, {(caninput_sel12a == 1 || caninput_sel12b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel13extsourcea, {(caninput_sel13a == 1 || caninput_sel13b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}} + field = "", caninput_sel13extsourceb, {(caninput_sel13a == 1 || caninput_sel13b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel13extsourcec, {(caninput_sel13a == 1 || caninput_sel13b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel14extsourcea, {(caninput_sel14a == 1 || caninput_sel14b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}} + field = "", caninput_sel14extsourceb, {(caninput_sel14a == 1 || caninput_sel14b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel14extsourcec, {(caninput_sel14a == 1 || caninput_sel14b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel15extsourcea, {(caninput_sel15a == 1 || caninput_sel15b == 1) }, {enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}} + field = "", caninput_sel15extsourceb, {(caninput_sel15a == 1 || caninput_sel15b == 1) }, {enable_secondarySerial && (enable_intcan && intcan_available)} + field = "", caninput_sel15extsourcec, {(caninput_sel15a == 1 || caninput_sel15b == 1) }, {!enable_secondarySerial && (enable_intcan && intcan_available)} + + dialog = caninconfig_blank1,"" + field = "" + + dialog = Canin_config1, "", xAxis + panel = canAuxinput_alias + panel = caninconfig_blank1 + panel = caninput_sel + panel = caninconfig_blank1 + panel = caninput_serial_can + panel = caninconfig_blank1 + panel = caninput_parameter_group + panel = caninconfig_blank1 + panel = caninput_parameter_start_byte + panel = caninconfig_blank1 + panel = caninput_parameter_num_byte + + ;dialog = Canin_config2, "External Data Input" + ; field = "Enable External data input", enable_intcandata_in + + dialog = Canin_config, "",yAxis + topicHelp = "http://speeduino.com/wiki/index.php/Secondary_Serial_IO_interface#Read_external_analog_data" + panel = Auxin_north + panel = Canin_config1 + + dialog = canAuxoutput_alias, "", yAxis + field = "Input Alias" + field = "", AUXin00Alias , {canoutput_sel0} + field = "", AUXin01Alias , {canoutput_sel1} + field = "", AUXin02Alias , {canoutput_sel2} + field = "", AUXin03Alias , {canoutput_sel3} + field = "", AUXin04Alias , {canoutput_sel4} + field = "", AUXin05Alias , {canoutput_sel5} + field = "", AUXin06Alias , {canoutput_sel6} + field = "", AUXin07Alias , {canoutput_sel7} + ;field = "", AUXin08Alias , {canoutput_sel8} + ;field = "", AUXin09Alias , {canoutput_sel9} + ;field = "", AUXin10Alias , {canoutput_sel10} + ;field = "", AUXin11Alias , {canoutput_sel11} + ;field = "", AUXin12Alias , {canoutput_sel12} + ;field = "", AUXin13Alias , {canoutput_sel13} + ;field = "", AUXin14Alias , {canoutput_sel14} + ;field = "", AUXin15Alias , {canoutput_sel15} + + dialog = canoutput_sel, "", yAxis + ;CAN outputs + field = "CAN Output Channel on/off" + field = "CAN Output 0", canoutput_sel0, { enable_intcandata_out} + field = "CAN Output 1", canoutput_sel1, { enable_intcandata_out } + field = "CAN Output 2", canoutput_sel2, { enable_intcandata_out } + field = "CAN Output 3", canoutput_sel3, { enable_intcandata_out } + field = "CAN Output 4", canoutput_sel4, { enable_intcandata_out } + field = "CAN Output 5", canoutput_sel5, { enable_intcandata_out } + field = "CAN Output 6", canoutput_sel6, { enable_intcandata_out } + field = "CAN Output 7", canoutput_sel7, { enable_intcandata_out } + ; field = "CAN Output 8", canoutput_sel8, { enable_intcandata_out} + ; field = "CAN Output 9", canoutput_sel9, { enable_intcandata_out } + ; field = "CAN Output 10", canoutput_sel10, { enable_intcandata_out } + ; field = "CAN Output 11", canoutput_sel11, { enable_intcandata_out } + ; field = "CAN Output 12", canoutput_sel12, { enable_intcandata_out } + ; field = "CAN Output 13", canoutput_sel13, { enable_intcandata_out } + ; field = "CAN Output 14", canoutput_sel14, { enable_intcandata_out } + ; field = "CAN Output 15", canoutput_sel15, { enable_intcandata_out } + + dialog = canoutput_parameter_group, "", yAxis + field = "Output Parameter Group" + field = "", canoutput_param_group[0], { canoutput_sel0 && enable_intcandata_out } + field = "", canoutput_param_group[1], { canoutput_sel1 && enable_intcandata_out } + field = "", canoutput_param_group[2], { canoutput_sel3 && enable_intcandata_out } + field = "", canoutput_param_group[3], { canoutput_sel3 && enable_intcandata_out } + field = "", canoutput_param_group[4], { canoutput_sel4 && enable_intcandata_out } + field = "", canoutput_param_group[5], { canoutput_sel5 && enable_intcandata_out } + field = "", canoutput_param_group[6], { canoutput_sel6 && enable_intcandata_out } + field = "", canoutput_param_group[7], { canoutput_sel7 && enable_intcandata_out } + ; field = "", canoutput_param_group[8], { canoutput_sel9 && enable_intcandata_out } + ; field = "", canoutput_param_group[9], { canoutput_sel10 && enable_intcandata_out } + ; field = "", canoutput_param_group[10], { canoutput_sel1 && enable_intcandata_out } + ; field = "", canoutput_param_group[11], { canoutput_sel2 && enable_intcandata_out } + ; field = "", canoutput_param_group[12], { canoutput_sel3 && enable_intcandata_out } + ; field = "", canoutput_param_group[13], { canoutput_sel4 && enable_intcandata_out } + ; field = "", canoutput_param_group[14], { canoutput_sel5 && enable_intcandata_out } + ; field = "", canoutput_param_group[15], { canoutput_sel6 && enable_intcandata_out } + + dialog = canoutput_parameter_start_byte, "", yAxis + field = "Output Parameter Start Byte" + field = "", canoutput_param_start_byte0, { canoutput_sel0 && enable_intcandata_out } + field = "", canoutput_param_start_byte1, { canoutput_sel1 && enable_intcandata_out } + field = "", canoutput_param_start_byte2, { canoutput_sel2 && enable_intcandata_out } + field = "", canoutput_param_start_byte3, { canoutput_sel3 && enable_intcandata_out } + field = "", canoutput_param_start_byte4, { canoutput_sel4 && enable_intcandata_out } + field = "", canoutput_param_start_byte5, { canoutput_sel5 && enable_intcandata_out } + field = "", canoutput_param_start_byte6, { canoutput_sel6 && enable_intcandata_out } + field = "", canoutput_param_start_byte7, { canoutput_sel7 && enable_intcandata_out } + ; field = "", canoutput_param_start_byte8, { canoutput_sel8 && enable_intcandata_out } + ; field = "", canoutput_param_start_byte9, { canoutput_sel9 && enable_intcandata_out } + ; field = "", canoutput_param_start_byte10, { canoutput_sel10 && enable_intcandata_out } + ; field = "", canoutput_param_start_byte11, { canoutput_sel11 && enable_intcandata_out } + ; field = "", canoutput_param_start_byte12, { canoutput_sel12 && enable_intcandata_out } + ; field = "", canoutput_param_start_byte13, { canoutput_sel13 && enable_intcandata_out } + ; field = "", canoutput_param_start_byte14, { canoutput_sel14 && enable_intcandata_out } + ; field = "", canoutput_param_start_byte15, { canoutput_sel15 && enable_intcandata_out } + + dialog = canoutput_parameter_num_byte, "", yAxis + field = "Output Parameter Number of Bytes" + field = "", canoutput_param_num_bytes0, { canoutput_sel0 && enable_intcandata_out } + field = "", canoutput_param_num_bytes1, { canoutput_sel1 && enable_intcandata_out } + field = "", canoutput_param_num_bytes2, { canoutput_sel2 && enable_intcandata_out } + field = "", canoutput_param_num_bytes3, { canoutput_sel3 && enable_intcandata_out } + field = "", canoutput_param_num_bytes4, { canoutput_sel4 && enable_intcandata_out } + field = "", canoutput_param_num_bytes5, { canoutput_sel5 && enable_intcandata_out } + field = "", canoutput_param_num_bytes6, { canoutput_sel6 && enable_intcandata_out } + field = "", canoutput_param_num_bytes7, { canoutput_sel7 && enable_intcandata_out } + ; field = "", canoutput_param_num_bytes8, { canoutput_sel8 && enable_intcandata_out } + ; field = "", canoutput_param_num_bytes9, { canoutput_sel9 && enable_intcandata_out } + ; field = "", canoutput_param_num_bytes10, { canoutput_sel10 && enable_intcandata_out } + ; field = "", canoutput_param_num_bytes11, { canoutput_sel11 && enable_intcandata_out } + ; field = "", canoutput_param_num_bytes12, { canoutput_sel12 && enable_intcandata_out } + ; field = "", canoutput_param_num_bytes13, { canoutput_sel13 && enable_intcandata_out } +; field = "", canoutput_param_num_bytes14, { canoutput_sel14 && enable_intcandata_out } + ; field = "", canoutput_param_num_bytes15, { canoutput_sel15 && enable_intcandata_out } + + dialog = canoutconfig_blank1,"" + field = "" + + dialog = Canout_config1, "", xAxis + panel = canAuxoutput_alias + panel = canoutconfig_blank1 + panel = canoutput_sel + panel = canoutconfig_blank1 + panel = canoutput_parameter_group + panel = canoutconfig_blank1 + panel = canoutput_parameter_start_byte + panel = canoutconfig_blank1 + panel = canoutput_parameter_num_byte + + dialog = Canout_config2, "CAN Data Out" + field = "Enable CanBus data Output", enable_intcandata_out + + dialog = Canout_config, "", yAxis + topicHelp = "" + panel = Canout_config2 + panel = Canout_config1 + + dialog = can_serial3IO, "CanBus/Secondary Serial IO interface" + topicHelp = "http://speeduino.com/wiki/index.php/Secondary_Serial_IO_interface" + field = "Enable Second Serial", enable_secondarySerial + field = "Enable Internal Canbus", enable_intcan + ; field = "Speeduino TsCanId", speeduino_tsCanId + field = "True Canbus Address", true_address {enable_secondarySerial||enable_intcan} + field = "NOTE! Realtime Data Base Address MUST be at least 0x16 GREATER than the True Address as they are reserved for future expansion" + field = "Realtime Data Base Can Address", realtime_base_address {enable_secondarySerial||enable_intcan} + field = "Speeduino OBD address", obd_address + + dialog = serial3IO, "Secondary Serial IO interface" + topicHelp = "http://speeduino.com/wiki/index.php/Serial3_IO_interface" + field = "Enable Second Serial", enable_secondarySerial + field = "Enable Internal Canbus", enable_intcan + ; field = "Speeduino TsCanId", speeduino_tsCanId + field = "True Canbus Address", true_address {enable_secondarySerial||enable_intcan} + field = "NOTE! Realtime Data Base Address MUST be at least 0x16 GREATER than the True Address as they are reserved for future expansion" + field = "Realtime Data Base Can Address", realtime_base_address {enable_secondarySerial||enable_intcan} + field = "Speeduino OBD address", obd_address + + dialog = reset_control, "Reset Control" + ; Control type options for custom firmware + field = "Control Type", resetControl + field = "Control Pin", resetControlPin + + dialog = Auxinput_pin_selection, "", yAxis + field = " Source" + displayOnlyField = "Off 0", blankfield, {},{(caninput_sel0a == 0 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel0b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel0b == 0 && (!enable_secondarySerial && (enable_intcan && intcan_available == 1)))} + displayOnlyField = "External Source 0 Via Secondary Serial", blankfield, {},{(caninput_sel0b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel0b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel0extsourceb == 0)} + displayOnlyField = "External Source 0 Via Internal CAN", blankfield, {},{(caninput_sel0b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel0extsourceb == 1) ||(caninput_sel0b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel0extsourcec == 1)} + field = "Local Analog Source 0 Pin No:", Auxin0pina , {}, {(caninput_sel0a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 0 Pin No:", Auxin0pinb , {}, {(caninput_sel0a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 1", blankfield, {},{(caninput_sel1a == 0 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b == 0 && ((enable_secondarySerial && enable_intcan) || (enable_secondarySerial && !enable_intcan) || (!enable_secondarySerial && enable_intcan)))} + displayOnlyField = "External Source 1 Via Secondary Serial", blankfield, {},{(caninput_sel1b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel1b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel1extsourceb == 0)} + displayOnlyField = "External Source 1 Via Internal CAN", blankfield, {},{(caninput_sel1b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel1extsourceb == 1) ||(caninput_sel1b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel1extsourcec == 1)} + field = "Local Analog Source 1 Pin No:", Auxin1pina , {}, {(caninput_sel1a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 1 Pin No:", Auxin1pinb , {}, {(caninput_sel1a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 2", blankfield, {},{(caninput_sel2a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel2b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel2b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel2b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 2 Via Secondary Serial", blankfield, {},{(caninput_sel2b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel2b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel2extsourceb == 0)} + displayOnlyField = "External Source 2 Via Internal CAN", blankfield, {},{(caninput_sel2b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel2extsourceb == 1) ||(caninput_sel2b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel2extsourcec == 1)} + field = "Local Analog Source 2 Pin No:", Auxin2pina , {}, {(caninput_sel2a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 2 Pin No:", Auxin2pinb , {}, {(caninput_sel2a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 3", blankfield, {},{(caninput_sel3a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel3b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel3b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel3b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 3 Via Secondary Serial", blankfield, {},{(caninput_sel3b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel3b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel3extsourceb == 0)} + displayOnlyField = "External Source 3 Via Internal CAN", blankfield, {},{(caninput_sel3b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel3extsourceb == 1) ||(caninput_sel3b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel3extsourcec == 1)} + field = "Local Analog Source 3 Pin No:", Auxin3pina , {}, {(caninput_sel3a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 3 Pin No:", Auxin3pinb , {}, {(caninput_sel3a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 4", blankfield, {},{(caninput_sel4a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel4b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel4b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel4b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 4 Via Secondary Serial", blankfield, {},{(caninput_sel4b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel4b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel4extsourceb == 0)} + displayOnlyField = "External Source 4 Via Internal CAN", blankfield, {},{(caninput_sel4b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel4extsourceb == 1) ||(caninput_sel4b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel4extsourcec == 1)} + field = "Local Analog Source 4 Pin No:", Auxin4pina , {}, {(caninput_sel4a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 4 Pin No:", Auxin4pinb , {}, {(caninput_sel4a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 5", blankfield, {},{(caninput_sel5a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel5b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel5b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel5b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 5 Via Secondary Serial", blankfield, {},{(caninput_sel5b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel5b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel5extsourceb == 0)} + displayOnlyField = "External Source 5 Via Internal CAN", blankfield, {},{(caninput_sel5b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel5extsourceb == 1) ||(caninput_sel5b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel5extsourcec == 1)} + field = "Local Analog Source 5 Pin No:", Auxin5pina , {}, {(caninput_sel5a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 5 Pin No:", Auxin5pinb , {}, {(caninput_sel5a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 6", blankfield, {},{(caninput_sel6a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel6b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel6b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel6b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 6 Via Secondary Serial", blankfield, {},{(caninput_sel6b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel6b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel6extsourceb == 0)} + displayOnlyField = "External Source 6 Via Internal CAN", blankfield, {},{(caninput_sel6b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel6extsourceb == 1) ||(caninput_sel6b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel6extsourcec == 1)} + field = "Local Analog Source 6 Pin No:", Auxin6pina , {}, {(caninput_sel6a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 6 Pin No:", Auxin6pinb , {}, {(caninput_sel6a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 7", blankfield, {},{(caninput_sel7a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel7b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel7b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel7b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 7 Via Secondary Serial", blankfield, {},{(caninput_sel7b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel7b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel7extsourceb == 0)} + displayOnlyField = "External Source 7 Via Internal CAN", blankfield, {},{(caninput_sel7b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel7extsourceb == 1) ||(caninput_sel7b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel7extsourcec == 1)} + field = "Local Analog Source 7 Pin No:", Auxin7pina , {}, {(caninput_sel7a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 7 Pin No:", Auxin7pinb , {}, {(caninput_sel7a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 8", blankfield, {},{(caninput_sel8a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel8b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel8b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel8b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 8 Via Secondary Serial", blankfield, {},{(caninput_sel8b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel8b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel8extsourceb == 0)} + displayOnlyField = "External Source 8 Via Internal CAN", blankfield, {},{(caninput_sel8b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel8extsourceb == 1) ||(caninput_sel8b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel8extsourcec == 1)} + field = "Local Analog Source 8 Pin No:", Auxin8pina , {}, {(caninput_sel8a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 8 Pin No:", Auxin8pinb , {}, {(caninput_sel8a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 9", blankfield, {},{(caninput_sel9a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel9b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel9b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel9b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 9 Via Secondary Serial", blankfield, {},{(caninput_sel9b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel9b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel9extsourceb == 0)} + displayOnlyField = "External Source 9 Via Internal CAN", blankfield, {},{(caninput_sel9b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel9extsourceb == 1) ||(caninput_sel9b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel9extsourcec == 1)} + field = "Local Analog Source 9 Pin No:", Auxin9pina , {}, {(caninput_sel9a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 9 Pin No:", Auxin9pinb , {}, {(caninput_sel9a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 10", blankfield, {},{(caninput_sel10a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel10b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel10b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel10b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 10 Via Secondary Serial", blankfield, {},{(caninput_sel10b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel10b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel10extsourceb == 0)} + displayOnlyField = "External Source 10 Via Internal CAN", blankfield, {},{(caninput_sel10b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel10extsourceb == 1) ||(caninput_sel10b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel10extsourcec == 1)} + field = "Local Analog Source 10 Pin No:", Auxin10pina , {}, {(caninput_sel10a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 10 Pin No:", Auxin10pinb , {}, {(caninput_sel10a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 11", blankfield, {},{(caninput_sel11a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel11b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel11b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel11b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 11 Via Secondary Serial", blankfield, {},{(caninput_sel11b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel11b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel11extsourceb == 0)} + displayOnlyField = "External Source 11 Via Internal CAN", blankfield, {},{(caninput_sel11b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel11extsourceb == 1) ||(caninput_sel11b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel11extsourcec == 1)} + field = "Local Analog Source 11 Pin No:", Auxin11pina , {}, {(caninput_sel11a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 11 Pin No:", Auxin11pinb , {}, {(caninput_sel11a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 12", blankfield, {},{(caninput_sel12a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel12b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel12b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel12b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 12 Via Secondary Serial", blankfield, {},{(caninput_sel12b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel12b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel12extsourceb == 0)} + displayOnlyField = "External Source 12 Via Internal CAN", blankfield, {},{(caninput_sel12b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel12extsourceb == 1) ||(caninput_sel12b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel12extsourcec == 1)} + field = "Local Analog Source 12 Pin No:", Auxin12pina , {}, {(caninput_sel12a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 12 Pin No:", Auxin12pinb , {}, {(caninput_sel12a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 13", blankfield, {},{(caninput_sel13a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel13b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel13b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel13b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 13 Via Secondary Serial", blankfield, {},{(caninput_sel13b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel13b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel13extsourceb == 0)} + displayOnlyField = "External Source 13 Via Internal CAN", blankfield, {},{(caninput_sel13b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel13extsourceb == 1) ||(caninput_sel13b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel13extsourcec == 1)} + field = "Local Analog Source 13 Pin No:", Auxin13pina , {}, {(caninput_sel13a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 13 Pin No:", Auxin13pinb , {}, {(caninput_sel13a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 14", blankfield, {},{(caninput_sel14a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel14b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel14b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel14b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 14 Via Secondary Serial", blankfield, {},{(caninput_sel14b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel14b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel14extsourceb == 0)} + displayOnlyField = "External Source 14 Via Internal CAN", blankfield, {},{(caninput_sel14b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel14extsourceb == 1) ||(caninput_sel14b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel14extsourcec == 1)} + field = "Local Analog Source 14 Pin No:", Auxin14pina , {}, {(caninput_sel14a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 14 Pin No:", Auxin14pinb , {}, {(caninput_sel14a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + displayOnlyField = "Off 15", blankfield, {},{(caninput_sel15a == 0 && (!enable_secondarySerial && !enable_intcan)) || (caninput_sel15b == 0 && (enable_secondarySerial && enable_intcan)) || (caninput_sel15b == 0 && (enable_secondarySerial && !enable_intcan)) || (caninput_sel15b == 0 && (!enable_secondarySerial && enable_intcan))} + displayOnlyField = "External Source 15 Via Secondary Serial", blankfield, {},{(caninput_sel15b == 1 && enable_secondarySerial && ((enable_intcan && intcan_available == 0) || !enable_intcan)) || (caninput_sel15b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel15extsourceb == 0)} + displayOnlyField = "External Source 15 Via Internal CAN", blankfield, {},{(caninput_sel15b == 1 && enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel15extsourceb == 1) ||(caninput_sel15b == 1 && !enable_secondarySerial && (enable_intcan && intcan_available) && caninput_sel15extsourcec == 1)} + field = "Local Analog Source 15 Pin No:", Auxin15pina , {}, {(caninput_sel15a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + field = "Local Digital Source 15 Pin No:", Auxin15pinb , {}, {(caninput_sel15a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))} + + dialog = Auxinput_alias, "", yAxis + field = "Input Alias" + field = "", AUXin00Alias , {(caninput_sel0a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin01Alias , {(caninput_sel1a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin02Alias , {(caninput_sel2a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin03Alias , {(caninput_sel3a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin04Alias , {(caninput_sel4a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin05Alias , {(caninput_sel5a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin06Alias , {(caninput_sel6a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin07Alias , {(caninput_sel7a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin08Alias , {(caninput_sel8a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin09Alias , {(caninput_sel9a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin10Alias , {(caninput_sel10a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin11Alias , {(caninput_sel11a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin12Alias , {(caninput_sel12a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin13Alias , {(caninput_sel13a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin14Alias , {(caninput_sel14a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + field = "", AUXin15Alias , {(caninput_sel15a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b && (enable_secondarySerial || (enable_intcan && intcan_available)))} + + dialog = Auxinput_channelenable, "", yAxis + field = " Aux Input Channel Enable" + field = "AUX Input 0", caninput_sel0a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 0", caninput_sel0b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 1", caninput_sel1a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 1", caninput_sel1b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 2", caninput_sel2a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 2", caninput_sel2b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 3", caninput_sel3a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 3", caninput_sel3b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 4", caninput_sel4a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 4", caninput_sel4b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 5", caninput_sel5a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 5", caninput_sel5b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 6", caninput_sel6a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 6", caninput_sel6b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 7", caninput_sel7a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 7", caninput_sel7b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 8", caninput_sel8a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 8", caninput_sel8b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 9", caninput_sel9a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 9", caninput_sel9b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 10", caninput_sel10a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 10", caninput_sel10b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 11", caninput_sel11a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 11", caninput_sel11b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 12", caninput_sel12a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 12", caninput_sel12b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 13", caninput_sel13a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 13", caninput_sel13b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 14", caninput_sel14a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 14", caninput_sel14b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + field = "AUX Input 15", caninput_sel15a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + field = "AUX Input 15", caninput_sel15b, {}, { (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) } + + dialog = Auxin_south, "Auxillary Input Configuration",xAxis + panel = Auxinput_alias + panel = Auxinput_channelenable + panel = Auxinput_pin_selection + + dialog = Auxin_config, "",yAxis + panel = Auxin_north + panel = Auxin_south + + dialog = gaugeLimits, "Gauge Limits" + field = "#RPM" + field = "Warning", rpmwarn + field = "Danger", rpmdang + field = "High", rpmhigh + field = "#MAP" + field = "Warning", mapwarn + field = "Danger", mapdang + field = "High", maphigh + field = !"Reload project to update gauges" + + dialog = io_summary, "I/O Summary" + displayOnlyField = "fuelPumpPin", fuelPumpPin, {fpPrime} + displayOnlyField = "fanPin", fanPin, {fanEnable} + displayOnlyField = "tachoPin", tachoPin, {tachoDuration} + displayOnlyField = "idleUpPin", idleUpPin, {idleUpEnabled} + displayOnlyField = "idleUpOutputPin", idleUpOutputPin, {idleUpEnabled && idleUpOutputEnabled} + displayOnlyField = "launchPin", launchPin, {launchEnable} + displayOnlyField = "vvt1Pin", vvt1Pin, {vvtEnabled} + displayOnlyField = "vssPin", vssPin, {vssMode > 1} + displayOnlyField = "boostPin", boostPin, {boostEnabled} + displayOnlyField = "baroPin", baroPin,{useExtBaro} + displayOnlyField = "EMAPPin", EMAPPin, {useEMAP} + displayOnlyField = "n2o_arming_pin", n2o_arming_pin, {n2o_enable} + displayOnlyField = "n2o_stage1_pin", n2o_stage1_pin, {n2o_enable} + displayOnlyField = "n2o_stage2_pin", n2o_stage2_pin, {n2o_enable} + ;displayOnlyField = "knock_pin", knock_pin, {knock_mode} + displayOnlyField = "fuel2InputPin", fuel2InputPin, {fuel2Mode} + displayOnlyField = "resetControlPin", resetControlPin, {resetControl} + displayOnlyField = "ignBypassPin", ignBypassPin, {ignBypassEnable} + displayOnlyField = "Programmable out 1", outputPin0, {outputPin[0]} + displayOnlyField = "Programmable out 2", outputPin1, {outputPin[1]} + displayOnlyField = "Programmable out 3", outputPin2, {outputPin[2]} + displayOnlyField = "Programmable out 4", outputPin3, {outputPin[3]} + displayOnlyField = "Programmable out 5", outputPin4, {outputPin[4]} + displayOnlyField = "Programmable out 6", outputPin5, {outputPin[5]} + displayOnlyField = "Programmable out 7", outputPin6, {outputPin[6]} + displayOnlyField = "Programmable out 8", outputPin7, {outputPin[7]} + + dialog = prgm_out_pin_selection_1, "", yAxis + field = "" + field = "", outputInverted0, {outputPin[0]} + field = "", outputInverted1, {outputPin[1]} + field = "", outputInverted2, {outputPin[2]} + field = "", outputInverted3, {outputPin[3]} + field = "", outputInverted4, {outputPin[4]} + field = "", outputInverted5, {outputPin[5]} + field = "", outputInverted6, {outputPin[6]} + field = "", outputInverted7, {outputPin[7]} + + dialog = prgm_out_pin_selection_2, "", yAxis + field = "" + field = "if(", firstDataIn0, {outputPin[0]} + field = "if(", firstDataIn1, {outputPin[1]} + field = "if(", firstDataIn2, {outputPin[2]} + field = "if(", firstDataIn3, {outputPin[3]} + field = "if(", firstDataIn4, {outputPin[4]} + field = "if(", firstDataIn5, {outputPin[5]} + field = "if(", firstDataIn6, {outputPin[6]} + field = "if(", firstDataIn7, {outputPin[7]} + + dialog = prgm_out_pin_selection_3, "", yAxis + field = "" + field = "", firstCompType0, {outputPin[0]} + field = "", firstCompType1, {outputPin[1]} + field = "", firstCompType2, {outputPin[2]} + field = "", firstCompType3, {outputPin[3]} + field = "", firstCompType4, {outputPin[4]} + field = "", firstCompType5, {outputPin[5]} + field = "", firstCompType6, {outputPin[6]} + field = "", firstCompType7, {outputPin[7]} + + dialog = prgm_out_pin_selection_4, "", yAxis + field = "" + field = "", firstTarget[0], {outputPin[0]} + field = "", firstTarget[1], {outputPin[1]} + field = "", firstTarget[2], {outputPin[2]} + field = "", firstTarget[3], {outputPin[3]} + field = "", firstTarget[4], {outputPin[4]} + field = "", firstTarget[5], {outputPin[5]} + field = "", firstTarget[6], {outputPin[6]} + field = "", firstTarget[7], {outputPin[7]} + + dialog = prgm_out_pin_selection_5, "", yAxis + field = "" + field = "if(", firstDataIn[0], {outputPin[0]} + field = "if(", firstDataIn[1], {outputPin[1]} + field = "if(", firstDataIn[2], {outputPin[2]} + field = "if(", firstDataIn[3], {outputPin[3]} + field = "if(", firstDataIn[4], {outputPin[4]} + field = "if(", firstDataIn[5], {outputPin[5]} + field = "if(", firstDataIn[6], {outputPin[6]} + field = "if(", firstDataIn[7], {outputPin[7]} + + dialog = prgm_out_pin_selection_6, "", yAxis + field = "" + field = "", firstCompType0, {outputPin[0]} + field = "", firstCompType1, {outputPin[1]} + field = "", firstCompType2, {outputPin[2]} + field = "", firstCompType3, {outputPin[3]} + field = "", firstCompType4, {outputPin[4]} + field = "", firstCompType5, {outputPin[5]} + field = "", firstCompType6, {outputPin[6]} + field = "", firstCompType7, {outputPin[7]} + + dialog = prgm_out_pin_selection_, "", yAxis + field = "" + field = "", firstTarget[0], {outputPin[0]} + field = "", firstTarget[1], {outputPin[1]} + field = "", firstTarget[2], {outputPin[2]} + field = "", firstTarget[3], {outputPin[3]} + field = "", firstTarget[4], {outputPin[4]} + field = "", firstTarget[5], {outputPin[5]} + field = "", firstTarget[6], {outputPin[6]} + field = "", firstTarget[7], {outputPin[7]} + + dialog = prgm_out_pin_selection_5, "", yAxis + field = "" + field = ")", bitwise0, {outputPin[0]} + field = ")", bitwise1, {outputPin[1]} + field = ")", bitwise2, {outputPin[2]} + field = ")", bitwise3, {outputPin[3]} + field = ")", bitwise4, {outputPin[4]} + field = ")", bitwise5, {outputPin[6]} + field = ")", bitwise6, {outputPin[6]} + field = ")", bitwise7, {outputPin[7]} + + dialog = prgm_out_pin_selection_6, "", yAxis + field = "" + field = "", secondDataIn0, {outputPin[0] && bitwise0} + field = "", secondDataIn1, {outputPin[1] && bitwise1} + field = "", secondDataIn2, {outputPin[2] && bitwise2} + field = "", secondDataIn3, {outputPin[3] && bitwise3} + field = "", secondDataIn4, {outputPin[4] && bitwise4} + field = "", secondDataIn5, {outputPin[5] && bitwise5} + field = "", secondDataIn6, {outputPin[6] && bitwise6} + field = "", secondDataIn7, {outputPin[7] && bitwise7} + + dialog = prgm_out_pin_selection_7, "", yAxis + field = "" + field = "", secondCompType0, {outputPin[0] && bitwise0} + field = "", secondCompType1, {outputPin[1] && bitwise1} + field = "", secondCompType2, {outputPin[2] && bitwise2} + field = "", secondCompType3, {outputPin[3] && bitwise3} + field = "", secondCompType4, {outputPin[4] && bitwise4} + field = "", secondCompType5, {outputPin[5] && bitwise5} + field = "", secondCompType6, {outputPin[6] && bitwise6} + field = "", secondCompType6, {outputPin[7] && bitwise7} + + dialog = prgm_out_pin_selection_8, "", yAxis + field = "" + field = "", secondTarget[0], {outputPin[0] && bitwise0} + field = "", secondTarget[1], {outputPin[1] && bitwise1} + field = "", secondTarget[2], {outputPin[2] && bitwise2} + field = "", secondTarget[3], {outputPin[3] && bitwise3} + field = "", secondTarget[4], {outputPin[4] && bitwise4} + field = "", secondTarget[5], {outputPin[5] && bitwise5} + field = "", secondTarget[6], {outputPin[6] && bitwise6} + field = "", secondTarget[7], {outputPin[7] && bitwise7} + + dialog = prgm_out_pin_selection_9, "", yAxis + field = "" + field = "during", outputDelay[0], {outputPin[0]} + field = "during", outputDelay[1], {outputPin[1]} + field = "during", outputDelay[2], {outputPin[2]} + field = "during", outputDelay[3], {outputPin[3]} + field = "during", outputDelay[4], {outputPin[4]} + field = "during", outputDelay[5], {outputPin[5]} + field = "during", outputDelay[6], {outputPin[6]} + field = "during", outputDelay[7], {outputPin[7]} + + dialog = prgm_out_alias, "", yAxis + field = " Input Alias" + field = "", prgm_out00Alias, {outputPin[0]} + field = "", prgm_out01Alias, {outputPin[1]} + field = "", prgm_out02Alias, {outputPin[2]} + field = "", prgm_out03Alias, {outputPin[3]} + field = "", prgm_out04Alias, {outputPin[4]} + field = "", prgm_out05Alias, {outputPin[5]} + field = "", prgm_out06Alias, {outputPin[6]} + field = "", prgm_out07Alias, {outputPin[7]} + + dialog = prgm_out_channelenable, "", yAxis + field = "Pin No:" + field = "", outputPin0 + field = "", outputPin1 + field = "", outputPin2 + field = "", outputPin3 + field = "", outputPin4 + field = "", outputPin5 + field = "", outputPin6 + field = "", outputPin7 + + dialog = prgm_out_unique, "",xAxis + panel = prgm_out_channelenable + panel = prgm_out_alias + panel = prgm_out_pin_selection_1 + panel = prgm_out_pin_selection_2 + panel = prgm_out_pin_selection_3 + panel = prgm_out_pin_selection_4 + panel = prgm_out_pin_selection_5 + panel = prgm_out_pin_selection_6 + panel = prgm_out_pin_selection_7 + panel = prgm_out_pin_selection_8 + panel = prgm_out_pin_selection_9 + + ;Rule 1 + dialog = prgm_out_rules_1_condition_1, "Condition 1", xAxis + field = "", firstDataIn0, {outputPin[0]} + field = "", firstCompType0, {outputPin[0]} + field = "", firstTarget[0], {outputPin[0]} + dialog = prgm_out_rules_1_condition_2, "Condition 2", xAxis + field = "", secondDataIn0, {outputPin[0] && bitwise0} + field = "", secondCompType0, {outputPin[0] && bitwise0} + field = "", secondTarget[0], {outputPin[0] && bitwise0} + ;Rule 2 + dialog = prgm_out_rules_2_condition_1, "Condition 1", xAxis + field = "", firstDataIn1, {outputPin[1]} + field = "", firstCompType1, {outputPin[1]} + field = "", firstTarget[1], {outputPin[1]} + dialog = prgm_out_rules_2_condition_2, "Condition 2", xAxis + field = "", secondDataIn1, {outputPin[1] && bitwise1} + field = "", secondCompType1, {outputPin[1] && bitwise1} + field = "", secondTarget[1], {outputPin[1] && bitwise1} + ;Rule 3 + dialog = prgm_out_rules_3_condition_1, "Condition 1", xAxis + field = "", firstDataIn2, {outputPin[2]} + field = "", firstCompType2, {outputPin[2]} + field = "", firstTarget[2], {outputPin[2]} + dialog = prgm_out_rules_3_condition_2, "Condition 2", xAxis + field = "", secondDataIn2, {outputPin[2] && bitwise2} + field = "", secondCompType2, {outputPin[2] && bitwise2} + field = "", secondTarget[2], {outputPin[2] && bitwise2} + ;Rule 4 + dialog = prgm_out_rules_4_condition_1, "Condition 1", xAxis + field = "", firstDataIn3, {outputPin[3]} + field = "", firstCompType3, {outputPin[3]} + field = "", firstTarget[3], {outputPin[3]} + dialog = prgm_out_rules_4_condition_2, "Condition 2", xAxis + field = "", secondDataIn3, {outputPin[3] && bitwise3} + field = "", secondCompType3, {outputPin[3] && bitwise3} + field = "", secondTarget[3], {outputPin[3] && bitwise3} + ;Rule 5 + dialog = prgm_out_rules_5_condition_1, "Condition 1", xAxis + field = "", firstDataIn4, {outputPin[4]} + field = "", firstCompType4, {outputPin[4]} + field = "", firstTarget[4], {outputPin[4]} + dialog = prgm_out_rules_5_condition_2, "Condition 2", xAxis + field = "", secondDataIn4, {outputPin[4] && bitwise4} + field = "", secondCompType4, {outputPin[4] && bitwise4} + field = "", secondTarget[4], {outputPin[4] && bitwise4} + ;Rule 6 + dialog = prgm_out_rules_6_condition_1, "Condition 1", xAxis + field = "", firstDataIn5, {outputPin[5]} + field = "", firstCompType5, {outputPin[5]} + field = "", firstTarget[5], {outputPin[5]} + dialog = prgm_out_rules_6_condition_2, "Condition 2", xAxis + field = "", secondDataIn5, {outputPin[5] && bitwise5} + field = "", secondCompType5, {outputPin[5] && bitwise5} + field = "", secondTarget[5], {outputPin[5] && bitwise5} + ;Rule 7 + dialog = prgm_out_rules_7_condition_1, "Condition 1", xAxis + field = "", firstDataIn6, {outputPin[6]} + field = "", firstCompType6, {outputPin[6]} + field = "", firstTarget[6], {outputPin[6]} + dialog = prgm_out_rules_7_condition_2, "Condition 2", xAxis + field = "", secondDataIn6, {outputPin[6] && bitwise6} + field = "", secondCompType6, {outputPin[6] && bitwise6} + field = "", secondTarget[6], {outputPin[6] && bitwise6} + ;Rule 8 + dialog = prgm_out_rules_8_condition_1, "Condition 1", xAxis + field = "", firstDataIn7, {outputPin[7]} + field = "", firstCompType7, {outputPin[7]} + field = "", firstTarget[7], {outputPin[7]} + dialog = prgm_out_rules_8_condition_2, "Condition 2", xAxis + field = "", secondDataIn7, {outputPin[7] && bitwise7} + field = "", secondCompType7, {outputPin[7] && bitwise7} + field = "", secondTarget[7], {outputPin[7] && bitwise7} + + + dialog = prgm_out_rules_1, "Rule 1", yAxis + field = "Output Pin Num", outputPin0 + field = "Rule Alias", prgm_out00Alias, {outputPin[0]} + field = "Output Polarity", outputInverted0, {outputPin[0]} + field = "Activation Delay", outputDelay[0], {outputPin[0]} + field = "2nd Condition", bitwise0, {outputPin[0]} + panel = prgm_out_rules_1_condition_1 + panel = prgm_out_rules_1_condition_2 + + dialog = prgm_out_rules_2, "Rule 2", yAxis + field = "Output Pin Num", outputPin1 + field = "Rule Alias", prgm_out01Alias, {outputPin[1]} + field = "Output Polarity", outputInverted1, {outputPin[1]} + field = "Activation Delay", outputDelay[1], {outputPin[1]} + field = "2nd Condition", bitwise1, {outputPin[1]} + panel = prgm_out_rules_2_condition_1 + panel = prgm_out_rules_2_condition_2 + + dialog = prgm_out_rules_3, "Rule 3", yAxis + field = "Output Pin Num", outputPin2 + field = "Rule Alias", prgm_out02Alias, {outputPin[2]} + field = "Output Polarity", outputInverted2, {outputPin[2]} + field = "Activation Delay", outputDelay[2], {outputPin[2]} + field = "2nd Condition", bitwise2, {outputPin[2]} + panel = prgm_out_rules_3_condition_1 + panel = prgm_out_rules_3_condition_2 + + dialog = prgm_out_rules_4, "Rule 4", yAxis + field = "Output Pin Num", outputPin3 + field = "Rule Alias", prgm_out03Alias, {outputPin[3]} + field = "Output Polarity", outputInverted3, {outputPin[3]} + field = "Activation Delay", outputDelay[3], {outputPin[3]} + field = "2nd Condition", bitwise3, {outputPin[3]} + panel = prgm_out_rules_4_condition_1 + panel = prgm_out_rules_4_condition_2 + + dialog = prgm_out_rules_5, "Rule 5", yAxis + field = "Output Pin Num", outputPin4 + field = "Rule Alias", prgm_out04Alias, {outputPin[4]} + field = "Output Polarity", outputInverted4, {outputPin[4]} + field = "Activation Delay", outputDelay[4], {outputPin[4]} + field = "2nd Condition", bitwise4, {outputPin[4]} + panel = prgm_out_rules_5_condition_1 + panel = prgm_out_rules_5_condition_2 + + dialog = prgm_out_rules_6, "Rule 6", yAxis + field = "Output Pin Num", outputPin5 + field = "Rule Alias", prgm_out05Alias, {outputPin[5]} + field = "Output Polarity", outputInverted5, {outputPin[5]} + field = "Activation Delay", outputDelay[5], {outputPin[5]} + field = "2nd Condition", bitwise5, {outputPin[5]} + panel = prgm_out_rules_6_condition_1 + panel = prgm_out_rules_6_condition_2 + + dialog = prgm_out_rules_7, "Rule 7", yAxis + field = "Output Pin Num", outputPin6 + field = "Rule Alias", prgm_out06Alias, {outputPin[6]} + field = "Output Polarity", outputInverted6, {outputPin[6]} + field = "Activation Delay", outputDelay[6], {outputPin[6]} + field = "2nd Condition", bitwise6, {outputPin[6]} + panel = prgm_out_rules_7_condition_1 + panel = prgm_out_rules_7_condition_2 + + dialog = prgm_out_rules_8, "Rule 8", yAxis + field = "Output Pin Num", outputPin7 + field = "Rule Alias", prgm_out07Alias, {outputPin[7]} + field = "Output Polarity", outputInverted7, {outputPin[7]} + field = "Activation Delay", outputDelay[7], {outputPin[7]} + field = "2nd Condition", bitwise7, {outputPin[7]} + panel = prgm_out_rules_8_condition_1 + panel = prgm_out_rules_8_condition_2 + + dialog = prgm_out_rules_master, "", card + panel = prgm_out_rules_1, Center, { prgm_out_selection == 0 } + panel = prgm_out_rules_2, Center, { prgm_out_selection == 1 } + panel = prgm_out_rules_3, Center, { prgm_out_selection == 2 } + panel = prgm_out_rules_4, Center, { prgm_out_selection == 3 } + panel = prgm_out_rules_5, Center, { prgm_out_selection == 4 } + panel = prgm_out_rules_6, Center, { prgm_out_selection == 5 } + panel = prgm_out_rules_7, Center, { prgm_out_selection == 6 } + panel = prgm_out_rules_8, Center, { prgm_out_selection == 7 } + + dialog = prgm_out_config, "",yAxis + ;panel = prgm_out_unique + field = "Select Rule Number", prgm_out_selection + panel = prgm_out_rules_master + + dialog = rtc_setup, "Real Time Clock" + field = "Real Time Clock mode", rtc_mode + field = "Real Time Clock Trim +/-", rtc_trim, {rtc_mode} + + dialog = rtc_settings, "Real Time Clock" + panel = rtc_setup + panel = std_ms3Rtc + + +;------------------------------------------------------------------------------- +; General help text + + help = helpGeneral, "Speeduino Online Manual" + webHelp = "https://wiki.speeduino.com/" + text = "For current WIKI documentation, click the Web Help button," + text = "or visit http://www.speeduino.com/." + text = "
" + text = "
why not visit our forum http://speeduino.com/forum/" +;------------------------------------------------------------------------------ +[ControllerCommands] +; commandName = command1, command2, commandn... +; command in standard ini format, a command name can be assigned to 1 to n commands that will be executed in order. +; This does not include any resultant protocol envelope data, only the response data itself. + +; WARNING!! These commands bypass TunerStudio's normal memory synchronization. If these commands +; alter mapped settings (Constant) memory in the controller, TunerStudio will have an out of sync condition +; and may create error messages. +; It is expected that these commands would not typically alter any ram mapped to a Constant. + +cmdStopTestMode = "E\x01\x00" +cmdEnableTestMode = "E\x01\x01" + +cmdtestinj1on = "E\x02\x01" +cmdtestinj1off = "E\x02\x02" +cmdtestinj150dc = "E\x02\x03" +cmdtestinj2on = "E\x02\x04" +cmdtestinj2off = "E\x02\x05" +cmdtestinj250dc = "E\x02\x06" +cmdtestinj3on = "E\x02\x07" +cmdtestinj3off = "E\x02\x08" +cmdtestinj350dc = "E\x02\x09" +cmdtestinj4on = "E\x02\x0A" +cmdtestinj4off = "E\x02\x0B" +cmdtestinj450dc = "E\x02\x0C" +cmdtestinj5on = "E\x02\x0D" +cmdtestinj5off = "E\x02\x0E" +cmdtestinj550dc = "E\x02\x0F" +cmdtestinj6on = "E\x02\x10" +cmdtestinj6off = "E\x02\x11" +cmdtestinj650dc = "E\x02\x12" +cmdtestinj7on = "E\x02\x13" +cmdtestinj7off = "E\x02\x14" +cmdtestinj750dc = "E\x02\x15" +cmdtestinj8on = "E\x02\x16" +cmdtestinj8off = "E\x02\x17" +cmdtestinj850dc = "E\x02\x18" + +cmdtestspk1on = "E\x03\x01" +cmdtestspk1off = "E\x03\x02" +cmdtestspk150dc = "E\x03\x03" +cmdtestspk2on = "E\x03\x04" +cmdtestspk2off = "E\x03\x05" +cmdtestspk250dc = "E\x03\x06" +cmdtestspk3on = "E\x03\x07" +cmdtestspk3off = "E\x03\x08" +cmdtestspk350dc = "E\x03\x09" +cmdtestspk4on = "E\x03\x0A" +cmdtestspk4off = "E\x03\x0B" +cmdtestspk450dc = "E\x03\x0C" +cmdtestspk5on = "E\x03\x0D" +cmdtestspk5off = "E\x03\x0E" +cmdtestspk550dc = "E\x03\x0F" +cmdtestspk6on = "E\x03\x10" +cmdtestspk6off = "E\x03\x11" +cmdtestspk650dc = "E\x03\x12" +cmdtestspk7on = "E\x03\x13" +cmdtestspk7off = "E\x03\x14" +cmdtestspk750dc = "E\x03\x15" +cmdtestspk8on = "E\x03\x16" +cmdtestspk8off = "E\x03\x17" +cmdtestspk850dc = "E\x03\x18" + +cmdstm32reboot = "E\x32\x00" +cmdstm32bootloader ="E\x32\x01" + +cmdVSS60kmh = "E\x99\x00" +cmdVSSratio1 = "E\x99\x01" +cmdVSSratio2 = "E\x99\x02" +cmdVSSratio3 = "E\x99\x03" +cmdVSSratio4 = "E\x99\x04" +cmdVSSratio5 = "E\x99\x05" +cmdVSSratio6 = "E\x99\x06" + +; ------------------------------------------------------------- +; Help down here +[SettingContextHelp] + + +[CurveEditor] + +;tps-based accel enrichment + curve = time_accel_tpsdot_curve, "TPS based AE" + columnLabel = "TPSdot", "Added" + xAxis = 0, 1200, 6 + yAxis = 0, 250, 4 + xBins = taeBins, TPSdot + yBins = taeRates + +;map-based accel enrichment + curve = time_accel_mapdot_curve, "MAP based AE" + columnLabel = "MAPdot", "Added" + xAxis = 0, 1200, 6 + yAxis = 0, 250, 4 + xBins = maeBins, MAPdot + yBins = maeRates + +; Correction curve for dwell vs battery voltage + curve = dwell_correction_curve, "Dwell voltage correction" + columnLabel = "Voltage", "Dwell" + xAxis = 6, 22, 6 + yAxis = 0, 255, 6 + xBins = brvBins, batteryVoltage + yBins = dwellRates + +; Correction curve for injectors vs battery voltage + curve = injector_voltage_curve, "Injector voltage correction" + columnLabel = "Voltage", "Injector" + xAxis = 6, 22, 6 + yAxis = 0, 255, 6 + xBins = brvBins, batteryVoltage + yBins = injBatRates + +; Curve for injector timign vs RPM + curve = injector_timing_curve, "Injector timing" + columnLabel = "RPM", "Injector" + xAxis = 0, 7000, 6 + yAxis = 0, 720, 5 + xBins = injAngRPM, rpm + yBins = injAng + +; Correction curve for Air Density vs temperature + curve = airdensity_curve, "IAT density correction" + columnLabel = "Air Temperature", "Fuel Amount" + xAxis = -40, 160, 6 + yAxis = 0, 255, 6 + xBins = airDenBins, iat + yBins = airDenRates + +; Correction curve for Barometric pressure fuel adjustment + curve = baroFuel_curve, "Baro fuel correction" + columnLabel = "Baro Pressure", "Fuel Amount" + xAxis = 75, 112, 6 + yAxis = 0, 255, 6 + xBins = baroFuelBins, baro + yBins = baroFuelValues + +; Correction curve for fuel temperature fuel adjustment + curve = fuelTemp_curve, "Fuel temp correction" + columnLabel = "Fuel Temperature", "Fuel Amount" + xAxis = -40, 125, 6 + yAxis = 0, 255, 6 + xBins = fuelTempBins, fuelTemp + yBins = fuelTempValues + +; IAT based ignition timing retard + curve = iat_retard_curve, "IAT timing retard" + columnLabel = "Inlet Air Temp", "Retard" + xAxis = -40, 200, 5 + yAxis = 0, 30, 5 + xBins = iatRetBins, iat + yBins = iatRetRates + +; CLT based ignition timing retard + curve = clt_advance_curve, "Cold Advance" + columnLabel = "Coolant Temp", "Advance" + xAxis = -40, 200, 5 + yAxis = -12.7, 12.7, 5 + xBins = cltAdvBins, coolant + yBins = cltAdvValues + +; Idle RPM target based ignition timing + curve = idle_advance_curve, "Idle Advance" + columnLabel = "RPM Delta", "Advance" + xAxis = -500, 500, 5 + yAxis = -15, 50, 5 + xBins = idleAdvBins, CLIdleDelta + yBins = idleAdvValues + size = 450, 200 + +; Curves for idle control + ; Standard duty table for PWM valves + curve = iacPwm_curve, "IAC PWM Duty" + columnLabel = "Coolant Temperature", "Valve" + #if CELSIUS + xAxis = -40, 215, 6 + #else + xAxis = -40, 315, 6 + #endif + yAxis = 0, 100, 4 + xBins = iacBins, coolant + yBins = iacOLPWMVal + + ; Cranking duty table for PWM valves + curve = iacPwmCrank_curve, "IAC PWM Cranking Duty" + columnLabel = "Coolant Temperature", "Valve" + xAxis = -40, 215, 6 + yAxis = 0, 100, 4 + xBins = iacCrankBins, coolant + yBins = iacCrankDuty + + curve = iacStep_curve, "IAC Stepper Motor" + columnLabel = "Coolant Temperature", "Motor" + #if CELSIUS + xAxis = -40, 215, 6 + #else + xAxis = -40, 315, 6 + #endif + yAxis = 0, 850, 4 + xBins = iacBins, coolant + yBins = iacOLStepVal + + curve = iacStepCrank_curve, "IAC Stepper Motor Cranking" + columnLabel = "Coolant Temperature", "Motor" + xAxis = -40, 120, 6 + yAxis = 0, 850, 4 + xBins = iacCrankBins, coolant + yBins = iacCrankSteps + + curve = iacClosedLoop_curve, "Idle RPM Targets" + columnLabel = "Coolant Temperature", "Motor" + xAxis = -40, 120, 6 + yAxis = 0, 2000, 4 + xBins = iacBins, coolant + yBins = iacCLValues + size = 450, 200 + + curve = rotaryTrailing_curve, "Rotary Trailing Split" + columnLabel = "Engine load", "Split" + yAxis = 0, 40, 4 + xBins = rotarySplitBins, fuelLoad + xAxis = 0, { fuelLoadMax }, 5 + yBins = rotarySplitValues + +; Warmup enrichment curve + curve = warmup_curve, "Warmup Enrichment (WUE) Curve" + columnLabel = "Coolant", "WUE %" + xAxis = -40, 210, 9 + yAxis = 0, 240, 6 + xBins = wueBins, coolant + yBins = wueRates + gauge = cltGauge + +; Cranking enrichment curve + curve = cranking_enrich_curve, "Cranking Enrichment Curve" + columnLabel = "Coolant", "Fuel Modifier" + xAxis = -40, 110, 9 + yAxis = 0, 400, 6 + xBins = crankingEnrichBins, coolant + yBins = crankingEnrichValues + ;gauge = cltGau25 + +; Priming Pulsewidth curve + curve = priming_pw_curve, "Priming Pulsewidth" + columnLabel = "Coolant", "PW" + xAxis = -40, 110, 4 + yAxis = 0, 10, 4 + xBins = primeBins, coolant + yBins = primePulse + gauge = cltGauge + +; Afterstart Enrichment curve + curve = afterstart_enrichment_curve, "ASE - Enrichment %" + columnLabel = "Coolant", "Enrichment" + xAxis = -40, 110, 4 + yAxis = 0, 200, 4 + xBins = aseBins, coolant + yBins = asePct + gauge = cltGauge + size = 50, 250 + +; Afterstart Enrichment time + curve = afterstart_enrichment_time, "ASE - Duration" + columnLabel = "Coolant", "Time" + xAxis = -40, 110, 4 + yAxis = 0, 20, 4 + xBins = aseBins, coolant + yBins = aseCount + gauge = cltGauge + size = 50, 250 + +; Flex fuel correction curves + curve = flex_fuel_curve, "Flex Fuel Adjustments" + columnLabel = "Ethanol", "Fuel" + xAxis = 0, 100, 10 + yAxis = 50, 250, 5 + xBins = flexFuelBins, flex + yBins = flexFuelAdj + size = 400, 200 + + curve = flex_adv_curve, "Flex Timing Advance" + columnLabel = "Ethanol", "Advance" + xAxis = 0, 100, 10 + yAxis = 0, 50, 5 + xBins = flexAdvBins, flex + yBins = flexAdvAdj + size = 400, 200 + + curve = flex_boost_curve, "Flex Boost Adjustments" + columnLabel = "Ethanol", "Boost" + xAxis = 0, 100, 10 + yAxis = -100, 200, 5 + xBins = flexBoostBins, flex + yBins = flexBoostAdj + size = 400, 200 + +;Knock sensor windows + curve = knock_window_angle_curve, "Knock Window" + columnLabel = "RPM", "Window Start" + xAxis = 0, 8000, 9 + yAxis = -100, 100, 11 + xBins = knock_window_rpms, rpm + yBins = knock_window_angle + size = 400, 200 + + curve = knock_window_duration_curve, "Knock Window Duration" + columnLabel = "RPM", "Window Duration" + xAxis = 0, 8000, 9 + yAxis = 0, 100, 10 + xBins = knock_window_rpms, rpm + yBins = knock_window_dur + size = 400, 200 + +; Oil Pressure protection curve + curve = oil_pressure_prot_curve, "Oil Pressure Protection" + columnLabel = "RPM", "Minimum PSI" + xAxis = 0, 8000, 9 + yAxis = 0, 150, 3 + xBins = oilPressureProtRPM, rpm + yBins = oilPressureProtMins + size = 400, 200 + +; Warmup enrichment VEAL AFR adjustment curves + curve = warmup_afr_curve, "Target Adjustment" + columnLabel = "Coolant", "Offset" + xAxis = -40, 210, 9 +#if LAMBDA + yAxis = -0.3, 0.1, 5 +#else + yAxis = -4, 1, 5 +#endif + xBins = wueBins, coolant + yBins = wueAFR + + curve = warmup_analyzer_curve, "Warmup Enrichment" + columnLabel = "Coolant", "Current WUE", "Coolant", "Recommended WUE" + xAxis = -40, 210, 9 + yAxis = 100, 255, 6 + xBins = wueBins, coolant + yBins = wueRates + yBins = wueRecommended + lineLabel = "Current WUE" + lineLabel = "Recommended WUE" + + + curve = wmi_adv_curve, "WMI Timing Advance" + columnLabel = "kPa", "Advance" + xAxis = 0, 511, 20 + yAxis = 0, 50, 5 + xBins = wmiAdvBins, map + yBins = wmiAdvAdj + size = 400, 200 + + +[TableEditor] + ; table_id, map3d_id, "title", page + table = veTable1Tbl, veTable1Map, "VE Table", 2 + topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + ; constant, variable + xBins = rpmBins, rpm + yBins = fuelLoadBins, fuelLoad + xyLabels = "RPM", "Fuel Load: " + zBins = veTable + + gridHeight = 2.0 + gridOrient = 250, 0, 340 + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTable2Tbl, fuel2Map, "Fuel Table 2", 11 + topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + xBins = fuelRPM2Bins, rpm + yBins = fuelLoad2Bins, fuelLoad2 + xyLabels = "RPM", "Fuel Load: " + zBins = veTable2 + + gridHeight = 2.0 + gridOrient = 250, 0, 340 + upDownLabel = "(RICHER)", "(LEANER)" + + table = sparkTbl, sparkMap, "Ignition Advance Table", 3 + xBins = rpmBins2, rpm + ;yBins = ignLoadBins, ignLoad + yBins = mapBins1, ignLoad + xyLabels = "RPM", "Ignition Load: " + zBins = advTable1 + gridHeight = 3.0 + upDownLabel = "ADVANCING", "RETARDING" + + table = spark2Tbl, spark2Map, "Second Ignition Advance Table", 14 + xBins = rpmBins3, rpm + ;yBins = ignLoadBins, ignLoad + yBins = mapBins2, ignLoad + xyLabels = "RPM", "Ignition Load: " + zBins = advTable2 + gridHeight = 3.0 + upDownLabel = "ADVANCING", "RETARDING" + + ;table = afrTbl, afrTableMap, "AFR Table", 5 + table = afrTable1Tbl, afrTable1Map, "AFR Table", 5 + xBins = rpmBinsAFR, rpm + yBins = loadBinsAFR, fuelLoad + zBins = afrTable + gridHeight = 1.0 + upDownLabel = "RICHER", "LEANER" + gridOrient = 250, 0, 340 + + ;#if BOOSTPSI + ;table = boostTbl, boostMap, "Boost targets (PSI)", 8 + ;#else + ;table = boostTbl, boostMap, "Boost targets (Absolute kPa)", 8 + ;#endif + table = boostTbl, boostMap, "Boost Duty / Target", 8 + xBins = rpmBinsBoost, rpm + yBins = tpsBinsBoost, throttle + zBins = boostTable + gridHeight = 3.0 + upDownLabel = "HIGHER", "LOWER" + + table = vvtTbl, vvtMap, "VVT control Table", 8 + xBins = rpmBinsVVT, rpm + ;yBins = tpsBinsVVT, throttle + yBins = loadBinsVVT, vvtLoad + zBins = vvtTable + xyLabels = "RPM", "VVT Load: " + gridHeight = 3.0 + upDownLabel = "HIGHER", "LOWER" + + table = wmiTbl, wmiMapMap, "WMI control Table", 8 + xBins = rpmBinsWMI, rpm + yBins = mapBinsWMI, map + zBins = wmiTable + xyLabels = "RPM", "WMI Load: " + gridHeight = 3.0 + upDownLabel = "HIGHER", "LOWER" + + table = stagingTbl, stagingMap, "Fuel Staging Table", 10 + xBins = rpmBinsStaging, rpm + yBins = loadBinsStaging, fuelLoad + zBins = stagingTable + gridHeight = 3.0 + upDownLabel = "HIGHER", "LOWER" + +;--------- Sequential fuel trim maps ----------- + table = fuelTrimTable1Tbl, fuelTrimTable1Map, "Fuel trim Table 1", 9 + topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + xBins = fuelTrim1rpmBins, rpm + yBins = fuelTrim1loadBins, fuelLoad + zBins = fuelTrim1Table + gridHeight = 2.0 + gridOrient = 250, 0, 340 + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTable2Tbl, fuelTrimTable2Map, "Fuel trim Table 2", 9 + topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + xBins = fuelTrim2rpmBins, rpm + yBins = fuelTrim2loadBins, fuelLoad + zBins = fuelTrim2Table + gridHeight = 2.0 + gridOrient = 250, 0, 340 + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTable3Tbl, fuelTrimTable3Map, "Fuel trim Table 3", 9 + topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + xBins = fuelTrim3rpmBins, rpm + yBins = fuelTrim3loadBins, fuelLoad + zBins = fuelTrim3Table + gridHeight = 2.0 + gridOrient = 250, 0, 340 + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTable4Tbl, fuelTrimTable4Map, "Fuel trim Table 4", 9 + topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + xBins = fuelTrim4rpmBins, rpm + yBins = fuelTrim4loadBins, fuelLoad + zBins = fuelTrim4Table + gridHeight = 2.0 + gridOrient = 250, 0, 340 + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTable5Tbl, fuelTrimTable5Map, "Fuel trim Table 5", 9 + topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + xBins = fuelTrim5rpmBins, rpm + yBins = fuelTrim5loadBins, fuelLoad + zBins = fuelTrim5Table + gridHeight = 2.0 + gridOrient = 250, 0, 340 + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTable6Tbl, fuelTrimTable6Map, "Fuel trim Table 6", 9 + topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + xBins = fuelTrim6rpmBins, rpm + yBins = fuelTrim6loadBins, fuelLoad + zBins = fuelTrim6Table + gridHeight = 2.0 + gridOrient = 250, 0, 340 + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTable7Tbl, fuelTrimTable7Map, "Fuel trim Table 7", 9 + topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + xBins = fuelTrim7rpmBins, rpm + yBins = fuelTrim7loadBins, fuelLoad + zBins = fuelTrim7Table + gridHeight = 2.0 + gridOrient = 250, 0, 340 + upDownLabel = "(RICHER)", "(LEANER)" + + table = fuelTrimTable8Tbl, fuelTrimTable8Map, "Fuel trim Table 8", 9 + topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + xBins = fuelTrim8rpmBins, rpm + yBins = fuelTrim8loadBins, fuelLoad + zBins = fuelTrim8Table + gridHeight = 2.0 + gridOrient = 250, 0, 340 + upDownLabel = "(RICHER)", "(LEANER)" + + table = dwell_map, dwell_tblMap, "Dwell map", 4 + xBins = rpmBinsDwell, rpm + yBins = mapBinsDwell, map + zBins = dwellTable + xyLabels = "RPM", "Load: " + gridHeight = 3.0 + upDownLabel = "HIGHER", "LOWER" + + +;------------------------------------------------------------------------------- + +[GaugeConfigurations] + + ;------------------------------------------------------------------------------- + ; Define a gauge's characteristics here, then go to a specific layout + ; block (Tuning or FrontPage) and use the name you've defined here to + ; display that gauge in a particular position. + ; + ; Name = Case-sensitive, user-defined name for this gauge configuration. + ; Var = Case-sensitive name of variable to be displayed, see the + ; OutputChannels block in this file for possible values. + ; Title = Title displayed at the top of the gauge. + ; Units = Units displayed below value on gauge. + ; Lo = Lower scale limit of gauge. + ; Hi = Upper scale limit of gauge. + ; LoD = Lower limit at which danger color is used for gauge background. + ; LoW = Lower limit at which warning color is used. + ; HiW = Upper limit at which warning color is used. + ; HiD = Upper limit at which danger color is used. + ; vd = Decimal places in displayed value + ; ld = Label decimal places for display of Lo and Hi, above. + + gaugeCategory = "Main" + ;Name Var Title Units Lo Hi LoD LoW HiW HiD vd ld + accelEnrichGauge = accelEnrich, "Accel Enrich", "%", 50, 150, -1, -1, 999, 999, 0, 0 + injOpenGauge = inj_open, "Injector Open Time", "mSec", 0.0, 3.0, 0.0, 0.0, 3.0, 3.0, 3, 3 + dutyCycleGauge = dutyCycle, "Duty Cycle", "%", 0, 100, -1, -1, 70, 80, 1, 1 + stgDutyCycleGauge = stgDutyCycle, "Staging Duty Cycle", "%", 0, 100, -1, -1, 70, 80, 1, 1 + egoCorrGauge = egoCorrection, "EGO Correction", "%", 50, 150, 90, 99, 101, 110, 0, 0 + + gammaEnrichGauge = gammaEnrich, "Gamma Enrichment", "%", 50, 250, -1, -1, 151, 151, 0, 0 + pulseWidthGauge = pulseWidth, "Pulse Width", "mSec", 0, 35.0, 1.0, 1.2, 20, 25, 3, 3 + pulseWidthGauge2 = pulseWidth2, "Pulse Width 2", "mSec", 0, 35.0, 1.0, 1.2, 20, 25, 3, 3 + pulseWidthGauge3 = pulseWidth3, "Pulse Width 3", "mSec", 0, 35.0, 1.0, 1.2, 20, 25, 3, 3 + pulseWidthGauge4 = pulseWidth4, "Pulse Width 4", "mSec", 0, 35.0, 1.0, 1.2, 20, 25, 3, 3 + tachometer = rpm, "Engine Speed", "RPM", 0, {rpmhigh}, 300, 600, {rpmwarn}, {rpmdang}, 0, 0 + veGauge = veCurr, "Current VE", "%", 0, 120, -1, -1, 999, 999, 0, 0 + ve1Gauge = VE1, "VE1 (Fuel Table 1)", "%", 0, 120, -1, -1, 999, 999, 0, 0 + ve2Gauge = VE2, "VE2 (Fuel Table 2)", "%", 0, 120, -1, -1, 999, 999, 0, 0 + warmupEnrichGauge = warmupEnrich, "Warmup Enrichment", "%", 100, 200, 130, 140, 140, 150, 0, 0 + aseEnrichGauge = ase_enrich, "Afterstart Enrichment","%", 0, 200, 130, 140, 140, 150, 0, 0 + batCorrectGauge = bat_correction,"Voltage Correction", "%", 0, 200, 130, 140, 140, 150, 0, 0 + iatCorrectGauge = airCorrection, "IAT Correction", "%", 0, 200, 130, 140, 140, 150, 0, 0 + baroCorrectGauge = baroCorrection,"Baro Correction", "%", 0, 200, 130, 140, 140, 150, 0, 0 + flexEnrich = flexFuelCor, "Flex Correction", "%", 0, 200, 130, 140, 140, 150, 0, 0 + fuelTempCorGauge = fuelTempCor, "Fuel Temp Correction", "%", 0, 200, 130, 140, 140, 150, 0, 0 + advanceGauge = advance, "Current Advance", "deg", 50, -10, 0, 0, 35, 45, 0, 0 + advance1Gauge = advance1, "Advance1 (Spark Table 1)", "deg",50, -10, 0, 0, 35, 45, 0, 0 + advance2Gauge = advance2, "Advance2 (Spark Table 2)", "deg",50, -10, 0, 0, 35, 45, 0, 0 + dwellGauge = dwell, "Ign Dwell", "mSec", 0, 35.0, 1.0, 1.2, 20, 25, 3, 3 + boostTargetGauge = boostTarget, "Target Boost", "kPa", 0, {maphigh}, 0, 20, {mapwarn}, {mapdang}, 0, 0 + boostDutyGauge = boostDuty, "Boost Duty Cycle", "%", 0, 100, -1, -1, 101, 110, 1, 1 + afrTargetGauge = afrTarget, "Target AFR", "", 7, 25, 12, 13, 15, 16, 2, 2 + lambdaTargetGauge = lambdaTarget, "Target Lambda", "", 0.5, 1.5, 0.82, 0.89, 1.02, 1.09, 3, 3 + IdleTargetGauge = CLIdleTarget, "Idle Target RPM", "RPM", 0, 2000, 300, 600, 1500, 1700, 0, 0 + idleLoadGauge = idleLoad, "IAC Value", "%/Steps", 0, {maphigh}, 0, 20, {mapwarn}, {mapdang}, 0, 0 + vvt1DutyCycleGauge= vvt1Duty, "VVT Duty Cycle", "%", 0, 100, -1, -1, 101, 110, 1, 1 + vvt1TargetGauge = vvt1Target, "VVT Target Angle", "deg", 0, 100, 15, 25, 65, 75, 0, 0 + vvt1AngleGauge = vvt1Angle, "VVT Angle", "deg", -20, 100, 0, -5, 70, 90, 0, 0 + vvt2DutyCycleGauge= vvt2Duty, "VVT Duty Cycle", "%", 0, 100, -1, -1, 101, 110, 1, 1 + vvt2TargetGauge = vvt2Target, "VVT Target Angle", "deg", 0, 100, 15, 25, 65, 75, 0, 0 + vvt2AngleGauge = vvt2Angle, "VVT Angle", "deg", -20, 100, 0, -5, 70, 90, 0, 0 + + WMIdutyCycleGauge = wmiPW, "WMI Duty Cycle", "%", 0, 100, -1, -1, 101, 110, 1, 1 + + gaugeCategory = "Sensor inputs" + mapGauge = map, "Engine MAP", "kPa", 0, {maphigh}, 0, 20, {mapwarn}, {mapdang}, 0, 0 + mapGauge_psi = map_psi, "Engine MAP (PSI)", "PSI", -15, 100, 0, 20, 200, 245, 0, 0 + mapGauge_bar = map_bar, "Engine MAP (BAR)", "Bar", -1, 3, -1, -1, 5, 5, 2, 2 + mapGauge_vacBoost = map_vacboost, "Engine MAP (in-Hg/PSI)", "in-Hg/PSI", -30, 30, -30, -30, 30, 30, 1, 1 + baroGauge = baro, "Baro Pressure", "kPa", 0, {maphigh}, 0, 20, {mapwarn}, {mapdang}, 0, 0 + batteryVoltage = batteryVoltage,"Battery Voltage", "volts", 0, 25, 8, 9, 15, 16, 2, 2 + vssGauge = vss, "Vehicle Speed (kph)", "km/h", 0, 250, 5, 10, 180, 200, 0, 0 + vssGaugeMPH = vssMPH, "Vehicle Speed (mph)", "mph", 0, 250, 5, 10, 180, 200, 0, 0 + + tpsADCGauge = tpsADC, "TPS ADC", "", 0, 255, -1, -1, 256, 256, 0, 0 + throttleGauge = throttle, "Throttle Position", "%TPS", 0, 100, -1, 1, 90, 100, 0, 0 + + afrGauge = afr, "Air:Fuel Ratio", "", 7, 25, 12, 13, 15, 16, 2, 2 + afrGauge2 = afr2, "Air:Fuel Ratio 2", "", 7, 25, 12, 13, 15, 16, 2, 2 + lambdaGauge = lambda, "Lambda", "", 0.5, 1.5, 0.5, 0.7, 2, 1.1, 2, 2 + + #if CELSIUS + cltGauge = coolant, "Coolant Temp", "TEMP", -40, 215, -15, 0, 95, 105, 0, 0 + iatGauge = iat, "Inlet Air Temp", "TEMP", -40, 215, -15, 0, 95, 100, 0, 0 + fuelTempGauge = fuelTemp, "Fuel Temp", "TEMP", -40, 215, -15, 0, 95, 100, 0, 0 + #else + cltGauge = coolant, "Coolant Temp", "TEMP", -40, 215, 0, 30, 200, 220, 0, 0 + iatGauge = iat, "Inlet Air Temp", "TEMP", -40, 215, 0, 30, 200, 210, 0, 0 + fuelTempGauge = fuelTemp, "Fuel Temp", "TEMP", -40, 215, 0, 30, 200, 210, 0, 0 + #endif + flexGauge = flex, "Flex sensor", "%", 0, 100, -1, -1, 999, 999, 0, 0 + + fuelPressureGauge = fuelPressure, "Fuel Pressure", "PSI", -15, 100, 0, 20, 200, 245, 0, 0 + oilPressureGauge = oilPressure, "Oil Pressure", "PSI", -15, 100, 0, 20, 200, 245, 0, 0 + + gaugeCategory = "Auxillary Input Channels" + AuxInGauge0 = auxin_gauge0, { stringValue(AUXin00Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge1 = auxin_gauge1, { stringValue(AUXin01Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge2 = auxin_gauge2, { stringValue(AUXin02Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge3 = auxin_gauge3, { stringValue(AUXin03Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge4 = auxin_gauge4, { stringValue(AUXin04Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge5 = auxin_gauge5, { stringValue(AUXin05Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge6 = auxin_gauge6, { stringValue(AUXin06Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge7 = auxin_gauge7, { stringValue(AUXin07Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge8 = auxin_gauge8, { stringValue(AUXin08Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge9 = auxin_gauge9, { stringValue(AUXin09Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge10 = auxin_gauge10, { stringValue(AUXin10Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge11 = auxin_gauge11, { stringValue(AUXin11Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge12 = auxin_gauge12, { stringValue(AUXin12Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge13 = auxin_gauge13, { stringValue(AUXin13Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge14 = auxin_gauge14, { stringValue(AUXin14Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + AuxInGauge15 = auxin_gauge15, { stringValue(AUXin15Alias) }, "", 0, 1024, -1, -1, 1025, 1025, 0, 0 + + gaugeCategory = "System Data" + clockGauge = secl, "Clock", "Seconds", 0, 255, 10, 10, 245, 245, 0, 0 + loopGauge = loopsPerSecond,"Main loop speed", "Loops/S" , 0, 70000, -1, 500,1800, 4000, 0, 0 + memoryGauge = freeRAM, "Free memory", "bytes" , 0, 8000, -1, 1000,8000, 1000, 0, 0 + reqFuelGauge = req_fuel, "Req. Fuel", "ms", 0, 35.0, 1.0, 1.2, 20, 25, 2, 2 + mapMultiplyGauge = map_multiply_amt, "MAP Multiply", "%", 0, 200, 130, 140, 140, 150, 0, 0 + nSquirtsGauge = nSquirts, "# Squirts", "", 0, 10, 130, 140, 140, 150, 0, 0 + syncLossGauge = syncLossCounter, "# Sync Losses" "", 0, 255, -1, -1, 10, 50, 0, 0 +;------------------------------------------------------------------------------- + +[FrontPage] + + + ; Gauges are numbered left to right, top to bottom. + ; + ; 1 2 3 4 + ; 5 6 7 8 + + gauge1 = tachometer + gauge2 = throttleGauge + gauge3 = pulseWidthGauge + gauge4 = dutyCycleGauge + gauge5 = mapGauge + gauge6 = iatGauge + gauge7 = cltGauge + gauge8 = gammaEnrichGauge + + ;---------------------------------------------------------------------------- + ; Indicators + ; expr off-label on-label, off-bg, off-fg, on-bg, on-fg + indicator = { running }, "Not Running", "Running" white, black, green, black + indicator = { crank }, "Not Cranking", "Cranking", white, black, green, black + indicator = { ase }, "ASE OFF", "ASE ON", white, black, green, black + indicator = { warmup }, "WUE OFF", "WUE ON", white, black, green, black + indicator = { tpsaccaen }, "Accel", "Accel", white, black, green, black + indicator = { tpsaccden }, "Decel", "Decel", white, black, green, black + indicator = { mapaccaen }, "MAP Accel", "MAP Accel", white, black, green, black + indicator = { mapaccden }, "MAP Decel", "MAP Decel", white, black, green, black + indicator = { error }, "No Errors", "ERROR", white, black, green, black + indicator = { (tps > tpsflood) && (rpm < crankRPM) }, "FLOOD OFF", "FLOOD CLEAR", white, black, red, black + indicator = { DFCOOn }, "DFCO OFF", "DFCO On", white, black, red, black + indicator = { launchHard }, "Launch Hard", "Launch Hard", white, black, green, black + indicator = { launchSoft }, "Launch Soft", "Launch Soft", white, black, green, black + indicator = { softlimitOn }, "Soft Limit OFF","Soft Limiter", white, black, red, black + indicator = { hardLimitOn }, "Hard Limit OFF","Hard Limiter", white, black, red, black + indicator = { boostCutOut }, "Ign Cut OFF", "Ign Cut (Boost)", white, black, red, black + indicator = { sync }, "No Sync", "Full Sync", white, black, green, black + indicator = { halfSync }, "No or Full Sync", "Half Sync", white, black, yellow, black + indicator = { resetLockOn }, "Reset Lock OFF","Reset Lock ON", red, black, green, black + indicator = { bootloaderCaps > 0 }, "Std. Boot", "Custom Boot", white, black, white, black + indicator = { nitrousOn }, "Nitrous Off", "Nitrous On", white, black, red, black + indicator = { IOError }, "I/O Ok", "I/O Error!", white, black, red, black + ;Engine Protection status indicators + indicator = { engineProtectStatus}, "Engine Protect OFF", "Engine Protect ON", white, black, red, black + indicator = { engineProtectRPM }, "Rev Limiter Off", "Rev Limiter ON", white, black, red, black + indicator = { engineProtectMAP }, "Boost Limit OFF", "Boost Limit ON", white, black, red, black + indicator = { engineProtectOil }, "Oil Pres. Protect OFF","Oil Pres. Protect ON",white, black, red, black + indicator = { engineProtectAFR }, "AFR Protect OFF", "AFR Protect ON", white, black, red, black + indicator = { wmiEmptyBit }, "WMI Tank NOT Empty", "WMI Tank Empty", white, black, red, black + indicator = { outputsStatus0 }, "Programmable out 1 Off", "Programmable out 1 ON", white, black, green, black + indicator = { outputsStatus1 }, "Programmable out 2 Off", "Programmable out 2 ON", white, black, green, black + indicator = { outputsStatus2 }, "Programmable out 3 Off", "Programmable out 3 ON", white, black, green, black + indicator = { outputsStatus3 }, "Programmable out 4 Off", "Programmable out 4 ON", white, black, green, black + indicator = { outputsStatus4 }, "Programmable out 5 Off", "Programmable out 5 ON", white, black, green, black + indicator = { outputsStatus5 }, "Programmable out 6 Off", "Programmable out 6 ON", white, black, green, black + indicator = { outputsStatus6 }, "Programmable out 7 Off", "Programmable out 7 ON", white, black, green, black + indicator = { outputsStatus7 }, "Programmable out 8 Off", "Programmable out 8 ON", white, black, green, black + +;------------------------------------------------------------------------------- + +[OutputChannels] + ; The number of bytes MegaTune or TunerStudio should expect as a result + ; of sending the "A" command to Speeduino is determined + ; by the value of ochBlockSize, so be very careful when + ; you change it. + + ochGetCommand = "r\$tsCanId\x30%2o%2c" + ochBlockSize = 117 + + secl = scalar, U08, 0, "sec", 1.000, 0.000 + status1 = scalar, U08, 1, "bits", 1.000, 0.000 + inj1Status = bits, U08, 1, [0:0] + inj2Status = bits, U08, 1, [1:1] + inj3Status = bits, U08, 1, [2:2] + inj4Status = bits, U08, 1, [3:3] + DFCOOn = bits, U08, 1, [4:4] + boostCutFuel = bits, U08, 1, [5:5] + toothLog1Ready = bits, U08, 1, [6:6] + toothLog2Ready = bits, U08, 1, [7:7] + engine = scalar, U08, 2, "bits", 1.000, 0.000 + running = bits, U08, 2, [0:0] + crank = bits, U08, 2, [1:1] + ase = bits, U08, 2, [2:2] + warmup = bits, U08, 2, [3:3] + tpsaccaen = bits, U08, 2, [4:4] + tpsaccden = bits, U08, 2, [5:5] + mapaccaen = bits, U08, 2, [6:6] + mapaccden = bits, U08, 2, [7:7] + syncLossCounter = scalar, U08, 3, "", 1.000, 0.000 + map = scalar, U16, 4, "kpa", 1.000, 0.000 + iatRaw = scalar, U08, 6, "°C", 1.000, 0.000 + coolantRaw = scalar, U08, 7, "°C", 1.000, 0.000 + batCorrection = scalar, U08, 8, "%", 1.000, 0.000 + batteryVoltage = scalar, U08, 9, "V", 0.100, 0.000 + afr = scalar, U08, 10, "O2", 0.100, 0.000 + egoCorrection = scalar, U08, 11, "%", 1.000, 0.000 + airCorrection = scalar, U08, 12, "%", 1.000, 0.000 + warmupEnrich = scalar, U08, 13, "%", 1.000, 0.000 + rpm = scalar, U16, 14, "rpm", 1.000, 0.000 + accelEnrich = scalar, U08, 16, "%", 2.000, 0.000 + gammaEnrich = scalar, U16, 17, "%", 1.000, 0.000 + VE1 = scalar, U08, 19, "%", 1.000, 0.000 + VE2 = scalar, U08, 20, "%", 1.000, 0.000 + afrTarget = scalar, U08, 21, "O2", 0.100, 0.000 + TPSdot = scalar, U08, 22, "%/s", 10.00, 0.000 + advance = scalar, S08, 23, "deg", 1.000, 0.000 + tps = scalar, U08, 24, "%", 1.000, 0.000 + loopsPerSecond = scalar, U16, 25, "loops", 1.000, 0.000 + freeRAM = scalar, U16, 27, "bytes", 1.000, 0.000 + boostTarget = scalar, U08, 29, "kPa", 2.000, 0.000 + boostDuty = scalar, U08, 30, "%", 1.000, 0.000 + status2 = scalar, U08, 31, "bits", 1.000, 0.000 + launchHard = bits, U08, 31, [0:0] + launchSoft = bits, U08, 31, [1:1] + hardLimitOn = bits, U08, 31, [2:2] + softlimitOn = bits, U08, 31, [3:3] + boostCutSpark = bits, U08, 31, [4:4] + error = bits, U08, 31, [5:5] + idleControlOn = bits, U08, 31, [6:6] + sync = bits, U08, 31, [7:7] + rpmDOT = scalar, S16, 32, "rpm/s", 1.000, 0.000 + flex = scalar, U08, 34, "%", 1.000, 0.000 + flexFuelCor = scalar, U08, 35, "%", 1.000, 0.000 + flexIgnCor = scalar, S08, 36, "deg", 1.000, 0.000 + idleLoad = scalar, U08, 37, { bitStringValue( idleUnits , iacAlgorithm ) }, { (iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 || iacMaxSteps <= 255) ? 1.000 : 2.000 }, 0.000 ; This is a combined variable covering both PWM and stepper IACs. The units and precision used depend on which idle algorithm is chosen + testoutputs = scalar, U08, 38, "bits", 1.000, 0.000 + testenabled = bits, U08, 38, [0:0] + testactive = bits, U08, 38, [1:1] + afr2 = scalar, U08, 39, "O2", 0.100, 0.000 + baro = scalar, U08, 40, "kpa", 1.000, 0.000 + auxin_gauge0 = scalar, U16, 41, "", 1.000, 0.000 + auxin_gauge1 = scalar, U16, 43, "", 1.000, 0.000 + auxin_gauge2 = scalar, U16, 45, "", 1.000, 0.000 + auxin_gauge3 = scalar, U16, 47, "", 1.000, 0.000 + auxin_gauge4 = scalar, U16, 49, "", 1.000, 0.000 + auxin_gauge5 = scalar, U16, 51, "", 1.000, 0.000 + auxin_gauge6 = scalar, U16, 53, "", 1.000, 0.000 + auxin_gauge7 = scalar, U16, 55, "", 1.000, 0.000 + auxin_gauge8 = scalar, U16, 57, "", 1.000, 0.000 + auxin_gauge9 = scalar, U16, 59, "", 1.000, 0.000 + auxin_gauge10 = scalar, U16, 61, "", 1.000, 0.000 + auxin_gauge11 = scalar, U16, 63, "", 1.000, 0.000 + auxin_gauge12 = scalar, U16, 65, "", 1.000, 0.000 + auxin_gauge13 = scalar, U16, 67, "", 1.000, 0.000 + auxin_gauge14 = scalar, U16, 69, "", 1.000, 0.000 + auxin_gauge15 = scalar, U16, 71, "", 1.000, 0.000 + tpsADC = scalar, U08, 73, "ADC", 1.000, 0.000 + errors = scalar, U08, 74, "bits", 1.000, 0.000 + errorNum = bits, U08, 74, [0:1] + currentError = bits, U08, 74, [2:7] + pulseWidth = scalar, U16, 75, "ms", 0.001, 0.000 + pulseWidth2 = scalar, U16, 77, "ms", 0.001, 0.000 + pulseWidth3 = scalar, U16, 79, "ms", 0.001, 0.000 + pulseWidth4 = scalar, U16, 81, "ms", 0.001, 0.000 + status3 = scalar, U08, 83, "bits", 1.000, 0.000 + resetLockOn = bits, U08, 83, [0:0] + nitrousOn = bits, U08, 83, [1:1] + fuel2Active = bits, U08, 83, [2:2] + vssRefresh = bits, U08, 83, [3:3] + halfSync = bits, U08, 83, [4:4] + nSquirts = bits, U08, 83, [5:7] + engineProtectStatus = scalar, U08, 84, "bits", 1.000, 0.000 + engineProtectRPM = bits, U08, 84, [0:0] + engineProtectMAP = bits, U08, 84, [1:1] + engineProtectOil = bits, U08, 84, [2:2] + engineProtectAFR = bits, U08, 84, [3:3] + engineProtectOth = bits, U08, 84, [4:6] ; Unused for now + IOError = bits, U08, 84, [7:7] + unused1 = scalar, U08, 84, "ADC",1.000, 0.000 + fuelLoad = scalar, S16, 85, { bitStringValue( algorithmUnits , algorithm ) }, 1.000, 0.000 + ignLoad = scalar, S16, 87, { bitStringValue( algorithmUnits , ignAlgorithm ) }, 1.000, 0.000 + dwell = scalar, U16, 89, "ms", 0.001, 0.000 + CLIdleTarget = scalar, U08, 91, "RPM", 10.00, 0.000 + MAPdot = scalar, U08, 92, "kPa/s", 10.00, 0.000 + vvt1Angle = scalar, S08, 93, "deg", 1.00, 0.000 + vvt1Target = scalar, U08, 94, "deg", 1.00, 0.000 + vvt1Duty = scalar, U08, 95, "%", 1.00, 0.000 + flexBoostCor = scalar, S16, 96, "kPa", 1.000, 0.000 + baroCorrection = scalar, U08, 98, "%", 1.000, 0.000 + veCurr = scalar, U08, 99, "%", 1.000, 0.000 + ASECurr = scalar, U08, 100, "%", 1.000, 0.000 + vss = scalar, U16, 101, "km/h", 1.000, 0.000 + gear = scalar, U08, 103, "", 1.000, 0.000 + fuelPressure = scalar, U08, 104, "PSI", 1.000, 0.000 + oilPressure = scalar, U08, 105, "PSI", 1.000, 0.000 + wmiPW = scalar, U08, 106, "%", 1.000, 0.000 + wmiEmpty = scalar, U08, 107, "bits", 1.000, 0.000 + wmiEmptyBit = bits, U08, 107, [0:0] + vvt2Angle = scalar, S08, 108, "deg", 1.00, 0.000 + vvt2Target = scalar, U08, 109, "deg", 1.00, 0.000 + vvt2Duty = scalar, U08, 110, "%", 1.00, 0.000 + outputsStatus0 = bits, U08, 111, [0:0] + outputsStatus1 = bits, U08, 111, [1:1] + outputsStatus2 = bits, U08, 111, [2:2] + outputsStatus3 = bits, U08, 111, [3:3] + outputsStatus4 = bits, U08, 111, [4:4] + outputsStatus5 = bits, U08, 111, [5:5] + outputsStatus6 = bits, U08, 111, [6:6] + outputsStatus7 = bits, U08, 111, [7:7] + fuelTempRaw = scalar, U08, 112, "°C", 1.000, 0.000 + fuelTempCor = scalar, U08, 113, "%", 1.000, 0.000 + advance1 = scalar, S08, 114, "deg", 1.000, 0.000 + advance2 = scalar, S08, 115, "deg", 1.000, 0.000 + sd_status = scalar, U08, 116, "", 1.0, 0.0 + ;sd_filenum = scalar, U16, 117, "", 1, 0 + ;sd_error = scalar, U08, 119, "", 1, 0 + ;sd_phase = scalar, U08, 120, "", 1, 0 + +#if CELSIUS + coolant = { coolantRaw - 40 } ; Temperature readings are offset by 40 to allow for negatives + iat = { iatRaw - 40 } ; Temperature readings are offset by 40 to allow for negatives + fuelTemp = { fuelTempRaw - 40 } ; Temperature readings are offset by 40 to allow for negatives +#else + coolant = { (coolantRaw - 40) * 1.8 + 32 } ;Convert C to F (Offset by 40) + iat = { (iatRaw - 40) * 1.8 + 32 } ;Convert C to F (Offset by 40) + fuelTemp = { (fuelTempRaw - 40) * 1.8 + 32 } ;Convert C to F (Offset by 40) +#endif + time = { timeNow } + seconds = { secl } + + throttle = { tps }, "%" + + revolutionTime = { rpm ? ( 60000.0 / rpm) : 0 } + strokeMultipler = { twoStroke == 1 ? 1 : 2 } + cycleTime = { revolutionTime * strokeMultipler } + pulseLimit = { cycleTime / nSquirts } + + nFuelChannels = { arrayValue( array.boardFuelOutputs, pinLayout ) } + nIgnChannels = { arrayValue( array.boardIgnOutputs, pinLayout ) } + sequentialFuelAvailable = { nCylinders <= nFuelChannels } + sequentialIgnitionAvailable = { nCylinders <= nIgnChannels } + + dutyCycle = { rpm ? ( 100.0*pulseWidth/pulseLimit ) : 0 } + stgDutyCycle = { rpm && stagingEnabled ? ( 100.0*pulseWidth3/pulseLimit ) : 0 } + + boostCutOut = { boostCutFuel || boostCutSpark } + lambda = { afr / stoich } + lambdaTarget = { afrTarget / stoich } + MAPxRPM = { rpm * map } + loopsPerRev = { loopsPerSecond / (rpm / 60) } + req_fuel = { reqFuel } + bat_correction = { battVCorMode ? 100 : batCorrection } ; If battery voltage correction mode is Whole PW, use the battery correction, otherwise 100% + inj_open = { battVCorMode ? ((injOpen * batCorrection) / 100) : injOpen } ; If battery voltage correction mode is Open Time Only, calculate the corrected open time + ase_enrich = { ASECurr } ; If ASE is active then equal the ASE + 100 + map_multiply_amt = { multiplyMAP ? map : 100 } ; If multiply MAP is enabled, use the current MAP value, otherwise 100% + ;nSquirts = { nCylinders / divider } + + ;Manifold pressure in weirdo units + map_bar = { (map - baro) / 101.33 } + map_psi = { (map - baro) * 0.145038 } + map_inhg = { (baro - map) * 0.2953007 } ;in-Hg + map_vacboost = { map < baro ? -map_inhg : map_psi } + + vssMPH = { vss / 1.60934 } + + ;fuelLoadMax = { arrayValue(algorithmLimits , algorithm) } ;Doesn't work, no idea why. + fuelLoadMax = { (algorithm == 0 || algorithm == 2) ? 511 : 100 } + ignLoadMax = { (ignAlgorithm == 0 || ignAlgorithm == 2) ? 511 : 100 } + fuel2LoadMax = { (fuel2Algorithm == 0 || fuel2Algorithm == 2) ? 511 : 100 } + ign2LoadMax = { (spark2Algorithm == 0 || spark2Algorithm == 2) ? 511 : 100 } + + fuelLoad2 = { fuel2Algorithm == 0 ? map : fuel2Algorithm == 1 ? tps : fuel2Algorithm == 2 ? 0 : 0 } + vvtLoad = { (vvtLoadSource == 0) ? map : tps } + + boostTableLimit = { boostType == 0 ? 100 : 511 } ;The maximum value allowed in the boost table. 100 is used for duty cycle, 511 for kpa + + CLIdleDelta = { CLIdleTarget - rpm } + +;------------------------------------------------------------------------------- + +[Datalog] + ; Full datalog. + ; + ; Default user-defined log emulates the full datalog. + ; + ; The entries are saved in the datalog file in the order in + ; which they appear in the list below. + ; + ; Channel - Case sensitive name of output channel to be logged. + ; Label - String written to header line of log. Be careful + ; about changing these, as programs like MSLVV and + ; MSTweak key off specific column names. + ; Type - Data type of output, converted before writing. + ; Format - C-style output format of data. + ; + ; Channel Label Type Format + ; -------------- ---------- ----- ------ + entry = time, "Time", float, "%.3f" + entry = secl, "SecL", int, "%d" + entry = rpm, "RPM", int, "%d" + entry = map, "MAP", int, "%d" + entry = MAPxRPM, "MAPxRPM", int, "%d" + entry = tps, "TPS", int, "%d" + entry = afr, "AFR", float, "%.3f" + entry = lambda, "Lambda", float, "%.3f" + entry = iat, "IAT", int, "%d" + entry = coolant, "CLT", int, "%d" + entry = engine, "Engine", int, "%d" + entry = DFCOOn, "DFCO", int, "%d" + entry = egoCorrection, "Gego", int, "%d" + entry = airCorrection, "Gair", int, "%d" + entry = bat_correction, "Gbattery", int, "%d" + entry = warmupEnrich, "Gwarm", int, "%d" + entry = baroCorrection, "Gbaro", int, "%d" + entry = gammaEnrich, "Gammae", int, "%d" + entry = accelEnrich, "Accel Enrich", int, "%d" + entry = veCurr, "Current VE", int, "%d" + entry = VE1, "VE1", int, "%d" + entry = VE2, "VE2", int, "%d" + entry = pulseWidth, "PW", float, "%.3f" + entry = afrTarget, "AFR Target", float, "%.3f" + entry = lambdaTarget, "Lambda Target", float, "%.3f" + entry = pulseWidth, "PW2", float, "%.3f" + entry = dutyCycle, "DutyCycle1", float, "%.1f" + entry = dutyCycle, "DutyCycle2", float, "%.1f" + entry = TPSdot, "TPS DOT", int, "%d" + entry = advance, "Advance", int, "%d" + entry = dwell, "Dwell", float, "%.1f" + entry = batteryVoltage, "Battery V", float, "%.1f" + entry = rpmDOT, "rpm/s", int, "%d" + entry = flex, "Eth %", int, "%d", { flexEnabled } + entry = flexFuelCor, "GflexFuel", int, "%d", { flexEnabled } + entry = fuelTemp, "Fuel Temp", int, "%d", { flexEnabled } + entry = fuelTempCor, "GfuelTemp", int, "%d", { flexEnabled } + entry = errorNum, "Error #", int, "%d", { errorNum } + entry = currentError, "Error ID", int, "%d", { errorNum } + entry = map_psi, "Boost PSI", float, "%.1f" + entry = boostTarget, "Boost Target", int, "%d", { boostEnabled } + entry = boostDuty, "Boost Duty", int, "%d", { boostEnabled } + entry = boostCutOut , "Boost cut", int, "%d" + entry = launchHard , "Hard Launch", int, "%d" + entry = hardLimitOn , "Hard Limiter", int, "%d" + entry = idleControlOn, "Idle Control", int, "%d" + entry = idleLoad, "IAC value", int, "%d" + entry = CLIdleTarget, "Idle Target RPM", int, "%%d", { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || idleAdvEnabled >= 1 } ;Only show for closed loop idle modes and if idle advance is enabled + entry = CLIdleDelta, "Idle RPM Delta", int, "%d", { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || idleAdvEnabled >= 1 } ;Only show for closed loop idle modes and if idle advance is enabled + entry = baro, "Baro Pressure", int, "%d" + entry = nitrousOn, "Nitrous", int, "%d", { n2o_enable > 0 } + entry = syncLossCounter, "Sync Loss #", int, "%d" + entry = vvt1Angle, "VVT Angle", int, "%d", { vvtMode == 2 } ;;Only show when using close loop vvt + entry = vvt1Target, "VVT Target Angle", int, "%d", { vvtMode == 2 } ;;Only show when using close loop vvt + entry = vvt1Duty, "VVT Duty", int, "%d", { vvtEnabled > 0 } + entry = vss, "Wheel Speed (kph)",int, "%d", { vssMode > 1 } + entry = vssMPH, "Wheel Speed (mph)",int, "%d", { vssMode > 1 } + entry = gear, "Gear", int, "%d", { vssMode > 1 } + entry = fuelPressure, "Fuel Pressure", int, "%d", { fuelPressureEnable > 0 } + entry = oilPressure, "Oil Pressure", int, "%d", { oilPressureEnable > 0 } + entry = vvt2Angle, "VVT Angle", int, "%d", { vvtMode == 2 } ;;Only show when using close loop vvt + entry = vvt2Target, "VVT Target Angle",int, "%d", { vvtMode == 2 } ;;Only show when using close loop vvt + entry = vvt2Duty, "VVT Duty", int, "%d", { vvtEnabled > 0 } + + entry = auxin_gauge0, { stringValue(AUXin00Alias) }, int, "%d", {(caninput_sel0b != 0)} + entry = auxin_gauge1, { stringValue(AUXin01Alias) }, int, "%d", { (caninput_sel1b != 0)} + entry = auxin_gauge2, { stringValue(AUXin02Alias) }, int, "%d", { (caninput_sel2b != 0)} + entry = auxin_gauge3, { stringValue(AUXin03Alias) }, int, "%d", { (caninput_sel3b != 0)} + entry = auxin_gauge4, { stringValue(AUXin04Alias) }, int, "%d", { (caninput_sel4b != 0)} + entry = auxin_gauge5, { stringValue(AUXin05Alias) }, int, "%d", { (caninput_sel5b != 0)} + entry = auxin_gauge6, { stringValue(AUXin06Alias) }, int, "%d", { (caninput_sel6b != 0)} + entry = auxin_gauge7, { stringValue(AUXin07Alias) }, int, "%d", { (caninput_sel7b != 0)} + entry = auxin_gauge8, { stringValue(AUXin08Alias) }, int, "%d", { (caninput_sel8b != 0)} + entry = auxin_gauge9, { stringValue(AUXin09Alias) }, int, "%d", { (caninput_sel9b != 0)} + entry = auxin_gauge10, { stringValue(AUXin10Alias) }, int, "%d", { (caninput_sel10b != 0)} + entry = auxin_gauge11, { stringValue(AUXin11Alias) }, int, "%d", { (caninput_sel11b != 0)} + entry = auxin_gauge12, { stringValue(AUXin12Alias) }, int, "%d", { (caninput_sel12b != 0)} + entry = auxin_gauge13, { stringValue(AUXin13Alias) }, int, "%d", { (caninput_sel13b != 0)} + entry = auxin_gauge14, { stringValue(AUXin14Alias) }, int, "%d", { (caninput_sel14b != 0)} + entry = auxin_gauge15, { stringValue(AUXin15Alias) }, int, "%d", { (caninput_sel15b != 0)} + entry = outputsStatus0, { stringValue(prgm_out00Alias)}, int, "%d", { (outputPin[0] != 0)} + entry = outputsStatus1, { stringValue(prgm_out01Alias)}, int, "%d", { (outputPin[1] != 0)} + entry = outputsStatus2, { stringValue(prgm_out02Alias)}, int, "%d", { (outputPin[2] != 0)} + entry = outputsStatus3, { stringValue(prgm_out03Alias)}, int, "%d", { (outputPin[3] != 0)} + entry = outputsStatus4, { stringValue(prgm_out04Alias)}, int, "%d", { (outputPin[4] != 0)} + entry = outputsStatus5, { stringValue(prgm_out05Alias)}, int, "%d", { (outputPin[5] != 0)} + entry = outputsStatus6, { stringValue(prgm_out06Alias)}, int, "%d", { (outputPin[6] != 0)} + entry = outputsStatus7, { stringValue(prgm_out07Alias)}, int, "%d", { (outputPin[7] != 0)} + + entry = advance1, "Advance 1", int, "%d" + entry = advance2, "Advance 2", int, "%d" + +[LoggerDefinition] + ; valid logger types: composite, tooth, trigger, csv + + ;loggerDef = uniqueName, Display Name, type + loggerDef = tooth, "Tooth Logger", tooth + ;dataReadCommand = "r\\x00\\xf4\\x00\\x00\\x04\\x00" ; standard TS command format + startCommand = "H" + stopCommand = "h" + ;dataReadCommand = "T" ; Basic TS command format + dataReadCommand = "T\$tsCanId\x01\xFC\x00\x01\xFC" ; Basic TS command format. Note that this is shared with the composite logger. Firmware detects which log is currently running + dataReadTimeout = 5000 ; time in ms + continuousRead = true + dataReadyCondition = { toothLog1Ready == 1 } + dataLength = 508; in bytes, including headers, footers and data (not used). 4 bytes * 127 entries + ;dataLength = 128 ; in bytes, including headers, footers and data (not used) + + ;recordDef = headerLen. footerLen, recordLen + recordDef = 0, 0, 4; in bytes, the recordLen is for each record, currently limited to 4 bytes + + ;recordField = Name, HeaderName, startBit, bitCount, scale, units, updateCondition + recordField = toothTime, "ToothTime", 0, 32, 1.0, "uS" + + loggerDef = compositeLogger, "Composite Logger", composite + startCommand = "J" + stopCommand = "j" + ;dataReadCommand = "T" ; Basic TS command format. Note that this is shared with the composite logger. Firmware detects which log is currently running + dataReadCommand = "T\$tsCanId\x00\x00\x00\x02\x7B" ; Basic TS command format. Note that this is shared with the composite logger. Firmware detects which log is currently running + dataReadTimeout = 50000 ; time in ms + dataReadyCondition = { toothLog1Ready == 1 } + continuousRead = true + dataLength = 635 ; in bytes, including headers, footers and data (not used). 5 bytes * 127 fields + + ;recordDef = headerLen. footerLen, recordLen + recordDef = 0, 0, 5; in bytes, the recordLen is for each record, currently limited to 4 bytes + + ;recordField = Name, HeaderName, startBit, bitCount, scale, units, updateCondition + recordField = priLevel, "PriLevel", 0, 1, 1.0, "Flag" + recordField = secLevel, "SecLevel", 1, 1, 1.0, "Flag" + recordField = trigger, "Trigger", 2, 1, 1.0, "Flag" + recordField = sync, "Sync", 3, 1, 1.0, "Flag" + recordField = refTime, "RefTime", 8, 32, 0.001, "ms" + + ; hidden calcField serves as intermediate variable + calcField = maxTime, "MaxTime", "ms", { maxValue(refTime) } + + calcField = toothTime, "ToothTime", "ms", { refTime - pastValue(refTime, 1) } + ;recordField = time, "Time", 24, 16, 1.0, "ms" + calcField = time, "Time", "ms", { refTime } + +[ReferenceTables] + referenceTable = std_ms2gentherm, "Calibrate Thermistor Tables." + topicHelp = "https://wiki.speeduino.com/en/configuration/Sensor_Calibration" + tableIdentifier = 000, "Coolant Temperature Sensor", 001, "Air Temperature Sensor", 003, "Custom#1 Temperature Sensor" + ; tableLimits (optional) = intentifier, min, max, defaultVal + ; will set the default value if value is outside the min and max limits. + tableLimits = 000, -40, 350, 180 ;Coolant + tableLimits = 001, -40, 350, 70 ;IAT + ;Table 002 is AFR + tableLimits = 003, -40, 400, 70 ; Not currently used + + adcCount = 32 ; length of the table + bytesPerAdc = 2 ; using shorts + scale = 10 ; scale by 10 before sending to controller + ;tableGenerator = Generator type, Label + tableGenerator = thermGenerator, "Thermistor Measurements" + tableGenerator = fileBrowseGenerator, "Browse for Inc File" + ; thermOption = name, resistor bias, tempPoint1(C), resPoint1, tempPoint2, resPoint2, tempPoint3, resPoint3 + thermOption = "GM", 2490, -40, 100700, 30, 2238, 99, 177 + thermOption = "Chrysler 85 up", 2490, 5.5, 24500, 30.5, 8100, 88.3, 850 + thermOption = "Ford", 2490, 0, 94000, 50, 11000, 98, 2370 + thermOption = "Saab (Bosch)", 2490, 0, 5800, 80, 320, 100, 180 + thermOption = "Mazda", 50000, -40, 2022088, 21, 68273, 99, 3715 + thermOption = "Mitsu", 2490, -40, 100490, 30, 1875, 99, 125 + thermOption = "Toyota", 2490, -40, 101890, 30, 2268, 99, 156 + thermOption = "RX-7_CLT(S4 & S5)", 2490, -20, 16200, 20, 2500, 80, 300 + thermOption = "RX-7_MAT", 42200, 20, 41500, 50, 11850, 85, 3500 + thermOption = "VW L-Jet Cylinder Head Temp Sensor II", 1100, -13.888, 11600,53.888, 703, 95.555, 207 + thermOption = "RX-7_AFM(S5 in AFM)", 2490, -20, 16200, 20, 2500, 80, 300 + thermOption = "BMW E30 325i", 2490, -10, 9300, 20, 2500, 80, 335 + solution = "3 Point Therm Generator", thermGenerator + solution = "Custom inc File", fileBrowseGenerator + + referenceTable = std_ms2geno2, "Calibrate AFR Table..." + topicHelp = "https://wiki.speeduino.com/en/configuration/Sensor_Calibration" + tableIdentifier = 002, "AFR Table" + adcCount = 1024 ; length of the table + bytesPerAdc = 1 ; using bytes + scale = 10 ; scale by 10 before sending to controller + ;tableGenerator = Generator Type, Label, xUnits, yUnits, xLow, xHi, yLow, yHi + tableGenerator = linearGenerator, "Custom Linear WB", "Volts","AFR", 1, 4, 9.7, 18.7 + tableGenerator = fileBrowseGenerator, "Browse for Inc File" + + solutionsLabel = "EGO Sensor" + solution = " ", { } ; blank row in case no match found. Must reman at top. + solution = "Narrowband", { table(adcValue*5/1023 , "nb.inc") } ; + solution = "14Point7", { 10.0001 + ( adcValue * 0.0097752 )} ; 10.0001 causes 1 adc to round different for unique match. + solution = "AEM Linear AEM-30-42xx", { 9.72 + (adcValue * 0.0096665) } ; 9.72:1 - 19.60:1 + solution = "AEM Linear (30-2310 & 30-4900)", { 7.3125 + (adcValue * 0.0116080) } ; 7.31:1 - 19.18:1 + solution = "Autometer 0V=10:1, 4V=16:1", { 10 + (adcValue * 0.0073313783) } + solution = "Ballenger AFR500 0V=9:1, 5V=16:1", { 9 + (adcValue * 0.00684262) } + solution = "Ballenger AFR500 0V=6:1, 5V=20:1", { 6 + (adcValue * 0.01368524) } + solution = "Daytona TwinTec", { 10.01 + (adcValue * 0.0097752) } + solution = "DIY-EFI TinyWB", { 10.0001 + ( adcValue * 0.0097752 )} ; Same as 14point7 units + solution = "DynoJet Wideband Commander", { adcValue * 0.00784325 + 10 } + solution = "F.A.S.T. Wideband", { adcValue * 0.01357317 + 9.6 } ; 838.8608 + solution = "FJO WB", { table(adcValue*5/1023 , "fjoWB.inc" ) } + solution = "Fueltech WB-02 Nano Anhydr. Eth.", { 5.11043 + (adcValue * 0.997826) } + solution = "Fueltech WB-02 Nano Hydr. Ethan.", { 4.74685 + (adcValue * 0.927739) } + solution = "Fueltech WB-02 Nano Gasoline", { 8.37391 + (adcValue * 0.00796111) } + solution = "Fueltech WB-02 Nano Methanol", { 3.65652 + (adcValue * 0.00350289) } + solution = "Innovate LC-1 / LC-2 Default", { 7.35 + (adcValue * 0.01470186 )} + solution = "Innovate / PLX 0.0-5.0 10:1-20:1", { 10 + (adcValue * 0.0097752)} + solution = "Innovate 1.0-2.0", { adcValue * 0.049025} + solution = "LambdaBoy", { table(adcValue*5/1023 , "lambdaBoy.inc" ) } + solution = "NGK Powerdex", { 9 + ( adcValue * 0.0068359375 ) } + solution = "ODG Wideband - Faixa 1", { 8.3470 + (adcValue * 0.00795792) } + solution = "ODG Wideband - Faixa 2", { 9.1447 + (adcValue * 0.01013714) } + solution = "TechEdge DIY Non-Linear", { table(adcValue*5/1023 , "TechEdge_DIYwbo2.inc") } + solution = "TechEdge Linear", { adcValue * 0.0097752 + 9 } + solution = "Zeitronix - Non Linear", { table(adcValue*5/1023 , "zeitronix.inc") } + solution = "Zeitronix - Linear Default", { 9.6 + (adcValue * 0.0097752) } + + solution = "Custom Linear WB", linearGenerator + solution = "Custom inc File", fileBrowseGenerator + +[Tools] + ;addTool = toolName, PanelName + addTool = veTableGenerator, "VE Table Generator", veTable1Tbl + addTool = afrTableGenerator, "AFR Table Generator", afrTable1Tbl + + +[VeAnalyze] + ; tableName, lambdaTargetTableName, lambdaChannel, egoCorrectionChannel, activeCondition +#if LAMBDA + veAnalyzeMap = veTable1Tbl, afrTable1Tbl, lambda, egoCorrection +#else + veAnalyzeMap = veTable1Tbl, afrTable1Tbl, afr, egoCorrection +#endif + lambdaTargetTables = afrTable1Tbl, afrTSCustom + filter = std_xAxisMin ; Auto build with appropriate axis channels + ;filter = minRPMFilter, "Minimum RPM", rpm, < , 500, , true + filter = std_xAxisMax ; Auto build with appropriate axis channels + filter = std_yAxisMin ; Auto build with appropriate axis channels + filter = std_yAxisMax ; Auto build with appropriate axis channels + filter = std_DeadLambda ; Auto build + +#if CELSIUS + filter = minCltFilter, "Minimum CLT", coolant, < , 71, , true +#else + filter = minCltFilter, "Minimum CLT", coolant, < , 160, , true +#endif + filter = accelFilter, "Accel Flag" , engine, & , 16, , false + filter = aseFilter, "ASE Flag" , engine, & , 4, , false + filter = overrunFilter, "Overrun" , pulseWidth, = , 0, , false + filter = std_Custom ; Standard Custom Expression Filter. + + +[WueAnalyze] +; wueCurveName, afrTempCompensationCurve, lambdaTargetTableName, lambdaChannel, coolantTempChannel, wueChannel, egoCorrectionChannel, activeCondition +#if LAMBDA + wueAnalyzeMap = warmup_analyzer_curve, warmup_afr_curve, afrTable1Tbl, lambda, coolant, warmupEnrich, egoCorrection +#else + wueAnalyzeMap = warmup_analyzer_curve, warmup_afr_curve, afrTable1Tbl, afr, coolant, warmupEnrich, egoCorrection +#endif + lambdaTargetTables = afrTable1Tbl, afrTSCustom + filter = std_DeadLambda ; Auto build + filter = accelFilter, "Accel Flag", engine, &, 16, false + filter = aseFilter, "ASE Flag", engine, &, 4, false + filter = overrunFilter, "Overrun", pulseWidth, =, 0, false + filter = maxTPS, "Max TPS", throttle, >, 15, true + filter = minRPM, "Min RPM", rpm, <, 300, true + filter = std_Custom ; Standard Custom Expression Filter. diff --git a/public/tunes/202103.json b/public/tunes/202103.json new file mode 100644 index 0000000..e21a9ce --- /dev/null +++ b/public/tunes/202103.json @@ -0,0 +1 @@ +{"megaTune":{"signature":"speeduino 202103","MTversion":2.25,"queryCommand":"Q","versionInfo":"S"},"tunerStudio":{"iniSpecVersion":3.64},"defines":{"loadSourceNames":["MAP","TPS","IMAP/EMAP","INVALID","INVALID","INVALID","INVALID","INVALID"],"loadSourceUnits":["kPa","% TPS","%","INVALID","INVALID","INVALID","INVALID","INVALID"],"all_IO_Pins":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"],"IO_Pins_no_def":["INVALID","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"],"bitwise_def":["Disabled","AND","OR","XOR"],"comparator_def":["==","!=",">",">=","<","<=","INVALID","INVALID"],"comp_IO_Pins":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"],"fullStatus_def_1":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT"],"fullStatus_def_2":["INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14"],"fullStatus_def_3":["INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction"],"fullStatus_def_4":["Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"],"fullStatus_def":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"],"trigger_missingTooth":["0"],"trigger_BasicDistributor":["1"],"trigger_DualWheel":["2"],"trigger_GM7X":["3"],"trigger_4G63":["4"],"trigger_24X":["5"],"trigger_Jeep2000":["6"],"trigger_Audi135":["7"],"trigger_HondaD17":["8"],"trigger_Miata9905":["9"],"trigger_MazdaAU":["10"],"trigger_non360":["11"],"trigger_Nissan360":["12"],"trigger_Subaru67":["13"],"trigger_Daihatsu":["14"],"trigger_Harley":["15"],"trigger_ThirtySixMinus222":["16"],"trigger_ThirtySixMinus21":["17"],"trigger_420a":["18"],"trigger_Webber":["19"],"trigger_FordST170":["20"],"PIN_OUT10inv":["INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"],"PIN_OUT16inv":["INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"],"PIN_16inv":["INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"],"ANALOG_PIN":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"],"DIGITAL_PIN":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"],"ANALOG_DIG_PIN_LIST":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"],"tsCanId_list":["CAN ID 0","CAN ID 1","CAN ID 2","CAN ID 3","CAN ID 4","CAN ID 5","CAN ID 6","CAN ID 7","CAN ID 8","CAN ID 9","CAN ID 10","CAN ID 11","CAN ID 12","CAN ID 13","CAN ID 14","INVALID"],"CAN_ADDRESS_HEX_inv255":["INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"],"CAN_ADDRESS_HEX_00XX":["INVALID","0x001","0x002","0x003","0x004","0x005","0x006","0x007","0x008","0x009","0x00A","0x00B","0x00C","0x00D","0x00E","0x00F","0x010","0x011","0x012","0x013","0x014","0x015","0x016","0x017","0x018","0x019","0x01A","0x01B","0x01C","0x01D","0x01E","0x01F","0x020","0x021","0x022","0x023","0x024","0x025","0x026","0x027","0x028","0x029","0x02A","0x02B","0x02C","0x02D","0x02E","0x02F","0x030","0x031","0x032","0x033","0x034","0x035","0x036","0x037","0x038","0x039","0x03A","0x03B","0x03C","0x03D","0x03E","0x03F","0x040","0x041","0x042","0x043","0x044","0x045","0x046","0x047","0x048","0x049","0x04A","0x04B","0x04C","0x04D","0x04E","0x04F","0x050","0x051","0x052","0x053","0x054","0x055","0x056","0x057","0x058","0x059","0x05A","0x05B","0x05C","0x05D","0x05E","0x05F","0x060","0x061","0x062","0x063","0x064","0x065","0x066","0x067","0x068","0x069","0x06A","0x06B","0x06C","0x06D","0x06E","0x06F","0x070","0x071","0x072","0x073","0x074","0x075","0x076","0x077","0x078","0x079","0x07A","0x07B","0x07C","0x07D","0x07E","0x07F","0x080","0x081","0x082","0x083","0x084","0x085","0x086","0x087","0x088","0x089","0x08A","0x08B","0x08C","0x08D","0x08E","0x08F","0x090","0x091","0x092","0x093","0x094","0x095","0x096","0x097","0x098","0x099","0x09A","0x09B","0x09C","0x09D","0x09E","0x09F","0x0A0","0x0A1","0x0A2","0x0A3","0x0A4","0x0A5","0x0A6","0x0A7","0x0A8","0x0A9","0x0AA","0x0AB","0x0AC","0x0AD","0x0AE","0x0AF","0x0B0","0x0B1","0x0B2","0x0B3","0x0B4","0x0B5","0x0B6","0x0B7","0x0B8","0x0B9","0x0BA","0x0BB","0x0BC","0x0BD","0x0BE","0x0BF","0x0C0","0x0C1","0x0C2","0x0C3","0x0C4","0x0C5","0x0C6","0x0C7","0x0C8","0x0C9","0x0CA","0x0CB","0x0CC","0x0CD","0x0CE","0x0CF","0x0D0","0x0D1","0x0D2","0x0D3","0x0D4","0x0D5","0x0D6","0x0D7","0x0D8","0x0D9","0x0DA","0x0DB","0x0DC","0x0DD","0x0DE","0x0DF","0x0E0","0x0E1","0x0E2","0x0E3","0x0E4","0x0E5","0x0E6","0x0E7","0x0E8","0x0E9","0x0EA","0x0EB","0x0EC","0x0ED","0x0EE","0x0EF","0x0F0","0x0F1","0x0F2","0x0F3","0x0F4","0x0F5","0x0F6","0x0F7","0x0F8","0x0F9","0x0FA","0x0FB","0x0FC","0x0FD","0x0FE","0x0FF"],"CAN_ADDRESS_HEX_01XX":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF"],"CAN_ADDRESS_HEX_02XX":["0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF"],"CAN_ADDRESS_HEX_03XX":["0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF"],"CAN_ADDRESS_HEX_04XX":["0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF"],"CAN_ADDRESS_HEX_05XX":["0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF"],"CAN_ADDRESS_HEX_06XX":["0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF"],"CAN_ADDRESS_HEX_07XX":["0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF"],"CAN_ADDRESS_HEX":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"pcVariables":{"tsCanId":{"type":"bits","size":"U08","address":[0,3],"values":["CAN ID 0","CAN ID 1","CAN ID 2","CAN ID 3","CAN ID 4","CAN ID 5","CAN ID 6","CAN ID 7","CAN ID 8","CAN ID 9","CAN ID 10","CAN ID 11","CAN ID 12","CAN ID 13","CAN ID 14","INVALID"]},"rpmhigh":{"type":"scalar","size":"U16","units":"rpm","scale":1,"transform":0,"min":0,"max":30000,"digits":0},"rpmwarn":{"type":"scalar","size":"U16","units":"rpm","scale":1,"transform":0,"min":0,"max":30000,"digits":0},"rpmdang":{"type":"scalar","size":"U16","units":"rpm","scale":1,"transform":0,"min":0,"max":30000,"digits":0},"maphigh":{"type":"scalar","size":"U16","units":"kPa","scale":1,"transform":0,"min":0,"max":30000,"digits":0},"mapwarn":{"type":"scalar","size":"U16","units":"kPa","scale":1,"transform":0,"min":0,"max":30000,"digits":0},"mapdang":{"type":"scalar","size":"U16","units":"kPa","scale":1,"transform":0,"min":0,"max":30000,"digits":0},"wueAFR":{"type":"array","size":"S16","shape":{"columns":10,"rows":0},"units":"AFR","scale":0.1,"transform":0,"min":-4,"max":4,"digits":1},"wueRecommended":{"type":"array","size":"U08","shape":{"columns":10,"rows":0},"units":"%","scale":1,"transform":0,"min":100,"max":255,"digits":0},"idleUnits":{"type":"bits","size":"U08","address":[0,2],"values":["None","On/Off","Duty Cycle","Duty Cycle","Steps","Steps"]},"boardFuelOutputs":{"type":"array","size":"U08","shape":{"columns":128,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"boardIgnOutputs":{"type":"array","size":"U08","shape":{"columns":128,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"boardHasRTC":{"type":"array","size":"U08","shape":{"columns":128,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"algorithmNames":{"type":"bits","size":"U08","address":[0,2],"values":["MAP","TPS","IMAP/EMAP","INVALID","INVALID","INVALID","INVALID","INVALID"]},"algorithmUnits":{"type":"bits","size":"U08","address":[0,2],"values":["kPa","% TPS","%","% TPS","INVALID","INVALID","INVALID","INVALID"]},"algorithmLimits":{"type":"array","size":"U16","shape":{"columns":8,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":511,"digits":0},"fuel2SwitchUnits":{"type":"bits","size":"U08","address":[0,2],"values":["rpm","kPa","% TPS","%","% TPS","INVALID","INVALID","INVALID"]},"boostTableLabels":{"type":"bits","size":"U08","address":[0,1],"values":["Duty Cycle %","kPa"]},"prgm_out_selection":{"type":"bits","size":"U08","address":[0,2],"values":["1","2","3","4","5","6","7","8"]},"fuelLoadMax":{"type":"scalar","size":"U08","units":"","scale":1,"transform":0,"min":0,"max":511,"digits":0},"ignLoadMax":{"type":"scalar","size":"U08","units":"","scale":1,"transform":0,"min":0,"max":511,"digits":0},"fuel2LoadMax":{"type":"scalar","size":"U08","units":"","scale":1,"transform":0,"min":0,"max":511,"digits":0},"ign2LoadMax":{"type":"scalar","size":"U08","units":"","scale":1,"transform":0,"min":0,"max":511,"digits":0},"AUXin00Alias":{"type":"string","size":"ASCII","length":20},"AUXin01Alias":{"type":"string","size":"ASCII","length":20},"AUXin02Alias":{"type":"string","size":"ASCII","length":20},"AUXin03Alias":{"type":"string","size":"ASCII","length":20},"AUXin04Alias":{"type":"string","size":"ASCII","length":20},"AUXin05Alias":{"type":"string","size":"ASCII","length":20},"AUXin06Alias":{"type":"string","size":"ASCII","length":20},"AUXin07Alias":{"type":"string","size":"ASCII","length":20},"AUXin08Alias":{"type":"string","size":"ASCII","length":20},"AUXin09Alias":{"type":"string","size":"ASCII","length":20},"AUXin10Alias":{"type":"string","size":"ASCII","length":20},"AUXin11Alias":{"type":"string","size":"ASCII","length":20},"AUXin12Alias":{"type":"string","size":"ASCII","length":20},"AUXin13Alias":{"type":"string","size":"ASCII","length":20},"AUXin14Alias":{"type":"string","size":"ASCII","length":20},"AUXin15Alias":{"type":"string","size":"ASCII","length":20},"prgm_out00Alias":{"type":"string","size":"ASCII","length":20},"prgm_out01Alias":{"type":"string","size":"ASCII","length":20},"prgm_out02Alias":{"type":"string","size":"ASCII","length":20},"prgm_out03Alias":{"type":"string","size":"ASCII","length":20},"prgm_out04Alias":{"type":"string","size":"ASCII","length":20},"prgm_out05Alias":{"type":"string","size":"ASCII","length":20},"prgm_out06Alias":{"type":"string","size":"ASCII","length":20},"prgm_out07Alias":{"type":"string","size":"ASCII","length":20}},"constants":{"pages":[{"number":1,"size":0,"data":{"aseTaperTime":{"type":"scalar","size":"U08","offset":0,"units":"S","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"aeColdPct":{"type":"scalar","size":"U08","offset":1,"units":"%","scale":1,"transform":0,"min":100,"max":255,"digits":0},"aeColdTaperMin":{"type":"scalar","size":"U08","offset":2,"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"aeMode":{"type":"bits","size":"U08","offset":3,"address":[0,1],"values":["TPS","MAP","INVALID","INVALID"]},"battVCorMode":{"type":"bits","size":"U08","offset":3,"address":[2,2],"values":["Whole PW","Open Time only"]},"SoftLimitMode":{"type":"bits","size":"U08","offset":3,"address":[3,3],"values":["Fixed","Relative"]},"useTachoSweep":{"type":"bits","size":"U08","offset":3,"address":[4,4],"values":["Off","On"]},"aeApplyMode":{"type":"bits","size":"U08","offset":3,"address":[5,5],"values":["PW Multiplier","PW Adder"]},"multiplyMAP":{"type":"bits","size":"U08","offset":3,"address":[6,7],"values":["Off","Baro","Fixed","INVALID"]},"wueRates":{"type":"array","size":"U08","offset":4,"shape":{"columns":10,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"crankingPct":{"type":"scalar","size":"U08","offset":14,"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"pinLayout":{"type":"bits","size":"U08","offset":15,"address":[0,7],"values":["INVALID","Speeduino v0.2","Speeduino v0.3","Speeduino v0.4","INVALID","INVALID","01-05 MX5 PNP","INVALID","96-97 MX5 PNP","NA6 MX5 PNP","Turtana PCB","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","Plazomat I/O 0.1","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","Daz V6 Shield 0.1","BMW PnP","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","NO2C","UA4C","INVALID","INVALID","INVALID","DIY-EFI CORE4 v1.0","INVALID","INVALID","INVALID","INVALID","dvjcodec Teensy RevA","dvjcodec Teensy RevB","INVALID","JUICEBOX","INVALID","Drop Bear","INVALID","INVALID","INVALID","INVALID","Black STM32F407VET6 V0.1","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"tachoPin":{"type":"bits","size":"U08","offset":16,"address":[0,5],"values":["Board Default","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"tachoDiv":{"type":"bits","size":"U08","offset":16,"address":[6,7],"values":["Normal","Half","INVALID","INVALID"]},"tachoDuration":{"type":"scalar","size":"U08","offset":17,"units":"ms","scale":1,"transform":0,"min":1,"max":6,"digits":0},"maeThresh":{"type":"scalar","size":"U08","offset":18,"units":"kPa/s","scale":1,"transform":0,"min":0,"max":255,"digits":0},"taeThresh":{"type":"scalar","size":"U08","offset":19,"units":"%/s","scale":1,"transform":0,"min":0,"max":255,"digits":0},"aeTime":{"type":"scalar","size":"U08","offset":20,"units":"ms","scale":10,"transform":0,"min":0,"max":2550,"digits":0},"display":{"type":"bits","size":"U08","offset":21,"address":[0,2],"values":["Unused","Adafruit 128x32","Generic 128x32","Adafruit 128x64","Generic 128x64","INVALID","INVALID","INVALID"]},"display1":{"type":"bits","size":"U08","offset":21,"address":[3,5],"values":["RPM","PW","Advance","VE","GammaE","TPS","IAT","CLT"]},"display2":{"type":"bits","size":"U08","offset":21,"address":[6,7],"values":["O2","Voltage","CPU","Mem"]},"display3":{"type":"bits","size":"U08","offset":22,"address":[0,2],"values":["RPM","PW","Advance","VE","GammaE","TPS","IAT","CLT"]},"display4":{"type":"bits","size":"U08","offset":22,"address":[3,4],"values":["O2","Voltage","CPU","Mem"]},"display5":{"type":"bits","size":"U08","offset":22,"address":[5,7],"values":["RPM","PW","Advance","VE","GammaE","TPS","IAT","CLT"]},"displayB1":{"type":"bits","size":"U08","offset":23,"address":[0,3],"values":["RPM","PW","Advance","VE","GammaE","TPS","IAT","CLT"]},"displayB2":{"type":"bits","size":"U08","offset":23,"address":[4,7],"values":["RPM","PW","Advance","VE","GammaE","TPS","IAT","CLT"]},"reqFuel":{"type":"scalar","size":"U08","offset":24,"units":"ms","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"divider":{"type":"scalar","size":"U08","offset":25,"units":"","scale":1,"transform":0,"min":0,"max":0,"digits":null},"alternate":{"type":"bits","size":"U08","offset":26,"address":[0,0],"values":["Simultaneous","Alternating"]},"multiplyMAP1":{"type":"bits","size":"U08","offset":26,"address":[1,1],"values":["No","Yes"]},"includeAFR":{"type":"bits","size":"U08","offset":26,"address":[2,2],"values":["No","Yes"]},"hardCutType":{"type":"bits","size":"U08","offset":26,"address":[3,3],"values":["Full","Rolling"]},"ignAlgorithm":{"type":"bits","size":"U08","offset":26,"address":[4,6],"values":["MAP","TPS","IMAP/EMAP","INVALID","INVALID","INVALID","INVALID","INVALID"]},"indInjAng":{"type":"bits","size":"U08","offset":26,"address":[7,7],"values":["Disabled","Enabled"]},"injOpen":{"type":"scalar","size":"U08","offset":27,"units":"ms","scale":0.1,"transform":0,"min":0.1,"max":25.5,"digits":1},"injAng":{"type":"array","size":"U16","offset":28,"shape":{"columns":4,"rows":0},"units":"deg","scale":1,"transform":0,"min":0,"max":720,"digits":0},"mapSample":{"type":"bits","size":"U08","offset":36,"address":[0,1],"values":["Instantaneous","Cycle Average","Cycle Minimum","Event Average"]},"twoStroke":{"type":"bits","size":"U08","offset":36,"address":[2,2],"values":["Four-stroke","Two-stroke"]},"injType":{"type":"bits","size":"U08","offset":36,"address":[3,3],"values":["Port","Throttle Body"]},"nCylinders":{"type":"bits","size":"U08","offset":36,"address":[4,7],"values":["INVALID","1","2","3","4","5","6","INVALID","8","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"algorithm":{"type":"bits","size":"U08","offset":37,"address":[0,2],"values":["MAP","TPS","IMAP/EMAP","INVALID","INVALID","INVALID","INVALID","INVALID"]},"fixAngEnable":{"type":"bits","size":"U08","offset":37,"address":[3,3],"values":["Off","On"]},"nInjectors":{"type":"bits","size":"U08","offset":37,"address":[4,7],"values":["INVALID","1","2","3","4","5","6","INVALID","8","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"engineType":{"type":"bits","size":"U08","offset":38,"address":[0,0],"values":["Even fire","Odd fire"]},"flexEnabled":{"type":"bits","size":"U08","offset":38,"address":[1,1],"values":["Off","On"]},"legacyMAP":{"type":"bits","size":"U08","offset":38,"address":[2,2],"values":["No","Yes"]},"baroCorr":{"type":"bits","size":"U08","offset":38,"address":[3,3],"values":["Off","On"]},"injLayout":{"type":"bits","size":"U08","offset":38,"address":[4,5],"values":["Paired","Semi-Sequential","INVALID","Sequential"]},"perToothIgn":{"type":"bits","size":"U08","offset":38,"address":[6,6],"values":["No","Yes"]},"dfcoEnabled":{"type":"bits","size":"U08","offset":38,"address":[7,7],"values":["Off","On"]},"aeColdTaperMax":{"type":"scalar","size":"U08","offset":39,"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"dutyLim":{"type":"scalar","size":"U08","offset":40,"units":"%","scale":1,"transform":0,"min":0,"max":95,"digits":0},"flexFreqLow":{"type":"scalar","size":"U08","offset":41,"units":"Hz","scale":1,"transform":0,"min":0,"max":250,"digits":0},"flexFreqHigh":{"type":"scalar","size":"U08","offset":42,"units":"Hz","scale":1,"transform":0,"min":0,"max":250,"digits":0},"boostMaxDuty":{"type":"scalar","size":"U08","offset":43,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"tpsMin":{"type":"scalar","size":"U08","offset":44,"units":"ADC","scale":1,"transform":0,"min":0,"max":255,"digits":0},"tpsMax":{"type":"scalar","size":"U08","offset":45,"units":"ADC","scale":1,"transform":0,"min":0,"max":255,"digits":0},"mapMin":{"type":"scalar","size":"S08","offset":46,"units":"kpa","scale":1,"transform":0,"min":-100,"max":127,"digits":0},"mapMax":{"type":"scalar","size":"U16","offset":47,"units":"kpa","scale":1,"transform":0,"min":0,"max":25500,"digits":0},"fpPrime":{"type":"scalar","size":"U08","offset":49,"units":"s","scale":1,"transform":0,"min":0,"max":255,"digits":0},"stoich":{"type":"scalar","size":"U08","offset":50,"units":":1","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"oddfire2":{"type":"scalar","size":"U16","offset":51,"units":"deg","scale":1,"transform":0,"min":0,"max":720,"digits":0},"oddfire3":{"type":"scalar","size":"U16","offset":53,"units":"deg","scale":1,"transform":0,"min":0,"max":720,"digits":0},"oddfire4":{"type":"scalar","size":"U16","offset":55,"units":"deg","scale":1,"transform":0,"min":0,"max":720,"digits":0},"idleUpPin":{"type":"bits","size":"U08","offset":57,"address":[0,5],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"idleUpPolarity":{"type":"bits","size":"U08","offset":57,"address":[6,6],"values":["Normal","Inverted"]},"idleUpEnabled":{"type":"bits","size":"U08","offset":57,"address":[7,7],"values":["Off","On"]},"idleUpAdder":{"type":"scalar","size":"U08","offset":58,"units":"% / Steps","scale":1,"transform":0,"min":0,"max":250,"digits":0},"aeTaperMin":{"type":"scalar","size":"U08","offset":59,"units":"RPM","scale":100,"transform":0,"min":1000,"max":10000,"digits":0},"aeTaperMax":{"type":"scalar","size":"U08","offset":60,"units":"RPM","scale":100,"transform":0,"min":2000,"max":10000,"digits":0},"iacCLminDuty":{"type":"scalar","size":"U08","offset":61,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"iacCLmaxDuty":{"type":"scalar","size":"U08","offset":62,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"boostMinDuty":{"type":"scalar","size":"U08","offset":63,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"baroMin":{"type":"scalar","size":"S08","offset":64,"units":"kpa","scale":1,"transform":0,"min":-100,"max":127,"digits":0},"baroMax":{"type":"scalar","size":"U16","offset":65,"units":"kpa","scale":1,"transform":0,"min":0,"max":25500,"digits":0},"EMAPMin":{"type":"scalar","size":"S08","offset":67,"units":"kpa","scale":1,"transform":0,"min":-100,"max":127,"digits":0},"EMAPMax":{"type":"scalar","size":"U16","offset":68,"units":"kpa","scale":1,"transform":0,"min":0,"max":25500,"digits":0},"fanWhenOff":{"type":"bits","size":"U08","offset":70,"address":[0,0],"values":["No","Yes"]},"fanWhenCranking":{"type":"bits","size":"U08","offset":70,"address":[1,1],"values":["No","Yes"]},"useDwellMap":{"type":"bits","size":"U08","offset":70,"address":[2,2],"values":["No","Yes"]},"unused_fan_bits":{"type":"bits","size":"U08","offset":70,"address":[3,4],"values":[]},"rtc_mode":{"type":"bits","size":"U08","offset":70,"address":[5,6],"values":["Off","On-board","INVALID","INVALID"]},"incorporateAFR":{"type":"bits","size":"U08","offset":70,"address":[7,7],"values":["No","Yes"]},"asePct":{"type":"array","size":"U08","offset":71,"shape":{"columns":4,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":155,"digits":0},"aseCount":{"type":"array","size":"U08","offset":75,"shape":{"columns":4,"rows":0},"units":"s","scale":1,"transform":0,"min":0,"max":255,"digits":0},"aseBins":{"type":"array","size":"U08","offset":79,"shape":{"columns":4,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"primePulse":{"type":"array","size":"U08","offset":83,"shape":{"columns":4,"rows":0},"units":"ms","scale":0.5,"transform":0,"min":0,"max":127.5,"digits":1},"primeBins":{"type":"array","size":"U08","offset":87,"shape":{"columns":4,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"CTPSPin":{"type":"bits","size":"U08","offset":91,"address":[0,5],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"CTPSPolarity":{"type":"bits","size":"U08","offset":91,"address":[6,6],"values":["Normal","Inverted"]},"CTPSEnabled":{"type":"bits","size":"U08","offset":91,"address":[7,7],"values":["Off","On"]},"idleAdvEnabled":{"type":"bits","size":"U08","offset":92,"address":[0,1],"values":["Off","Added","Switched","INVALID"]},"idleAdvAlgorithm":{"type":"bits","size":"U08","offset":92,"address":[2,2],"values":["TPS","CTPS"]},"idleAdvDelay":{"type":"bits","size":"U08","offset":92,"address":[3,7],"values":["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","INVALID","INVALID"]},"idleAdvRPM":{"type":"scalar","size":"U08","offset":93,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"idleAdvTPS":{"type":"scalar","size":"U08","offset":94,"units":"%","scale":1,"transform":0,"min":0,"max":120,"digits":0},"injAngRPM":{"type":"array","size":"U08","offset":95,"shape":{"columns":4,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":10000,"digits":0},"idleTaperTime":{"type":"scalar","size":"U08","offset":99,"units":"S","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"dfcoDelay":{"type":"scalar","size":"U08","offset":100,"units":"S","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"dfcoMinCLT":{"type":"scalar","size":"U08","offset":101,"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"vssMode":{"type":"bits","size":"U08","offset":102,"address":[0,1],"values":["Off","INVALID","Pulses per KM","Pulses per mile"]},"vssPin":{"type":"bits","size":"U08","offset":102,"address":[2,7],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"vssPulsesPerKm":{"type":"scalar","size":"U16","offset":103,"units":"pulses","scale":1,"transform":0,"min":0,"max":25500,"digits":0},"vssSmoothing":{"type":"scalar","size":"U08","offset":105,"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"vssRatio1":{"type":"scalar","size":"U16","offset":106,"units":"km/h per 1000rpm","scale":0.1,"transform":0,"min":0,"max":99.9,"digits":1},"vssRatio2":{"type":"scalar","size":"U16","offset":108,"units":"km/h per 1000rpm","scale":0.1,"transform":0,"min":0,"max":99.9,"digits":1},"vssRatio3":{"type":"scalar","size":"U16","offset":110,"units":"km/h per 1000rpm","scale":0.1,"transform":0,"min":0,"max":99.9,"digits":1},"vssRatio4":{"type":"scalar","size":"U16","offset":112,"units":"km/h per 1000rpm","scale":0.1,"transform":0,"min":0,"max":99.9,"digits":1},"vssRatio5":{"type":"scalar","size":"U16","offset":114,"units":"km/h per 1000rpm","scale":0.1,"transform":0,"min":0,"max":99.9,"digits":1},"vssRatio6":{"type":"scalar","size":"U16","offset":116,"units":"km/h per 1000rpm","scale":0.1,"transform":0,"min":0,"max":99.9,"digits":1},"idleUpOutputEnabled":{"type":"bits","size":"U08","offset":118,"address":[0,0],"values":["Off","On"]},"idleUpOutputInv":{"type":"bits","size":"U08","offset":118,"address":[1,1],"values":["No","Yes"]},"idleUpOutputPin":{"type":"bits","size":"U08","offset":118,"address":[2,7],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"tachoSweepMaxRPM":{"type":"scalar","size":"U08","offset":119,"units":"RPM","scale":100,"transform":0,"min":100,"max":10000,"digits":0},"primingDelay":{"type":"scalar","size":"U08","offset":120,"units":"S","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"iacTPSlimit":{"type":"scalar","size":"U08","offset":121,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"iacRPMlimitHysteresis":{"type":"scalar","size":"U08","offset":122,"units":"RPM","scale":10,"transform":0,"min":10,"max":2500,"digits":0},"rtc_trim":{"type":"scalar","size":"S08","offset":123,"units":"ppm","scale":1,"transform":0,"min":-127,"max":127,"digits":0},"idleAdvVss":{"type":"scalar","size":"U08","offset":124,"units":"km/h","scale":1,"transform":0,"min":0,"max":255,"digits":0},"unused2_95":{"type":"array","size":"U08","offset":125,"shape":{"columns":3,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0}}},{"number":2,"size":0,"data":{"veTable":{"type":"array","size":"U08","offset":0,"shape":{"columns":16,"rows":16},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"rpmBins":{"type":"array","size":"U08","offset":256,"shape":{"columns":16,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"fuelLoadBins":{"type":"array","size":"U08","offset":272,"shape":{"columns":16,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0}}},{"number":3,"size":0,"data":{"advTable1":{"type":"array","size":"U08","offset":0,"shape":{"columns":16,"rows":16},"units":"deg","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"rpmBins2":{"type":"array","size":"U08","offset":256,"shape":{"columns":16,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"mapBins1":{"type":"array","size":"U08","offset":272,"shape":{"columns":16,"rows":0},"units":"{ bitStringValue(algorithmUnits , ignAlgorithm) }","scale":2,"transform":0,"min":0,"max":"{ignLoadMax}","digits":0}}},{"number":4,"size":0,"data":{"TrigAng":{"type":"scalar","size":"S16","offset":0,"units":"Deg","scale":1,"transform":0,"min":-360,"max":360,"digits":0},"FixAng":{"type":"scalar","size":"S08","offset":2,"units":"Deg","scale":1,"transform":0,"min":-64,"max":64,"digits":0},"CrankAng":{"type":"scalar","size":"U08","offset":3,"units":"Deg","scale":1,"transform":0,"min":-10,"max":80,"digits":0},"TrigAngMul":{"type":"scalar","size":"U08","offset":4,"units":"","scale":1,"transform":0,"min":0,"max":88,"digits":0},"TrigEdge":{"type":"bits","size":"U08","offset":5,"address":[0,0],"values":["RISING","FALLING"]},"TrigSpeed":{"type":"bits","size":"U08","offset":5,"address":[1,1],"values":["Crank Speed","Cam Speed"]},"IgInv":{"type":"bits","size":"U08","offset":5,"address":[2,2],"values":["Going Low","Going High"]},"TrigPattern":{"type":"bits","size":"U08","offset":5,"address":[3,7],"values":["Missing Tooth","Basic Distributor","Dual Wheel","GM 7X","4G63 / Miata / 3000GT","GM 24X","Jeep 2000","Audi 135","Honda D17","Miata 99-05","Mazda AU","Non-360 Dual","Nissan 360","Subaru 6/7","Daihatsu +1","Harley EVO","36-2-2-2","36-2-1","DSM 420a","Weber-Marelli","Ford ST170","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"TrigEdgeSec":{"type":"bits","size":"U08","offset":6,"address":[0,0],"values":["RISING","FALLING"]},"fuelPumpPin":{"type":"bits","size":"U08","offset":6,"address":[1,6],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"useResync":{"type":"bits","size":"U08","offset":6,"address":[7,7],"values":["No","Yes"]},"sparkDur":{"type":"scalar","size":"U08","offset":7,"units":"ms","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"trigPatternSec":{"type":"bits","size":"U08","offset":8,"address":[0,6],"values":["Single tooth cam","4-1 cam","Poll level","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"PollLevelPol":{"type":"bits","size":"U08","offset":8,"address":[7,7],"values":["Low","High"]},"bootloaderCaps":{"type":"scalar","size":"U08","offset":9,"units":"level","scale":1,"transform":0,"min":0,"max":255,"digits":0},"resetControl":{"type":"bits","size":"U08","offset":10,"address":[0,1],"values":["Disabled","Prevent When Running","Prevent Always","Serial Command"]},"resetControlPin":{"type":"bits","size":"U08","offset":10,"address":[2,7],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"SkipCycles":{"type":"scalar","size":"U08","offset":11,"units":"cycles","scale":1,"transform":0,"min":0,"max":255,"digits":0},"boostType":{"type":"bits","size":"U08","offset":12,"address":[0,0],"values":["Open Loop","Closed Loop"]},"useDwellLim":{"type":"bits","size":"U08","offset":12,"address":[1,1],"values":["Off","On"]},"sparkMode":{"type":"bits","size":"U08","offset":12,"address":[2,4],"values":["Wasted Spark","Single Channel","Wasted COP","Sequential","Rotary","INVALID","INVALID","INVALID"]},"TrigFilter":{"type":"bits","size":"U08","offset":12,"address":[5,6],"values":["Off","Weak","Medium","Aggressive"]},"ignCranklock":{"type":"bits","size":"U08","offset":12,"address":[7,7],"values":["Off","On"]},"dwellcrank":{"type":"scalar","size":"U08","offset":13,"units":"ms","scale":0.1,"transform":0,"min":0,"max":25,"digits":1},"dwellrun":{"type":"scalar","size":"U08","offset":14,"units":"ms","scale":0.1,"transform":0,"min":0,"max":8,"digits":1},"numTeeth":{"type":"scalar","size":"U08","offset":15,"units":"teeth","scale":1,"transform":0,"min":0,"max":255,"digits":0},"missingTeeth":{"type":"scalar","size":"U08","offset":16,"units":"teeth","scale":1,"transform":0,"min":0,"max":255,"digits":0},"crankRPM":{"type":"scalar","size":"U08","offset":17,"units":"rpm","scale":10,"transform":0,"min":100,"max":1000,"digits":0},"tpsflood":{"type":"scalar","size":"U08","offset":18,"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"SoftRevLim":{"type":"scalar","size":"U08","offset":19,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"SoftLimRetard":{"type":"scalar","size":"U08","offset":20,"units":"deg","scale":1,"transform":0,"min":0,"max":80,"digits":0},"SoftLimMax":{"type":"scalar","size":"U08","offset":21,"units":"s","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"HardRevLim":{"type":"scalar","size":"U08","offset":22,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"taeBins":{"type":"array","size":"U08","offset":23,"shape":{"columns":4,"rows":0},"units":"%/s","scale":10,"transform":0,"min":0,"max":2550,"digits":0},"taeRates":{"type":"array","size":"U08","offset":27,"shape":{"columns":4,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"wueBins":{"type":"array","size":"U08","offset":31,"shape":{"columns":10,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":102,"digits":0},"dwellLim":{"type":"scalar","size":"U08","offset":41,"units":"ms","scale":1,"transform":0,"min":0,"max":32,"digits":0},"dwellRates":{"type":"array","size":"U08","offset":42,"shape":{"columns":6,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"iatRetBins":{"type":"array","size":"U08","offset":48,"shape":{"columns":6,"rows":0},"units":"C","scale":1,"transform":0,"min":0,"max":255,"digits":0},"iatRetRates":{"type":"array","size":"U08","offset":54,"shape":{"columns":6,"rows":0},"units":"deg","scale":1,"transform":0,"min":0,"max":255,"digits":0},"dfcoRPM":{"type":"scalar","size":"U08","offset":60,"units":"RPM","scale":10,"transform":0,"min":100,"max":2550,"digits":0},"dfcoHyster":{"type":"scalar","size":"U08","offset":61,"units":"RPM","scale":1,"transform":0,"min":100,"max":255,"digits":0},"dfcoTPSThresh":{"type":"scalar","size":"U08","offset":62,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"ignBypassEnable":{"type":"bits","size":"U08","offset":63,"address":[0,0],"values":["Off","On"]},"ignBypassPin":{"type":"bits","size":"U08","offset":63,"address":[1,6],"values":["INVALID","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"ignBypassHiLo":{"type":"bits","size":"U08","offset":63,"address":[7,7],"values":["LOW","HIGH"]},"ADCFILTER_TPS":{"type":"scalar","size":"U08","offset":64,"units":"%","scale":1,"transform":0,"min":0,"max":240,"digits":0},"ADCFILTER_CLT":{"type":"scalar","size":"U08","offset":65,"units":"%","scale":1,"transform":0,"min":0,"max":240,"digits":0},"ADCFILTER_IAT":{"type":"scalar","size":"U08","offset":66,"units":"%","scale":1,"transform":0,"min":0,"max":240,"digits":0},"ADCFILTER_O2":{"type":"scalar","size":"U08","offset":67,"units":"%","scale":1,"transform":0,"min":0,"max":240,"digits":0},"ADCFILTER_BAT":{"type":"scalar","size":"U08","offset":68,"units":"%","scale":1,"transform":0,"min":0,"max":240,"digits":0},"ADCFILTER_MAP":{"type":"scalar","size":"U08","offset":69,"units":"%","scale":1,"transform":0,"min":0,"max":240,"digits":0},"ADCFILTER_BARO":{"type":"scalar","size":"U08","offset":70,"units":"%","scale":1,"transform":0,"min":0,"max":240,"digits":0},"cltAdvBins":{"type":"array","size":"U08","offset":71,"shape":{"columns":6,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":102,"digits":0},"cltAdvValues":{"type":"array","size":"S08","offset":77,"shape":{"columns":6,"rows":0},"units":"deg","scale":1,"transform":-15,"min":-15,"max":15,"digits":0},"maeBins":{"type":"array","size":"U08","offset":83,"shape":{"columns":4,"rows":0},"units":"kpa/s","scale":10,"transform":0,"min":0,"max":2550,"digits":0},"maeRates":{"type":"array","size":"U08","offset":87,"shape":{"columns":4,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"batVoltCorrect":{"type":"scalar","size":"S08","offset":91,"units":"v","scale":0.1,"transform":0,"min":-2,"max":2,"digits":1},"baroFuelBins":{"type":"array","size":"U08","offset":92,"shape":{"columns":8,"rows":0},"units":"kPa","scale":1,"transform":0,"min":70,"max":120,"digits":0},"baroFuelValues":{"type":"array","size":"U08","offset":100,"shape":{"columns":8,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"idleAdvBins":{"type":"array","size":"U08","offset":108,"shape":{"columns":6,"rows":0},"units":"RPM","scale":10,"transform":-50,"min":-500,"max":500,"digits":0},"idleAdvValues":{"type":"array","size":"U08","offset":114,"shape":{"columns":6,"rows":0},"units":"deg","scale":1,"transform":-15,"min":-15,"max":50,"digits":0},"engineProtectMaxRPM":{"type":"scalar","size":"U08","offset":120,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"unused4_120":{"type":"array","size":"U08","offset":121,"shape":{"columns":7,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0}}},{"number":5,"size":0,"data":{"afrTable":{"type":"array","size":"U08","offset":0,"shape":{"columns":16,"rows":16},"units":"AFR","scale":0.1,"transform":0,"min":7,"max":25.5,"digits":1},"rpmBinsAFR":{"type":"array","size":"U08","offset":256,"shape":{"columns":16,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"loadBinsAFR":{"type":"array","size":"U08","offset":272,"shape":{"columns":16,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0}}},{"number":6,"size":0,"data":{"egoAlgorithm":{"type":"bits","size":"U08","offset":0,"address":[0,1],"values":["Simple","INVALID","PID","No correction"]},"egoType":{"type":"bits","size":"U08","offset":0,"address":[2,3],"values":["Disabled","Narrow Band","Wide Band","INVALID"]},"boostEnabled":{"type":"bits","size":"U08","offset":0,"address":[4,4],"values":["Off","On"]},"vvtEnabled":{"type":"bits","size":"U08","offset":0,"address":[5,5],"values":["Off","On"]},"engineProtectType":{"type":"bits","size":"U08","offset":0,"address":[6,7],"values":["Off","Spark Only","Fuel Only","Both"]},"egoKP":{"type":"scalar","size":"U08","offset":1,"units":"%","scale":1,"transform":0,"min":0,"max":200,"digits":0},"egoKI":{"type":"scalar","size":"U08","offset":2,"units":"%","scale":1,"transform":0,"min":0,"max":200,"digits":0},"egoKD":{"type":"scalar","size":"U08","offset":3,"units":"%","scale":1,"transform":0,"min":0,"max":200,"digits":0},"egoTemp":{"type":"scalar","size":"U08","offset":4,"units":"C","scale":1,"transform":-40,"min":-40,"max":102,"digits":0},"egoCount":{"type":"scalar","size":"U08","offset":5,"units":"","scale":4,"transform":0,"min":4,"max":255,"digits":0},"vvtMode":{"type":"bits","size":"U08","offset":6,"address":[0,1],"values":["On/Off","Open Loop","Closed loop","INVALID"]},"vvtLoadSource":{"type":"bits","size":"U08","offset":6,"address":[2,3],"values":["MAP","TPS","INVALID","INVALID"]},"vvtPWMdir":{"type":"bits","size":"U08","offset":6,"address":[4,4],"values":["Advance","Retard"]},"vvtCLUseHold":{"type":"bits","size":"U08","offset":6,"address":[5,5],"values":["No","Yes"]},"vvtCLAlterFuelTiming":{"type":"bits","size":"U08","offset":6,"address":[6,6],"values":["No","Yes"]},"boostCutEnabled":{"type":"bits","size":"U08","offset":6,"address":[7,7],"values":["Off","On"]},"egoLimit":{"type":"scalar","size":"U08","offset":7,"units":"","scale":1,"transform":0,"min":0,"max":16,"digits":0},"ego_min":{"type":"scalar","size":"U08","offset":8,"units":"AFR","scale":0.1,"transform":0,"min":7,"max":25,"digits":1},"ego_max":{"type":"scalar","size":"U08","offset":9,"units":"AFR","scale":0.1,"transform":0,"min":7,"max":25,"digits":1},"ego_sdelay":{"type":"scalar","size":"U08","offset":10,"units":"sec","scale":1,"transform":0,"min":0,"max":120,"digits":0},"egoRPM":{"type":"scalar","size":"U08","offset":11,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"egoTPSMax":{"type":"scalar","size":"U08","offset":12,"units":"%","scale":1,"transform":0,"min":0,"max":120,"digits":0},"vvt1Pin":{"type":"bits","size":"U08","offset":13,"address":[0,5],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"useExtBaro":{"type":"bits","size":"U08","offset":13,"address":[6,6],"values":["No","Yes"]},"boostMode":{"type":"bits","size":"U08","offset":13,"address":[7,7],"values":["Simple","Full"]},"boostPin":{"type":"bits","size":"U08","offset":14,"address":[0,5],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"VVTasOnOff":{"type":"bits","size":"U08","offset":14,"address":[6,6],"values":["No","Yes"]},"useEMAP":{"type":"bits","size":"U08","offset":14,"address":[7,7],"values":["No","Yes"]},"brvBins":{"type":"array","size":"U08","offset":15,"shape":{"columns":6,"rows":0},"units":"V","scale":0.1,"transform":0,"min":6,"max":24,"digits":1},"injBatRates":{"type":"array","size":"U08","offset":21,"shape":{"columns":6,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"airDenBins":{"type":"array","size":"U08","offset":27,"shape":{"columns":9,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"airDenRates":{"type":"array","size":"U08","offset":36,"shape":{"columns":9,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"boostFreq":{"type":"scalar","size":"U08","offset":45,"units":"Hz","scale":2,"transform":0,"min":10,"max":511,"digits":0},"vvtFreq":{"type":"scalar","size":"U08","offset":46,"units":"Hz","scale":2,"transform":0,"min":10,"max":511,"digits":0},"idleFreq":{"type":"scalar","size":"U08","offset":47,"units":"Hz","scale":2,"transform":0,"min":10,"max":511,"digits":0},"launchPin":{"type":"bits","size":"U08","offset":48,"address":[0,5],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"launchEnable":{"type":"bits","size":"U08","offset":48,"address":[6,6],"values":["No","Yes"]},"launchHiLo":{"type":"bits","size":"U08","offset":48,"address":[7,7],"values":["LOW","HIGH"]},"lnchSoftLim":{"type":"scalar","size":"U08","offset":49,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"lnchRetard":{"type":"scalar","size":"S08","offset":50,"units":"deg","scale":1,"transform":0,"min":-30,"max":40,"digits":0},"lnchHardLim":{"type":"scalar","size":"U08","offset":51,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"lnchFuelAdd":{"type":"scalar","size":"U08","offset":52,"units":"%","scale":1,"transform":0,"min":0,"max":80,"digits":0},"idleKP":{"type":"scalar","size":"U08","offset":53,"units":"%","scale":0.03125,"transform":0,"min":0,"max":7.96,"digits":2},"idleKI":{"type":"scalar","size":"U08","offset":54,"units":"%","scale":0.03125,"transform":0,"min":0,"max":7.96,"digits":2},"idleKD":{"type":"scalar","size":"U08","offset":55,"units":"%","scale":0.00781,"transform":0,"min":0,"max":1.99,"digits":3},"boostLimit":{"type":"scalar","size":"U08","offset":56,"units":"kPa","scale":2,"transform":0,"min":0,"max":511,"digits":0},"boostKP":{"type":"scalar","size":"U08","offset":57,"units":"%","scale":1,"transform":0,"min":0,"max":200,"digits":0},"boostKI":{"type":"scalar","size":"U08","offset":58,"units":"%","scale":1,"transform":0,"min":0,"max":200,"digits":0},"boostKD":{"type":"scalar","size":"U08","offset":59,"units":"%","scale":1,"transform":0,"min":0,"max":200,"digits":0},"lnchPullRes":{"type":"bits","size":"U08","offset":60,"address":[0,0],"values":["Float","Pullup"]},"iacPWMrun":{"type":"bits","size":"U08","offset":60,"address":[1,1],"values":["No","Yes"]},"fuelTrimEnabled":{"type":"bits","size":"U08","offset":60,"address":[2,2],"values":["No","Yes"]},"flatSEnable":{"type":"bits","size":"U08","offset":60,"address":[3,3],"values":["No","Yes"]},"baroPin":{"type":"bits","size":"U08","offset":60,"address":[4,7],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15"]},"flatSSoftWin":{"type":"scalar","size":"U08","offset":61,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"flatSRetard":{"type":"scalar","size":"U08","offset":62,"units":"deg","scale":1,"transform":0,"min":0,"max":80,"digits":0},"flatSArm":{"type":"scalar","size":"U08","offset":63,"units":"rpm","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"iacCLValues":{"type":"array","size":"U08","offset":64,"shape":{"columns":10,"rows":0},"units":"RPM","scale":10,"transform":0,"min":0,"max":2550,"digits":0},"iacOLStepVal":{"type":"array","size":"U08","offset":74,"shape":{"columns":10,"rows":0},"units":"Steps","scale":3,"transform":0,"min":0,"max":765,"digits":0},"iacOLPWMVal":{"type":"array","size":"U08","offset":84,"shape":{"columns":10,"rows":0},"units":"Duty %","scale":1,"transform":0,"min":0,"max":100,"digits":0},"iacBins":{"type":"array","size":"U08","offset":94,"shape":{"columns":10,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"iacCrankSteps":{"type":"array","size":"U08","offset":104,"shape":{"columns":4,"rows":0},"units":"Steps","scale":3,"transform":0,"min":0,"max":765,"digits":0},"iacCrankDuty":{"type":"array","size":"U08","offset":108,"shape":{"columns":4,"rows":0},"units":"Duty %","scale":1,"transform":0,"min":0,"max":100,"digits":0},"iacCrankBins":{"type":"array","size":"U08","offset":112,"shape":{"columns":4,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"iacAlgorithm":{"type":"bits","size":"U08","offset":116,"address":[0,2],"values":["None","On/Off","PWM Open loop","PWM Closed loop","Stepper Open Loop","Stepper Closed Loop","PWM Closed+Open loop","INVALID"]},"iacStepTime":{"type":"bits","size":"U08","offset":116,"address":[3,5],"values":["INVALID","1","2","3","4","5","6","INVALID"]},"iacChannels":{"type":"bits","size":"U08","offset":116,"address":[6,6],"values":["1","2"]},"iacPWMdir":{"type":"bits","size":"U08","offset":116,"address":[7,7],"values":["Normal","Reverse"]},"iacFastTemp":{"type":"scalar","size":"U08","offset":117,"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"iacStepHome":{"type":"scalar","size":"U08","offset":118,"units":"Steps","scale":3,"transform":0,"min":0,"max":765,"digits":0},"iacStepHyster":{"type":"scalar","size":"U08","offset":119,"units":"Steps","scale":1,"transform":0,"min":1,"max":10,"digits":0},"fanInv":{"type":"bits","size":"U08","offset":120,"address":[0,0],"values":["No","Yes"]},"fanEnable":{"type":"bits","size":"U08","offset":120,"address":[1,1],"values":["Off","On/Off"]},"fanPin":{"type":"bits","size":"U08","offset":120,"address":[2,7],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"fanSP":{"type":"scalar","size":"U08","offset":121,"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"fanHyster":{"type":"scalar","size":"U08","offset":122,"units":"C","scale":1,"transform":0,"min":0,"max":40,"digits":0},"fanFreq":{"type":"scalar","size":"U08","offset":123,"units":"Hz","scale":2,"transform":0,"min":10,"max":511,"digits":0},"fanPWMBins":{"type":"array","size":"U08","offset":124,"shape":{"columns":4,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0}}},{"number":7,"size":0,"data":{"boostTable":{"type":"array","size":"U08","offset":0,"shape":{"columns":8,"rows":8},"units":"{ bitStringValue( boostTableLabels, boostType ) }","scale":2,"transform":0,"min":0,"max":"{boostTableLimit}","digits":0},"rpmBinsBoost":{"type":"array","size":"U08","offset":64,"shape":{"columns":8,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"tpsBinsBoost":{"type":"array","size":"U08","offset":72,"shape":{"columns":8,"rows":0},"units":"TPS","scale":1,"transform":0,"min":0,"max":255,"digits":0},"vvtTable":{"type":"array","size":"U08","offset":80,"shape":{"columns":8,"rows":8},"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"rpmBinsVVT":{"type":"array","size":"U08","offset":144,"shape":{"columns":8,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"loadBinsVVT":{"type":"array","size":"U08","offset":152,"shape":{"columns":8,"rows":0},"units":"{ bitStringValue(algorithmUnits , vvtLoadSource) }","scale":1,"transform":0,"min":0,"max":255,"digits":0},"stagingTable":{"type":"array","size":"U08","offset":160,"shape":{"columns":8,"rows":8},"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"rpmBinsStaging":{"type":"array","size":"U08","offset":224,"shape":{"columns":8,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"loadBinsStaging":{"type":"array","size":"U08","offset":232,"shape":{"columns":8,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0}}},{"number":8,"size":0,"data":{"fuelTrim1Table":{"type":"array","size":"U08","offset":0,"shape":{"columns":6,"rows":6},"units":"%","scale":1,"transform":-128,"min":-50,"max":50,"digits":0},"fuelTrim1rpmBins":{"type":"array","size":"U08","offset":36,"shape":{"columns":6,"rows":0},"units":"RPM","scale":100,"transform":0,"min":0,"max":25500,"digits":0},"fuelTrim1loadBins":{"type":"array","size":"U08","offset":42,"shape":{"columns":6,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0},"fuelTrim2Table":{"type":"array","size":"U08","offset":48,"shape":{"columns":6,"rows":6},"units":"%","scale":1,"transform":-128,"min":-50,"max":50,"digits":0},"fuelTrim2rpmBins":{"type":"array","size":"U08","offset":84,"shape":{"columns":6,"rows":0},"units":"RPM","scale":100,"transform":0,"min":0,"max":25500,"digits":0},"fuelTrim2loadBins":{"type":"array","size":"U08","offset":90,"shape":{"columns":6,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0},"fuelTrim3Table":{"type":"array","size":"U08","offset":96,"shape":{"columns":6,"rows":6},"units":"%","scale":1,"transform":-128,"min":-50,"max":50,"digits":0},"fuelTrim3rpmBins":{"type":"array","size":"U08","offset":132,"shape":{"columns":6,"rows":0},"units":"RPM","scale":100,"transform":0,"min":0,"max":25500,"digits":0},"fuelTrim3loadBins":{"type":"array","size":"U08","offset":138,"shape":{"columns":6,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0},"fuelTrim4Table":{"type":"array","size":"U08","offset":144,"shape":{"columns":6,"rows":6},"units":"%","scale":1,"transform":-128,"min":-50,"max":50,"digits":0},"fuelTrim4rpmBins":{"type":"array","size":"U08","offset":180,"shape":{"columns":6,"rows":0},"units":"RPM","scale":100,"transform":0,"min":0,"max":25500,"digits":0},"fuelTrim4loadBins":{"type":"array","size":"U08","offset":186,"shape":{"columns":6,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0},"fuelTrim5Table":{"type":"array","size":"U08","offset":192,"shape":{"columns":6,"rows":6},"units":"%","scale":1,"transform":-128,"min":-50,"max":50,"digits":0},"fuelTrim5rpmBins":{"type":"array","size":"U08","offset":228,"shape":{"columns":6,"rows":0},"units":"RPM","scale":100,"transform":0,"min":0,"max":25500,"digits":0},"fuelTrim5loadBins":{"type":"array","size":"U08","offset":234,"shape":{"columns":6,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0},"fuelTrim6Table":{"type":"array","size":"U08","offset":240,"shape":{"columns":6,"rows":6},"units":"%","scale":1,"transform":-128,"min":-50,"max":50,"digits":0},"fuelTrim6rpmBins":{"type":"array","size":"U08","offset":276,"shape":{"columns":6,"rows":0},"units":"RPM","scale":100,"transform":0,"min":0,"max":25500,"digits":0},"fuelTrim6loadBins":{"type":"array","size":"U08","offset":282,"shape":{"columns":6,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0},"fuelTrim7Table":{"type":"array","size":"U08","offset":288,"shape":{"columns":6,"rows":6},"units":"%","scale":1,"transform":-128,"min":-50,"max":50,"digits":0},"fuelTrim7rpmBins":{"type":"array","size":"U08","offset":324,"shape":{"columns":6,"rows":0},"units":"RPM","scale":100,"transform":0,"min":0,"max":25500,"digits":0},"fuelTrim7loadBins":{"type":"array","size":"U08","offset":330,"shape":{"columns":6,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0},"fuelTrim8Table":{"type":"array","size":"U08","offset":336,"shape":{"columns":6,"rows":6},"units":"%","scale":1,"transform":-128,"min":-50,"max":50,"digits":0},"fuelTrim8rpmBins":{"type":"array","size":"U08","offset":372,"shape":{"columns":6,"rows":0},"units":"RPM","scale":100,"transform":0,"min":0,"max":25500,"digits":0},"fuelTrim8loadBins":{"type":"array","size":"U08","offset":378,"shape":{"columns":6,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0}}},{"number":9,"size":0,"data":{"enable_secondarySerial":{"type":"bits","size":"U08","offset":0,"address":[0,0],"values":["Disable","Enable"]},"intcan_available":{"type":"bits","size":"U08","offset":0,"address":[1,1],"values":["Disable","Enable"]},"enable_intcan":{"type":"bits","size":"U08","offset":0,"address":[2,2],"values":["Disable","Enable"]},"caninput_sel0a":{"type":"bits","size":"U08","offset":1,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel0b":{"type":"bits","size":"U08","offset":1,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel0extsourcea":{"type":"bits","size":"U08","offset":1,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel0extsourceb":{"type":"bits","size":"U08","offset":1,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel0extsourcec":{"type":"bits","size":"U08","offset":1,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel1a":{"type":"bits","size":"U08","offset":2,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel1b":{"type":"bits","size":"U08","offset":2,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel1extsourcea":{"type":"bits","size":"U08","offset":2,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel1extsourceb":{"type":"bits","size":"U08","offset":2,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel1extsourcec":{"type":"bits","size":"U08","offset":2,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel2a":{"type":"bits","size":"U08","offset":3,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel2b":{"type":"bits","size":"U08","offset":3,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel2extsourcea":{"type":"bits","size":"U08","offset":3,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel2extsourceb":{"type":"bits","size":"U08","offset":3,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel2extsourcec":{"type":"bits","size":"U08","offset":3,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel3a":{"type":"bits","size":"U08","offset":4,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel3b":{"type":"bits","size":"U08","offset":4,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel3extsourcea":{"type":"bits","size":"U08","offset":4,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel3extsourceb":{"type":"bits","size":"U08","offset":4,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel3extsourcec":{"type":"bits","size":"U08","offset":4,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel4a":{"type":"bits","size":"U08","offset":5,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel4b":{"type":"bits","size":"U08","offset":5,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel4extsourcea":{"type":"bits","size":"U08","offset":5,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel4extsourceb":{"type":"bits","size":"U08","offset":5,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel4extsourcec":{"type":"bits","size":"U08","offset":5,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel5a":{"type":"bits","size":"U08","offset":6,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel5b":{"type":"bits","size":"U08","offset":6,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel5extsourcea":{"type":"bits","size":"U08","offset":6,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel5extsourceb":{"type":"bits","size":"U08","offset":6,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel5extsourcec":{"type":"bits","size":"U08","offset":6,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel6a":{"type":"bits","size":"U08","offset":7,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel6b":{"type":"bits","size":"U08","offset":7,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel6extsourcea":{"type":"bits","size":"U08","offset":7,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel6extsourceb":{"type":"bits","size":"U08","offset":7,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel6extsourcec":{"type":"bits","size":"U08","offset":7,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel7a":{"type":"bits","size":"U08","offset":8,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel7b":{"type":"bits","size":"U08","offset":8,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel7extsourcea":{"type":"bits","size":"U08","offset":8,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel7extsourceb":{"type":"bits","size":"U08","offset":8,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel7extsourcec":{"type":"bits","size":"U08","offset":8,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel8a":{"type":"bits","size":"U08","offset":9,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel8b":{"type":"bits","size":"U08","offset":9,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel8extsourcea":{"type":"bits","size":"U08","offset":9,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel8extsourceb":{"type":"bits","size":"U08","offset":9,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel8extsourcec":{"type":"bits","size":"U08","offset":9,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel9a":{"type":"bits","size":"U08","offset":10,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel9b":{"type":"bits","size":"U08","offset":10,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel9extsourcea":{"type":"bits","size":"U08","offset":10,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel9extsourceb":{"type":"bits","size":"U08","offset":10,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel9extsourcec":{"type":"bits","size":"U08","offset":10,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel10a":{"type":"bits","size":"U08","offset":11,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel10b":{"type":"bits","size":"U08","offset":11,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel10extsourcea":{"type":"bits","size":"U08","offset":11,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel10extsourceb":{"type":"bits","size":"U08","offset":11,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel10extsourcec":{"type":"bits","size":"U08","offset":11,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel11a":{"type":"bits","size":"U08","offset":12,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel11b":{"type":"bits","size":"U08","offset":12,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel11extsourcea":{"type":"bits","size":"U08","offset":12,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel11extsourceb":{"type":"bits","size":"U08","offset":12,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel11extsourcec":{"type":"bits","size":"U08","offset":12,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel12a":{"type":"bits","size":"U08","offset":13,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel12b":{"type":"bits","size":"U08","offset":13,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel12extsourcea":{"type":"bits","size":"U08","offset":13,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel12extsourceb":{"type":"bits","size":"U08","offset":13,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel12extsourcec":{"type":"bits","size":"U08","offset":13,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel13a":{"type":"bits","size":"U08","offset":14,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel13b":{"type":"bits","size":"U08","offset":14,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel13extsourcea":{"type":"bits","size":"U08","offset":14,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel13extsourceb":{"type":"bits","size":"U08","offset":14,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel13extsourcec":{"type":"bits","size":"U08","offset":14,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel14a":{"type":"bits","size":"U08","offset":15,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel14b":{"type":"bits","size":"U08","offset":15,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel14extsourcea":{"type":"bits","size":"U08","offset":15,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel14extsourceb":{"type":"bits","size":"U08","offset":15,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel14extsourcec":{"type":"bits","size":"U08","offset":15,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_sel15a":{"type":"bits","size":"U08","offset":16,"address":[0,1],"values":["Off","INVALID","Analog_local","Digital_local"]},"caninput_sel15b":{"type":"bits","size":"U08","offset":16,"address":[2,3],"values":["Off","External Source","Analog_local","Digital_local"]},"caninput_sel15extsourcea":{"type":"bits","size":"U08","offset":16,"address":[5,5],"values":["Via Secondary Serial","INVALID"]},"caninput_sel15extsourceb":{"type":"bits","size":"U08","offset":16,"address":[6,6],"values":["Via Secondary Serial","Via Internal CAN"]},"caninput_sel15extsourcec":{"type":"bits","size":"U08","offset":16,"address":[7,7],"values":["INVALID","Via Internal CAN"]},"caninput_source_can_address0":{"type":"bits","size":"U16","offset":17,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address1":{"type":"bits","size":"U16","offset":19,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address2":{"type":"bits","size":"U16","offset":21,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address3":{"type":"bits","size":"U16","offset":23,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address4":{"type":"bits","size":"U16","offset":25,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address5":{"type":"bits","size":"U16","offset":27,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address6":{"type":"bits","size":"U16","offset":29,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address7":{"type":"bits","size":"U16","offset":31,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address8":{"type":"bits","size":"U16","offset":33,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address9":{"type":"bits","size":"U16","offset":35,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address10":{"type":"bits","size":"U16","offset":37,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address11":{"type":"bits","size":"U16","offset":39,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address12":{"type":"bits","size":"U16","offset":41,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address13":{"type":"bits","size":"U16","offset":43,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address14":{"type":"bits","size":"U16","offset":45,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_can_address15":{"type":"bits","size":"U16","offset":47,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"caninput_source_start_byte0":{"type":"bits","size":"U08","offset":49,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte1":{"type":"bits","size":"U08","offset":50,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte2":{"type":"bits","size":"U08","offset":51,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte3":{"type":"bits","size":"U08","offset":52,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte4":{"type":"bits","size":"U08","offset":53,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte5":{"type":"bits","size":"U08","offset":54,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte6":{"type":"bits","size":"U08","offset":55,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte7":{"type":"bits","size":"U08","offset":56,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte8":{"type":"bits","size":"U08","offset":57,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte9":{"type":"bits","size":"U08","offset":58,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte10":{"type":"bits","size":"U08","offset":59,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte11":{"type":"bits","size":"U08","offset":60,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte12":{"type":"bits","size":"U08","offset":61,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte13":{"type":"bits","size":"U08","offset":62,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte14":{"type":"bits","size":"U08","offset":63,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_start_byte15":{"type":"bits","size":"U08","offset":64,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"caninput_source_num_bytes0":{"type":"bits","size":"U16","offset":65,"address":[0,0],"values":["1","2"]},"caninput_source_num_bytes1":{"type":"bits","size":"U16","offset":65,"address":[1,1],"values":["1","2"]},"caninput_source_num_bytes2":{"type":"bits","size":"U16","offset":65,"address":[2,2],"values":["1","2"]},"caninput_source_num_bytes3":{"type":"bits","size":"U16","offset":65,"address":[3,3],"values":["1","2"]},"caninput_source_num_bytes4":{"type":"bits","size":"U16","offset":65,"address":[4,4],"values":["1","2"]},"caninput_source_num_bytes5":{"type":"bits","size":"U16","offset":65,"address":[5,5],"values":["1","2"]},"caninput_source_num_bytes6":{"type":"bits","size":"U16","offset":65,"address":[6,6],"values":["1","2"]},"caninput_source_num_bytes7":{"type":"bits","size":"U16","offset":65,"address":[7,7],"values":["1","2"]},"caninput_source_num_bytes8":{"type":"bits","size":"U16","offset":65,"address":[8,8],"values":["1","2"]},"caninput_source_num_bytes9":{"type":"bits","size":"U16","offset":65,"address":[9,9],"values":["1","2"]},"caninput_source_num_bytes10":{"type":"bits","size":"U16","offset":65,"address":[10,10],"values":["1","2"]},"caninput_source_num_bytes11":{"type":"bits","size":"U16","offset":65,"address":[11,11],"values":["1","2"]},"caninput_source_num_bytes12":{"type":"bits","size":"U16","offset":65,"address":[12,12],"values":["1","2"]},"caninput_source_num_bytes13":{"type":"bits","size":"U16","offset":65,"address":[13,13],"values":["1","2"]},"caninput_source_num_bytes14":{"type":"bits","size":"U16","offset":65,"address":[14,14],"values":["1","2"]},"caninput_source_num_bytes15":{"type":"bits","size":"U16","offset":65,"address":[15,15],"values":["1","2"]},"unused10_67":{"type":"scalar","size":"U08","offset":67,"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"unused10_68":{"type":"scalar","size":"U08","offset":68,"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"enable_intcandata_out":{"type":"bits","size":"U08","offset":69,"address":[0,0],"values":["Off","On"]},"canoutput_sel0":{"type":"bits","size":"U08","offset":70,"address":[0,0],"values":["Off","On"]},"canoutput_sel1":{"type":"bits","size":"U08","offset":71,"address":[0,0],"values":["Off","On"]},"canoutput_sel2":{"type":"bits","size":"U08","offset":72,"address":[0,0],"values":["Off","On"]},"canoutput_sel3":{"type":"bits","size":"U08","offset":73,"address":[0,0],"values":["Off","On"]},"canoutput_sel4":{"type":"bits","size":"U08","offset":74,"address":[0,0],"values":["Off","On"]},"canoutput_sel5":{"type":"bits","size":"U08","offset":75,"address":[0,0],"values":["Off","On"]},"canoutput_sel6":{"type":"bits","size":"U08","offset":76,"address":[0,0],"values":["Off","On"]},"canoutput_sel7":{"type":"bits","size":"U08","offset":77,"address":[0,0],"values":["Off","On"]},"canoutput_param_group":{"type":"array","size":"U16","offset":78,"shape":{"columns":8,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":65535,"digits":0},"canoutput_param_start_byte0":{"type":"bits","size":"U08","offset":94,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"canoutput_param_start_byte1":{"type":"bits","size":"U08","offset":95,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"canoutput_param_start_byte2":{"type":"bits","size":"U08","offset":96,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"canoutput_param_start_byte3":{"type":"bits","size":"U08","offset":97,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"canoutput_param_start_byte4":{"type":"bits","size":"U08","offset":98,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"canoutput_param_start_byte5":{"type":"bits","size":"U08","offset":99,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"canoutput_param_start_byte6":{"type":"bits","size":"U08","offset":100,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"canoutput_param_start_byte7":{"type":"bits","size":"U08","offset":101,"address":[0,2],"values":["0","1","2","3","4","5","6","7"]},"canoutput_param_num_bytes0":{"type":"bits","size":"U08","offset":102,"address":[0,1],"values":["INVALID","1","2","INVALID"]},"canoutput_param_num_bytes1":{"type":"bits","size":"U08","offset":103,"address":[0,1],"values":["INVALID","1","2","INVALID"]},"canoutput_param_num_bytes2":{"type":"bits","size":"U08","offset":104,"address":[0,1],"values":["INVALID","1","2","INVALID"]},"canoutput_param_num_bytes3":{"type":"bits","size":"U08","offset":105,"address":[0,1],"values":["INVALID","1","2","INVALID"]},"canoutput_param_num_bytes4":{"type":"bits","size":"U08","offset":106,"address":[0,1],"values":["INVALID","1","2","INVALID"]},"canoutput_param_num_bytes5":{"type":"bits","size":"U08","offset":107,"address":[0,1],"values":["INVALID","1","2","INVALID"]},"canoutput_param_num_bytes6":{"type":"bits","size":"U08","offset":108,"address":[0,1],"values":["INVALID","1","2","INVALID"]},"canoutput_param_num_bytes7":{"type":"bits","size":"U08","offset":109,"address":[0,1],"values":["INVALID","1","2","INVALID"]},"unused10_110":{"type":"scalar","size":"U08","offset":110,"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"unused10_111":{"type":"scalar","size":"U08","offset":111,"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"unused10_112":{"type":"scalar","size":"U08","offset":112,"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"unused10_113":{"type":"scalar","size":"U08","offset":113,"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"speeduino_tsCanId":{"type":"bits","size":"U08","offset":114,"address":[0,3],"values":["CAN ID 0","CAN ID 1","CAN ID 2","CAN ID 3","CAN ID 4","CAN ID 5","CAN ID 6","CAN ID 7","CAN ID 8","CAN ID 9","CAN ID 10","CAN ID 11","CAN ID 12","CAN ID 13","CAN ID 14","INVALID"]},"true_address":{"type":"bits","size":"U16","offset":115,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"realtime_base_address":{"type":"bits","size":"U16","offset":117,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"obd_address":{"type":"bits","size":"U16","offset":119,"address":[0,10],"values":["0x100","0x101","0x102","0x103","0x104","0x105","0x106","0x107","0x108","0x109","0x10A","0x10B","0x10C","0x10D","0x10E","0x10F","0x110","0x111","0x112","0x113","0x114","0x115","0x116","0x117","0x118","0x119","0x11A","0x11B","0x11C","0x11D","0x11E","0x11F","0x120","0x121","0x122","0x123","0x124","0x125","0x126","0x127","0x128","0x129","0x12A","0x12B","0x12C","0x12D","0x12E","0x12F","0x130","0x131","0x132","0x133","0x134","0x135","0x136","0x137","0x138","0x139","0x13A","0x13B","0x13C","0x13D","0x13E","0x13F","0x140","0x141","0x142","0x143","0x144","0x145","0x146","0x147","0x148","0x149","0x14A","0x14B","0x14C","0x14D","0x14E","0x14F","0x150","0x151","0x152","0x153","0x154","0x155","0x156","0x157","0x158","0x159","0x15A","0x15B","0x15C","0x15D","0x15E","0x15F","0x160","0x161","0x162","0x163","0x164","0x165","0x166","0x167","0x168","0x169","0x16A","0x16B","0x16C","0x16D","0x16E","0x16F","0x170","0x171","0x172","0x173","0x174","0x175","0x176","0x177","0x178","0x179","0x17A","0x17B","0x17C","0x17D","0x17E","0x17F","0x180","0x181","0x182","0x183","0x184","0x185","0x186","0x187","0x188","0x189","0x18A","0x18B","0x18C","0x18D","0x18E","0x18F","0x190","0x191","0x192","0x193","0x194","0x195","0x196","0x197","0x198","0x199","0x19A","0x19B","0x19C","0x19D","0x19E","0x19F","0x1A0","0x1A1","0x1A2","0x1A3","0x1A4","0x1A5","0x1A6","0x1A7","0x1A8","0x1A9","0x1AA","0x1AB","0x1AC","0x1AD","0x1AE","0x1AF","0x1B0","0x1B1","0x1B2","0x1B3","0x1B4","0x1B5","0x1B6","0x1B7","0x1B8","0x1B9","0x1BA","0x1BB","0x1BC","0x1BD","0x1BE","0x1BF","0x1C0","0x1C1","0x1C2","0x1C3","0x1C4","0x1C5","0x1C6","0x1C7","0x1C8","0x1C9","0x1CA","0x1CB","0x1CC","0x1CD","0x1CE","0x1CF","0x1D0","0x1D1","0x1D2","0x1D3","0x1D4","0x1D5","0x1D6","0x1D7","0x1D8","0x1D9","0x1DA","0x1DB","0x1DC","0x1DD","0x1DE","0x1DF","0x1E0","0x1E1","0x1E2","0x1E3","0x1E4","0x1E5","0x1E6","0x1E7","0x1E8","0x1E9","0x1EA","0x1EB","0x1EC","0x1ED","0x1EE","0x1EF","0x1F0","0x1F1","0x1F2","0x1F3","0x1F4","0x1F5","0x1F6","0x1F7","0x1F8","0x1F9","0x1FA","0x1FB","0x1FC","0x1FD","0x1FE","0x1FF","0x200","0x201","0x202","0x203","0x204","0x205","0x206","0x207","0x208","0x209","0x20A","0x20B","0x20C","0x20D","0x20E","0x20F","0x210","0x211","0x212","0x213","0x214","0x215","0x216","0x217","0x218","0x219","0x21A","0x21B","0x21C","0x21D","0x21E","0x21F","0x220","0x221","0x222","0x223","0x224","0x225","0x226","0x227","0x228","0x229","0x22A","0x22B","0x22C","0x22D","0x22E","0x22F","0x230","0x231","0x232","0x233","0x234","0x235","0x236","0x237","0x238","0x239","0x23A","0x23B","0x23C","0x23D","0x23E","0x23F","0x240","0x241","0x242","0x243","0x244","0x245","0x246","0x247","0x248","0x249","0x24A","0x24B","0x24C","0x24D","0x24E","0x24F","0x250","0x251","0x252","0x253","0x254","0x255","0x256","0x257","0x258","0x259","0x25A","0x25B","0x25C","0x25D","0x25E","0x25F","0x260","0x261","0x262","0x263","0x264","0x265","0x266","0x267","0x268","0x269","0x26A","0x26B","0x26C","0x26D","0x26E","0x26F","0x270","0x271","0x272","0x273","0x274","0x275","0x276","0x277","0x278","0x279","0x27A","0x27B","0x27C","0x27D","0x27E","0x27F","0x280","0x281","0x282","0x283","0x284","0x285","0x286","0x287","0x288","0x289","0x28A","0x28B","0x28C","0x28D","0x28E","0x28F","0x290","0x291","0x292","0x293","0x294","0x295","0x296","0x297","0x298","0x299","0x29A","0x29B","0x29C","0x29D","0x29E","0x29F","0x2A0","0x2A1","0x2A2","0x2A3","0x2A4","0x2A5","0x2A6","0x2A7","0x2A8","0x2A9","0x2AA","0x2AB","0x2AC","0x2AD","0x2AE","0x2AF","0x2B0","0x2B1","0x2B2","0x2B3","0x2B4","0x2B5","0x2B6","0x2B7","0x2B8","0x2B9","0x2BA","0x2BB","0x2BC","0x2BD","0x2BE","0x2BF","0x2C0","0x2C1","0x2C2","0x2C3","0x2C4","0x2C5","0x2C6","0x2C7","0x2C8","0x2C9","0x2CA","0x2CB","0x2CC","0x2CD","0x2CE","0x2CF","0x2D0","0x2D1","0x2D2","0x2D3","0x2D4","0x2D5","0x2D6","0x2D7","0x2D8","0x2D9","0x2DA","0x2DB","0x2DC","0x2DD","0x2DE","0x2DF","0x2E0","0x2E1","0x2E2","0x2E3","0x2E4","0x2E5","0x2E6","0x2E7","0x2E8","0x2E9","0x2EA","0x2EB","0x2EC","0x2ED","0x2EE","0x2EF","0x2F0","0x2F1","0x2F2","0x2F3","0x2F4","0x2F5","0x2F6","0x2F7","0x2F8","0x2F9","0x2FA","0x2FB","0x2FC","0x2FD","0x2FE","0x2FF","0x300","0x301","0x302","0x303","0x304","0x305","0x306","0x307","0x308","0x309","0x30A","0x30B","0x30C","0x30D","0x30E","0x30F","0x310","0x311","0x312","0x313","0x314","0x315","0x316","0x317","0x318","0x319","0x31A","0x31B","0x31C","0x31D","0x31E","0x31F","0x320","0x321","0x322","0x323","0x324","0x325","0x326","0x327","0x328","0x329","0x32A","0x32B","0x32C","0x32D","0x32E","0x32F","0x330","0x331","0x332","0x333","0x334","0x335","0x336","0x337","0x338","0x339","0x33A","0x33B","0x33C","0x33D","0x33E","0x33F","0x340","0x341","0x342","0x343","0x344","0x345","0x346","0x347","0x348","0x349","0x34A","0x34B","0x34C","0x34D","0x34E","0x34F","0x350","0x351","0x352","0x353","0x354","0x355","0x356","0x357","0x358","0x359","0x35A","0x35B","0x35C","0x35D","0x35E","0x35F","0x360","0x361","0x362","0x363","0x364","0x365","0x366","0x367","0x368","0x369","0x36A","0x36B","0x36C","0x36D","0x36E","0x36F","0x370","0x371","0x372","0x373","0x374","0x375","0x376","0x377","0x378","0x379","0x37A","0x37B","0x37C","0x37D","0x37E","0x37F","0x380","0x381","0x382","0x383","0x384","0x385","0x386","0x387","0x388","0x389","0x38A","0x38B","0x38C","0x38D","0x38E","0x38F","0x390","0x391","0x392","0x393","0x394","0x395","0x396","0x397","0x398","0x399","0x39A","0x39B","0x39C","0x39D","0x39E","0x39F","0x3A0","0x3A1","0x3A2","0x3A3","0x3A4","0x3A5","0x3A6","0x3A7","0x3A8","0x3A9","0x3AA","0x3AB","0x3AC","0x3AD","0x3AE","0x3AF","0x3B0","0x3B1","0x3B2","0x3B3","0x3B4","0x3B5","0x3B6","0x3B7","0x3B8","0x3B9","0x3BA","0x3BB","0x3BC","0x3BD","0x3BE","0x3BF","0x3C0","0x3C1","0x3C2","0x3C3","0x3C4","0x3C5","0x3C6","0x3C7","0x3C8","0x3C9","0x3CA","0x3CB","0x3CC","0x3CD","0x3CE","0x3CF","0x3D0","0x3D1","0x3D2","0x3D3","0x3D4","0x3D5","0x3D6","0x3D7","0x3D8","0x3D9","0x3DA","0x3DB","0x3DC","0x3DD","0x3DE","0x3DF","0x3E0","0x3E1","0x3E2","0x3E3","0x3E4","0x3E5","0x3E6","0x3E7","0x3E8","0x3E9","0x3EA","0x3EB","0x3EC","0x3ED","0x3EE","0x3EF","0x3F0","0x3F1","0x3F2","0x3F3","0x3F4","0x3F5","0x3F6","0x3F7","0x3F8","0x3F9","0x3FA","0x3FB","0x3FC","0x3FD","0x3FE","0x3FF","0x400","0x401","0x402","0x403","0x404","0x405","0x406","0x407","0x408","0x409","0x40A","0x40B","0x40C","0x40D","0x40E","0x40F","0x410","0x411","0x412","0x413","0x414","0x415","0x416","0x417","0x418","0x419","0x41A","0x41B","0x41C","0x41D","0x41E","0x41F","0x420","0x421","0x422","0x423","0x424","0x425","0x426","0x427","0x428","0x429","0x42A","0x42B","0x42C","0x42D","0x42E","0x42F","0x430","0x431","0x432","0x433","0x434","0x435","0x436","0x437","0x438","0x439","0x43A","0x43B","0x43C","0x43D","0x43E","0x43F","0x440","0x441","0x442","0x443","0x444","0x445","0x446","0x447","0x448","0x449","0x44A","0x44B","0x44C","0x44D","0x44E","0x44F","0x450","0x451","0x452","0x453","0x454","0x455","0x456","0x457","0x458","0x459","0x45A","0x45B","0x45C","0x45D","0x45E","0x45F","0x460","0x461","0x462","0x463","0x464","0x465","0x466","0x467","0x468","0x469","0x46A","0x46B","0x46C","0x46D","0x46E","0x46F","0x470","0x471","0x472","0x473","0x474","0x475","0x476","0x477","0x478","0x479","0x47A","0x47B","0x47C","0x47D","0x47E","0x47F","0x480","0x481","0x482","0x483","0x484","0x485","0x486","0x487","0x488","0x489","0x48A","0x48B","0x48C","0x48D","0x48E","0x48F","0x490","0x491","0x492","0x493","0x494","0x495","0x496","0x497","0x498","0x499","0x49A","0x49B","0x49C","0x49D","0x49E","0x49F","0x4A0","0x4A1","0x4A2","0x4A3","0x4A4","0x4A5","0x4A6","0x4A7","0x4A8","0x4A9","0x4AA","0x4AB","0x4AC","0x4AD","0x4AE","0x4AF","0x4B0","0x4B1","0x4B2","0x4B3","0x4B4","0x4B5","0x4B6","0x4B7","0x4B8","0x4B9","0x4BA","0x4BB","0x4BC","0x4BD","0x4BE","0x4BF","0x4C0","0x4C1","0x4C2","0x4C3","0x4C4","0x4C5","0x4C6","0x4C7","0x4C8","0x4C9","0x4CA","0x4CB","0x4CC","0x4CD","0x4CE","0x4CF","0x4D0","0x4D1","0x4D2","0x4D3","0x4D4","0x4D5","0x4D6","0x4D7","0x4D8","0x4D9","0x4DA","0x4DB","0x4DC","0x4DD","0x4DE","0x4DF","0x4E0","0x4E1","0x4E2","0x4E3","0x4E4","0x4E5","0x4E6","0x4E7","0x4E8","0x4E9","0x4EA","0x4EB","0x4EC","0x4ED","0x4EE","0x4EF","0x4F0","0x4F1","0x4F2","0x4F3","0x4F4","0x4F5","0x4F6","0x4F7","0x4F8","0x4F9","0x4FA","0x4FB","0x4FC","0x4FD","0x4FE","0x4FF","0x500","0x501","0x502","0x503","0x504","0x505","0x506","0x507","0x508","0x509","0x50A","0x50B","0x50C","0x50D","0x50E","0x50F","0x510","0x511","0x512","0x513","0x514","0x515","0x516","0x517","0x518","0x519","0x51A","0x51B","0x51C","0x51D","0x51E","0x51F","0x520","0x521","0x522","0x523","0x524","0x525","0x526","0x527","0x528","0x529","0x52A","0x52B","0x52C","0x52D","0x52E","0x52F","0x530","0x531","0x532","0x533","0x534","0x535","0x536","0x537","0x538","0x539","0x53A","0x53B","0x53C","0x53D","0x53E","0x53F","0x540","0x541","0x542","0x543","0x544","0x545","0x546","0x547","0x548","0x549","0x54A","0x54B","0x54C","0x54D","0x54E","0x54F","0x550","0x551","0x552","0x553","0x554","0x555","0x556","0x557","0x558","0x559","0x55A","0x55B","0x55C","0x55D","0x55E","0x55F","0x560","0x561","0x562","0x563","0x564","0x565","0x566","0x567","0x568","0x569","0x56A","0x56B","0x56C","0x56D","0x56E","0x56F","0x570","0x571","0x572","0x573","0x574","0x575","0x576","0x577","0x578","0x579","0x57A","0x57B","0x57C","0x57D","0x57E","0x57F","0x580","0x581","0x582","0x583","0x584","0x585","0x586","0x587","0x588","0x589","0x58A","0x58B","0x58C","0x58D","0x58E","0x58F","0x590","0x591","0x592","0x593","0x594","0x595","0x596","0x597","0x598","0x599","0x59A","0x59B","0x59C","0x59D","0x59E","0x59F","0x5A0","0x5A1","0x5A2","0x5A3","0x5A4","0x5A5","0x5A6","0x5A7","0x5A8","0x5A9","0x5AA","0x5AB","0x5AC","0x5AD","0x5AE","0x5AF","0x5B0","0x5B1","0x5B2","0x5B3","0x5B4","0x5B5","0x5B6","0x5B7","0x5B8","0x5B9","0x5BA","0x5BB","0x5BC","0x5BD","0x5BE","0x5BF","0x5C0","0x5C1","0x5C2","0x5C3","0x5C4","0x5C5","0x5C6","0x5C7","0x5C8","0x5C9","0x5CA","0x5CB","0x5CC","0x5CD","0x5CE","0x5CF","0x5D0","0x5D1","0x5D2","0x5D3","0x5D4","0x5D5","0x5D6","0x5D7","0x5D8","0x5D9","0x5DA","0x5DB","0x5DC","0x5DD","0x5DE","0x5DF","0x5E0","0x5E1","0x5E2","0x5E3","0x5E4","0x5E5","0x5E6","0x5E7","0x5E8","0x5E9","0x5EA","0x5EB","0x5EC","0x5ED","0x5EE","0x5EF","0x5F0","0x5F1","0x5F2","0x5F3","0x5F4","0x5F5","0x5F6","0x5F7","0x5F8","0x5F9","0x5FA","0x5FB","0x5FC","0x5FD","0x5FE","0x5FF","0x600","0x601","0x602","0x603","0x604","0x605","0x606","0x607","0x608","0x609","0x60A","0x60B","0x60C","0x60D","0x60E","0x60F","0x610","0x611","0x612","0x613","0x614","0x615","0x616","0x617","0x618","0x619","0x61A","0x61B","0x61C","0x61D","0x61E","0x61F","0x620","0x621","0x622","0x623","0x624","0x625","0x626","0x627","0x628","0x629","0x62A","0x62B","0x62C","0x62D","0x62E","0x62F","0x630","0x631","0x632","0x633","0x634","0x635","0x636","0x637","0x638","0x639","0x63A","0x63B","0x63C","0x63D","0x63E","0x63F","0x640","0x641","0x642","0x643","0x644","0x645","0x646","0x647","0x648","0x649","0x64A","0x64B","0x64C","0x64D","0x64E","0x64F","0x650","0x651","0x652","0x653","0x654","0x655","0x656","0x657","0x658","0x659","0x65A","0x65B","0x65C","0x65D","0x65E","0x65F","0x660","0x661","0x662","0x663","0x664","0x665","0x666","0x667","0x668","0x669","0x66A","0x66B","0x66C","0x66D","0x66E","0x66F","0x670","0x671","0x672","0x673","0x674","0x675","0x676","0x677","0x678","0x679","0x67A","0x67B","0x67C","0x67D","0x67E","0x67F","0x680","0x681","0x682","0x683","0x684","0x685","0x686","0x687","0x688","0x689","0x68A","0x68B","0x68C","0x68D","0x68E","0x68F","0x690","0x691","0x692","0x693","0x694","0x695","0x696","0x697","0x698","0x699","0x69A","0x69B","0x69C","0x69D","0x69E","0x69F","0x6A0","0x6A1","0x6A2","0x6A3","0x6A4","0x6A5","0x6A6","0x6A7","0x6A8","0x6A9","0x6AA","0x6AB","0x6AC","0x6AD","0x6AE","0x6AF","0x6B0","0x6B1","0x6B2","0x6B3","0x6B4","0x6B5","0x6B6","0x6B7","0x6B8","0x6B9","0x6BA","0x6BB","0x6BC","0x6BD","0x6BE","0x6BF","0x6C0","0x6C1","0x6C2","0x6C3","0x6C4","0x6C5","0x6C6","0x6C7","0x6C8","0x6C9","0x6CA","0x6CB","0x6CC","0x6CD","0x6CE","0x6CF","0x6D0","0x6D1","0x6D2","0x6D3","0x6D4","0x6D5","0x6D6","0x6D7","0x6D8","0x6D9","0x6DA","0x6DB","0x6DC","0x6DD","0x6DE","0x6DF","0x6E0","0x6E1","0x6E2","0x6E3","0x6E4","0x6E5","0x6E6","0x6E7","0x6E8","0x6E9","0x6EA","0x6EB","0x6EC","0x6ED","0x6EE","0x6EF","0x6F0","0x6F1","0x6F2","0x6F3","0x6F4","0x6F5","0x6F6","0x6F7","0x6F8","0x6F9","0x6FA","0x6FB","0x6FC","0x6FD","0x6FE","0x6FF","0x700","0x701","0x702","0x703","0x704","0x705","0x706","0x707","0x708","0x709","0x70A","0x70B","0x70C","0x70D","0x70E","0x70F","0x710","0x711","0x712","0x713","0x714","0x715","0x716","0x717","0x718","0x719","0x71A","0x71B","0x71C","0x71D","0x71E","0x71F","0x720","0x721","0x722","0x723","0x724","0x725","0x726","0x727","0x728","0x729","0x72A","0x72B","0x72C","0x72D","0x72E","0x72F","0x730","0x731","0x732","0x733","0x734","0x735","0x736","0x737","0x738","0x739","0x73A","0x73B","0x73C","0x73D","0x73E","0x73F","0x740","0x741","0x742","0x743","0x744","0x745","0x746","0x747","0x748","0x749","0x74A","0x74B","0x74C","0x74D","0x74E","0x74F","0x750","0x751","0x752","0x753","0x754","0x755","0x756","0x757","0x758","0x759","0x75A","0x75B","0x75C","0x75D","0x75E","0x75F","0x760","0x761","0x762","0x763","0x764","0x765","0x766","0x767","0x768","0x769","0x76A","0x76B","0x76C","0x76D","0x76E","0x76F","0x770","0x771","0x772","0x773","0x774","0x775","0x776","0x777","0x778","0x779","0x77A","0x77B","0x77C","0x77D","0x77E","0x77F","0x780","0x781","0x782","0x783","0x784","0x785","0x786","0x787","0x788","0x789","0x78A","0x78B","0x78C","0x78D","0x78E","0x78F","0x790","0x791","0x792","0x793","0x794","0x795","0x796","0x797","0x798","0x799","0x79A","0x79B","0x79C","0x79D","0x79E","0x79F","0x7A0","0x7A1","0x7A2","0x7A3","0x7A4","0x7A5","0x7A6","0x7A7","0x7A8","0x7A9","0x7AA","0x7AB","0x7AC","0x7AD","0x7AE","0x7AF","0x7B0","0x7B1","0x7B2","0x7B3","0x7B4","0x7B5","0x7B6","0x7B7","0x7B8","0x7B9","0x7BA","0x7BB","0x7BC","0x7BD","0x7BE","0x7BF","0x7C0","0x7C1","0x7C2","0x7C3","0x7C4","0x7C5","0x7C6","0x7C7","0x7C8","0x7C9","0x7CA","0x7CB","0x7CC","0x7CD","0x7CE","0x7CF","0x7D0","0x7D1","0x7D2","0x7D3","0x7D4","0x7D5","0x7D6","0x7D7","0x7D8","0x7D9","0x7DA","0x7DB","0x7DC","0x7DD","0x7DE","0x7DF","0x7E0","0x7E1","0x7E2","0x7E3","0x7E4","0x7E5","0x7E6","0x7E7","0x7E8","0x7E9","0x7EA","0x7EB","0x7EC","0x7ED","0x7EE","0x7EF","0x7F0","0x7F1","0x7F2","0x7F3","0x7F4","0x7F5","0x7F6","0x7F7","0x7F8","0x7F9","0x7FA","0x7FB","0x7FC","0x7FD","0x7FE","0x7FF","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin0pina":{"type":"bits","size":"U08","offset":121,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin1pina":{"type":"bits","size":"U08","offset":122,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin2pina":{"type":"bits","size":"U08","offset":123,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin3pina":{"type":"bits","size":"U08","offset":124,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin4pina":{"type":"bits","size":"U08","offset":125,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin5pina":{"type":"bits","size":"U08","offset":126,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin6pina":{"type":"bits","size":"U08","offset":127,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin7pina":{"type":"bits","size":"U08","offset":128,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin8pina":{"type":"bits","size":"U08","offset":129,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin9pina":{"type":"bits","size":"U08","offset":130,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin10pina":{"type":"bits","size":"U08","offset":131,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin11pina":{"type":"bits","size":"U08","offset":132,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin12pina":{"type":"bits","size":"U08","offset":133,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin13pina":{"type":"bits","size":"U08","offset":134,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin14pina":{"type":"bits","size":"U08","offset":135,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin15pina":{"type":"bits","size":"U08","offset":136,"address":[0,5],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin0pinb":{"type":"bits","size":"U08","offset":137,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin1pinb":{"type":"bits","size":"U08","offset":138,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin2pinb":{"type":"bits","size":"U08","offset":139,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin3pinb":{"type":"bits","size":"U08","offset":140,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin4pinb":{"type":"bits","size":"U08","offset":141,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin5pinb":{"type":"bits","size":"U08","offset":142,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin6pinb":{"type":"bits","size":"U08","offset":143,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin7pinb":{"type":"bits","size":"U08","offset":144,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin8pinb":{"type":"bits","size":"U08","offset":145,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin9pinb":{"type":"bits","size":"U08","offset":146,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin10pinb":{"type":"bits","size":"U08","offset":147,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin11pinb":{"type":"bits","size":"U08","offset":148,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin12pinb":{"type":"bits","size":"U08","offset":149,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin13pinb":{"type":"bits","size":"U08","offset":150,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin14pinb":{"type":"bits","size":"U08","offset":151,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"Auxin15pinb":{"type":"bits","size":"U08","offset":152,"address":[0,5],"values":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"iacStepperInv":{"type":"bits","size":"U08","offset":153,"address":[0,0],"values":["No","Yes"]},"iacCoolTime":{"type":"bits","size":"U08","offset":153,"address":[1,3],"values":["0","1","2","3","4","5","6","INVALID"]},"blankfield":{"type":"bits","size":"U08","offset":153,"address":[4,4],"values":[]},"unused10_153":{"type":"bits","size":"U08","offset":153,"address":[5,7],"values":[]},"iacMaxSteps":{"type":"scalar","size":"U08","offset":154,"units":"Steps","scale":3,"transform":0,"min":0,"max":"{iacStepHome-3}","digits":0},"unused10_154":{"type":"array","size":"U08","offset":155,"shape":{"columns":37,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0}}},{"number":10,"size":0,"data":{"crankingEnrichBins":{"type":"array","size":"U08","offset":0,"shape":{"columns":4,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"crankingEnrichValues":{"type":"array","size":"U08","offset":4,"shape":{"columns":4,"rows":0},"units":"%","scale":5,"transform":0,"min":0,"max":1275,"digits":0},"rotaryType":{"type":"bits","size":"U08","offset":8,"address":[0,1],"values":["FC","FD","RX8","INVALID"]},"stagingEnabled":{"type":"bits","size":"U08","offset":8,"address":[2,2],"values":["Off","On"]},"stagingMode":{"type":"bits","size":"U08","offset":8,"address":[3,3],"values":["Table","Automatic"]},"EMAPPin":{"type":"bits","size":"U08","offset":8,"address":[4,7],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15"]},"rotarySplitValues":{"type":"array","size":"U08","offset":9,"shape":{"columns":8,"rows":0},"units":"degrees","scale":1,"transform":0,"min":0,"max":40,"digits":0},"rotarySplitBins":{"type":"array","size":"U08","offset":17,"shape":{"columns":8,"rows":0},"units":"{ bitStringValue(algorithmUnits , algorithm) }","scale":2,"transform":0,"min":0,"max":"{fuelLoadMax}","digits":0},"boostSens":{"type":"scalar","size":"U16","offset":25,"units":"","scale":1,"transform":0,"min":0,"max":5000,"digits":0},"boostIntv":{"type":"scalar","size":"U08","offset":27,"units":"ms","scale":1,"transform":0,"min":0,"max":250,"digits":0},"stagedInjSizePri":{"type":"scalar","size":"U16","offset":28,"units":"cc/min","scale":1,"transform":0,"min":0,"max":1500,"digits":0},"stagedInjSizeSec":{"type":"scalar","size":"U16","offset":30,"units":"cc/min","scale":1,"transform":0,"min":0,"max":1500,"digits":0},"lnchCtrlTPS":{"type":"scalar","size":"U08","offset":32,"units":"%TPS","scale":1,"transform":0,"min":0,"max":100,"digits":0},"flexBoostBins":{"type":"array","size":"U08","offset":33,"shape":{"columns":6,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":250,"digits":0},"flexBoostAdj":{"type":"array","size":"S16","offset":39,"shape":{"columns":6,"rows":0},"units":"kPa","scale":1,"transform":0,"min":-500,"max":500,"digits":0},"flexFuelBins":{"type":"array","size":"U08","offset":51,"shape":{"columns":6,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":250,"digits":0},"flexFuelAdj":{"type":"array","size":"U08","offset":57,"shape":{"columns":6,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":250,"digits":0},"flexAdvBins":{"type":"array","size":"U08","offset":63,"shape":{"columns":6,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":250,"digits":0},"flexAdvAdj":{"type":"array","size":"U08","offset":69,"shape":{"columns":6,"rows":0},"units":"Deg","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"n2o_enable":{"type":"bits","size":"U08","offset":75,"address":[0,1],"values":["Off","1 Stage","2 stage","INVALID"]},"n2o_arming_pin":{"type":"bits","size":"U08","offset":75,"address":[2,7],"values":["INVALID","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"n2o_minCLT":{"type":"scalar","size":"U08","offset":76,"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"n2o_maxMAP":{"type":"scalar","size":"U08","offset":77,"units":"kPa","scale":2,"transform":0,"min":0,"max":511,"digits":0},"n2o_minTPS":{"type":"scalar","size":"U08","offset":78,"units":"%TPS","scale":1,"transform":0,"min":0,"max":100,"digits":0},"n2o_maxAFR":{"type":"scalar","size":"U08","offset":79,"units":"AFR","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"n2o_stage1_pin":{"type":"bits","size":"U08","offset":80,"address":[0,5],"values":["INVALID","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"n2o_pin_polarity":{"type":"bits","size":"U08","offset":80,"address":[6,6],"values":["HIGH","LOW"]},"n2o_unused":{"type":"bits","size":"U08","offset":80,"address":[7,7],"values":["No","Yes"]},"n2o_stage1_minRPM":{"type":"scalar","size":"U08","offset":81,"units":"RPM","scale":100,"transform":0,"min":1000,"max":10000,"digits":0},"n2o_stage1_maxRPM":{"type":"scalar","size":"U08","offset":82,"units":"RPM","scale":100,"transform":0,"min":1000,"max":10000,"digits":0},"n2o_stage1_adderMin":{"type":"scalar","size":"U08","offset":83,"units":"ms","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"n2o_stage1_adderMax":{"type":"scalar","size":"U08","offset":84,"units":"ms","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"n2o_stage1_retard":{"type":"scalar","size":"U08","offset":85,"units":"Deg","scale":1,"transform":0,"min":0,"max":250,"digits":0},"n2o_stage2_pin":{"type":"bits","size":"U08","offset":86,"address":[0,5],"values":["INVALID","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"n2o_stage2_unused":{"type":"bits","size":"U08","offset":86,"address":[6,7],"values":["No","Yes","INVALID","INVALID"]},"n2o_stage2_minRPM":{"type":"scalar","size":"U08","offset":87,"units":"RPM","scale":100,"transform":0,"min":1000,"max":10000,"digits":0},"n2o_stage2_maxRPM":{"type":"scalar","size":"U08","offset":88,"units":"RPM","scale":100,"transform":0,"min":1000,"max":10000,"digits":0},"n2o_stage2_adderMin":{"type":"scalar","size":"U08","offset":89,"units":"ms","scale":0.1,"transform":0,"min":0,"max":32,"digits":1},"n2o_stage2_adderMax":{"type":"scalar","size":"U08","offset":90,"units":"ms","scale":0.1,"transform":0,"min":0,"max":32,"digits":1},"n2o_stage2_retard":{"type":"scalar","size":"U08","offset":91,"units":"Deg","scale":1,"transform":0,"min":0,"max":250,"digits":0},"knock_mode":{"type":"bits","size":"U08","offset":92,"address":[0,1],"values":["Off","Digital","Analog","INVALID"]},"knock_pin":{"type":"bits","size":"U08","offset":92,"address":[2,7],"values":["INVALID","INVALID","2","3","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","18","19","20","21","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"knock_trigger":{"type":"bits","size":"U08","offset":93,"address":[0,0],"values":["HIGH","LOW"]},"knock_pullup":{"type":"bits","size":"U08","offset":93,"address":[1,1],"values":["Off","Internal pullup"]},"knock_limiterDisable":{"type":"bits","size":"U08","offset":93,"address":[2,2],"values":["No","Yes"]},"knock_unused":{"type":"bits","size":"U08","offset":93,"address":[3,4],"values":["INVALID","1","2","3"]},"knock_count":{"type":"bits","size":"U08","offset":93,"address":[5,7],"values":["INVALID","1","2","3","4","5","6","7"]},"knock_threshold":{"type":"scalar","size":"U08","offset":94,"units":"Volts","scale":0.1,"transform":0,"min":0,"max":5,"digits":1},"knock_maxMAP":{"type":"scalar","size":"U08","offset":95,"units":"kPa","scale":2,"transform":0,"min":0,"max":511,"digits":0},"knock_maxRPM":{"type":"scalar","size":"U08","offset":96,"units":"RPM","scale":100,"transform":0,"min":0,"max":10000,"digits":0},"knock_window_rpms":{"type":"array","size":"U08","offset":97,"shape":{"columns":6,"rows":0},"units":"RPM","scale":100,"transform":0,"min":0,"max":10000,"digits":0},"knock_window_angle":{"type":"array","size":"U08","offset":103,"shape":{"columns":6,"rows":0},"units":"deg","scale":1,"transform":-50,"min":-50,"max":100,"digits":0},"knock_window_dur":{"type":"array","size":"U08","offset":109,"shape":{"columns":6,"rows":0},"units":"deg","scale":1,"transform":0,"min":0,"max":100,"digits":0},"knock_maxRetard":{"type":"scalar","size":"U08","offset":115,"units":"Deg","scale":1,"transform":0,"min":0,"max":50,"digits":0},"knock_firstStep":{"type":"scalar","size":"U08","offset":116,"units":"Deg","scale":1,"transform":0,"min":0,"max":50,"digits":0},"knock_stepSize":{"type":"scalar","size":"U08","offset":117,"units":"Deg","scale":1,"transform":0,"min":0,"max":50,"digits":0},"knock_stepTime":{"type":"scalar","size":"U08","offset":118,"units":"Sec","scale":0.1,"transform":0,"min":0,"max":2.5,"digits":1},"knock_duration":{"type":"scalar","size":"U08","offset":119,"units":"Sec","scale":0.1,"transform":0,"min":0,"max":2.5,"digits":1},"knock_recoveryStepTime":{"type":"scalar","size":"U08","offset":120,"units":"Sec","scale":0.1,"transform":0,"min":0,"max":2.5,"digits":1},"knock_recoveryStep":{"type":"scalar","size":"U08","offset":121,"units":"Deg","scale":1,"transform":0,"min":0,"max":50,"digits":0},"fuel2Algorithm":{"type":"bits","size":"U08","offset":122,"address":[0,2],"values":["MAP","TPS","IMAP/EMAP","INVALID","INVALID","INVALID","INVALID","INVALID"]},"fuel2Mode":{"type":"bits","size":"U08","offset":122,"address":[3,5],"values":["Off","Multiplied %","Added","Switched - Conditional","Switched - Input based","INVALID","INVALID","INVALID"]},"fuel2SwitchVariable":{"type":"bits","size":"U08","offset":122,"address":[6,7],"values":["RPM","MAP","TPS","ETH%"]},"fuel2SwitchValue":{"type":"scalar","size":"U16","offset":123,"units":"{ bitStringValue(fuel2SwitchUnits, fuel2SwitchVariable) }","scale":1,"transform":0,"min":0,"max":9000,"digits":0},"fuel2InputPin":{"type":"bits","size":"U08","offset":125,"address":[0,5],"values":["INVALID","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"fuel2InputPolarity":{"type":"bits","size":"U08","offset":125,"address":[6,6],"values":["LOW","HIGH"]},"fuel2InputPullup":{"type":"bits","size":"U08","offset":125,"address":[7,7],"values":["No","Yes"]},"vvtCLholdDuty":{"type":"scalar","size":"U08","offset":126,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"vvtCLKP":{"type":"scalar","size":"U08","offset":127,"units":"%","scale":0.03125,"transform":0,"min":0,"max":7.96,"digits":2},"vvtCLKI":{"type":"scalar","size":"U08","offset":128,"units":"%","scale":0.03125,"transform":0,"min":0,"max":7.96,"digits":2},"vvtCLKD":{"type":"scalar","size":"U08","offset":129,"units":"%","scale":0.00781,"transform":0,"min":0,"max":1.99,"digits":3},"vvtCLMinAng":{"type":"scalar","size":"S16","offset":130,"units":"deg","scale":1,"transform":0,"min":-360,"max":360,"digits":0},"vvtCLMaxAng":{"type":"scalar","size":"S16","offset":132,"units":"deg","scale":1,"transform":0,"min":-360,"max":360,"digits":0},"crankingEnrichTaper":{"type":"scalar","size":"U08","offset":134,"units":"s","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"fuelPressureEnable":{"type":"bits","size":"U08","offset":135,"address":[0,0],"values":["Off","On"]},"oilPressureEnable":{"type":"bits","size":"U08","offset":135,"address":[1,1],"values":["Off","On"]},"oilPressureProtEnbl":{"type":"bits","size":"U08","offset":135,"address":[2,2],"values":["Off","On"]},"fuelPressurePin":{"type":"bits","size":"U08","offset":136,"address":[0,3],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15"]},"oilPressurePin":{"type":"bits","size":"U08","offset":136,"address":[4,7],"values":["A0","A1","A2","A3","A4","A5","A6","A7","A8","A9","A10","A11","A12","A13","A14","A15"]},"fuelPressureMin":{"type":"scalar","size":"S08","offset":137,"units":"psi","scale":1,"transform":0,"min":-100,"max":127,"digits":0},"fuelPressureMax":{"type":"scalar","size":"U08","offset":138,"units":"psi","scale":1,"transform":0,"min":0,"max":255,"digits":0},"oilPressureMin":{"type":"scalar","size":"S08","offset":139,"units":"psi","scale":1,"transform":0,"min":-100,"max":127,"digits":0},"oilPressureMax":{"type":"scalar","size":"U08","offset":140,"units":"psi","scale":1,"transform":0,"min":0,"max":255,"digits":0},"oilPressureProtRPM":{"type":"array","size":"U08","offset":141,"shape":{"columns":4,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"oilPressureProtMins":{"type":"array","size":"U08","offset":145,"shape":{"columns":4,"rows":0},"units":"psi","scale":1,"transform":0,"min":0,"max":255,"digits":0},"wmiEnabled":{"type":"bits","size":"U08","offset":149,"address":[0,0],"values":["Off","On"]},"wmiMode":{"type":"bits","size":"U08","offset":149,"address":[1,2],"values":["Simple","Proportional","Openloop","Closedloop"]},"wmiAdvEnabled":{"type":"bits","size":"U08","offset":149,"address":[7,7],"values":["Off","On"]},"wmiTPS":{"type":"scalar","size":"U08","offset":150,"units":"%TPS","scale":1,"transform":0,"min":0,"max":100,"digits":0},"wmiRPM":{"type":"scalar","size":"U08","offset":151,"units":"RPM","scale":100,"transform":0,"min":0,"max":10000,"digits":0},"wmiMAP":{"type":"scalar","size":"U08","offset":152,"units":"kPa","scale":2,"transform":0,"min":0,"max":511,"digits":0},"wmiMAP2":{"type":"scalar","size":"U08","offset":153,"units":"kPa","scale":2,"transform":0,"min":0,"max":511,"digits":0},"wmiIAT":{"type":"scalar","size":"U08","offset":154,"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"wmiOffset":{"type":"scalar","size":"S08","offset":155,"units":"ms","scale":1,"transform":0,"min":-12.7,"max":12.7,"digits":0},"wmiIndicatorEnabled":{"type":"bits","size":"U08","offset":156,"address":[0,0],"values":["Off","On"]},"wmiIndicatorPin":{"type":"bits","size":"U08","offset":156,"address":[1,6],"values":["Board Default","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"wmiIndicatorPolarity":{"type":"bits","size":"U08","offset":156,"address":[7,7],"values":["Normal","Inverted"]},"wmiEmptyEnabled":{"type":"bits","size":"U08","offset":157,"address":[0,0],"values":["Off","On"]},"wmiEmptyPin":{"type":"bits","size":"U08","offset":157,"address":[1,6],"values":["Board Default","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"wmiEmptyPolarity":{"type":"bits","size":"U08","offset":157,"address":[7,7],"values":["Normal","Inverted"]},"wmiEnabledPin":{"type":"bits","size":"U08","offset":158,"address":[0,5],"values":["Board Default","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"wmiAdvBins":{"type":"array","size":"U08","offset":159,"shape":{"columns":6,"rows":0},"units":"kPa","scale":2,"transform":0,"min":0,"max":511,"digits":0},"wmiAdvAdj":{"type":"array","size":"U08","offset":165,"shape":{"columns":6,"rows":0},"units":"Deg","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"vvtCLminDuty":{"type":"scalar","size":"U08","offset":171,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"vvtCLmaxDuty":{"type":"scalar","size":"U08","offset":172,"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"vvt2Pin":{"type":"bits","size":"U08","offset":173,"address":[0,5],"values":["Board Default","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID","INVALID"]},"fuelTempBins":{"type":"array","size":"U08","offset":174,"shape":{"columns":6,"rows":0},"units":"C","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"fuelTempValues":{"type":"array","size":"U08","offset":180,"shape":{"columns":6,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"spark2Algorithm":{"type":"bits","size":"U08","offset":186,"address":[0,2],"values":["MAP","TPS","IMAP/EMAP","INVALID","INVALID","INVALID","INVALID","INVALID"]},"spark2Mode":{"type":"bits","size":"U08","offset":186,"address":[3,5],"values":["Off","Multiplied %","Added","Switched - Conditional","Switched - Input based","INVALID","INVALID","INVALID"]},"spark2SwitchVariable":{"type":"bits","size":"U08","offset":186,"address":[6,7],"values":["RPM","MAP","TPS","ETH%"]},"spark2SwitchValue":{"type":"scalar","size":"U16","offset":187,"units":"{ bitStringValue(fuel2SwitchUnits, spark2SwitchVariable) }","scale":1,"transform":0,"min":0,"max":9000,"digits":0},"spark2InputPin":{"type":"bits","size":"U08","offset":189,"address":[0,5],"values":["INVALID","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"spark2InputPolarity":{"type":"bits","size":"U08","offset":189,"address":[6,6],"values":["LOW","HIGH"]},"spark2InputPullup":{"type":"bits","size":"U08","offset":189,"address":[7,7],"values":["No","Yes"]},"unused11_190_191":{"type":"array","size":"U08","offset":190,"shape":{"columns":2,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0}}},{"number":11,"size":0,"data":{"veTable2":{"type":"array","size":"U08","offset":0,"shape":{"columns":16,"rows":16},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"fuelRPM2Bins":{"type":"array","size":"U08","offset":256,"shape":{"columns":16,"rows":0},"units":"RPM","scale":100,"transform":0,"min":0,"max":25500,"digits":0},"fuelLoad2Bins":{"type":"array","size":"U08","offset":272,"shape":{"columns":16,"rows":0},"units":"{ bitStringValue(algorithmUnits , fuel2Algorithm) }","scale":2,"transform":0,"min":0,"max":"{ fuel2LoadMax }","digits":0}}},{"number":12,"size":0,"data":{"wmiTable":{"type":"array","size":"U08","offset":0,"shape":{"columns":8,"rows":8},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0},"rpmBinsWMI":{"type":"array","size":"U08","offset":64,"shape":{"columns":8,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"mapBinsWMI":{"type":"array","size":"U08","offset":72,"shape":{"columns":8,"rows":0},"units":"kPa","scale":2,"transform":0,"min":0,"max":511,"digits":0},"dwellTable":{"type":"array","size":"U08","offset":160,"shape":{"columns":4,"rows":4},"units":"ms","scale":0.1,"transform":0,"min":0.1,"max":8,"digits":1},"rpmBinsDwell":{"type":"array","size":"U08","offset":176,"shape":{"columns":4,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"mapBinsDwell":{"type":"array","size":"U08","offset":180,"shape":{"columns":4,"rows":0},"units":"kPa","scale":2,"transform":0,"min":0,"max":511,"digits":0}}},{"number":13,"size":0,"data":{"outputInverted0":{"type":"bits","size":"U08","offset":0,"address":[0,0],"values":["Active high","Active low"]},"outputInverted1":{"type":"bits","size":"U08","offset":0,"address":[1,1],"values":["Active high","Active low"]},"outputInverted2":{"type":"bits","size":"U08","offset":0,"address":[2,2],"values":["Active high","Active low"]},"outputInverted3":{"type":"bits","size":"U08","offset":0,"address":[3,3],"values":["Active high","Active low"]},"outputInverted4":{"type":"bits","size":"U08","offset":0,"address":[4,4],"values":["Active high","Active low"]},"outputInverted5":{"type":"bits","size":"U08","offset":0,"address":[5,5],"values":["Active high","Active low"]},"outputInverted6":{"type":"bits","size":"U08","offset":0,"address":[6,6],"values":["Active high","Active low"]},"outputInverted7":{"type":"bits","size":"U08","offset":0,"address":[7,7],"values":["Active high","Active low"]},"unused12_1":{"type":"scalar","size":"U08","offset":1,"units":"bits","scale":1,"transform":0,"min":0,"max":0,"digits":null},"outputPin":{"type":"array","size":"U08","offset":2,"shape":{"columns":8,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"outputPin0":{"type":"bits","size":"U08","offset":2,"address":[0,7],"values":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"outputPin1":{"type":"bits","size":"U08","offset":3,"address":[0,7],"values":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"outputPin2":{"type":"bits","size":"U08","offset":4,"address":[0,7],"values":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"outputPin3":{"type":"bits","size":"U08","offset":5,"address":[0,7],"values":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"outputPin4":{"type":"bits","size":"U08","offset":6,"address":[0,7],"values":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"outputPin5":{"type":"bits","size":"U08","offset":7,"address":[0,7],"values":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"outputPin6":{"type":"bits","size":"U08","offset":8,"address":[0,7],"values":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"outputPin7":{"type":"bits","size":"U08","offset":9,"address":[0,7],"values":["Disabled","INVALID","INVALID","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","INVALID","A8","A9","A10","A11","A12","A13","A14","A15","INVALID"]},"outputDelay":{"type":"array","size":"U08","offset":10,"shape":{"columns":8,"rows":0},"units":"S","scale":0.1,"transform":0,"min":0,"max":25.5,"digits":1},"firstDataIn":{"type":"array","size":"U08","offset":18,"shape":{"columns":8,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":65535,"digits":0},"firstDataIn0":{"type":"bits","size":"U08","offset":18,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"firstDataIn1":{"type":"bits","size":"U08","offset":19,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"firstDataIn2":{"type":"bits","size":"U08","offset":20,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"firstDataIn3":{"type":"bits","size":"U08","offset":21,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"firstDataIn4":{"type":"bits","size":"U08","offset":22,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"firstDataIn5":{"type":"bits","size":"U08","offset":23,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"firstDataIn6":{"type":"bits","size":"U08","offset":24,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"firstDataIn7":{"type":"bits","size":"U08","offset":25,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"secondDataIn":{"type":"array","size":"U08","offset":26,"shape":{"columns":8,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":65535,"digits":0},"secondDataIn0":{"type":"bits","size":"U08","offset":26,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"secondDataIn1":{"type":"bits","size":"U08","offset":27,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"secondDataIn2":{"type":"bits","size":"U08","offset":28,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"secondDataIn3":{"type":"bits","size":"U08","offset":29,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"secondDataIn4":{"type":"bits","size":"U08","offset":30,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"secondDataIn5":{"type":"bits","size":"U08","offset":31,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"secondDataIn6":{"type":"bits","size":"U08","offset":32,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"secondDataIn7":{"type":"bits","size":"U08","offset":33,"address":[0,7],"values":["seconds","status bits","Engine status","syncLossCounter","MAP (Kpa)","INVALID","IAT / MAT","coolant","batCorrection","battery voltage x10","O2","egoCorrection","iatCorrection","wueCorrection","RPM","INVALID","AEamount/2","GammaE","INVALID","VE1","VE2","AFR Target","TPS DOT","Advance","TPS","loopsPerSecond","INVALID","free RAM","INVALID","boostTarget/2","Boost duty","spark bits","RPM DOT","INVALID","ethanolPct","flexCorrection","flexIgnCorrection","idle Load","testOutputs","O2_2","baro","Aux in 1","INVALID","Aux in 2","INVALID","Aux in 3","INVALID","Aux in 4","INVALID","Aux in 5","INVALID","Aux in 6","INVALID","Aux in 7","INVALID","Aux in 8","INVALID","Aux in 9","INVALID","Aux in 10","INVALID","Aux in 11","INVALID","Aux in 12","INVALID","Aux in 13","INVALID","Aux in 14","INVALID","Aux in 15","INVALID","Aux in 16","INVALID","TPS ADC","Error code","Pulsewidth 1","INVALID","Pulsewidth 2","INVALID","Pulsewidth 3","INVALID","Pulsewidth 4","INVALID","status bits 3","engineProtectStatus","Fuel load","INVALID","Ignition load","INVALID","dwell","INVALID","idle C.L. target","MAP DOT","VVT1 Angle","VVT1 Target","VVT1 duty","flexBoostCorrection","INVALID","baro Correction","Current VE","ASE Value","vss","INVALID","Gear","Fuel Pressure","Oil Pressure","INVALID","WMI duty","WMI empty","VVT2 angle","VVT2 target","VVT2 duty","outputs status","Fuel temp","Fuel temp correction","Advance 1","Advance 2"]},"unused13_35_49":{"type":"array","size":"U08","offset":34,"shape":{"columns":16,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":100,"digits":0},"firstTarget":{"type":"array","size":"S16","offset":50,"shape":{"columns":8,"rows":0},"units":"","scale":1,"transform":0,"min":-32768,"max":32768,"digits":0},"secondTarget":{"type":"array","size":"S16","offset":66,"shape":{"columns":8,"rows":0},"units":"","scale":1,"transform":0,"min":-32768,"max":32768,"digits":0},"firstCompType0":{"type":"bits","size":"U08","offset":82,"address":[0,2],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"secondCompType0":{"type":"bits","size":"U08","offset":82,"address":[3,5],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"bitwise0":{"type":"bits","size":"U08","offset":82,"address":[6,7],"values":["Disabled","AND","OR","XOR"]},"firstCompType1":{"type":"bits","size":"U08","offset":83,"address":[0,2],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"secondCompType1":{"type":"bits","size":"U08","offset":83,"address":[3,5],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"bitwise1":{"type":"bits","size":"U08","offset":83,"address":[6,7],"values":["Disabled","AND","OR","XOR"]},"firstCompType2":{"type":"bits","size":"U08","offset":84,"address":[0,2],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"secondCompType2":{"type":"bits","size":"U08","offset":84,"address":[3,5],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"bitwise2":{"type":"bits","size":"U08","offset":84,"address":[6,7],"values":["Disabled","AND","OR","XOR"]},"firstCompType3":{"type":"bits","size":"U08","offset":85,"address":[0,2],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"secondCompType3":{"type":"bits","size":"U08","offset":85,"address":[3,5],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"bitwise3":{"type":"bits","size":"U08","offset":85,"address":[6,7],"values":["Disabled","AND","OR","XOR"]},"firstCompType4":{"type":"bits","size":"U08","offset":86,"address":[0,2],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"secondCompType4":{"type":"bits","size":"U08","offset":86,"address":[3,5],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"bitwise4":{"type":"bits","size":"U08","offset":86,"address":[6,7],"values":["Disabled","AND","OR","XOR"]},"firstCompType5":{"type":"bits","size":"U08","offset":87,"address":[0,2],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"secondCompType5":{"type":"bits","size":"U08","offset":87,"address":[3,5],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"bitwise5":{"type":"bits","size":"U08","offset":87,"address":[6,7],"values":["Disabled","AND","OR","XOR"]},"firstCompType6":{"type":"bits","size":"U08","offset":88,"address":[0,2],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"secondCompType6":{"type":"bits","size":"U08","offset":88,"address":[3,5],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"bitwise6":{"type":"bits","size":"U08","offset":88,"address":[6,7],"values":["Disabled","AND","OR","XOR"]},"firstCompType7":{"type":"bits","size":"U08","offset":89,"address":[0,2],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"secondCompType7":{"type":"bits","size":"U08","offset":89,"address":[3,5],"values":["==","!=",">",">=","<","<=","INVALID","INVALID"]},"bitwise7":{"type":"bits","size":"U08","offset":89,"address":[6,7],"values":["Disabled","AND","OR","XOR"]},"candID":{"type":"array","size":"U16","offset":90,"shape":{"columns":8,"rows":0},"units":"","scale":1,"transform":0,"min":0,"max":255,"digits":0},"unused12_106_127":{"type":"array","size":"U08","offset":106,"shape":{"columns":22,"rows":0},"units":"%","scale":1,"transform":0,"min":0,"max":255,"digits":0}}},{"number":14,"size":0,"data":{"advTable2":{"type":"array","size":"U08","offset":0,"shape":{"columns":16,"rows":16},"units":"deg","scale":1,"transform":-40,"min":-40,"max":215,"digits":0},"rpmBins3":{"type":"array","size":"U08","offset":256,"shape":{"columns":16,"rows":0},"units":"RPM","scale":100,"transform":0,"min":100,"max":25500,"digits":0},"mapBins2":{"type":"array","size":"U08","offset":272,"shape":{"columns":16,"rows":0},"units":"{ bitStringValue(algorithmUnits , ignAlgorithm) }","scale":2,"transform":0,"min":0,"max":"{ ign2LoadMax }","digits":0}}}]},"menus":{"settings":{"title":"Settings","subMenus":{"engine_constants":{"title":"Engine Constants","page":0,"condition":""},"injChars":{"title":"Injector Characteristics","page":0,"condition":""},"triggerSettings":{"title":"Trigger Setup","page":0,"condition":""},"airdensity_curve":{"title":"IAT Density","page":0,"condition":""},"baroFuel_curve":{"title":"Barometric Correction","page":0,"condition":""},"reset_control":{"title":"Reset Control","page":0,"condition":""},"std_separator":{"title":"","page":0,"condition":""},"gaugeLimits":{"title":"Gauge Limits","page":0,"condition":""},"io_summary":{"title":"I/O Summary","page":0,"condition":""},"prgm_out_config":{"title":"Programmable outputs","page":0,"condition":""}}},"tuning":{"title":"Tuning","subMenus":{"std_realtime":{"title":"Realtime Display","page":0,"condition":""},"accelEnrichments":{"title":"Acceleration Enrichment","page":0,"condition":""},"egoControl":{"title":"AFR/O2","page":3,"condition":""},"RevLimiterS":{"title":"Engine Protection","page":2,"condition":""},"flexFueling":{"title":"Flex Fuel","page":2,"condition":""},"veTableDialog":{"title":"VE Table","page":0,"condition":""},"sparkTbl":{"title":"Spark Table","page":2,"condition":""},"afrTable1Tbl":{"title":"AFR Table","page":5,"condition":""},"std_separator":{"title":"","page":0,"condition":""},"fuelTable2Dialog":{"title":"Second fuel Table","page":11,"condition":""},"sparkTable2Dialog":{"title":"Second spark Table","page":14,"condition":""},"inj_trimad":{"title":"Sequential fuel trim (1-4)","page":9,"condition":""},"inj_trimad_B":{"title":"Sequential fuel trim (5-8)","page":9,"condition":"{ nFuelChannels >= 5 }"},"stagingTableDialog":{"title":"Staged Injection","page":10,"condition":"{ nCylinders <= 4 || injType == 1 }"},"fuelTemp_curve":{"title":"Fuel Temp Correction","page":0,"condition":"{ flexEnabled }"}}},"spark":{"title":"Spark","subMenus":{"sparkSettings":{"title":"Spark Settings","page":0,"condition":""},"sparkTbl":{"title":"Spark Table","page":2,"condition":""},"dwellSettings":{"title":"Dwell settings","page":0,"condition":""},"dwell_correction_curve":{"title":"Dwell Compensation","page":0,"condition":""},"dwell_map":{"title":"Dwell Map","page":0,"condition":"{ useDwellMap }"},"iat_retard_curve":{"title":"IAT Retard","page":0,"condition":""},"clt_advance_curve":{"title":"Cold Advance","page":0,"condition":""},"rotary_ignition":{"title":"Rotary Ignition","page":0,"condition":"{ sparkMode == 4 }"}}},"startupIdle":{"title":"Startup/Idle","subMenus":{"crankPW":{"title":"Cranking Settings","page":0,"condition":""},"primePW":{"title":"Priming Pulsewidth","page":0,"condition":""},"warmup":{"title":"Warmup Enrichment","page":0,"condition":""},"ASE":{"title":"Afterstart Enrichment (ASE)","page":0,"condition":""},"std_separator":{"title":"","page":0,"condition":""},"idleSettings":{"title":"Idle Control","page":0,"condition":""},"iacClosedLoop_curve":{"title":"Idle - RPM targets","page":7,"condition":"{ iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || idleAdvEnabled >= 1 }"},"iacPwm_curve":{"title":"Idle - PWM Duty Cycle","page":7,"condition":"{ iacAlgorithm == 2 || iacAlgorithm == 6}"},"iacPwmCrank_curve":{"title":"Idle - PWM Cranking Duty Cycle","page":7,"condition":"{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6}"},"iacStep_curve":{"title":"Idle - Stepper Motor","page":7,"condition":"{ iacAlgorithm == 4 }"},"iacStepCrank_curve":{"title":"Idle - Stepper Motor Cranking","page":7,"condition":"{ iacAlgorithm == 4 || iacAlgorithm == 5 }"},"idleUpSettings":{"title":"Idle Up Settings","page":0,"condition":"{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 4 || iacAlgorithm == 5 || iacAlgorithm == 6 }"},"idleAdvanceSettings":{"title":"Idle Advance Settings","page":0,"condition":""}}},"accessories":{"title":"Accessories","subMenus":{"fanSettings":{"title":"Thermo Fan","page":0,"condition":""},"LaunchControl":{"title":"Launch Control / Flat Shift","page":0,"condition":""},"fuelpump":{"title":"Fuel Pump","page":0,"condition":""},"NitrousControl":{"title":"Nitrous","page":0,"condition":""},"vssSettings":{"title":"VSS and Gear detection","page":0,"condition":""},"std_separator":{"title":"","page":0,"condition":""},"boostSettings":{"title":"Boost Control","page":0,"condition":""},"boostLoad":{"title":"Boost Targets/Load","page":8,"condition":"{ boostEnabled }"},"vvtSettings":{"title":"VVT Control","page":0,"condition":""},"vvtTbl":{"title":"VVT duty cycle","page":8,"condition":"{ vvtEnabled }"},"wmiSettings":{"title":"WMI Control","page":0,"condition":"{ !vvtEnabled }"},"wmiTbl":{"title":"WMI duty cycle","page":8,"condition":"{ !vvtEnabled && wmiEnabled && wmiMode > 1 }"},"tacho":{"title":"Tacho Output","page":0,"condition":""},"can_serial3IO":{"title":"Canbus/Secondary Serial IO Interface","page":0,"condition":""},"Canin_config":{"title":"External Auxillary Input Channel Configuration","page":0,"condition":"{enable_secondarySerial || (enable_intcan && intcan_available)}"},"Auxin_config":{"title":"Local Auxillary Input Channel Configuration","page":0,"condition":""},"serial3IO":{"title":"Canbus/Secondary Serial IO Interface","page":0,"condition":""},"pressureSensors":{"title":"Fuel/Oil pressure","page":0,"condition":""}}},"tools":{"title":"Tools","subMenus":{"mapCal":{"title":"Calibrate Pressure Sensors","page":0,"condition":""},"batCal":{"title":"Calibrate Voltage Reading","page":0,"condition":""},"std_ms2gentherm":{"title":"Calibrate Temperature Sensors","page":0,"condition":""},"std_ms2geno2":{"title":"Calibrate AFR Sensor","page":0,"condition":"{ egoType > 0 }"},"sensorFilters":{"title":"Set analog sensor filters","page":0,"condition":""}}},"dataLogging":{"title":"Data Logging","subMenus":{}},"3dTuningMaps":{"title":"3D Tuning Maps","subMenus":{"veTable1Map":{"title":"Fuel Table","page":0,"condition":""},"sparkMap":{"title":"Spark Table","page":3,"condition":""},"afrTable1Map":{"title":"AFR Target Table","page":0,"condition":""}}},"hardwareTesting":{"title":"Hardware Testing","subMenus":{"outputtest1":{"title":"Test Output Hardware","page":0,"condition":""},"stm32cmd":{"title":"STM32 Commands","page":0,"condition":""}}},"help":{"title":"Help","subMenus":{"helpGeneral":{"title":"Speeduino Help","page":0,"condition":""}}}},"dialogs":{"engine_constants_southwest":{"title":"Speeduino Board","panels":{},"fields":[{"name":"stoich","title":"Stoichiometric ratio"},{"name":"injLayout","title":"Injector Layout"},{"name":"pinLayout","title":"Board Layout"},{"name":"mapSample","title":"MAP Sample method"}]},"engine_constants_west":{"title":"","panels":{"std_injection":{"layout":"North","fields":[],"panels":{}},"engine_constants_southwest":{"fields":[],"panels":{}}},"fields":[]},"engine_constants_northeast":{"title":"Oddfire Angles","panels":{},"fields":[{"name":"oddfire2","title":"Channel 2 angle","condition":"{ engineType == 1 }"},{"name":"oddfire3","title":"Channel 3 angle","condition":"{ engineType == 1 && nCylinders >= 3 }"},{"name":"oddfire4","title":"Channel 4 angle","condition":"{ engineType == 1 && nCylinders >= 4 }"}]},"engine_constants_east":{"title":"","panels":{"engine_constants_northeast":{"layout":"North","fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":""}]},"engine_constants_warning":{"title":"","panels":{},"fields":[{"name":"_fieldText_","title":"!Warning: The board you have selected may not have enough channels for sequential fuel!"}]},"engine_constants":{"title":"","layout":"border","panels":{"engine_constants_warning":{"layout":"North","fields":[],"panels":{}},"engine_constants_west":{"layout":"West","fields":[],"panels":{}},"engine_constants_east":{"layout":"East","fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/Engine_Constants"},"flexFuelSettings":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"flexEnabled","title":"Flex Fuel Sensor"},{"name":"flexFreqLow","title":"Low (E0)","condition":"{ flexEnabled }"},{"name":"flexFreqHigh","title":"High (E100)","condition":"{ flexEnabled }"}]},"flexFuelWest":{"title":"","panels":{"flex_fuel_curve":{"condition":"{ flexEnabled }","fields":[],"panels":{}},"flex_adv_curve":{"condition":"{ flexEnabled }","fields":[],"panels":{}}},"fields":[]},"flexFuelEast":{"title":"","panels":{"flex_boost_curve":{"condition":"{ flexEnabled && boostEnabled }","fields":[],"panels":{}}},"fields":[]},"flexCurves":{"title":"","layout":"xAxis","panels":{"flexFuelWest":{"layout":"West","fields":[],"panels":{}},"flexFuelEast":{"layout":"East","fields":[],"panels":{}}},"fields":[]},"flexFueling":{"title":"Fuel Sensor Settings","layout":"border","panels":{"flexFuelSettings":{"layout":"North","fields":[],"panels":{}},"flexCurves":{"layout":"South","fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/Flex_Fuel"},"knock_windows":{"title":"Knock Windows","layout":"xAxis","panels":{"knock_window_angle_curve":{"layout":"West","condition":"{ knock_mode }","fields":[],"panels":{}},"knock_window_duration_curve":{"layout":"East","condition":"{ knock_mode }","fields":[],"panels":{}}},"fields":[]},"knock_settings_west":{"title":"Settings","layout":"yAxis","panels":{},"fields":[{"name":"knock_mode","title":"Knock Mode"},{"name":"knock_pin","title":"Knock Pin","condition":"{ knock_mode }"},{"name":"knock_trigger","title":"Knock active when pin is","condition":"{ knock_mode == 1 }"},{"name":"knock_pullup","title":"Use pullup","condition":"{ knock_mode == 1 }"}]},"knock_settings_east":{"title":"Detection and Response","panels":{},"fields":[{"name":"_fieldText_","title":"#Detection"},{"name":"knock_count","title":"Knock count required","condition":"{ knock_mode == 1}"},{"name":"knock_threshold","title":"Knock threshold required","condition":"{ knock_mode == 2}"},{"name":"knock_maxMAP","title":"Maximum MAP","condition":"{ knock_mode }"},{"name":"knock_maxRPM","title":"Maximum RPM","condition":"{ knock_mode }"},{"name":"_fieldText_","title":"#Retard"},{"name":"knock_maxRetard","title":"Total retard","condition":"{ knock_mode }"},{"name":"knock_firstStep","title":"First step size","condition":"{ knock_mode }"},{"name":"knock_stepSize","title":"Other step size","condition":"{ knock_mode }"},{"name":"knock_stepTime","title":"Step time","condition":"{ knock_mode }"},{"name":"_fieldText_","title":"#Recovery"},{"name":"knock_duration","title":"Retard duration","condition":"{ knock_mode }"},{"name":"knock_recoveryStepTime","title":"Recovery step time","condition":"{ knock_mode }"},{"name":"knock_recoveryStep","title":"Recovery step size","condition":"{ knock_mode }"}]},"knock_settings_top":{"title":"","layout":"xAxis","panels":{"knock_settings_west":{"layout":"West","fields":[],"panels":{}},"knock_settings_east":{"layout":"East","fields":[],"panels":{}}},"fields":[]},"knockSettings":{"title":"","layout":"border","panels":{"knock_settings_top":{"layout":"North","fields":[],"panels":{}},"knock_windows":{"layout":"South","fields":[],"panels":{}}},"fields":[],"help":"http://speeduino.com/wiki/index.php/Knock"},"vss_gear_1":{"title":"","layout":"xAxis","panels":{},"fields":[{"name":"vssRatio1","title":"Speed ratio 1"}]},"vss_gear_2":{"title":"","layout":"xAxis","panels":{},"fields":[{"name":"vssRatio2","title":"Speed ratio 2"}]},"vss_gear_3":{"title":"","layout":"xAxis","panels":{},"fields":[{"name":"vssRatio3","title":"Speed ratio 3"}]},"vss_gear_4":{"title":"","layout":"xAxis","panels":{},"fields":[{"name":"vssRatio4","title":"Speed ratio 4"}]},"vss_gear_5":{"title":"","layout":"xAxis","panels":{},"fields":[{"name":"vssRatio5","title":"Speed ratio 5"}]},"vss_gear_6":{"title":"","layout":"xAxis","panels":{},"fields":[{"name":"vssRatio6","title":"Speed ratio 6"}]},"vss_gear_detection":{"title":"Gear Detection","layout":"yAxis","panels":{"vss_gear_1":{"fields":[],"panels":{}},"vss_gear_2":{"fields":[],"panels":{}},"vss_gear_3":{"fields":[],"panels":{}},"vss_gear_4":{"fields":[],"panels":{}},"vss_gear_5":{"fields":[],"panels":{}},"vss_gear_6":{"fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"After setting 'Pulses per km/mile' above"},{"name":"_fieldText_","title":"Drive in each gear (any speed) and press appropriate button"}]},"vss_calibration":{"title":"VSS Calibration","panels":{},"fields":[{"name":"vssPulsesPerKm","title":"Pulses Per KM","condition":"{ vssMode > 1 }"},{"name":"vssSmoothing","title":"Smoothing Factor","condition":"{ vssMode > 1 }"}]},"vssSettings":{"title":"","layout":"yAxis","panels":{"vss_calibration":{"fields":[],"panels":{}},"vss_gear_detection":{"fields":[],"panels":{}}},"fields":[{"name":"vssMode","title":"VSS Input Mode"},{"name":"vssPin","title":"VSS Pin","condition":"{ vssMode > 1 }"}],"help":"https://wiki.speeduino.com/en/configuration/VSS"},"tacho":{"title":"Tacho","panels":{},"fields":[{"name":"tachoPin","title":"Output pin"},{"name":"tachoDiv","title":"Output speed"},{"name":"tachoDuration","title":"Pulse duration"},{"name":"useTachoSweep","title":"Tacho sweep on boot"},{"name":"tachoSweepMaxRPM","title":"Tacho sweep Max RPM","condition":"{ useTachoSweep }"}]},"accelEnrichments_aeSettings":{"title":"","panels":{},"fields":[{"name":"aeMode","title":"Enrichment mode"},{"name":"aeApplyMode","title":"Enrichment method"},{"name":"taeThresh","title":"TPSdot Threshold","condition":"{ aeMode == 0 }"},{"name":"maeThresh","title":"MAPdot Threshold","condition":"{ aeMode == 1 }"},{"name":"aeTime","title":"Accel Time"},{"name":"aeTaperMin","title":"Taper Start RPM"},{"name":"aeTaperMax","title":"Taper End RPM"}]},"accelEnrichments_coldAdj":{"title":"Acceleration Enrichment cold adjustment","panels":{},"fields":[{"name":"aeColdPct","title":"Cold adjustment"},{"name":"aeColdTaperMin","title":"Cold adjustment taper start temperature"},{"name":"aeColdTaperMax","title":"Cold adjustment taper end temperature"}]},"accelEnrichments_south":{"title":"Decelleration Fuel Cutoff (DFCO)","panels":{},"fields":[{"name":"dfcoEnabled","title":"Enabled"},{"name":"dfcoTPSThresh","title":"TPS Threshold","condition":"{ dfcoEnabled }"},{"name":"dfcoMinCLT","title":"Minimum engine temperature","condition":"{ dfcoEnabled }"},{"name":"dfcoDelay","title":"Cutoff delay","condition":"{ dfcoEnabled }"},{"name":"dfcoRPM","title":"Cutoff RPM","condition":"{ dfcoEnabled }"},{"name":"dfcoHyster","title":"RPM Hysteresis","condition":"{ dfcoEnabled }"}]},"accelEnrichments_north_south":{"title":"","panels":{},"fields":[]},"accelEnrichments_north":{"title":"","layout":"xAxis","panels":{"time_accel_tpsdot_curve":{"condition":"{ aeMode == 0 }","fields":[],"panels":{}},"time_accel_mapdot_curve":{"condition":"{ aeMode == 1 }","fields":[],"panels":{}}},"fields":[]},"accelEnrichments_center":{"title":"Acceleration Enrichment","layout":"xAxis","panels":{"accelEnrichments_aeSettings":{"fields":[],"panels":{}},"accelEnrichments_coldAdj":{"fields":[],"panels":{}}},"fields":[]},"accelEnrichments":{"title":"Acceleration Enrichment","panels":{"accelEnrichments_north":{"layout":"North","fields":[],"panels":{}},"accelEnrichments_north_south":{"layout":"Center","fields":[],"panels":{}},"accelEnrichments_center":{"layout":"Center","fields":[],"panels":{}},"accelEnrichments_south":{"layout":"South","fields":[],"panels":{}}},"fields":[],"help":"http://speeduino.com/wiki/index.php/Acceleration_Wizard"},"veTableDialog_north":{"title":"","panels":{"veTable1Tbl":{"fields":[],"panels":{}}},"fields":[]},"veTableDialog_south":{"title":"","panels":{},"fields":[{"name":"multiplyMAP","title":"Multiply VE value by MAP ratio"},{"name":"includeAFR","title":"Multiply by ratio of AFR to Target AFR","condition":"{ egoType == 2 && !incorporateAFR || (incorporateAFR==includeAFR) }"},{"name":"incorporateAFR","title":"Multiply by ratio of stoich AFR/target AFR (incorporate AFR)","condition":"{ !includeAFR || (incorporateAFR==includeAFR) }"}]},"veTableDialog":{"title":"VE Table","panels":{"veTableDialog_north":{"layout":"North","fields":[],"panels":{}},"veTableDialog_south":{"layout":"South","fields":[],"panels":{}}},"fields":[]},"fuelTable2Dialog_switch":{"title":"Switch Conditions","layout":"xAxis","panels":{},"fields":[{"name":"fuel2SwitchVariable","title":"Use secondary table when:"},{"name":"fuel2SwitchValue","title":"is greater than:"}]},"fuelTable2Dialog_input":{"title":"Input Options","layout":"yAxis","panels":{},"fields":[{"name":"fuel2InputPin","title":"Use secondary table when pin"},{"name":"fuel2InputPolarity","title":"Is"},{"name":"fuel2InputPullup","title":"Use internal pullup on pin","condition":"{ fuel2InputPolarity == 0 }"}]},"fuelTable2Dialog_north":{"title":"","panels":{"fuelTable2Dialog_switch":{"condition":"{ fuel2Mode == 3 }","fields":[],"panels":{}},"fuelTable2Dialog_input":{"condition":"{ fuel2Mode == 4 }","fields":[],"panels":{}}},"fields":[{"name":"fuel2Mode","title":"Secondary fuel table mode"},{"name":"fuel2Algorithm","title":"Load source","condition":"{ fuel2Mode }"}]},"fuelTable2Dialog_south":{"title":"","panels":{"fuelTable2Tbl":{"fields":[],"panels":{}}},"fields":[]},"fuelTable2Dialog":{"title":"Fuel Table 2","panels":{"fuelTable2Dialog_north":{"layout":"North","fields":[],"panels":{}},"fuelTable2Dialog_south":{"layout":"South","condition":"{ fuel2Mode }","fields":[],"panels":{}}},"fields":[]},"sparkTable2Dialog_switch":{"title":"Switch Conditions","layout":"xAxis","panels":{},"fields":[{"name":"spark2SwitchVariable","title":"Use secondary table when:"},{"name":"spark2SwitchValue","title":"is greater than:"}]},"sparkTable2Dialog_input":{"title":"Input Options","layout":"yAxis","panels":{},"fields":[{"name":"spark2InputPin","title":"Use secondary table when pin"},{"name":"spark2InputPolarity","title":"Is"},{"name":"spark2InputPullup","title":"Use internal pullup on pin","condition":"{ spark2InputPolarity == 0 }"}]},"sparkTable2Dialog_north":{"title":"","panels":{"sparkTable2Dialog_switch":{"condition":"{ spark2Mode == 3 }","fields":[],"panels":{}},"sparkTable2Dialog_input":{"condition":"{ spark2Mode == 4 }","fields":[],"panels":{}}},"fields":[{"name":"spark2Mode","title":"Secondary advance table mode"},{"name":"spark2Algorithm","title":"Load source","condition":"{ spark2Mode }"}]},"sparkTable2Dialog_south":{"title":"","panels":{"spark2Tbl":{"fields":[],"panels":{}}},"fields":[]},"sparkTable2Dialog":{"title":"Spark Table 2","panels":{"sparkTable2Dialog_north":{"layout":"North","fields":[],"panels":{}},"sparkTable2Dialog_south":{"layout":"South","condition":"{ spark2Mode }","fields":[],"panels":{}}},"fields":[]},"injAngleDialog":{"title":"Injector close angles","panels":{"injector_timing_curve":{"fields":[],"panels":{}}},"fields":[]},"injOpenTimeDialog":{"title":"Injector opening time","panels":{"injector_voltage_curve":{"fields":[],"panels":{}}},"fields":[{"name":"injOpen","title":"Injector Open Time"},{"name":"battVCorMode","title":"Battery Voltage Correction Mode"}]},"injChars":{"title":"Injector Characteristics","panels":{"injOpenTimeDialog":{"fields":[],"panels":{}},"injAngleDialog":{"fields":[],"panels":{}}},"fields":[{"name":"dutyLim","title":"Injector Duty Limit"}],"help":"https://wiki.speeduino.com/en/configuration/Injector_Characteristics"},"egoControl":{"title":"","panels":{},"fields":[{"name":"egoType","title":"Sensor Type"},{"name":"_fieldText_","title":"#Please ensure you calibrate your O2 sensor in the Tools menu"},{"name":"egoAlgorithm","title":"Algorithm","condition":"{ egoType }"},{"name":"egoCount","title":"Ignition Events per Step","condition":"{ egoType && (egoAlgorithm < 3) }"},{"name":"egoLimit","title":"Controller Auth +/-","condition":"{ egoType && (egoAlgorithm < 3) }"},{"name":"ego_min","title":"Only correct above:","condition":"{ egoType && (egoAlgorithm < 3) }"},{"name":"ego_max","title":"and correct below:","condition":"{ egoType && (egoAlgorithm < 3) }"},{"name":"egoTemp","title":"Active Above Coolant","condition":"{ egoType && (egoAlgorithm < 3) }"},{"name":"egoRPM","title":"Active Above RPM","condition":"{ egoType && (egoAlgorithm < 3) }"},{"name":"egoTPSMax","title":"Active Below TPS","condition":"{ egoType && (egoAlgorithm < 3) }"},{"name":"ego_sdelay","title":"EGO delay after start","condition":"{ (egoAlgorithm < 3) }"},{"name":"egoKP","title":"PID Proportional Gain","condition":"{ egoType && (egoAlgorithm == 2) }"},{"name":"egoKI","title":"PID Integral","condition":"{ egoType && (egoAlgorithm == 2) }"},{"name":"egoKD","title":"PID Derivative","condition":"{ egoType && (egoAlgorithm == 2) }"}],"help":"https://wiki.speeduino.com/en/configuration/O2"},"fanSettings":{"title":"Fan Settings","layout":"7","panels":{},"fields":[{"name":"fanEnable","title":"Fan Mode"},{"name":"fanWhenOff","title":"Allow fan when off","condition":"{ fanEnable }"},{"name":"fanWhenCranking","title":"Allow fan when cranking","condition":"{ fanEnable }"},{"name":"fanPin","title":"Fan output pin","condition":"{ fanEnable }"},{"name":"fanInv","title":"Fan Output Inverted","condition":"{ fanEnable }"},{"name":"fanSP","title":"Fan switching temperature","condition":"{ fanEnable }"},{"name":"fanHyster","title":"Fan hysteresis","condition":"{ fanEnable }"}],"help":"https://wiki.speeduino.com/en/configuration/Thermo_fan"},"stepper_idle":{"title":"Stepper Idle","panels":{},"fields":[{"name":"iacStepTime","title":"Step time (ms)","condition":"{ iacAlgorithm == 4 || iacAlgorithm == 5 }"},{"name":"iacCoolTime","title":"Cool time (ms)","condition":"{ iacAlgorithm == 4 || iacAlgorithm == 5 }"},{"name":"iacStepHome","title":"Home steps","condition":"{ iacAlgorithm == 4 || iacAlgorithm == 5 }"},{"name":"iacStepHyster","title":"Minimum Steps","condition":"{ iacAlgorithm == 4 || iacAlgorithm == 5 }"},{"name":"iacMaxSteps","title":"Don't exceed","condition":"{ iacAlgorithm == 4 || iacAlgorithm == 5 }"},{"name":"iacStepperInv","title":"Stepper Inverted","condition":"{ iacAlgorithm == 4 || iacAlgorithm == 5 }"}]},"pwm_idle":{"title":"PWM Idle","panels":{},"fields":[{"name":"iacChannels","title":"Number of outputs","condition":"{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 }"},{"name":"idleFreq","title":"Idle valve frequency","condition":"{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 }"},{"name":"iacPWMdir","title":"Idle valve direction","condition":"{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 }"},{"name":"iacPWMrun","title":"Run before start","condition":"{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 }"}]},"closedloop_idle":{"title":"Closed loop Idle","panels":{},"fields":[{"name":"idleKP","title":"P","condition":"{ iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6}"},{"name":"idleKI","title":"I","condition":"{ iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6}"},{"name":"idleKD","title":"D","condition":"{ iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6}"},{"name":"iacCLminDuty","title":"Minimum valve duty","condition":"{ iacAlgorithm == 3 || iacAlgorithm == 6}"},{"name":"iacCLmaxDuty","title":"Maximum valve duty","condition":"{ iacAlgorithm == 3 || iacAlgorithm == 6}"},{"name":"iacTPSlimit","title":"Integeral reset above TPS","condition":"{ iacAlgorithm == 6 }"},{"name":"iacRPMlimitHysteresis","title":"Integeral reset RPM Hysteresis","condition":"{ iacAlgorithm == 6 }"}]},"idleSettings":{"title":"Idle Settings","panels":{"pwm_idle":{"fields":[],"panels":{}},"stepper_idle":{"fields":[],"panels":{}},"closedloop_idle":{"fields":[],"panels":{}}},"fields":[{"name":"iacAlgorithm","title":"Idle control type"},{"name":"idleTaperTime","title":"Crank to run taper","condition":"{ iacAlgorithm == 2 || iacAlgorithm == 4 }"},{"name":"_fieldText_","title":"#Fast Idle"},{"name":"iacFastTemp","title":"Fast idle temp","condition":"{ iacAlgorithm == 1 }"}],"help":"https://wiki.speeduino.com/en/configuration/Idle"},"idleUpInputSettingsPanel":{"title":"Idle Up Input Settings","layout":"yAxis","panels":{},"fields":[{"name":"idleUpEnabled","title":"Idle Up Enabled"},{"name":"idleUpPin","title":"Idle Up Pin","condition":"{ idleUpEnabled }"},{"name":"idleUpPolarity","title":"Idle Up Pin Polarity","condition":"{ idleUpEnabled }"},{"name":"idleUpAdder","title":"Idle Up Amount","condition":"{ idleUpEnabled }"}]},"idleUpOutputSettingsPanel":{"title":"Idle Up Output Settings","layout":"yAxis","panels":{},"fields":[{"name":"idleUpOutputEnabled","title":"Idle Up Output Enabled","condition":"{ idleUpEnabled }"},{"name":"idleUpOutputInv","title":"Idle Up Output Inverted"},{"name":"idleUpOutputPin","title":"Idle Up Output Pin","condition":"{ idleUpEnabled && idleUpOutputEnabled }"}]},"idleUpSettings":{"title":"Idle Up Settings","panels":{"idleUpInputSettingsPanel":{"fields":[],"panels":{}},"idleUpOutputSettingsPanel":{"fields":[],"panels":{}}},"fields":[]},"fuelpump":{"title":"Fuel pump","panels":{},"fields":[{"name":"fuelPumpPin","title":"Fuel pump pin"},{"name":"fpPrime","title":"Fuel pump prime duration"}]},"crankingEnrichDialog":{"title":"Cranking Enrichment","layout":"yAxis","panels":{"cranking_enrich_curve":{"fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"#Note"},{"name":"_fieldText_","title":"Values are specified as modifiers to the normal fueling. Eg 100% = No change."}]},"crankingIgnOptions":{"title":"Cranking Timing","layout":"yAxis","panels":{},"fields":[{"name":"CrankAng","title":"Cranking advance Angle","condition":"{ ignCranklock == 0 }"},{"name":"ignBypassEnable","title":"Cranking bypass"},{"name":"ignBypassPin","title":"Bypass output pin"},{"name":"ignCranklock","title":"Fix cranking timing with trigger","condition":"{ TrigPattern == 1 || TrigPattern == 4 || TrigPattern == 10 || TrigPattern == 9 }"}]},"crankingOptions":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"crankRPM","title":"Cranking RPM (Max)"},{"name":"tpsflood","title":"Flood Clear level"},{"name":"fpPrime","title":"Fuel pump prime duration"},{"name":"primingDelay","title":"Injectors priming delay"},{"name":"crankingEnrichTaper","title":"Cranking enrichment taper time"}]},"primePW":{"title":"Priming Pulsewidth","panels":{"priming_pw_curve":{"fields":[],"panels":{}}},"fields":[]},"crankPW":{"title":"Cranking Settings","layout":"yAxis","panels":{"crankingOptions":{"layout":"North","fields":[],"panels":{}},"crankingEnrichDialog":{"layout":"Center","fields":[],"panels":{}},"crankingIgnOptions":{"layout":"South","fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/Cranking"},"ASE_amount":{"title":"Enrichment amount (%)","layout":"yAxis","panels":{"afterstart_enrichment_curve":{"fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"Defines the fuel enrichment percentage after start."},{"name":"_fieldText_","title":"This is needed to keep engine running after start"},{"name":"_fieldText_","title":"Common values are 5% when engine is hot to 50% when engine is cold."}]},"ASE_time":{"title":"Duration (s)","layout":"yAxis","panels":{"afterstart_enrichment_time":{"fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"How long time the After Start Enrichment is applied in seconds."},{"name":"_fieldText_","title":"Usually this is varies from 1-2s when engine is hot up to 20s on a cold engine."},{"name":"aseTaperTime","title":"Transition time to disable"}]},"ASE":{"title":"Afterstart Enrichment(ASE)","layout":"yAxis","panels":{"ASE_amount":{"fields":[],"panels":{}},"ASE_time":{"fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"#Time and duration curves share common coolant values"}]},"triggerSettings":{"title":"Trigger Settings","layout":"4","panels":{},"fields":[{"name":"TrigPattern","title":"Trigger Pattern"},{"name":"numTeeth","title":"Primary base teeth","condition":"{ TrigPattern == 0 || TrigPattern == 2 || TrigPattern == 11 || TrigPattern == 18 || TrigPattern == 19 }"},{"name":"TrigSpeed","title":"Primary trigger speed","condition":"{ TrigPattern == 0 }"},{"name":"missingTeeth","title":"Missing teeth","condition":"{ TrigPattern == 0 }"},{"name":"TrigAngMul","title":"Trigger angle multiplier","condition":"{ TrigPattern == 11 }"},{"name":"TrigAng","title":"Trigger Angle"},{"name":"_fieldText_","title":"This number represents the angle ATDC when"},{"name":"_fieldText_","title":"tooth #1 passes the primary sensor."},{"name":"_fieldText_","title":""},{"name":"SkipCycles","title":"Skip Revolutions"},{"name":"_fieldText_","title":"Note: This is the number of revolutions that will be skipped during"},{"name":"_fieldText_","title":"cranking before the injectors and coils are fired"},{"name":"TrigEdge","title":"Trigger edge"},{"name":"TrigEdgeSec","title":"Secondary trigger edge","condition":"{ (TrigPattern == 0 && TrigSpeed == 0 && trigPatternSec != 2) || TrigPattern == 2 || TrigPattern == 9 || TrigPattern == 12 || TrigPattern == 18 || TrigPattern == 19 || TrigPattern == 20 }"},{"name":"_fieldText_","title":"Missing Tooth Secondary type"},{"name":"_fieldText_","title":"Level for 1st phase"},{"name":"TrigFilter","title":"Trigger Filter","condition":"{ TrigPattern != 13 }"},{"name":"useResync","title":"Re-sync every cycle","condition":"{ TrigPattern == 2 || TrigPattern == 4 || TrigPattern == 7 || TrigPattern == 12 || TrigPattern == 9 || TrigPattern == 13 || TrigPattern == 18 || TrigPattern == 19 }"}],"help":"https://wiki.speeduino.com/en/decoders"},"lockSparkSettings":{"title":"Locked timing","panels":{},"fields":[{"name":"fixAngEnable","title":"Enabled Fixed/Locked timing"},{"name":"FixAng","title":"Fixed Angle","condition":"{ fixAngEnable }"},{"name":"_fieldText_","title":"#Note: During cranking the fixed/locked timing angle is overriden by the Cranking advance angle value above"}]},"newIgnitionMode":{"title":"New Ignition Mode","panels":{},"fields":[{"name":"_fieldText_","title":"This option will improve accuracy on most compatible triggers"},{"name":"_fieldText_","title":"However if timing issues are encountered, please disable this"},{"name":"perToothIgn","title":"Use new ignition mode"}]},"sparkSettings":{"title":"Spark Settings","layout":"4","panels":{"lockSparkSettings":{"fields":[],"panels":{}},"newIgnitionMode":{"condition":"{TrigPattern == 0 || TrigPattern == 1 || TrigPattern == 2 || TrigPattern == 3 || TrigPattern == 4 || TrigPattern == 9 || TrigPattern == 12 || TrigPattern == 13 || TrigPattern == 16 || TrigPattern == 18 || TrigPattern == 19}","fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"!Warning: The board you have selected may not have enough channels for sequential ignition!"},{"name":"ignAlgorithm","title":"Ignition load source"},{"name":"sparkMode","title":"Spark output mode"},{"name":"CrankAng","title":"Cranking advance Angle"},{"name":"IgInv","title":"Spark Outputs triggers"}],"help":"https://wiki.speeduino.com/en/configuration/Spark_Settings"},"dwellSettings":{"title":"Dwell Settings","layout":"4","panels":{},"fields":[{"name":"dwellcrank","title":"Cranking dwell"},{"name":"useDwellMap","title":"Use dwell map"},{"name":"dwellrun","title":"Running dwell","condition":"{ useDwellMap == 0 }"},{"name":"sparkDur","title":"Spark duration"},{"name":"_fieldText_","title":""},{"name":"_fieldText_","title":"#Note"},{"name":"_fieldText_","title":"The above times are for 12V. Voltage correction"},{"name":"_fieldText_","title":"is applied. At higher voltages the time is reduced"},{"name":"_fieldText_","title":"and when low it is increased"},{"name":"_fieldText_","title":""},{"name":"_fieldText_","title":"Overdwell protection"},{"name":"useDwellLim","title":"Use Overdwell protection"},{"name":"dwellLim","title":"Max dwell time","condition":"{ useDwellLim }"},{"name":"_fieldText_","title":"Note: Set the maximum dwell time at least 3ms above"},{"name":"_fieldText_","title":"your desired dwell time (Including cranking)"},{"name":"idleAdvEnabled","title":"Idle advance mode"},{"name":"idleAdvAlgorithm","title":"Idle detect mode","condition":"{ idleAdvEnabled >= 1 }"},{"name":"idleAdvDelay","title":"Delay before idle control starts (s)","condition":"{ idleAdvEnabled >= 1 }"},{"name":"idleAdvRPM","title":"Active Below RPM","condition":"{ idleAdvEnabled >= 1 }"},{"name":"idleAdvTPS","title":"Active Below TPS","condition":"{ idleAdvEnabled >= 1 && idleAdvAlgorithm == 0 }"},{"name":"idleAdvVss","title":"Active Below VSS","condition":"{ idleAdvEnabled >= 1 && vssMode > 0 }"},{"name":"CTPSEnabled","title":"Closed Throttle Sensor Enabled","condition":"{ idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 }"},{"name":"CTPSPin","title":"Closed Throttle Sensor Pin","condition":"{ idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 && CTPSEnabled == 1 }"},{"name":"CTPSPolarity","title":"Closed Throttle Sensor Pin Polarity","condition":"{ idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 && CTPSEnabled == 1 }"}],"help":"https://wiki.speeduino.com/en/configuration/Dwell"},"idleAdvanceSettings":{"title":"Idle Advance Settings","layout":"xAxis","panels":{"idleAdvanceSettings_east":{"fields":[],"panels":{}},"idle_advance_curve":{"condition":"{ idleAdvEnabled >= 1 }","fields":[],"panels":{}},"iacClosedLoop_curve":{"condition":"{ iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || idleAdvEnabled >= 1 }","fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/IdleAdvance"},"rotary_ignition":{"title":"Rotary Ignition","layout":"4","panels":{"rotaryTrailing_curve":{"fields":[],"panels":{}}},"fields":[{"name":"rotaryType","title":"Ignition Configuration"}]},"boostCut":{"title":"Boost Cut","panels":{},"fields":[{"name":"boostCutEnabled","title":"Enable Boost limit"},{"name":"boostLimit","title":"Boost Limit","condition":"{ boostCutEnabled }"}]},"boostLoad":{"title":"","panels":{"boostTbl":{"fields":[],"panels":{}}},"fields":[{"name":"boostType","title":"Mode"},{"name":"_fieldText_","title":"In open loop mode, the values in this table are duty cycle %"},{"name":"_fieldText_","title":"In closed loop mode, the values are boost targets in kPa"}]},"revLimiterDialog":{"title":"Rev Limiter","panels":{},"fields":[{"name":"_fieldText_","title":"Rev Limiter"},{"name":"_fieldText_","title":"!Soft limiter only available with ignition cut"},{"name":"SoftRevLim","title":"Soft rev limit","condition":"{ engineProtectType == 1 || engineProtectType == 3 }"},{"name":"SoftLimitMode","title":"Soft limiter mode","condition":"{ engineProtectType == 1 || engineProtectType == 3 }"},{"name":"SoftLimRetard","title":"Soft limit timing","condition":"{ engineProtectType == 1 || engineProtectType == 3 }"},{"name":"SoftLimMax","title":"Soft limit max time","condition":"{ engineProtectType == 1 || engineProtectType == 3 }"},{"name":"HardRevLim","title":"Hard Rev limit"}]},"oilPressureProtection":{"title":"Oil Pressure","panels":{"oil_pressure_prot_curve":{"condition":"{ oilPressureEnable && oilPressureProtEnbl }","fields":[],"panels":{}}},"fields":[{"name":"oilPressureProtEnbl","title":"Oil Pressure Protection","condition":"{ oilPressureEnable }"}]},"engineProtectionWest":{"title":"","panels":{"protectIndicatorPanel":{"condition":"{ engineProtectType }","fields":[],"panels":{}}},"fields":[{"name":"engineProtectType","title":"Protection Cut"},{"name":"engineProtectMaxRPM","title":"Engine Protection RPM min","condition":"{ engineProtectType }"},{"name":"hardCutType","title":"Cut method","condition":"{ engineProtectType == 1 || engineProtectType == 3 }"}]},"RevLimiterS":{"title":"Engine Protection and Limiters","layout":"xAxis","panels":{"engineProtectionWest":{"fields":[],"panels":{}},"revLimiterDialog":{"condition":"{ engineProtectType }","fields":[],"panels":{}},"boostCut":{"condition":"{ engineProtectType }","fields":[],"panels":{}},"oilPressureProtection":{"condition":"{ engineProtectType }","fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/Rev_Limits"},"clutchInput":{"title":"Clutch input","panels":{},"fields":[{"name":"launchPin","title":"Clutch Input Pin","condition":"{ launchEnable || flatSEnable }"},{"name":"launchHiLo","title":"Clutch enabled when signal is","condition":"{ launchEnable || flatSEnable }"},{"name":"lnchPullRes","title":"Clutch Pullup Resistor","condition":"{ launchEnable || flatSEnable }"},{"name":"flatSArm","title":"Launch / Flat Shift switch RPM","condition":"{ launchEnable || flatSEnable }"}]},"LaunchControl":{"title":"Launch Control / Flat shift","layout":"6","panels":{"clutchInput":{"fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"Launch Control"},{"name":"launchEnable","title":"Enable Launch"},{"name":"lnchCtrlTPS","title":"TPS threshold","condition":"{ launchEnable }"},{"name":"lnchSoftLim","title":"Soft rev limit","condition":"{ launchEnable }"},{"name":"lnchRetard","title":"Soft limit absolute timing","condition":"{ launchEnable }"},{"name":"lnchHardLim","title":"Hard rev limit","condition":"{ launchEnable }"},{"name":"lnchFuelAdd","title":"Fuel adder during launch","condition":"{ launchEnable }"},{"name":"_fieldText_","title":"Flat Shift"},{"name":"flatSEnable","title":"Enable flat shift"},{"name":"flatSSoftWin","title":"Soft rev window","condition":"{ flatSEnable }"},{"name":"flatSRetard","title":"Soft limit absolute timing","condition":"{ flatSEnable }"}],"help":"https://wiki.speeduino.com/en/configuration/Launch_Flatshift"},"NitrousStage1":{"title":"Stage 1","panels":{},"fields":[{"name":"n2o_stage1_pin","title":"Nitrous Output Pin"},{"name":"n2o_stage1_minRPM","title":"Minimum Engage RPM"},{"name":"n2o_stage1_maxRPM","title":"Maximum Engage RPM"},{"name":"n2o_stage1_adderMin","title":"Fuel adder @ Min RPM"},{"name":"n2o_stage1_adderMax","title":"Fuel adder @ Max RPM"},{"name":"n2o_stage1_retard","title":"Ignition retard when active"}]},"NitrousStage2":{"title":"Stage 2","panels":{},"fields":[{"name":"n2o_stage2_pin","title":"Nitrous Output Pin"},{"name":"n2o_stage2_minRPM","title":"Minimum Engage RPM"},{"name":"n2o_stage2_maxRPM","title":"Maximum Engage RPM"},{"name":"n2o_stage2_adderMin","title":"Fuel adder @ Min RPM"},{"name":"n2o_stage2_adderMax","title":"Fuel adder @ Max RPM"},{"name":"n2o_stage2_retard","title":"Ignition retard when active"}]},"NitrousMain":{"title":"Settings","panels":{},"fields":[{"name":"n2o_enable","title":"Nitrous Mode"},{"name":"n2o_arming_pin","title":"Arming Pin","condition":"{ n2o_enable > 0 }"},{"name":"n2o_pin_polarity","title":"Nitrous is armed when pin is","condition":"{ n2o_enable > 0 }"},{"name":"n2o_minCLT","title":"Minimum CLT","condition":"{ n2o_enable > 0 }"},{"name":"n2o_minTPS","title":"Minimum TPS","condition":"{ n2o_enable > 0 }"},{"name":"n2o_maxMAP","title":"Maximum MAP","condition":"{ n2o_enable > 0 }"},{"name":"n2o_maxAFR","title":"Leanest AFR","condition":"{ n2o_enable > 0 }"}]},"NitrousControl":{"title":"Nitrous","panels":{"NitrousMain":{"layout":"North","fields":[],"panels":{}},"NitrousStage1":{"layout":"West","condition":"{ n2o_enable > 0 }","fields":[],"panels":{}},"NitrousStage2":{"layout":"East","condition":"{ n2o_enable > 1 }","fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/Nitrous_Control"},"OLED":{"title":"OLED Display","layout":"2","panels":{},"fields":[{"name":"display","title":"Display Type"},{"name":"_fieldText_","title":"#Note"},{"name":"_fieldText_","title":"ECU must be rebooted after changing above value"},{"name":"display1","title":"Field 1","condition":"{ display }"},{"name":"display2","title":"Field 2","condition":"{ display }"},{"name":"display3","title":"Field 3","condition":"{ display }"},{"name":"display4","title":"Field 4","condition":"{ display }"}]},"batCal":{"title":"Calibrate voltage reading","panels":{},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/Sensor_Calibration"},"mapCal":{"title":"Calibrate MAP","panels":{},"fields":[{"name":"_fieldText_","title":"#MAP Sensor"},{"name":"mapMin","title":"kPa At 0.0 Volts"},{"name":"mapMax","title":"kPa At 5.0 Volts"},{"name":"legacyMAP","title":"Use legacy MAP reading"},{"name":"_fieldText_","title":"#Baro Sensor"},{"name":"useExtBaro","title":"Use external Baro sensor"},{"name":"baroPin","title":"Analog pin to use for ext. Baro sensor","condition":"{ useExtBaro }"},{"name":"baroMin","title":"kPa At 0.0 Volts","condition":"{ useExtBaro }"},{"name":"baroMax","title":"kPa At 5.0 Volts","condition":"{ useExtBaro }"},{"name":"_fieldText_","title":"#EMAP Sensor"},{"name":"useEMAP","title":"Use EMAP sensor"},{"name":"EMAPPin","title":"Analog pin to use for ext. Baro sensor","condition":"{ useEMAP }"},{"name":"EMAPMin","title":"kPa At 0.0 Volts","condition":"{ useEMAP }"},{"name":"EMAPMax","title":"kPa At 5.0 Volts","condition":"{ useEMAP }"}],"help":"https://wiki.speeduino.com/en/configuration/Sensor_Calibration"},"sensorFilters":{"title":"Analog sensor filters","panels":{},"fields":[{"name":"_fieldText_","title":"The values here set the amount of filtering to apply to each analog input"},{"name":"_fieldText_","title":"Higher values result in stronger filtering, but slower response times for readings"},{"name":"_fieldText_","title":"#Most setups will NOT require changes to the default filter values"},{"name":"_fieldText_","title":""},{"name":"fuelPressureEnable","title":"Enabled"},{"name":"fuelPressurePin","title":"Pin","condition":"{ fuelPressureEnable }"},{"name":"fuelPressureMin","title":"Pressure at 0v","condition":"{ fuelPressureEnable }"},{"name":"fuelPressureMax","title":"Pressure at 5v","condition":"{ fuelPressureEnable }"}]},"fuelPressureDialog":{"title":"Fuel Pressure","layout":"xAxis","panels":{"fuelPressureSettings":{"fields":[],"panels":{}}},"fields":[{"name":"oilPressureEnable","title":"Enabled"},{"name":"oilPressurePin","title":"Pin","condition":"{ oilPressureEnable }"},{"name":"oilPressureMin","title":"Pressure at 0v","condition":"{ oilPressureEnable }"},{"name":"oilPressureMax","title":"Pressure at 5v","condition":"{ oilPressureEnable }"}]},"oilPressureDialog":{"title":"Oil Pressure","layout":"xAxis","panels":{"oilPressureSettings":{"fields":[],"panels":{}}},"fields":[]},"pressureSensors":{"title":"Pressure Transducers","panels":{"fuelPressureDialog":{"fields":[],"panels":{}},"oilPressureDialog":{"fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/Sensor_Calibration"},"boostSettings":{"title":"Boost Control","panels":{"boostCut":{"fields":[],"panels":{}}},"fields":[{"name":"boostEnabled","title":"Boost Control Enabled"},{"name":"boostType","title":"Boost control type","condition":"{ boostEnabled }"},{"name":"boostPin","title":"Boost output pin","condition":"{ boostEnabled }"},{"name":"boostFreq","title":"Boost solenoid freq.","condition":"{ boostEnabled }"},{"name":"boostMinDuty","title":"Valve minimum duty cycle","condition":"{ boostEnabled && boostType == 1 }"},{"name":"boostMaxDuty","title":"Valve maximum duty cycle","condition":"{ boostEnabled && boostType == 1 }"},{"name":"_fieldText_","title":"Closed Loop settings"},{"name":"boostMode","title":"Control mode","condition":"{ boostEnabled && boostType == 1 }"},{"name":"boostIntv","title":"Control interval","condition":"{ boostEnabled && boostType == 1 }"},{"name":"boostKP","title":"P","condition":"{ boostEnabled && boostMode && boostType == 1 }"},{"name":"boostKI","title":"I","condition":"{ boostEnabled && boostMode && boostType == 1 }"},{"name":"boostKD","title":"D","condition":"{ boostEnabled && boostMode && boostType == 1 }"}],"help":"https://wiki.speeduino.com/en/configuration/Boost_Control"},"vvtClosedLoop":{"title":"Closed loop","panels":{},"fields":[{"name":"vvtCLUseHold","title":"Hold duty used"},{"name":"vvtCLholdDuty","title":"Hold duty","condition":"{ vvtCLUseHold }"},{"name":"vvtCLAlterFuelTiming","title":"Adjust fuel timing"},{"name":"vvtCLMinAng","title":"Cam angle @ 0% duty"},{"name":"_fieldText_","title":""},{"name":"vvtCLKP","title":"Proportional Gain"},{"name":"vvtCLKI","title":"Integral Gain"},{"name":"vvtCLKD","title":"Differential Gain"},{"name":"vvtCLminDuty","title":"Minimum valve duty","condition":"{ vvtEnabled && vvtMode == 2 }"},{"name":"vvtCLmaxDuty","title":"Maximum valve duty","condition":"{ vvtEnabled && vvtMode == 2 }"}]},"vvtSettings":{"title":"VVT Control","panels":{"vvtClosedLoop":{"condition":"{ vvtEnabled && vvtMode == 2 }","fields":[],"panels":{}}},"fields":[{"name":"vvtEnabled","title":"VVT Control Enabled"},{"name":"vvtMode","title":"VVT Mode","condition":"{ vvtEnabled }"},{"name":"_fieldText_","title":"#Please note that close loop is currently experimental for Miata patterns ONLY"},{"name":"vvtLoadSource","title":"Load source","condition":"{ vvtEnabled }"},{"name":"VVTasOnOff","title":"Use VVT map as On / Off only","condition":"{ vvtEnabled && vvtMode != 2 }"},{"name":"vvt1Pin","title":"VVT output pin","condition":"{ vvtEnabled }"},{"name":"vvtFreq","title":"VVT solenoid freq.","condition":"{ vvtEnabled }"},{"name":"vvtPWMdir","title":"Increased duty direction","condition":"{ vvtEnabled }"}]},"wmiSettings":{"title":"WMI Control","panels":{"wmi_adv_curve":{"condition":"{ wmiEnabled && wmiAdvEnabled }","fields":[],"panels":{}}},"fields":[{"name":"_fieldText_","title":"#Experimental!"},{"name":"wmiEnabled","title":"WMI Control Enabled"},{"name":"wmiMode","title":"WMI Mode","condition":"{ wmiEnabled }"},{"name":"wmiTPS","title":"WMI min TPS","condition":"{ wmiEnabled }"},{"name":"wmiRPM","title":"WMI min RPM","condition":"{ wmiEnabled }"},{"name":"wmiMAP","title":"WMI min MAP","condition":"{ wmiEnabled }"},{"name":"wmiMAP2","title":"WMI max MAP","condition":"{ wmiEnabled && wmiMode == 1}"},{"name":"wmiIAT","title":"WMI min IAT","condition":"{ wmiEnabled }"},{"name":"wmiOffset","title":"WMI offset","condition":"{ wmiEnabled && wmiMode == 3}"},{"name":"_fieldText_","title":""},{"name":"vvt1Pin","title":"WMI PWM output pin","condition":"{ wmiEnabled }"},{"name":"vvtFreq","title":"WMI PWM freq.","condition":"{ wmiEnabled }"},{"name":"_fieldText_","title":""},{"name":"wmiEnabledPin","title":"WMI enabled output pin","condition":"{ wmiEnabled }"},{"name":"_fieldText_","title":""},{"name":"wmiEmptyEnabled","title":"WMI tank empty input","condition":"{ wmiEnabled }"},{"name":"wmiEmptyPin","title":"WMI tank empty pin","condition":"{ wmiEnabled }"},{"name":"wmiEmptyPolarity","title":"WMI tank empty polarity","condition":"{ wmiEnabled }"},{"name":"_fieldText_","title":""},{"name":"wmiIndicatorEnabled","title":"WMI tank indicator output","condition":"{ wmiEnabled }"},{"name":"wmiIndicatorPin","title":"WMI tank indicator pin","condition":"{ wmiEnabled }"},{"name":"wmiIndicatorPolarity","title":"WMI tank indicator polarity","condition":"{ wmiEnabled }"},{"name":"_fieldText_","title":""},{"name":"wmiAdvEnabled","title":"Iginition advance correction","condition":"{ wmiEnabled }"}]},"warmup":{"title":"Warmup Enrichment (WUE) - Percent Multiplier","panels":{"warmup_curve":{"fields":[],"panels":{}}},"fields":[]},"inj_trim1TblTitle":{"title":"Channel #1","panels":{"fuelTrimTable1Tbl":{"condition":"{ fuelTrimEnabled }","fields":[],"panels":{}}},"fields":[]},"inj_trim2TblTitle":{"title":"Channel #2","panels":{"fuelTrimTable2Tbl":{"condition":"{ fuelTrimEnabled }","fields":[],"panels":{}}},"fields":[]},"inj_trim3TblTitle":{"title":"Channel #3","panels":{"fuelTrimTable3Tbl":{"condition":"{ fuelTrimEnabled }","fields":[],"panels":{}}},"fields":[]},"inj_trim4TblTitle":{"title":"Channel #4","panels":{"fuelTrimTable4Tbl":{"condition":"{ fuelTrimEnabled }","fields":[],"panels":{}}},"fields":[]},"inj_trim5TblTitle":{"title":"Channel #5","panels":{"fuelTrimTable5Tbl":{"condition":"{ fuelTrimEnabled }","fields":[],"panels":{}}},"fields":[]},"inj_trim6TblTitle":{"title":"Channel #6","panels":{"fuelTrimTable6Tbl":{"condition":"{ fuelTrimEnabled }","fields":[],"panels":{}}},"fields":[]},"inj_trim7TblTitle":{"title":"Channel #7","panels":{"fuelTrimTable7Tbl":{"condition":"{ fuelTrimEnabled }","fields":[],"panels":{}}},"fields":[]},"inj_trim8TblTitle":{"title":"Channel #8","panels":{"fuelTrimTable8Tbl":{"condition":"{ fuelTrimEnabled }","fields":[],"panels":{}}},"fields":[]},"inj_trimadt":{"title":"","layout":"xAxis","panels":{"inj_trim1TblTitle":{"fields":[],"panels":{}},"inj_trim2TblTitle":{"fields":[],"panels":{}}},"fields":[]},"inj_trimadb":{"title":"","layout":"xAxis","panels":{"inj_trim3TblTitle":{"fields":[],"panels":{}},"inj_trim4TblTitle":{"fields":[],"panels":{}}},"fields":[]},"inj_trimadt_B":{"title":"","layout":"xAxis","panels":{"inj_trim5TblTitle":{"fields":[],"panels":{}},"inj_trim6TblTitle":{"fields":[],"panels":{}}},"fields":[]},"inj_trimadb_B":{"title":"","layout":"xAxis","panels":{"inj_trim7TblTitle":{"fields":[],"panels":{}},"inj_trim8TblTitle":{"fields":[],"panels":{}}},"fields":[]},"inj_trim_enable":{"title":"","panels":{},"fields":[{"name":"fuelTrimEnabled","title":"Individual fuel trim enabled","condition":"{ injLayout == 3 && nCylinders <= nFuelChannels }"}]},"inj_trimad":{"title":"Injector Cyl 1-4 Trims","layout":"yAxis","panels":{"inj_trim_enable":{"layout":"North","fields":[],"panels":{}},"inj_trimadt":{"layout":"Center","fields":[],"panels":{}},"inj_trimadb":{"layout":"South","fields":[],"panels":{}}},"fields":[]},"inj_trimad_B":{"title":"Injector Cyl 5-8 Trims","layout":"yAxis","panels":{"inj_trim_enable":{"layout":"North","fields":[],"panels":{}},"inj_trimadt_B":{"layout":"Center","fields":[],"panels":{}},"inj_trimadb_B":{"layout":"South","fields":[],"panels":{}}},"fields":[]},"stagingTableDialog_north":{"title":"","panels":{},"fields":[{"name":"stagingEnabled","title":"Staging enabled"},{"name":"stagingMode","title":"Staging mode"},{"name":"stagedInjSizePri","title":"Size of primary injectors","condition":"{ stagingEnabled }"},{"name":"stagedInjSizeSec","title":"Size of secondary injectors","condition":"{ stagingEnabled }"}]},"stagingTableDialog_south":{"title":"","panels":{"stagingTbl":{"condition":"{ stagingMode == 0 }","fields":[],"panels":{}}},"fields":[]},"stagingTableDialog":{"title":"Staged injection","panels":{"stagingTableDialog_north":{"layout":"North","fields":[],"panels":{}},"stagingTableDialog_south":{"layout":"South","fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/configuration/Staged_Injection"},"outputtest_warningmessage":{"title":"","panels":{},"fields":[{"name":"_fieldText_","title":"WARNING! USE AT YOUR OWN RISK. INCORRECT USE WILL DAMAGE YOUR HARDWARE!"},{"name":"_fieldText_","title":"Do not attempt to use this page whilst your engine is running!"},{"name":"_fieldText_","title":"Forcing the Injector or Spark outputs could cause flooding of your engine or permanent damage to ignition coils!"}]},"enableoutputtestbuttons":{"title":"Enable Test Controls","layout":"xAxis","panels":{},"fields":[]},"outputtestinj1":{"title":"Injector CH1","layout":"yAxis","panels":{},"fields":[]},"outputtestinj2":{"title":"Injector CH2","layout":"yAxis","panels":{},"fields":[]},"outputtestinj3":{"title":"Injector CH3","layout":"yAxis","panels":{},"fields":[]},"outputtestinj4":{"title":"Injector CH4","layout":"yAxis","panels":{},"fields":[]},"outputtestinj5":{"title":"Injector CH5","layout":"yAxis","panels":{},"fields":[]},"outputtestinj6":{"title":"Injector CH6","layout":"yAxis","panels":{},"fields":[]},"outputtestinj7":{"title":"Injector CH7","layout":"yAxis","panels":{},"fields":[]},"outputtestinj8":{"title":"Injector CH8","layout":"yAxis","panels":{},"fields":[]},"outputtest_injectors":{"title":"Injector Driver Output Test","layout":"xAxis","panels":{"outputtestinj1":{"fields":[],"panels":{}},"outputtestinj2":{"fields":[],"panels":{}},"outputtestinj3":{"fields":[],"panels":{}},"outputtestinj4":{"fields":[],"panels":{}},"outputtestinj5":{"fields":[],"panels":{}},"outputtestinj6":{"fields":[],"panels":{}},"outputtestinj7":{"fields":[],"panels":{}},"outputtestinj8":{"fields":[],"panels":{}}},"fields":[]},"outputtestspk1":{"title":"Spark CH1","layout":"yAxis","panels":{},"fields":[]},"outputtestspk2":{"title":"Spark CH2","layout":"yAxis","panels":{},"fields":[]},"outputtestspk3":{"title":"Spark CH3","layout":"yAxis","panels":{},"fields":[]},"outputtestspk4":{"title":"Spark CH4","layout":"yAxis","panels":{},"fields":[]},"outputtestspk5":{"title":"Spark CH5","layout":"yAxis","panels":{},"fields":[]},"outputtestspk6":{"title":"Spark CH6","layout":"yAxis","panels":{},"fields":[]},"outputtestspk7":{"title":"Spark CH7","layout":"yAxis","panels":{},"fields":[]},"outputtestspk8":{"title":"Spark CH8","layout":"yAxis","panels":{},"fields":[]},"outputtest_spark":{"title":"Spark Driver Output Test","layout":"xAxis","panels":{"outputtestspk1":{"fields":[],"panels":{}},"outputtestspk2":{"fields":[],"panels":{}},"outputtestspk3":{"fields":[],"panels":{}},"outputtestspk4":{"fields":[],"panels":{}},"outputtestspk5":{"fields":[],"panels":{}},"outputtestspk6":{"fields":[],"panels":{}},"outputtestspk7":{"fields":[],"panels":{}},"outputtestspk8":{"fields":[],"panels":{}}},"fields":[]},"outputtest1":{"title":"Test Output Hardware","panels":{"enableoutputtestbuttons":{"fields":[],"panels":{}},"outputtest_injectors":{"fields":[],"panels":{}},"outputtest_spark":{"fields":[],"panels":{}},"outputtest_warningmessage":{"fields":[],"panels":{}}},"fields":[],"help":"https://wiki.speeduino.com/en/Hardware_testing_page"},"stm32cmd":{"title":"STM32 Commands","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"If Secondary Serial or Internal CANBUS is DISABLED then any input channel assigned to that external source will NOT function"}]},"canAuxinput_alias":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Input Alias"},{"name":"AUXin00Alias","title":"","condition":"{(caninput_sel0a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin01Alias","title":"","condition":"{(caninput_sel1a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin02Alias","title":"","condition":"{(caninput_sel2a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin03Alias","title":"","condition":"{(caninput_sel3a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin04Alias","title":"","condition":"{(caninput_sel4a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin05Alias","title":"","condition":"{(caninput_sel5a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin06Alias","title":"","condition":"{(caninput_sel6a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin07Alias","title":"","condition":"{(caninput_sel7a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin08Alias","title":"","condition":"{(caninput_sel8a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin09Alias","title":"","condition":"{(caninput_sel9a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin10Alias","title":"","condition":"{(caninput_sel10a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin11Alias","title":"","condition":"{(caninput_sel11a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin12Alias","title":"","condition":"{(caninput_sel12a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin13Alias","title":"","condition":"{(caninput_sel13a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin14Alias","title":"","condition":"{(caninput_sel14a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin15Alias","title":"","condition":"{(caninput_sel15a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"}]},"caninput_sel":{"title":"","panels":{},"fields":[{"name":"_fieldText_","title":"CAN Input Channel on/off"},{"name":"caninput_sel0a","title":"CAN Input 0","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel0b","title":"CAN Input 0","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel1a","title":"CAN Input 1","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel1b","title":"CAN Input 1","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel2a","title":"CAN Input 2","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel2b","title":"CAN Input 2","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel3a","title":"CAN Input 3","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel3b","title":"CAN Input 3","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel4a","title":"CAN Input 4","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel4b","title":"CAN Input 4","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel5a","title":"CAN Input 5","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel5b","title":"CAN Input 5","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel6a","title":"CAN Input 6","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel6b","title":"CAN Input 6","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel7a","title":"CAN Input 7","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel7b","title":"CAN Input 7","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel8a","title":"CAN Input 8","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel8b","title":"CAN Input 8","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel9a","title":"CAN Input 9","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel9b","title":"CAN Input 9","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel10a","title":"CAN Input 10","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel10b","title":"CAN Input 10","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel11a","title":"CAN Input 11","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel11b","title":"CAN Input 11","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel12a","title":"CAN Input 12","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel12b","title":"CAN Input 12","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel13a","title":"CAN Input 13","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel13b","title":"CAN Input 13","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel14a","title":"CAN Input 14","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel14b","title":"CAN Input 14","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel15a","title":"CAN Input 15","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel15b","title":"CAN Input 15","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"}]},"caninput_parameter_group":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Source CAN Address"},{"name":"caninput_source_can_address0","title":"","condition":"{ (caninput_sel0a == 1 || caninput_sel0b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address1","title":"","condition":"{ (caninput_sel1a == 1 || caninput_sel1b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address2","title":"","condition":"{ (caninput_sel2a == 1 || caninput_sel2b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address3","title":"","condition":"{ (caninput_sel3a == 1 || caninput_sel3b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address4","title":"","condition":"{ (caninput_sel4a == 1 || caninput_sel4b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address5","title":"","condition":"{ (caninput_sel5a == 1 || caninput_sel5b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address6","title":"","condition":"{ (caninput_sel6a == 1 || caninput_sel6b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address7","title":"","condition":"{ (caninput_sel7a == 1 || caninput_sel7b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address8","title":"","condition":"{ (caninput_sel8a == 1 || caninput_sel8b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address9","title":"","condition":"{ (caninput_sel9a == 1 || caninput_sel9b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address10","title":"","condition":"{ (caninput_sel10a == 1 || caninput_sel10b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address11","title":"","condition":"{ (caninput_sel11a == 1 || caninput_sel11b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address12","title":"","condition":"{ (caninput_sel12a == 1 || caninput_sel12b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address13","title":"","condition":"{ (caninput_sel13a == 1 || caninput_sel13b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address14","title":"","condition":"{ (caninput_sel14a == 1 || caninput_sel14b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_can_address15","title":"","condition":"{ (caninput_sel15a == 1 || caninput_sel15b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"}]},"caninput_parameter_start_byte":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"source data start byte"},{"name":"caninput_source_start_byte0","title":"","condition":"{ (caninput_sel0a == 1 || caninput_sel0b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte1","title":"","condition":"{ (caninput_sel1a == 1 || caninput_sel1b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte2","title":"","condition":"{ (caninput_sel2a == 1 || caninput_sel2b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte3","title":"","condition":"{ (caninput_sel3a == 1 || caninput_sel3b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte4","title":"","condition":"{ (caninput_sel4a == 1 || caninput_sel4b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte5","title":"","condition":"{ (caninput_sel5a == 1 || caninput_sel5b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte6","title":"","condition":"{ (caninput_sel6a == 1 || caninput_sel6b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte7","title":"","condition":"{ (caninput_sel7a == 1 || caninput_sel7b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte8","title":"","condition":"{ (caninput_sel8a == 1 || caninput_sel8b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte9","title":"","condition":"{ (caninput_sel9a == 1 || caninput_sel9b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte10","title":"","condition":"{ (caninput_sel10a == 1 || caninput_sel10b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte11","title":"","condition":"{ (caninput_sel11a == 1 || caninput_sel11b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte12","title":"","condition":"{ (caninput_sel12a == 1 || caninput_sel12b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte13","title":"","condition":"{ (caninput_sel13a == 1 || caninput_sel13b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte14","title":"","condition":"{ (caninput_sel14a == 1 || caninput_sel14b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_start_byte15","title":"","condition":"{ (caninput_sel15a == 1 || caninput_sel15b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"}]},"caninput_parameter_num_byte":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Input Parameter Number of Bytes"},{"name":"caninput_source_num_bytes0","title":"","condition":"{ (caninput_sel0a == 1 || caninput_sel0b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes1","title":"","condition":"{ (caninput_sel1a == 1 || caninput_sel1b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes2","title":"","condition":"{ (caninput_sel2a == 1 || caninput_sel2b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes3","title":"","condition":"{ (caninput_sel3a == 1 || caninput_sel3b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes4","title":"","condition":"{ (caninput_sel4a == 1 || caninput_sel4b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes5","title":"","condition":"{ (caninput_sel5a == 1 || caninput_sel5b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes6","title":"","condition":"{ (caninput_sel6a == 1 || caninput_sel6b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes7","title":"","condition":"{ (caninput_sel7a == 1 || caninput_sel7b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes8","title":"","condition":"{ (caninput_sel8a == 1 || caninput_sel8b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes9","title":"","condition":"{ (caninput_sel9a == 1 || caninput_sel9b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes10","title":"","condition":"{ (caninput_sel10a == 1 || caninput_sel10b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes11","title":"","condition":"{ (caninput_sel11a == 1 || caninput_sel11b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes12","title":"","condition":"{ (caninput_sel12a == 1 || caninput_sel12b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes13","title":"","condition":"{ (caninput_sel13a == 1 || caninput_sel13b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes14","title":"","condition":"{ (caninput_sel14a == 1 || caninput_sel14b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"},{"name":"caninput_source_num_bytes15","title":"","condition":"{ (caninput_sel15a == 1 || caninput_sel15b == 1) && (enable_secondarySerial || (enable_intcan && intcan_available)) }"}]},"caninput_serial_can":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Serial/CAN"},{"name":"caninput_sel0extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel0extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel0extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel1extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel1extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel1extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel2extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel2extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel2extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel3extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel3extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel3extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel4extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel4extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel4extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel5extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel5extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel5extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel6extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel6extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel6extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel7extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel7extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel7extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel8extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel8extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel8extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel9extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel9extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel9extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel10extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel10extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel10extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel11extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel11extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel11extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel12extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel12extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel12extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel13extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel13extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel13extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel14extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel14extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel14extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel15extsourcea","title":"","condition":"{enable_secondarySerial && (!enable_intcan || (enable_intcan && !intcan_available))}"},{"name":"caninput_sel15extsourceb","title":"","condition":"{enable_secondarySerial && (enable_intcan && intcan_available)}"},{"name":"caninput_sel15extsourcec","title":"","condition":"{!enable_secondarySerial && (enable_intcan && intcan_available)}"}]},"caninconfig_blank1":{"title":"","panels":{},"fields":[{"name":"_fieldText_","title":""}]},"Canin_config1":{"title":"","layout":"xAxis","panels":{"canAuxinput_alias":{"fields":[],"panels":{}},"caninconfig_blank1":{"fields":[],"panels":{}},"caninput_sel":{"fields":[],"panels":{}},"caninput_serial_can":{"fields":[],"panels":{}},"caninput_parameter_group":{"fields":[],"panels":{}},"caninput_parameter_start_byte":{"fields":[],"panels":{}},"caninput_parameter_num_byte":{"fields":[],"panels":{}}},"fields":[]},"Canin_config":{"title":"","layout":"yAxis","panels":{"Auxin_north":{"fields":[],"panels":{}},"Canin_config1":{"fields":[],"panels":{}}},"fields":[],"help":"http://speeduino.com/wiki/index.php/Secondary_Serial_IO_interface#Read_external_analog_data"},"canAuxoutput_alias":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Input Alias"},{"name":"AUXin00Alias","title":"","condition":"{canoutput_sel0}"},{"name":"AUXin01Alias","title":"","condition":"{canoutput_sel1}"},{"name":"AUXin02Alias","title":"","condition":"{canoutput_sel2}"},{"name":"AUXin03Alias","title":"","condition":"{canoutput_sel3}"},{"name":"AUXin04Alias","title":"","condition":"{canoutput_sel4}"},{"name":"AUXin05Alias","title":"","condition":"{canoutput_sel5}"},{"name":"AUXin06Alias","title":"","condition":"{canoutput_sel6}"},{"name":"AUXin07Alias","title":"","condition":"{canoutput_sel7}"}]},"canoutput_sel":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"CAN Output Channel on/off"},{"name":"canoutput_sel0","title":"CAN Output 0","condition":"{ enable_intcandata_out}"},{"name":"canoutput_sel1","title":"CAN Output 1","condition":"{ enable_intcandata_out }"},{"name":"canoutput_sel2","title":"CAN Output 2","condition":"{ enable_intcandata_out }"},{"name":"canoutput_sel3","title":"CAN Output 3","condition":"{ enable_intcandata_out }"},{"name":"canoutput_sel4","title":"CAN Output 4","condition":"{ enable_intcandata_out }"},{"name":"canoutput_sel5","title":"CAN Output 5","condition":"{ enable_intcandata_out }"},{"name":"canoutput_sel6","title":"CAN Output 6","condition":"{ enable_intcandata_out }"},{"name":"canoutput_sel7","title":"CAN Output 7","condition":"{ enable_intcandata_out }"}]},"canoutput_parameter_group":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Output Parameter Group"},{"name":"canoutput_param_group","title":""},{"name":"canoutput_param_group","title":""},{"name":"canoutput_param_group","title":""},{"name":"canoutput_param_group","title":""},{"name":"canoutput_param_group","title":""},{"name":"canoutput_param_group","title":""},{"name":"canoutput_param_group","title":""},{"name":"canoutput_param_group","title":""}]},"canoutput_parameter_start_byte":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Output Parameter Start Byte"},{"name":"canoutput_param_start_byte0","title":"","condition":"{ canoutput_sel0 && enable_intcandata_out }"},{"name":"canoutput_param_start_byte1","title":"","condition":"{ canoutput_sel1 && enable_intcandata_out }"},{"name":"canoutput_param_start_byte2","title":"","condition":"{ canoutput_sel2 && enable_intcandata_out }"},{"name":"canoutput_param_start_byte3","title":"","condition":"{ canoutput_sel3 && enable_intcandata_out }"},{"name":"canoutput_param_start_byte4","title":"","condition":"{ canoutput_sel4 && enable_intcandata_out }"},{"name":"canoutput_param_start_byte5","title":"","condition":"{ canoutput_sel5 && enable_intcandata_out }"},{"name":"canoutput_param_start_byte6","title":"","condition":"{ canoutput_sel6 && enable_intcandata_out }"},{"name":"canoutput_param_start_byte7","title":"","condition":"{ canoutput_sel7 && enable_intcandata_out }"}]},"canoutput_parameter_num_byte":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Output Parameter Number of Bytes"},{"name":"canoutput_param_num_bytes0","title":"","condition":"{ canoutput_sel0 && enable_intcandata_out }"},{"name":"canoutput_param_num_bytes1","title":"","condition":"{ canoutput_sel1 && enable_intcandata_out }"},{"name":"canoutput_param_num_bytes2","title":"","condition":"{ canoutput_sel2 && enable_intcandata_out }"},{"name":"canoutput_param_num_bytes3","title":"","condition":"{ canoutput_sel3 && enable_intcandata_out }"},{"name":"canoutput_param_num_bytes4","title":"","condition":"{ canoutput_sel4 && enable_intcandata_out }"},{"name":"canoutput_param_num_bytes5","title":"","condition":"{ canoutput_sel5 && enable_intcandata_out }"},{"name":"canoutput_param_num_bytes6","title":"","condition":"{ canoutput_sel6 && enable_intcandata_out }"},{"name":"canoutput_param_num_bytes7","title":"","condition":"{ canoutput_sel7 && enable_intcandata_out }"}]},"canoutconfig_blank1":{"title":"","panels":{},"fields":[{"name":"_fieldText_","title":""}]},"Canout_config1":{"title":"","layout":"xAxis","panels":{"canAuxoutput_alias":{"fields":[],"panels":{}},"canoutconfig_blank1":{"fields":[],"panels":{}},"canoutput_sel":{"fields":[],"panels":{}},"canoutput_parameter_group":{"fields":[],"panels":{}},"canoutput_parameter_start_byte":{"fields":[],"panels":{}},"canoutput_parameter_num_byte":{"fields":[],"panels":{}}},"fields":[]},"Canout_config2":{"title":"CAN Data Out","panels":{},"fields":[{"name":"enable_intcandata_out","title":"Enable CanBus data Output"}]},"Canout_config":{"title":"","layout":"yAxis","panels":{"Canout_config2":{"fields":[],"panels":{}},"Canout_config1":{"fields":[],"panels":{}}},"fields":[],"help":""},"can_serial3IO":{"title":"CanBus/Secondary Serial IO interface","panels":{},"fields":[{"name":"enable_secondarySerial","title":"Enable Second Serial"},{"name":"enable_intcan","title":"Enable Internal Canbus"},{"name":"true_address","title":"True Canbus Address"},{"name":"_fieldText_","title":"NOTE! Realtime Data Base Address MUST be at least 0x16 GREATER than the True Address as they are reserved for future expansion"},{"name":"realtime_base_address","title":"Realtime Data Base Can Address"},{"name":"obd_address","title":"Speeduino OBD address"}],"help":"http://speeduino.com/wiki/index.php/Secondary_Serial_IO_interface"},"serial3IO":{"title":"Secondary Serial IO interface","panels":{},"fields":[{"name":"enable_secondarySerial","title":"Enable Second Serial"},{"name":"enable_intcan","title":"Enable Internal Canbus"},{"name":"true_address","title":"True Canbus Address"},{"name":"_fieldText_","title":"NOTE! Realtime Data Base Address MUST be at least 0x16 GREATER than the True Address as they are reserved for future expansion"},{"name":"realtime_base_address","title":"Realtime Data Base Can Address"},{"name":"obd_address","title":"Speeduino OBD address"}],"help":"http://speeduino.com/wiki/index.php/Serial3_IO_interface"},"reset_control":{"title":"Reset Control","panels":{},"fields":[{"name":"resetControl","title":"Control Type"},{"name":"resetControlPin","title":"Control Pin"}]},"Auxinput_pin_selection":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Source"},{"name":"Auxin0pina","title":"Local Analog Source 0 Pin No:","condition":"{(caninput_sel0a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin0pinb","title":"Local Digital Source 0 Pin No:","condition":"{(caninput_sel0a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin1pina","title":"Local Analog Source 1 Pin No:","condition":"{(caninput_sel1a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin1pinb","title":"Local Digital Source 1 Pin No:","condition":"{(caninput_sel1a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin2pina","title":"Local Analog Source 2 Pin No:","condition":"{(caninput_sel2a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin2pinb","title":"Local Digital Source 2 Pin No:","condition":"{(caninput_sel2a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin3pina","title":"Local Analog Source 3 Pin No:","condition":"{(caninput_sel3a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin3pinb","title":"Local Digital Source 3 Pin No:","condition":"{(caninput_sel3a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin4pina","title":"Local Analog Source 4 Pin No:","condition":"{(caninput_sel4a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin4pinb","title":"Local Digital Source 4 Pin No:","condition":"{(caninput_sel4a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin5pina","title":"Local Analog Source 5 Pin No:","condition":"{(caninput_sel5a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin5pinb","title":"Local Digital Source 5 Pin No:","condition":"{(caninput_sel5a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin6pina","title":"Local Analog Source 6 Pin No:","condition":"{(caninput_sel6a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin6pinb","title":"Local Digital Source 6 Pin No:","condition":"{(caninput_sel6a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin7pina","title":"Local Analog Source 7 Pin No:","condition":"{(caninput_sel7a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin7pinb","title":"Local Digital Source 7 Pin No:","condition":"{(caninput_sel7a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin8pina","title":"Local Analog Source 8 Pin No:","condition":"{(caninput_sel8a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin8pinb","title":"Local Digital Source 8 Pin No:","condition":"{(caninput_sel8a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin9pina","title":"Local Analog Source 9 Pin No:","condition":"{(caninput_sel9a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin9pinb","title":"Local Digital Source 9 Pin No:","condition":"{(caninput_sel9a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin10pina","title":"Local Analog Source 10 Pin No:","condition":"{(caninput_sel10a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin10pinb","title":"Local Digital Source 10 Pin No:","condition":"{(caninput_sel10a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin11pina","title":"Local Analog Source 11 Pin No:","condition":"{(caninput_sel11a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin11pinb","title":"Local Digital Source 11 Pin No:","condition":"{(caninput_sel11a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin12pina","title":"Local Analog Source 12 Pin No:","condition":"{(caninput_sel12a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin12pinb","title":"Local Digital Source 12 Pin No:","condition":"{(caninput_sel12a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin13pina","title":"Local Analog Source 13 Pin No:","condition":"{(caninput_sel13a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin13pinb","title":"Local Digital Source 13 Pin No:","condition":"{(caninput_sel13a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin14pina","title":"Local Analog Source 14 Pin No:","condition":"{(caninput_sel14a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin14pinb","title":"Local Digital Source 14 Pin No:","condition":"{(caninput_sel14a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin15pina","title":"Local Analog Source 15 Pin No:","condition":"{(caninput_sel15a == 2 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b == 2 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"},{"name":"Auxin15pinb","title":"Local Digital Source 15 Pin No:","condition":"{(caninput_sel15a == 3 && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b == 3 && (enable_secondarySerial || (enable_intcan && intcan_available == 1 )))}"}]},"Auxinput_alias":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Input Alias"},{"name":"AUXin00Alias","title":"","condition":"{(caninput_sel0a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin01Alias","title":"","condition":"{(caninput_sel1a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin02Alias","title":"","condition":"{(caninput_sel2a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin03Alias","title":"","condition":"{(caninput_sel3a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin04Alias","title":"","condition":"{(caninput_sel4a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin05Alias","title":"","condition":"{(caninput_sel5a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin06Alias","title":"","condition":"{(caninput_sel6a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin07Alias","title":"","condition":"{(caninput_sel7a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin08Alias","title":"","condition":"{(caninput_sel8a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin09Alias","title":"","condition":"{(caninput_sel9a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin10Alias","title":"","condition":"{(caninput_sel10a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin11Alias","title":"","condition":"{(caninput_sel11a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin12Alias","title":"","condition":"{(caninput_sel12a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin13Alias","title":"","condition":"{(caninput_sel13a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin14Alias","title":"","condition":"{(caninput_sel14a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"},{"name":"AUXin15Alias","title":"","condition":"{(caninput_sel15a && (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b && (enable_secondarySerial || (enable_intcan && intcan_available)))}"}]},"Auxinput_channelenable":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Aux Input Channel Enable"},{"name":"caninput_sel0a","title":"AUX Input 0","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel0b","title":"AUX Input 0","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel1a","title":"AUX Input 1","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel1b","title":"AUX Input 1","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel2a","title":"AUX Input 2","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel2b","title":"AUX Input 2","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel3a","title":"AUX Input 3","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel3b","title":"AUX Input 3","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel4a","title":"AUX Input 4","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel4b","title":"AUX Input 4","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel5a","title":"AUX Input 5","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel5b","title":"AUX Input 5","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel6a","title":"AUX Input 6","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel6b","title":"AUX Input 6","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel7a","title":"AUX Input 7","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel7b","title":"AUX Input 7","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel8a","title":"AUX Input 8","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel8b","title":"AUX Input 8","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel9a","title":"AUX Input 9","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel9b","title":"AUX Input 9","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel10a","title":"AUX Input 10","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel10b","title":"AUX Input 10","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel11a","title":"AUX Input 11","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel11b","title":"AUX Input 11","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel12a","title":"AUX Input 12","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel12b","title":"AUX Input 12","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel13a","title":"AUX Input 13","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel13b","title":"AUX Input 13","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel14a","title":"AUX Input 14","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel14b","title":"AUX Input 14","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"},{"name":"caninput_sel15a","title":"AUX Input 15","condition":"{ (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) }"},{"name":"caninput_sel15b","title":"AUX Input 15","condition":"{ (enable_secondarySerial && enable_intcan) || (!enable_secondarySerial && (enable_intcan && intcan_available)) || (enable_secondarySerial && !enable_intcan) }"}]},"Auxin_south":{"title":"Auxillary Input Configuration","layout":"xAxis","panels":{"Auxinput_alias":{"fields":[],"panels":{}},"Auxinput_channelenable":{"fields":[],"panels":{}},"Auxinput_pin_selection":{"fields":[],"panels":{}}},"fields":[]},"Auxin_config":{"title":"","layout":"yAxis","panels":{"Auxin_north":{"fields":[],"panels":{}},"Auxin_south":{"fields":[],"panels":{}}},"fields":[]},"gaugeLimits":{"title":"Gauge Limits","panels":{},"fields":[{"name":"_fieldText_","title":"#RPM"},{"name":"rpmwarn","title":"Warning"},{"name":"rpmdang","title":"Danger"},{"name":"rpmhigh","title":"High"},{"name":"_fieldText_","title":"#MAP"},{"name":"mapwarn","title":"Warning"},{"name":"mapdang","title":"Danger"},{"name":"maphigh","title":"High"}]},"io_summary":{"title":"I/O Summary","panels":{},"fields":[]},"prgm_out_pin_selection_1":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"outputInverted0","title":"","condition":"{outputPin[0]}"},{"name":"outputInverted1","title":"","condition":"{outputPin[1]}"},{"name":"outputInverted2","title":"","condition":"{outputPin[2]}"},{"name":"outputInverted3","title":"","condition":"{outputPin[3]}"},{"name":"outputInverted4","title":"","condition":"{outputPin[4]}"},{"name":"outputInverted5","title":"","condition":"{outputPin[5]}"},{"name":"outputInverted6","title":"","condition":"{outputPin[6]}"},{"name":"outputInverted7","title":"","condition":"{outputPin[7]}"}]},"prgm_out_pin_selection_2":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"firstDataIn0","title":"if(","condition":"{outputPin[0]}"},{"name":"firstDataIn1","title":"if(","condition":"{outputPin[1]}"},{"name":"firstDataIn2","title":"if(","condition":"{outputPin[2]}"},{"name":"firstDataIn3","title":"if(","condition":"{outputPin[3]}"},{"name":"firstDataIn4","title":"if(","condition":"{outputPin[4]}"},{"name":"firstDataIn5","title":"if(","condition":"{outputPin[5]}"},{"name":"firstDataIn6","title":"if(","condition":"{outputPin[6]}"},{"name":"firstDataIn7","title":"if(","condition":"{outputPin[7]}"}]},"prgm_out_pin_selection_3":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"firstCompType0","title":"","condition":"{outputPin[0]}"},{"name":"firstCompType1","title":"","condition":"{outputPin[1]}"},{"name":"firstCompType2","title":"","condition":"{outputPin[2]}"},{"name":"firstCompType3","title":"","condition":"{outputPin[3]}"},{"name":"firstCompType4","title":"","condition":"{outputPin[4]}"},{"name":"firstCompType5","title":"","condition":"{outputPin[5]}"},{"name":"firstCompType6","title":"","condition":"{outputPin[6]}"},{"name":"firstCompType7","title":"","condition":"{outputPin[7]}"}]},"prgm_out_pin_selection_4":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""}]},"prgm_out_pin_selection_5":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"bitwise0","title":")","condition":"{outputPin[0]}"},{"name":"bitwise1","title":")","condition":"{outputPin[1]}"},{"name":"bitwise2","title":")","condition":"{outputPin[2]}"},{"name":"bitwise3","title":")","condition":"{outputPin[3]}"},{"name":"bitwise4","title":")","condition":"{outputPin[4]}"},{"name":"bitwise5","title":")","condition":"{outputPin[6]}"},{"name":"bitwise6","title":")","condition":"{outputPin[6]}"},{"name":"bitwise7","title":")","condition":"{outputPin[7]}"}]},"prgm_out_pin_selection_6":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"secondDataIn0","title":"","condition":"{outputPin[0] && bitwise0}"},{"name":"secondDataIn1","title":"","condition":"{outputPin[1] && bitwise1}"},{"name":"secondDataIn2","title":"","condition":"{outputPin[2] && bitwise2}"},{"name":"secondDataIn3","title":"","condition":"{outputPin[3] && bitwise3}"},{"name":"secondDataIn4","title":"","condition":"{outputPin[4] && bitwise4}"},{"name":"secondDataIn5","title":"","condition":"{outputPin[5] && bitwise5}"},{"name":"secondDataIn6","title":"","condition":"{outputPin[6] && bitwise6}"},{"name":"secondDataIn7","title":"","condition":"{outputPin[7] && bitwise7}"}]},"prgm_out_pin_selection_":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""},{"name":"firstTarget","title":""}]},"prgm_out_pin_selection_7":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"secondCompType0","title":"","condition":"{outputPin[0] && bitwise0}"},{"name":"secondCompType1","title":"","condition":"{outputPin[1] && bitwise1}"},{"name":"secondCompType2","title":"","condition":"{outputPin[2] && bitwise2}"},{"name":"secondCompType3","title":"","condition":"{outputPin[3] && bitwise3}"},{"name":"secondCompType4","title":"","condition":"{outputPin[4] && bitwise4}"},{"name":"secondCompType5","title":"","condition":"{outputPin[5] && bitwise5}"},{"name":"secondCompType6","title":"","condition":"{outputPin[6] && bitwise6}"},{"name":"secondCompType6","title":"","condition":"{outputPin[7] && bitwise7}"}]},"prgm_out_pin_selection_8":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"secondTarget","title":""},{"name":"secondTarget","title":""},{"name":"secondTarget","title":""},{"name":"secondTarget","title":""},{"name":"secondTarget","title":""},{"name":"secondTarget","title":""},{"name":"secondTarget","title":""},{"name":"secondTarget","title":""}]},"prgm_out_pin_selection_9":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":""},{"name":"outputDelay","title":"during"},{"name":"outputDelay","title":"during"},{"name":"outputDelay","title":"during"},{"name":"outputDelay","title":"during"},{"name":"outputDelay","title":"during"},{"name":"outputDelay","title":"during"},{"name":"outputDelay","title":"during"},{"name":"outputDelay","title":"during"}]},"prgm_out_alias":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Input Alias"},{"name":"prgm_out00Alias","title":"","condition":"{outputPin[0]}"},{"name":"prgm_out01Alias","title":"","condition":"{outputPin[1]}"},{"name":"prgm_out02Alias","title":"","condition":"{outputPin[2]}"},{"name":"prgm_out03Alias","title":"","condition":"{outputPin[3]}"},{"name":"prgm_out04Alias","title":"","condition":"{outputPin[4]}"},{"name":"prgm_out05Alias","title":"","condition":"{outputPin[5]}"},{"name":"prgm_out06Alias","title":"","condition":"{outputPin[6]}"},{"name":"prgm_out07Alias","title":"","condition":"{outputPin[7]}"}]},"prgm_out_channelenable":{"title":"","layout":"yAxis","panels":{},"fields":[{"name":"_fieldText_","title":"Pin No:"},{"name":"outputPin0","title":""},{"name":"outputPin1","title":""},{"name":"outputPin2","title":""},{"name":"outputPin3","title":""},{"name":"outputPin4","title":""},{"name":"outputPin5","title":""},{"name":"outputPin6","title":""},{"name":"outputPin7","title":""}]},"prgm_out_unique":{"title":"","layout":"xAxis","panels":{"prgm_out_channelenable":{"fields":[],"panels":{}},"prgm_out_alias":{"fields":[],"panels":{}},"prgm_out_pin_selection_1":{"fields":[],"panels":{}},"prgm_out_pin_selection_2":{"fields":[],"panels":{}},"prgm_out_pin_selection_3":{"fields":[],"panels":{}},"prgm_out_pin_selection_4":{"fields":[],"panels":{}},"prgm_out_pin_selection_5":{"fields":[],"panels":{}},"prgm_out_pin_selection_6":{"fields":[],"panels":{}},"prgm_out_pin_selection_7":{"fields":[],"panels":{}},"prgm_out_pin_selection_8":{"fields":[],"panels":{}},"prgm_out_pin_selection_9":{"fields":[],"panels":{}}},"fields":[]},"prgm_out_rules_1_condition_1":{"title":"Condition 1","layout":"xAxis","panels":{},"fields":[{"name":"firstDataIn0","title":"","condition":"{outputPin[0]}"},{"name":"firstCompType0","title":"","condition":"{outputPin[0]}"},{"name":"firstTarget","title":""}]},"prgm_out_rules_1_condition_2":{"title":"Condition 2","layout":"xAxis","panels":{},"fields":[{"name":"secondDataIn0","title":"","condition":"{outputPin[0] && bitwise0}"},{"name":"secondCompType0","title":"","condition":"{outputPin[0] && bitwise0}"},{"name":"secondTarget","title":""}]},"prgm_out_rules_2_condition_1":{"title":"Condition 1","layout":"xAxis","panels":{},"fields":[{"name":"firstDataIn1","title":"","condition":"{outputPin[1]}"},{"name":"firstCompType1","title":"","condition":"{outputPin[1]}"},{"name":"firstTarget","title":""}]},"prgm_out_rules_2_condition_2":{"title":"Condition 2","layout":"xAxis","panels":{},"fields":[{"name":"secondDataIn1","title":"","condition":"{outputPin[1] && bitwise1}"},{"name":"secondCompType1","title":"","condition":"{outputPin[1] && bitwise1}"},{"name":"secondTarget","title":""}]},"prgm_out_rules_3_condition_1":{"title":"Condition 1","layout":"xAxis","panels":{},"fields":[{"name":"firstDataIn2","title":"","condition":"{outputPin[2]}"},{"name":"firstCompType2","title":"","condition":"{outputPin[2]}"},{"name":"firstTarget","title":""}]},"prgm_out_rules_3_condition_2":{"title":"Condition 2","layout":"xAxis","panels":{},"fields":[{"name":"secondDataIn2","title":"","condition":"{outputPin[2] && bitwise2}"},{"name":"secondCompType2","title":"","condition":"{outputPin[2] && bitwise2}"},{"name":"secondTarget","title":""}]},"prgm_out_rules_4_condition_1":{"title":"Condition 1","layout":"xAxis","panels":{},"fields":[{"name":"firstDataIn3","title":"","condition":"{outputPin[3]}"},{"name":"firstCompType3","title":"","condition":"{outputPin[3]}"},{"name":"firstTarget","title":""}]},"prgm_out_rules_4_condition_2":{"title":"Condition 2","layout":"xAxis","panels":{},"fields":[{"name":"secondDataIn3","title":"","condition":"{outputPin[3] && bitwise3}"},{"name":"secondCompType3","title":"","condition":"{outputPin[3] && bitwise3}"},{"name":"secondTarget","title":""}]},"prgm_out_rules_5_condition_1":{"title":"Condition 1","layout":"xAxis","panels":{},"fields":[{"name":"firstDataIn4","title":"","condition":"{outputPin[4]}"},{"name":"firstCompType4","title":"","condition":"{outputPin[4]}"},{"name":"firstTarget","title":""}]},"prgm_out_rules_5_condition_2":{"title":"Condition 2","layout":"xAxis","panels":{},"fields":[{"name":"secondDataIn4","title":"","condition":"{outputPin[4] && bitwise4}"},{"name":"secondCompType4","title":"","condition":"{outputPin[4] && bitwise4}"},{"name":"secondTarget","title":""}]},"prgm_out_rules_6_condition_1":{"title":"Condition 1","layout":"xAxis","panels":{},"fields":[{"name":"firstDataIn5","title":"","condition":"{outputPin[5]}"},{"name":"firstCompType5","title":"","condition":"{outputPin[5]}"},{"name":"firstTarget","title":""}]},"prgm_out_rules_6_condition_2":{"title":"Condition 2","layout":"xAxis","panels":{},"fields":[{"name":"secondDataIn5","title":"","condition":"{outputPin[5] && bitwise5}"},{"name":"secondCompType5","title":"","condition":"{outputPin[5] && bitwise5}"},{"name":"secondTarget","title":""}]},"prgm_out_rules_7_condition_1":{"title":"Condition 1","layout":"xAxis","panels":{},"fields":[{"name":"firstDataIn6","title":"","condition":"{outputPin[6]}"},{"name":"firstCompType6","title":"","condition":"{outputPin[6]}"},{"name":"firstTarget","title":""}]},"prgm_out_rules_7_condition_2":{"title":"Condition 2","layout":"xAxis","panels":{},"fields":[{"name":"secondDataIn6","title":"","condition":"{outputPin[6] && bitwise6}"},{"name":"secondCompType6","title":"","condition":"{outputPin[6] && bitwise6}"},{"name":"secondTarget","title":""}]},"prgm_out_rules_8_condition_1":{"title":"Condition 1","layout":"xAxis","panels":{},"fields":[{"name":"firstDataIn7","title":"","condition":"{outputPin[7]}"},{"name":"firstCompType7","title":"","condition":"{outputPin[7]}"},{"name":"firstTarget","title":""}]},"prgm_out_rules_8_condition_2":{"title":"Condition 2","layout":"xAxis","panels":{},"fields":[{"name":"secondDataIn7","title":"","condition":"{outputPin[7] && bitwise7}"},{"name":"secondCompType7","title":"","condition":"{outputPin[7] && bitwise7}"},{"name":"secondTarget","title":""}]},"prgm_out_rules_1":{"title":"Rule 1","layout":"yAxis","panels":{"prgm_out_rules_1_condition_1":{"fields":[],"panels":{}},"prgm_out_rules_1_condition_2":{"fields":[],"panels":{}}},"fields":[{"name":"outputPin0","title":"Output Pin Num"},{"name":"prgm_out00Alias","title":"Rule Alias","condition":"{outputPin[0]}"},{"name":"outputInverted0","title":"Output Polarity","condition":"{outputPin[0]}"},{"name":"outputDelay","title":"Activation Delay"},{"name":"bitwise0","title":"2nd Condition","condition":"{outputPin[0]}"}]},"prgm_out_rules_2":{"title":"Rule 2","layout":"yAxis","panels":{"prgm_out_rules_2_condition_1":{"fields":[],"panels":{}},"prgm_out_rules_2_condition_2":{"fields":[],"panels":{}}},"fields":[{"name":"outputPin1","title":"Output Pin Num"},{"name":"prgm_out01Alias","title":"Rule Alias","condition":"{outputPin[1]}"},{"name":"outputInverted1","title":"Output Polarity","condition":"{outputPin[1]}"},{"name":"outputDelay","title":"Activation Delay"},{"name":"bitwise1","title":"2nd Condition","condition":"{outputPin[1]}"}]},"prgm_out_rules_3":{"title":"Rule 3","layout":"yAxis","panels":{"prgm_out_rules_3_condition_1":{"fields":[],"panels":{}},"prgm_out_rules_3_condition_2":{"fields":[],"panels":{}}},"fields":[{"name":"outputPin2","title":"Output Pin Num"},{"name":"prgm_out02Alias","title":"Rule Alias","condition":"{outputPin[2]}"},{"name":"outputInverted2","title":"Output Polarity","condition":"{outputPin[2]}"},{"name":"outputDelay","title":"Activation Delay"},{"name":"bitwise2","title":"2nd Condition","condition":"{outputPin[2]}"}]},"prgm_out_rules_4":{"title":"Rule 4","layout":"yAxis","panels":{"prgm_out_rules_4_condition_1":{"fields":[],"panels":{}},"prgm_out_rules_4_condition_2":{"fields":[],"panels":{}}},"fields":[{"name":"outputPin3","title":"Output Pin Num"},{"name":"prgm_out03Alias","title":"Rule Alias","condition":"{outputPin[3]}"},{"name":"outputInverted3","title":"Output Polarity","condition":"{outputPin[3]}"},{"name":"outputDelay","title":"Activation Delay"},{"name":"bitwise3","title":"2nd Condition","condition":"{outputPin[3]}"}]},"prgm_out_rules_5":{"title":"Rule 5","layout":"yAxis","panels":{"prgm_out_rules_5_condition_1":{"fields":[],"panels":{}},"prgm_out_rules_5_condition_2":{"fields":[],"panels":{}}},"fields":[{"name":"outputPin4","title":"Output Pin Num"},{"name":"prgm_out04Alias","title":"Rule Alias","condition":"{outputPin[4]}"},{"name":"outputInverted4","title":"Output Polarity","condition":"{outputPin[4]}"},{"name":"outputDelay","title":"Activation Delay"},{"name":"bitwise4","title":"2nd Condition","condition":"{outputPin[4]}"}]},"prgm_out_rules_6":{"title":"Rule 6","layout":"yAxis","panels":{"prgm_out_rules_6_condition_1":{"fields":[],"panels":{}},"prgm_out_rules_6_condition_2":{"fields":[],"panels":{}}},"fields":[{"name":"outputPin5","title":"Output Pin Num"},{"name":"prgm_out05Alias","title":"Rule Alias","condition":"{outputPin[5]}"},{"name":"outputInverted5","title":"Output Polarity","condition":"{outputPin[5]}"},{"name":"outputDelay","title":"Activation Delay"},{"name":"bitwise5","title":"2nd Condition","condition":"{outputPin[5]}"}]},"prgm_out_rules_7":{"title":"Rule 7","layout":"yAxis","panels":{"prgm_out_rules_7_condition_1":{"fields":[],"panels":{}},"prgm_out_rules_7_condition_2":{"fields":[],"panels":{}}},"fields":[{"name":"outputPin6","title":"Output Pin Num"},{"name":"prgm_out06Alias","title":"Rule Alias","condition":"{outputPin[6]}"},{"name":"outputInverted6","title":"Output Polarity","condition":"{outputPin[6]}"},{"name":"outputDelay","title":"Activation Delay"},{"name":"bitwise6","title":"2nd Condition","condition":"{outputPin[6]}"}]},"prgm_out_rules_8":{"title":"Rule 8","layout":"yAxis","panels":{"prgm_out_rules_8_condition_1":{"fields":[],"panels":{}},"prgm_out_rules_8_condition_2":{"fields":[],"panels":{}}},"fields":[{"name":"outputPin7","title":"Output Pin Num"},{"name":"prgm_out07Alias","title":"Rule Alias","condition":"{outputPin[7]}"},{"name":"outputInverted7","title":"Output Polarity","condition":"{outputPin[7]}"},{"name":"outputDelay","title":"Activation Delay"},{"name":"bitwise7","title":"2nd Condition","condition":"{outputPin[7]}"}]},"prgm_out_rules_master":{"title":"","layout":"card","panels":{"prgm_out_rules_1":{"layout":"Center","condition":"{ prgm_out_selection == 0 }","fields":[],"panels":{}},"prgm_out_rules_2":{"layout":"Center","condition":"{ prgm_out_selection == 1 }","fields":[],"panels":{}},"prgm_out_rules_3":{"layout":"Center","condition":"{ prgm_out_selection == 2 }","fields":[],"panels":{}},"prgm_out_rules_4":{"layout":"Center","condition":"{ prgm_out_selection == 3 }","fields":[],"panels":{}},"prgm_out_rules_5":{"layout":"Center","condition":"{ prgm_out_selection == 4 }","fields":[],"panels":{}},"prgm_out_rules_6":{"layout":"Center","condition":"{ prgm_out_selection == 5 }","fields":[],"panels":{}},"prgm_out_rules_7":{"layout":"Center","condition":"{ prgm_out_selection == 6 }","fields":[],"panels":{}},"prgm_out_rules_8":{"layout":"Center","condition":"{ prgm_out_selection == 7 }","fields":[],"panels":{}}},"fields":[]},"prgm_out_config":{"title":"","layout":"yAxis","panels":{"prgm_out_rules_master":{"fields":[],"panels":{}}},"fields":[{"name":"prgm_out_selection","title":"Select Rule Number"}]},"rtc_setup":{"title":"Real Time Clock","panels":{},"fields":[{"name":"rtc_mode","title":"Real Time Clock mode"},{"name":"rtc_trim","title":"Real Time Clock Trim +/-","condition":"{rtc_mode}"}]},"rtc_settings":{"title":"Real Time Clock","panels":{"rtc_setup":{"fields":[],"panels":{}},"std_ms3Rtc":{"fields":[],"panels":{}}},"fields":[]}},"curves":{"time_accel_tpsdot_curve":{"title":"TPS based AE","labels":["TPSdot","Added"],"xAxis":[0,1200,6],"yAxis":[0,250,4],"xBins":["taeBins","TPSdot"],"yBins":["taeRates"],"size":[]},"time_accel_mapdot_curve":{"title":"MAP based AE","labels":["MAPdot","Added"],"xAxis":[0,1200,6],"yAxis":[0,250,4],"xBins":["maeBins","MAPdot"],"yBins":["maeRates"],"size":[]},"dwell_correction_curve":{"title":"Dwell voltage correction","labels":["Voltage","Dwell"],"xAxis":[6,22,6],"yAxis":[0,255,6],"xBins":["brvBins","batteryVoltage"],"yBins":["dwellRates"],"size":[]},"injector_voltage_curve":{"title":"Injector voltage correction","labels":["Voltage","Injector"],"xAxis":[6,22,6],"yAxis":[0,255,6],"xBins":["brvBins","batteryVoltage"],"yBins":["injBatRates"],"size":[]},"injector_timing_curve":{"title":"Injector timing","labels":["RPM","Injector"],"xAxis":[0,7000,6],"yAxis":[0,720,5],"xBins":["injAngRPM","rpm"],"yBins":["injAng"],"size":[]},"airdensity_curve":{"title":"IAT density correction","labels":["Air Temperature","Fuel Amount"],"xAxis":[-40,160,6],"yAxis":[0,255,6],"xBins":["airDenBins","iat"],"yBins":["airDenRates"],"size":[]},"baroFuel_curve":{"title":"Baro fuel correction","labels":["Baro Pressure","Fuel Amount"],"xAxis":[75,112,6],"yAxis":[0,255,6],"xBins":["baroFuelBins","baro"],"yBins":["baroFuelValues"],"size":[]},"fuelTemp_curve":{"title":"Fuel temp correction","labels":["Fuel Temperature","Fuel Amount"],"xAxis":[-40,125,6],"yAxis":[0,255,6],"xBins":["fuelTempBins","fuelTemp"],"yBins":["fuelTempValues"],"size":[]},"iat_retard_curve":{"title":"IAT timing retard","labels":["Inlet Air Temp","Retard"],"xAxis":[-40,200,5],"yAxis":[0,30,5],"xBins":["iatRetBins","iat"],"yBins":["iatRetRates"],"size":[]},"clt_advance_curve":{"title":"Cold Advance","labels":["Coolant Temp","Advance"],"xAxis":[-40,200,5],"yAxis":[-12.7,12.7,5],"xBins":["cltAdvBins","coolant"],"yBins":["cltAdvValues"],"size":[]},"idle_advance_curve":{"title":"Idle Advance","labels":["RPM Delta","Advance"],"xAxis":[-500,500,5],"yAxis":[-15,50,5],"xBins":["idleAdvBins","CLIdleDelta"],"yBins":["idleAdvValues"],"size":[450,200]},"iacPwm_curve":{"title":"IAC PWM Duty","labels":["Coolant Temperature","Valve"],"xAxis":[-40,315,6],"yAxis":[0,100,4],"xBins":["iacBins","coolant"],"yBins":["iacOLPWMVal"],"size":[]},"iacPwmCrank_curve":{"title":"IAC PWM Cranking Duty","labels":["Coolant Temperature","Valve"],"xAxis":[-40,215,6],"yAxis":[0,100,4],"xBins":["iacCrankBins","coolant"],"yBins":["iacCrankDuty"],"size":[]},"iacStep_curve":{"title":"IAC Stepper Motor","labels":["Coolant Temperature","Motor"],"xAxis":[-40,315,6],"yAxis":[0,850,4],"xBins":["iacBins","coolant"],"yBins":["iacOLStepVal"],"size":[]},"iacStepCrank_curve":{"title":"IAC Stepper Motor Cranking","labels":["Coolant Temperature","Motor"],"xAxis":[-40,120,6],"yAxis":[0,850,4],"xBins":["iacCrankBins","coolant"],"yBins":["iacCrankSteps"],"size":[]},"iacClosedLoop_curve":{"title":"Idle RPM Targets","labels":["Coolant Temperature","Motor"],"xAxis":[-40,120,6],"yAxis":[0,2000,4],"xBins":["iacBins","coolant"],"yBins":["iacCLValues"],"size":[450,200]},"rotaryTrailing_curve":{"title":"Rotary Trailing Split","labels":["Engine load","Split"],"xAxis":[0,"{ fuelLoadMax }",5],"yAxis":[0,40,4],"xBins":["rotarySplitBins","fuelLoad"],"yBins":["rotarySplitValues"],"size":[]},"warmup_curve":{"title":"Warmup Enrichment (WUE) Curve","labels":["Coolant","WUE %"],"xAxis":[-40,210,9],"yAxis":[0,240,6],"xBins":["wueBins","coolant"],"yBins":["wueRates"],"size":[]},"cranking_enrich_curve":{"title":"Cranking Enrichment Curve","labels":["Coolant","Fuel Modifier"],"xAxis":[-40,110,9],"yAxis":[0,400,6],"xBins":["crankingEnrichBins","coolant"],"yBins":["crankingEnrichValues"],"size":[]},"priming_pw_curve":{"title":"Priming Pulsewidth","labels":["Coolant","PW"],"xAxis":[-40,110,4],"yAxis":[0,10,4],"xBins":["primeBins","coolant"],"yBins":["primePulse"],"size":[]},"afterstart_enrichment_curve":{"title":"ASE - Enrichment %","labels":["Coolant","Enrichment"],"xAxis":[-40,110,4],"yAxis":[0,200,4],"xBins":["aseBins","coolant"],"yBins":["asePct"],"size":[50,250]},"afterstart_enrichment_time":{"title":"ASE - Duration","labels":["Coolant","Time"],"xAxis":[-40,110,4],"yAxis":[0,20,4],"xBins":["aseBins","coolant"],"yBins":["aseCount"],"size":[50,250]},"flex_fuel_curve":{"title":"Flex Fuel Adjustments","labels":["Ethanol","Fuel"],"xAxis":[0,100,10],"yAxis":[50,250,5],"xBins":["flexFuelBins","flex"],"yBins":["flexFuelAdj"],"size":[400,200]},"flex_adv_curve":{"title":"Flex Timing Advance","labels":["Ethanol","Advance"],"xAxis":[0,100,10],"yAxis":[0,50,5],"xBins":["flexAdvBins","flex"],"yBins":["flexAdvAdj"],"size":[400,200]},"flex_boost_curve":{"title":"Flex Boost Adjustments","labels":["Ethanol","Boost"],"xAxis":[0,100,10],"yAxis":[-100,200,5],"xBins":["flexBoostBins","flex"],"yBins":["flexBoostAdj"],"size":[400,200]},"knock_window_angle_curve":{"title":"Knock Window","labels":["RPM","Window Start"],"xAxis":[0,8000,9],"yAxis":[-100,100,11],"xBins":["knock_window_rpms","rpm"],"yBins":["knock_window_angle"],"size":[400,200]},"knock_window_duration_curve":{"title":"Knock Window Duration","labels":["RPM","Window Duration"],"xAxis":[0,8000,9],"yAxis":[0,100,10],"xBins":["knock_window_rpms","rpm"],"yBins":["knock_window_dur"],"size":[400,200]},"oil_pressure_prot_curve":{"title":"Oil Pressure Protection","labels":["RPM","Minimum PSI"],"xAxis":[0,8000,9],"yAxis":[0,150,3],"xBins":["oilPressureProtRPM","rpm"],"yBins":["oilPressureProtMins"],"size":[400,200]},"warmup_afr_curve":{"title":"Target Adjustment","labels":["Coolant","Offset"],"xAxis":[-40,210,9],"yAxis":[-4,1,5],"xBins":["wueBins","coolant"],"yBins":["wueAFR"],"size":[]},"warmup_analyzer_curve":{"title":"Warmup Enrichment","labels":["Coolant","Current WUE","Coolant","Recommended WUE"],"xAxis":[-40,210,9],"yAxis":[100,255,6],"xBins":["wueBins","coolant"],"yBins":["wueRecommended"],"size":[]},"wmi_adv_curve":{"title":"WMI Timing Advance","labels":["kPa","Advance"],"xAxis":[0,511,20],"yAxis":[0,50,5],"xBins":["wmiAdvBins","map"],"yBins":["wmiAdvAdj"],"size":[400,200]}},"tables":{"veTable1Tbl":{"map":"veTable1Map","title":"VE Table","page":2,"xBins":["rpmBins","rpm"],"yBins":["fuelLoadBins","fuelLoad"],"xyLabels":["RPM","Fuel Load:"],"zBins":["veTable"],"gridHeight":2,"gridOrient":[250,0,340],"upDownLabel":["(RICHER)","(LEANER)"],"help":"http://speeduino.com/wiki/index.php/Tuning"},"fuelTable2Tbl":{"map":"fuel2Map","title":"Fuel Table 2","page":11,"xBins":["fuelRPM2Bins","rpm"],"yBins":["fuelLoad2Bins","fuelLoad2"],"xyLabels":["RPM","Fuel Load:"],"zBins":["veTable2"],"gridHeight":2,"gridOrient":[250,0,340],"upDownLabel":["(RICHER)","(LEANER)"],"help":"http://speeduino.com/wiki/index.php/Tuning"},"sparkTbl":{"map":"sparkMap","title":"Ignition Advance Table","page":3,"xBins":["rpmBins2","rpm"],"yBins":["mapBins1","ignLoad"],"xyLabels":["RPM","Ignition Load:"],"zBins":["advTable1"],"gridHeight":3,"gridOrient":[],"upDownLabel":["ADVANCING","RETARDING"]},"spark2Tbl":{"map":"spark2Map","title":"Second Ignition Advance Table","page":14,"xBins":["rpmBins3","rpm"],"yBins":["mapBins2","ignLoad"],"xyLabels":["RPM","Ignition Load:"],"zBins":["advTable2"],"gridHeight":3,"gridOrient":[],"upDownLabel":["ADVANCING","RETARDING"]},"afrTable1Tbl":{"map":"afrTable1Map","title":"AFR Table","page":5,"xBins":["rpmBinsAFR","rpm"],"yBins":["loadBinsAFR","fuelLoad"],"xyLabels":[],"zBins":["afrTable"],"gridHeight":1,"gridOrient":[250,0,340],"upDownLabel":["RICHER","LEANER"]},"boostTbl":{"map":"boostMap","title":"Boost Duty / Target","page":8,"xBins":["rpmBinsBoost","rpm"],"yBins":["tpsBinsBoost","throttle"],"xyLabels":[],"zBins":["boostTable"],"gridHeight":3,"gridOrient":[],"upDownLabel":["HIGHER","LOWER"]},"vvtTbl":{"map":"vvtMap","title":"VVT control Table","page":8,"xBins":["rpmBinsVVT","rpm"],"yBins":["loadBinsVVT","vvtLoad"],"xyLabels":["RPM","VVT Load:"],"zBins":["vvtTable"],"gridHeight":3,"gridOrient":[],"upDownLabel":["HIGHER","LOWER"]},"wmiTbl":{"map":"wmiMapMap","title":"WMI control Table","page":8,"xBins":["rpmBinsWMI","rpm"],"yBins":["mapBinsWMI","map"],"xyLabels":["RPM","WMI Load:"],"zBins":["wmiTable"],"gridHeight":3,"gridOrient":[],"upDownLabel":["HIGHER","LOWER"]},"stagingTbl":{"map":"stagingMap","title":"Fuel Staging Table","page":10,"xBins":["rpmBinsStaging","rpm"],"yBins":["loadBinsStaging","fuelLoad"],"xyLabels":[],"zBins":["stagingTable"],"gridHeight":3,"gridOrient":[],"upDownLabel":["HIGHER","LOWER"]},"fuelTrimTable1Tbl":{"map":"fuelTrimTable1Map","title":"Fuel trim Table 1","page":9,"xBins":["fuelTrim1rpmBins","rpm"],"yBins":["fuelTrim1loadBins","fuelLoad"],"xyLabels":[],"zBins":["fuelTrim1Table"],"gridHeight":2,"gridOrient":[250,0,340],"upDownLabel":["(RICHER)","(LEANER)"],"help":"http://speeduino.com/wiki/index.php/Tuning"},"fuelTrimTable2Tbl":{"map":"fuelTrimTable2Map","title":"Fuel trim Table 2","page":9,"xBins":["fuelTrim2rpmBins","rpm"],"yBins":["fuelTrim2loadBins","fuelLoad"],"xyLabels":[],"zBins":["fuelTrim2Table"],"gridHeight":2,"gridOrient":[250,0,340],"upDownLabel":["(RICHER)","(LEANER)"],"help":"http://speeduino.com/wiki/index.php/Tuning"},"fuelTrimTable3Tbl":{"map":"fuelTrimTable3Map","title":"Fuel trim Table 3","page":9,"xBins":["fuelTrim3rpmBins","rpm"],"yBins":["fuelTrim3loadBins","fuelLoad"],"xyLabels":[],"zBins":["fuelTrim3Table"],"gridHeight":2,"gridOrient":[250,0,340],"upDownLabel":["(RICHER)","(LEANER)"],"help":"http://speeduino.com/wiki/index.php/Tuning"},"fuelTrimTable4Tbl":{"map":"fuelTrimTable4Map","title":"Fuel trim Table 4","page":9,"xBins":["fuelTrim4rpmBins","rpm"],"yBins":["fuelTrim4loadBins","fuelLoad"],"xyLabels":[],"zBins":["fuelTrim4Table"],"gridHeight":2,"gridOrient":[250,0,340],"upDownLabel":["(RICHER)","(LEANER)"],"help":"http://speeduino.com/wiki/index.php/Tuning"},"fuelTrimTable5Tbl":{"map":"fuelTrimTable5Map","title":"Fuel trim Table 5","page":9,"xBins":["fuelTrim5rpmBins","rpm"],"yBins":["fuelTrim5loadBins","fuelLoad"],"xyLabels":[],"zBins":["fuelTrim5Table"],"gridHeight":2,"gridOrient":[250,0,340],"upDownLabel":["(RICHER)","(LEANER)"],"help":"http://speeduino.com/wiki/index.php/Tuning"},"fuelTrimTable6Tbl":{"map":"fuelTrimTable6Map","title":"Fuel trim Table 6","page":9,"xBins":["fuelTrim6rpmBins","rpm"],"yBins":["fuelTrim6loadBins","fuelLoad"],"xyLabels":[],"zBins":["fuelTrim6Table"],"gridHeight":2,"gridOrient":[250,0,340],"upDownLabel":["(RICHER)","(LEANER)"],"help":"http://speeduino.com/wiki/index.php/Tuning"},"fuelTrimTable7Tbl":{"map":"fuelTrimTable7Map","title":"Fuel trim Table 7","page":9,"xBins":["fuelTrim7rpmBins","rpm"],"yBins":["fuelTrim7loadBins","fuelLoad"],"xyLabels":[],"zBins":["fuelTrim7Table"],"gridHeight":2,"gridOrient":[250,0,340],"upDownLabel":["(RICHER)","(LEANER)"],"help":"http://speeduino.com/wiki/index.php/Tuning"},"fuelTrimTable8Tbl":{"map":"fuelTrimTable8Map","title":"Fuel trim Table 8","page":9,"xBins":["fuelTrim8rpmBins","rpm"],"yBins":["fuelTrim8loadBins","fuelLoad"],"xyLabels":[],"zBins":["fuelTrim8Table"],"gridHeight":2,"gridOrient":[250,0,340],"upDownLabel":["(RICHER)","(LEANER)"],"help":"http://speeduino.com/wiki/index.php/Tuning"},"dwell_map":{"map":"dwell_tblMap","title":"Dwell map","page":4,"xBins":["rpmBinsDwell","rpm"],"yBins":["mapBinsDwell","map"],"xyLabels":["RPM","Load:"],"zBins":["dwellTable"],"gridHeight":3,"gridOrient":[],"upDownLabel":["HIGHER","LOWER"]}},"outputChannels":{"ochGetCommand":{"value":"r\\$tsCanId\\x30%2o%2c"},"ochBlockSize":{"value":"117"},"secl":{"type":"scalar","size":"U08","offset":0,"units":"sec","scale":1,"transform":0},"status1":{"type":"scalar","size":"U08","offset":1,"units":"bits","scale":1,"transform":0},"inj1Status":{"type":"bits","size":"U08","offset":1,"units":"","scale":"","transform":""},"inj2Status":{"type":"bits","size":"U08","offset":1,"units":"","scale":"","transform":""},"inj3Status":{"type":"bits","size":"U08","offset":1,"units":"","scale":"","transform":""},"inj4Status":{"type":"bits","size":"U08","offset":1,"units":"","scale":"","transform":""},"DFCOOn":{"type":"bits","size":"U08","offset":1,"units":"","scale":"","transform":""},"boostCutFuel":{"type":"bits","size":"U08","offset":1,"units":"","scale":"","transform":""},"toothLog1Ready":{"type":"bits","size":"U08","offset":1,"units":"","scale":"","transform":""},"toothLog2Ready":{"type":"bits","size":"U08","offset":1,"units":"","scale":"","transform":""},"engine":{"type":"scalar","size":"U08","offset":2,"units":"bits","scale":1,"transform":0},"running":{"type":"bits","size":"U08","offset":2,"units":"","scale":"","transform":""},"crank":{"type":"bits","size":"U08","offset":2,"units":"","scale":"","transform":""},"ase":{"type":"bits","size":"U08","offset":2,"units":"","scale":"","transform":""},"warmup":{"type":"bits","size":"U08","offset":2,"units":"","scale":"","transform":""},"tpsaccaen":{"type":"bits","size":"U08","offset":2,"units":"","scale":"","transform":""},"tpsaccden":{"type":"bits","size":"U08","offset":2,"units":"","scale":"","transform":""},"mapaccaen":{"type":"bits","size":"U08","offset":2,"units":"","scale":"","transform":""},"mapaccden":{"type":"bits","size":"U08","offset":2,"units":"","scale":"","transform":""},"syncLossCounter":{"type":"scalar","size":"U08","offset":3,"units":"","scale":1,"transform":0},"map":{"type":"scalar","size":"U16","offset":4,"units":"kpa","scale":1,"transform":0},"iatRaw":{"type":"scalar","size":"U08","offset":6,"units":"°C","scale":1,"transform":0},"coolantRaw":{"type":"scalar","size":"U08","offset":7,"units":"°C","scale":1,"transform":0},"batCorrection":{"type":"scalar","size":"U08","offset":8,"units":"%","scale":1,"transform":0},"batteryVoltage":{"type":"scalar","size":"U08","offset":9,"units":"V","scale":0.1,"transform":0},"afr":{"type":"scalar","size":"U08","offset":10,"units":"O2","scale":0.1,"transform":0},"egoCorrection":{"type":"scalar","size":"U08","offset":11,"units":"%","scale":1,"transform":0},"airCorrection":{"type":"scalar","size":"U08","offset":12,"units":"%","scale":1,"transform":0},"warmupEnrich":{"type":"scalar","size":"U08","offset":13,"units":"%","scale":1,"transform":0},"rpm":{"type":"scalar","size":"U16","offset":14,"units":"rpm","scale":1,"transform":0},"accelEnrich":{"type":"scalar","size":"U08","offset":16,"units":"%","scale":2,"transform":0},"gammaEnrich":{"type":"scalar","size":"U16","offset":17,"units":"%","scale":1,"transform":0},"VE1":{"type":"scalar","size":"U08","offset":19,"units":"%","scale":1,"transform":0},"VE2":{"type":"scalar","size":"U08","offset":20,"units":"%","scale":1,"transform":0},"afrTarget":{"type":"scalar","size":"U08","offset":21,"units":"O2","scale":0.1,"transform":0},"TPSdot":{"type":"scalar","size":"U08","offset":22,"units":"%/s","scale":10,"transform":0},"advance":{"type":"scalar","size":"S08","offset":23,"units":"deg","scale":1,"transform":0},"tps":{"type":"scalar","size":"U08","offset":24,"units":"%","scale":1,"transform":0},"loopsPerSecond":{"type":"scalar","size":"U16","offset":25,"units":"loops","scale":1,"transform":0},"freeRAM":{"type":"scalar","size":"U16","offset":27,"units":"bytes","scale":1,"transform":0},"boostTarget":{"type":"scalar","size":"U08","offset":29,"units":"kPa","scale":2,"transform":0},"boostDuty":{"type":"scalar","size":"U08","offset":30,"units":"%","scale":1,"transform":0},"status2":{"type":"scalar","size":"U08","offset":31,"units":"bits","scale":1,"transform":0},"launchHard":{"type":"bits","size":"U08","offset":31,"units":"","scale":"","transform":""},"launchSoft":{"type":"bits","size":"U08","offset":31,"units":"","scale":"","transform":""},"hardLimitOn":{"type":"bits","size":"U08","offset":31,"units":"","scale":"","transform":""},"softlimitOn":{"type":"bits","size":"U08","offset":31,"units":"","scale":"","transform":""},"boostCutSpark":{"type":"bits","size":"U08","offset":31,"units":"","scale":"","transform":""},"error":{"type":"bits","size":"U08","offset":31,"units":"","scale":"","transform":""},"idleControlOn":{"type":"bits","size":"U08","offset":31,"units":"","scale":"","transform":""},"sync":{"type":"bits","size":"U08","offset":31,"units":"","scale":"","transform":""},"rpmDOT":{"type":"scalar","size":"S16","offset":32,"units":"rpm/s","scale":1,"transform":0},"flex":{"type":"scalar","size":"U08","offset":34,"units":"%","scale":1,"transform":0},"flexFuelCor":{"type":"scalar","size":"U08","offset":35,"units":"%","scale":1,"transform":0},"flexIgnCor":{"type":"scalar","size":"S08","offset":36,"units":"deg","scale":1,"transform":0},"idleLoad":{"type":"scalar","size":"U08","offset":37,"units":"{ bitStringValue( idleUnits , iacAlgorithm ) }","scale":"{ (iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 || iacMaxSteps <= 255) ? 1.000 : 2.000 }","transform":0},"testoutputs":{"type":"scalar","size":"U08","offset":38,"units":"bits","scale":1,"transform":0},"testenabled":{"type":"bits","size":"U08","offset":38,"units":"","scale":"","transform":""},"testactive":{"type":"bits","size":"U08","offset":38,"units":"","scale":"","transform":""},"afr2":{"type":"scalar","size":"U08","offset":39,"units":"O2","scale":0.1,"transform":0},"baro":{"type":"scalar","size":"U08","offset":40,"units":"kpa","scale":1,"transform":0},"auxin_gauge0":{"type":"scalar","size":"U16","offset":41,"units":"","scale":1,"transform":0},"auxin_gauge1":{"type":"scalar","size":"U16","offset":43,"units":"","scale":1,"transform":0},"auxin_gauge2":{"type":"scalar","size":"U16","offset":45,"units":"","scale":1,"transform":0},"auxin_gauge3":{"type":"scalar","size":"U16","offset":47,"units":"","scale":1,"transform":0},"auxin_gauge4":{"type":"scalar","size":"U16","offset":49,"units":"","scale":1,"transform":0},"auxin_gauge5":{"type":"scalar","size":"U16","offset":51,"units":"","scale":1,"transform":0},"auxin_gauge6":{"type":"scalar","size":"U16","offset":53,"units":"","scale":1,"transform":0},"auxin_gauge7":{"type":"scalar","size":"U16","offset":55,"units":"","scale":1,"transform":0},"auxin_gauge8":{"type":"scalar","size":"U16","offset":57,"units":"","scale":1,"transform":0},"auxin_gauge9":{"type":"scalar","size":"U16","offset":59,"units":"","scale":1,"transform":0},"auxin_gauge10":{"type":"scalar","size":"U16","offset":61,"units":"","scale":1,"transform":0},"auxin_gauge11":{"type":"scalar","size":"U16","offset":63,"units":"","scale":1,"transform":0},"auxin_gauge12":{"type":"scalar","size":"U16","offset":65,"units":"","scale":1,"transform":0},"auxin_gauge13":{"type":"scalar","size":"U16","offset":67,"units":"","scale":1,"transform":0},"auxin_gauge14":{"type":"scalar","size":"U16","offset":69,"units":"","scale":1,"transform":0},"auxin_gauge15":{"type":"scalar","size":"U16","offset":71,"units":"","scale":1,"transform":0},"tpsADC":{"type":"scalar","size":"U08","offset":73,"units":"ADC","scale":1,"transform":0},"errors":{"type":"scalar","size":"U08","offset":74,"units":"bits","scale":1,"transform":0},"errorNum":{"type":"bits","size":"U08","offset":74,"units":"","scale":"","transform":""},"currentError":{"type":"bits","size":"U08","offset":74,"units":"","scale":"","transform":""},"pulseWidth":{"type":"scalar","size":"U16","offset":75,"units":"ms","scale":0.001,"transform":0},"pulseWidth2":{"type":"scalar","size":"U16","offset":77,"units":"ms","scale":0.001,"transform":0},"pulseWidth3":{"type":"scalar","size":"U16","offset":79,"units":"ms","scale":0.001,"transform":0},"pulseWidth4":{"type":"scalar","size":"U16","offset":81,"units":"ms","scale":0.001,"transform":0},"status3":{"type":"scalar","size":"U08","offset":83,"units":"bits","scale":1,"transform":0},"resetLockOn":{"type":"bits","size":"U08","offset":83,"units":"","scale":"","transform":""},"nitrousOn":{"type":"bits","size":"U08","offset":83,"units":"","scale":"","transform":""},"fuel2Active":{"type":"bits","size":"U08","offset":83,"units":"","scale":"","transform":""},"vssRefresh":{"type":"bits","size":"U08","offset":83,"units":"","scale":"","transform":""},"halfSync":{"type":"bits","size":"U08","offset":83,"units":"","scale":"","transform":""},"nSquirts":{"type":"bits","size":"U08","offset":83,"units":"","scale":"","transform":""},"engineProtectStatus":{"type":"scalar","size":"U08","offset":84,"units":"bits","scale":1,"transform":0},"engineProtectRPM":{"type":"bits","size":"U08","offset":84,"units":"","scale":"","transform":""},"engineProtectMAP":{"type":"bits","size":"U08","offset":84,"units":"","scale":"","transform":""},"engineProtectOil":{"type":"bits","size":"U08","offset":84,"units":"","scale":"","transform":""},"engineProtectAFR":{"type":"bits","size":"U08","offset":84,"units":"","scale":"","transform":""},"engineProtectOth":{"type":"bits","size":"U08","offset":84,"units":"","scale":"","transform":""},"IOError":{"type":"bits","size":"U08","offset":84,"units":"","scale":"","transform":""},"unused1":{"type":"scalar","size":"U08","offset":84,"units":"ADC","scale":1,"transform":0},"fuelLoad":{"type":"scalar","size":"S16","offset":85,"units":"{ bitStringValue( algorithmUnits , algorithm ) }","scale":1,"transform":0},"ignLoad":{"type":"scalar","size":"S16","offset":87,"units":"{ bitStringValue( algorithmUnits , ignAlgorithm ) }","scale":1,"transform":0},"dwell":{"type":"scalar","size":"U16","offset":89,"units":"ms","scale":0.001,"transform":0},"CLIdleTarget":{"type":"scalar","size":"U08","offset":91,"units":"RPM","scale":10,"transform":0},"MAPdot":{"type":"scalar","size":"U08","offset":92,"units":"kPa/s","scale":10,"transform":0},"vvt1Angle":{"type":"scalar","size":"S08","offset":93,"units":"deg","scale":1,"transform":0},"vvt1Target":{"type":"scalar","size":"U08","offset":94,"units":"deg","scale":1,"transform":0},"vvt1Duty":{"type":"scalar","size":"U08","offset":95,"units":"%","scale":1,"transform":0},"flexBoostCor":{"type":"scalar","size":"S16","offset":96,"units":"kPa","scale":1,"transform":0},"baroCorrection":{"type":"scalar","size":"U08","offset":98,"units":"%","scale":1,"transform":0},"veCurr":{"type":"scalar","size":"U08","offset":99,"units":"%","scale":1,"transform":0},"ASECurr":{"type":"scalar","size":"U08","offset":100,"units":"%","scale":1,"transform":0},"vss":{"type":"scalar","size":"U16","offset":101,"units":"km/h","scale":1,"transform":0},"gear":{"type":"scalar","size":"U08","offset":103,"units":"","scale":1,"transform":0},"fuelPressure":{"type":"scalar","size":"U08","offset":104,"units":"PSI","scale":1,"transform":0},"oilPressure":{"type":"scalar","size":"U08","offset":105,"units":"PSI","scale":1,"transform":0},"wmiPW":{"type":"scalar","size":"U08","offset":106,"units":"%","scale":1,"transform":0},"wmiEmpty":{"type":"scalar","size":"U08","offset":107,"units":"bits","scale":1,"transform":0},"wmiEmptyBit":{"type":"bits","size":"U08","offset":107,"units":"","scale":"","transform":""},"vvt2Angle":{"type":"scalar","size":"S08","offset":108,"units":"deg","scale":1,"transform":0},"vvt2Target":{"type":"scalar","size":"U08","offset":109,"units":"deg","scale":1,"transform":0},"vvt2Duty":{"type":"scalar","size":"U08","offset":110,"units":"%","scale":1,"transform":0},"outputsStatus0":{"type":"bits","size":"U08","offset":111,"units":"","scale":"","transform":""},"outputsStatus1":{"type":"bits","size":"U08","offset":111,"units":"","scale":"","transform":""},"outputsStatus2":{"type":"bits","size":"U08","offset":111,"units":"","scale":"","transform":""},"outputsStatus3":{"type":"bits","size":"U08","offset":111,"units":"","scale":"","transform":""},"outputsStatus4":{"type":"bits","size":"U08","offset":111,"units":"","scale":"","transform":""},"outputsStatus5":{"type":"bits","size":"U08","offset":111,"units":"","scale":"","transform":""},"outputsStatus6":{"type":"bits","size":"U08","offset":111,"units":"","scale":"","transform":""},"outputsStatus7":{"type":"bits","size":"U08","offset":111,"units":"","scale":"","transform":""},"fuelTempRaw":{"type":"scalar","size":"U08","offset":112,"units":"°C","scale":1,"transform":0},"fuelTempCor":{"type":"scalar","size":"U08","offset":113,"units":"%","scale":1,"transform":0},"advance1":{"type":"scalar","size":"S08","offset":114,"units":"deg","scale":1,"transform":0},"advance2":{"type":"scalar","size":"S08","offset":115,"units":"deg","scale":1,"transform":0},"sd_status":{"type":"scalar","size":"U08","offset":116,"units":"","scale":1,"transform":0},"coolant":{"value":"{ (coolantRaw - 40) * 1.8 + 32 }"},"iat":{"value":"{ (iatRaw - 40) * 1.8 + 32 }"},"fuelTemp":{"value":"{ (fuelTempRaw - 40) * 1.8 + 32 }"},"time":{"value":"{ timeNow }"},"seconds":{"value":"{ secl }"},"throttle":{"value":"{ tps }"},"revolutionTime":{"value":"{ rpm ? ( 60000.0 / rpm) : 0 }"},"strokeMultipler":{"value":"{ twoStroke == 1 ? 1 : 2 }"},"cycleTime":{"value":"{ revolutionTime * strokeMultipler }"},"pulseLimit":{"value":"{ cycleTime / nSquirts }"},"nFuelChannels":{"value":"{ arrayValue( array.boardFuelOutputs, pinLayout ) }"},"nIgnChannels":{"value":"{ arrayValue( array.boardIgnOutputs, pinLayout ) }"},"sequentialFuelAvailable":{"value":"{ nCylinders <= nFuelChannels }"},"sequentialIgnitionAvailable":{"value":"{ nCylinders <= nIgnChannels }"},"dutyCycle":{"value":"{ rpm ? ( 100.0*pulseWidth/pulseLimit ) : 0 }"},"stgDutyCycle":{"value":"{ rpm && stagingEnabled ? ( 100.0*pulseWidth3/pulseLimit ) : 0 }"},"boostCutOut":{"value":"{ boostCutFuel || boostCutSpark }"},"lambda":{"value":"{ afr / stoich }"},"lambdaTarget":{"value":"{ afrTarget / stoich }"},"MAPxRPM":{"value":"{ rpm * map }"},"loopsPerRev":{"value":"{ loopsPerSecond / (rpm / 60) }"},"req_fuel":{"value":"{ reqFuel }"},"bat_correction":{"value":"{ battVCorMode ? 100 : batCorrection }"},"inj_open":{"value":"{ battVCorMode ? ((injOpen * batCorrection) / 100) : injOpen }"},"ase_enrich":{"value":"{ ASECurr }"},"map_multiply_amt":{"value":"{ multiplyMAP ? map : 100 }"},"map_bar":{"value":"{ (map - baro) / 101.33 }"},"map_psi":{"value":"{ (map - baro) * 0.145038 }"},"map_inhg":{"value":"{ (baro - map) * 0.2953007 }"},"map_vacboost":{"value":"{ map < baro ? -map_inhg : map_psi }"},"vssMPH":{"value":"{ vss / 1.60934 }"},"fuelLoadMax":{"value":"{ (algorithm == 0 || algorithm == 2) ? 511 : 100 }"},"ignLoadMax":{"value":"{ (ignAlgorithm == 0 || ignAlgorithm == 2) ? 511 : 100 }"},"fuel2LoadMax":{"value":"{ (fuel2Algorithm == 0 || fuel2Algorithm == 2) ? 511 : 100 }"},"ign2LoadMax":{"value":"{ (spark2Algorithm == 0 || spark2Algorithm == 2) ? 511 : 100 }"},"fuelLoad2":{"value":"{ fuel2Algorithm == 0 ? map : fuel2Algorithm == 1 ? tps : fuel2Algorithm == 2 ? 0 : 0 }"},"vvtLoad":{"value":"{ (vvtLoadSource == 0) ? map : tps }"},"boostTableLimit":{"value":"{ boostType == 0 ? 100 : 511 }"},"CLIdleDelta":{"value":"{ CLIdleTarget - rpm }"}},"help":{"nCylinders":"Cylinder count","alternate":"Whether or not the injectors should be fired at the same time. This setting is ignored when Sequential is selected below, however it will still affect the req_fuel value.","engineType":"Engines with an equal number of degrees between all firings (This is most engines) should select Even fire. Some 2 and 6 cylinder engines are Odd fire however.","twoStroke":"Four-Stroke (most engines), Two-stroke.","nInjectors":"Number of primary injectors.","mapSample":"The method used for calculating the MAP reading\\nFor 1-2 Cylinder engines, Cycle Minimum is recommended.\\nFor more than 2 cylinders Cycle Average is recommended","stoich":"The stoichiometric ration of the fuel being used. For flex fuel, choose the primary fuel","injLayout":"The injector layout and timing to be used. Options are: \\n 1. Paired - 2 injectors per output. Outputs active is equal to half the number of cylinders. Outputs are timed over 1 crank revolution. \\n 2. Semi-sequential: Same as paired except that injector channels are mirrored (1&4, 2&3) meaning the number of outputs used are equal to the number of cylinders. Only valid for 4 cylinders or less. \\n 3. Banked: 2 outputs only used. \\n 4. Sequential: 1 injector per output and outputs used equals the number of cylinders. Injection is timed over full cycle.","TrigPattern":"The type of input trigger decoder to be used.","useResync":"If enabled, sync will be rechecked once every full cycle from the cam input. This is good for accuracy, however if your cam input is noisy then this can cause issues.","trigPatternSec":"Cam mode/type also known as Secondary Trigger Pattern.","numTeeth":"Number of teeth on Primary Wheel.","TrigSpeed":"Primary trigger speed.","missingTeeth":"Number of Missing teeth on Primary Wheel.","TrigAng":"The Angle ATDC when tooth No:1 on the primary wheel passes the primary sensor. The range of this field is -360 to +360 degrees.","TrigAngMul":"A multiplier used by non-360 degree tooth wheels (i.e. Wheels where the tooth count doesn't divide evenly into 360. Usage: (360 * ) / tooth_count = Whole number","SkipCycles":"The number of revolutions that will be skipped during cranking before the injectors and coils are fired.","TrigEdge":"The Trigger edge of the primary sensor.\\nLeading.\\nTrailing.","TrigEdgeSec":"The Trigger edge of the secondary (Cam) sensor.\\nLeading.\\nTrailing.","TrigFilter":"Tuning of the trigger filter algorithm. The more aggressive the setting, the more noise will be removed, however this increases the chance of some true readings being filtered out (False positive). Medium is safe for most setups. Only select 'Aggressive' if no other options are working","sparkMode":"Wasted Spark: Ignition outputs are on the channels <= half the number of cylinders. Eg 4 cylinder outputs on IGN1 and IGN2.\\nSingle Channel: All ignition pulses are output on IGN1.\\nWasted COP: Ignition pulses are output on all ignition channels up to the number of cylinders. Eg 4 cylinder outputs on all ignition channels. Note that your board needs to have same number of igntion outputs as cylinders to be able to run this","IgInv":"Whether the spark fires when the ignition signal goes high or goes low. Nearly all ignition systems use 'Going Low' but please verify this as damage to coils can result from the incorrect selection. (NOTE: THIS IS NOT MEGASQUIRT. THIS SETTING IS USUALLY THE OPPOSITE OF WHAT THEY USE!)","sparkDur":"The duration of the spark at full dwell. Typically around 1ms","fixAngEnable":"If enabled, timing will be locked/fixed and the ignition map will be ignored. Note that this value will be overriden by the fixed cranking value when cranking","FixAng":"Timing will be locked at this value if the above is enabled","crankRPM":"The cranking RPM threshold. When RPM is lower than this value (and above 0) the system will be considered to be cranking","tpsflood":"Keep throttle over this value to disable the priming pulse and cranking fuel. Used to prevent flood or clear already flooded engine","fanInv":0,"fanHyster":"The number of degrees of hysteresis to be used in controlling the fan. Recommended values are between 2 and 5","fanWhenCranking":"Whether the fan should be disabled or continue running when the engine is cranking","fanWhenOff":"Whether the fan will continue to run when the engine is turned off","fanPin":"The Arduino pin that the fan control signal will output on. This is NOT necesarrily the same as the connector pin on any particlar board","fanSP":"The trigger temperature for the fan. Fan will be enabled above this temp","vssPulsesPerKm":"The number of pulses on the VSS signal per KM/Mile","vssSmoothing":"A smoothing factor to help reduce noise in the VSS signal. Typical values are between 0 and 50","aeTime":"The duration of the acceleration enrichment","aseTaperTime":"Transition time to disable ASE","iacChannels":"The number of output channels used for PWM valves. Select 1 for 2-wire valves or 2 for 3-wire valves.","iacStepTime":"Duration of each stepping pulse. Values that are too low can cause the motor to behave erratically or not at all. See the manual for suggested step times","iacCoolTime":"Cool time between each step. Set to zero if you don't want any cooling at all","iacStepHome":"Homing steps to perform on startup. Must be greater than the fully open steps value","iacMaxSteps":"Maximum number of steps the IAC can be moved away from the home position. Should always be less than Homing steps.","iacStepHyster":"The minimum number of steps to move in any one go.","iacAlgorithm":"Selects method of idle control.\\nNone = no idle control valve.\\nOn/Off valve.\\nPWM valve (2,3 wire).\\nStepper Valve (4,6,8 wire).","iacPWMdir":"Normal PWM valves increase RPM with higher duty. If RPM decreases with higher duty then select Reverse","iacPWMrun":"Determies if the idle valve runs before engine is cranked over. This can help starting the engine by letting more air in before the RPM sync is acheived.","iacCLminDuty":"When using closed loop idle control, this is the minimum duty cycle that the PID loop will allow. Combined with the maximum value, this specifies the working range of your idle valve","iacCLmaxDuty":"When using closed loop idle control, this is the maximum duty cycle that the PID loop will allow. Combined with the minimum value, this specifies the working range of your idle valve","iacTPSlimit":"When using OL+CL idle control, if the TPS is higher than this value closed loop idle resets the integeral of the PID (To prevent RPM dips comming back to idle)","iacRPMlimitHysteresis":"When using closed loop idle control, if the closed loop Target RPM + this value is higher than the actual RPM, closed loop idle resets the integeral of the PID (To prevent RPM dips comming back to idle)","iacFastTemp":"Below this temperature, the idle output will be high (On). Above this temperature, it will turn off.","idleUpPolarity":"Normal polarity is a ground switch where an earthed signal activates the Idle Up. The internal pullup will be enabled with Normal polarity. \\n Inverted may be used if a 5v signal is used to enable the Idle Up.","CTPSPolarity":"Normal polarity is a ground switch where an earthed signal activates the closed throttle position. The internal pullup will be enabled with Normal polarity. \\n Inverted may be used if a 5v signal is used to enable the closed throttle position.","idleUpAdder":"The amount (In either Duty Cycle % or Steps (Depending on the idle control method in use), that the idle control will increase by when Idle Up is active","idleAdvEnabled":"Added setting adds curve values to current spark table values when user defined idle is active. \\n Switched setting overrides spark table values and uses curve values for idle ignition timing.","idleAdvAlgorithm":"Use Throttle position sensor (TPS) or closed throttle position sensor (CTPS) to detect idle state.","idleAdvDelay":"The number of seconds after sync is achieved before the idle advance control begins","idleTaperTime":"Soft time transition from crank to running PWM targets","oddfire2":"The ATDC angle of channel 2 for oddfire engines. This is relative to the TDC angle of channel 1","oddfire3":"The ATDC angle of channel 3 for oddfire engines. This is relative to the TDC angle of channel 1 (NOT channel 2)","oddfire4":"The ATDC angle of channel 4 for oddfire engines. This is relative to the TDC angle of channel 1 (NOT channel 3)","aeColdPct":"Acceleration enrichment adjustment for cold engine. Cold adjustment % is tapered between start and end temperatures.\\n100% = no adjustment.","aeColdTaperMin":"AE cold adjustment taper start temperature. When coolant is below this value, full cold adjustment is applied.","aeColdTaperMax":"AE cold adjustment taper end temperature. When coolant is above this value, no cold adjustment is applied.","dfcoRPM":"The RPM above which DFCO will be active. Typically set a few hundred RPM above maximum idle speed","dfcoHyster":"Hysteresis for DFCO RPM. 200-300 RPM is typical for this, however a higher value may be needed if the RPM is fluctuating around the cutout speed","dfcoTPSThresh":"The TPS value below which DFCO will be active. Typical value is 5%-10%, but higher may be needed if TPS signal is noisy","dfcoDelay":"Delay for activate DFCO.","dfcoMinCLT":"Minimum temperature to enable DFCO.","launchPin":"The ARDUINO pin that the clutch switch is connected to. This is NOT the pin on the connector, but the pin it relates to on the arduino","launchHiLo":"Whether the signal is High or Low when the clutch pedal is engaged. For a ground switching input (Most clutch switches), this should be LOW","lnchPullRes":"Whether the internal pullup resistor is enabled or left floating. For a ground switching input (Most clutch switches), select Pullup. For a 0v-5v input, select Floating","ignBypassPin":"The ARDUINO pin that the ignition bypass is connected to. This is NOT the pin on the connector, but the pin it relates to on the arduino","ignBypassEnable":"If turned on, a ground signal will be output during cranking on the specified pin. This is used to bypass the Speeduino ignition control during cranking.","ignCranklock":"On certain low resolution ignition patterns, the cranking timing can be locked to occur when a pulse is recieved.","multiplyMAP":"If enabled, the MAP reading is included directly into the pulsewidth calculation by multiplying the VE lookup value by the MAP:Baro ratio. This results in a flatter VE table that can be easier to tune in some instances. VE table must be retuned when this value is changed.","legacyMAP":"Use the legacy method of reading the MAP sensor that was used prior to the 201905 firmware. This should ONLY be enabled if you are upgrading from a firmware earlier than this","includeAFR":"When enabled, the current AFR reading is incorporated directly in the pulsewidth calculation as a percentage of the current target ratio. VE table must be retuned when this value is changed.","incorporateAFR":"When enabled, the AFR stoich/AFR target -ratio is incorporated directly in the pulsewidth calculation. When enabled, AFR target table affects pulsewidth even with EGO disabled. VE table must be retuned when this value is changed.","useExtBaro":"By Default, Speeduino will measure barometric pressure upon startup. Optionally however, a 2nd pressure sensor can be used to perform live barometric readings whilst the system is on.","flexEnabled":"Turns on readings from the Flex sensor and enables the below adjustments","flexFreqLow":"The frequency of the sensor at 0% ethanol (50Hz for standard GM/Continental sensor)","flexFreqHigh":"The frequency of the sensor at 100% ethanol (150Hz for standard GM/Continental sensor)","flexFuelAdj":"Fuel % to be used for the current ethanol % (Typically 100% @ 0%, 163% @ 100%)","flexAdvAdj":"Additional advance (in degrees) for the current ethanol % (Typically 0 @ 0%, 10-20 @ 100%)","flexBoostAdj":"Adjustment, in kPa, to the boost target for the current ethanol %. Negative values are allowed to lower boost at lower ethanol % if necessary.","n2o_arming_pin":"Pin that the nitrous arming/enagement switch is on.","n2o_pin_polarity":"Whether Nitrous is active (Armed) when the pin is LOW or HIGH. If LOW is selected, the internal pullup will be used.","flatSArm":"The RPM switch point that determines whether an eganged clutch is for launch control or flat shift. Below this figure, an engaged clutch is considered to be for launch, above this figure an active clutch input will be considered a flat shift. This should be set at least several hundred RPM above idle","flatSSoftWin":"The number of RPM below the flat shift point where the softlimit will be applied (aka Soft limit window). Recommended values are 200-1000","flatSRetard":"The absolute timing (BTDC) that will be used when within the soft limit window","engineProtectType":"Whether the engine protect an rev limiter will cut the fuel, the ignition or both","hardCutType":"How the cuts should be performed for rev/launch limits. Full cut will stop all fuel/ignition events, Rolling cut will step through all ignition outputs, only cutting a limited number per revolution","SoftLimitMode":"Fixed: the soft limiter will retard the ignition advance to the specified value.\\nRelative: current timing advance will be retarted by the specified amount","HardRevLim":"The hard rev limit is the point that the fuel or ignition (or both) will be cut completely to reduce increasing RPMs","engineProtectMaxRPM":"The RPM point that engine protections will engage from. Below this RPM value, engine protections will NOT be active","fuel2InputPin":"The Arduino pin that is being used to trigger the second fuel table to be active","fuel2InputPolarity":"Whether the 2nd fuel table should be active when input is high or low. This should be LOW for a typical ground switching input","fuel2InputPullup":"Whether to use the built in PULLUP for the switching input. This should be Yes for a typical ground switching input","enable_secondarySerial":"This Enables the secondary serial port . Secondary serial is serial3 on mega2560 processor, and Serial2 on STM32 and Teensy processor","cltAdvValues":"This curve can be used to advance ignition timing when engine is warming up. This can also be used to warm up the catalytic converters in cold start by retarding timing. Or even as safety feature to retard timing when engine is too hot to prevent knock.","wueRates":"Final enrichment value must be 100%.","true_address":"This is the 11bit Can address of the Speeduino ECU","realtime_base_address":"This is the 11bit CAN address of the realtime data broadcast from the Speeduino ECU. This MUST be at least 0x16 greater than the true address","AUXin00Alias":"The Ascii alias asigned to Aux input channel 0","AUXin01Alias":"The Ascii alias asigned to Aux input channel 1","AUXin02Alias":"The Ascii alias asigned to Aux input channel 2","AUXin03Alias":"The Ascii alias asigned to Aux input channel 3","AUXin04Alias":"The Ascii alias asigned to Aux input channel 4","AUXin05Alias":"The Ascii alias asigned to Aux input channel 5","AUXin06Alias":"The Ascii alias asigned to Aux input channel 6","AUXin07Alias":"The Ascii alias asigned to Aux input channel 7","AUXin08Alias":"The Ascii alias asigned to Aux input channel 8","AUXin09Alias":"The Ascii alias asigned to Aux input channel 9","AUXin10Alias":"The Ascii alias asigned to Aux input channel 10","AUXin11Alias":"The Ascii alias asigned to Aux input channel 11","AUXin12Alias":"The Ascii alias asigned to Aux input channel 12","AUXin13Alias":"The Ascii alias asigned to Aux input channel 13","AUXin14Alias":"The Ascii alias asigned to Aux input channel 14","AUXin15Alias":"The Ascii alias asigned to Aux input channel 15","caninput_sel0a":"This Enables local analog/digital on input channel 0","caninput_sel1a":"This Enables local analog/digital on input channel 1","caninput_sel2a":"This Enables local analog/digital on input channel 2","caninput_sel3a":"This Enables local analog/digital on input channel 3","caninput_sel4a":"This Enables local analog/digital on input channel 4","caninput_sel5a":"This Enables local analog/digital on input channel 5","caninput_sel6a":"This Enables local analog/digital on input channel 6","caninput_sel7a":"This Enables local analog/digital on input channel 7","caninput_sel8a":"This Enables local analog/digital on input channel 8","caninput_sel9a":"This Enables local analog/digital on input channel 9","caninput_sel10a":"This Enables local analog/digital on input channel 10","caninput_sel11a":"This Enables local analog/digital on input channel 11","caninput_sel12a":"This Enables local analog/digital on input channel 12","caninput_sel13a":"This Enables local analog/digital on input channel 13","caninput_sel14a":"This Enables local analog/digital on input channel 14","caninput_sel15a":"This Enables local analog/digital on input channel 15","fpPrime":"Duration to power fuel pump on to ensure fuel line pressure.","primingDelay":"Delay to priming after fuel pump is on, used to wait fuel line get pressurized correctly.","idleUpOutputEnabled":"Enable an output that is toggled by the idle up input pin. An example use is driving an AC fan relay.","idleUpOutputInv":"No = When the idle up pin is high the output is active (grounding), when the idle up pin is low the output is inactive. Yes = When the idle up pin is high the output is inactive, when the idle up pin is low the output is active (grounding).","crankingEnrichTaper":"Taper time from cranking enrichment to ASE or run (after engine has started).","lnchCtrlTPS":"The minimum RPM that launch control will engage at","lnchSoftLim":"The RPM point that the launch control ignition timing adjustment will engage (When under launch conditions). Should be below the hard rev limit RPM","lnchRetard":"When under launch conditions (Eg Clutch engaged) the ignition timing will be set to this when above the Soft rev limit. This will override any other ignition modifiers","lnchHardLim":"The RPM point above which the fuel and/or ignition will be cut when launch is active (Eg Clutch engaged). See the Engine Protection dialog to set whether it is fuel, ignition or both that are cut.","lnchFuelAdd":"The additional fuel % that will be added during Soft and Hard launch conditions. Set to 0 for no fuel modifier.","caninput_sel0b":"This Enables External CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 0","caninput_sel1b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 1","caninput_sel2b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 2","caninput_sel3b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 3","caninput_sel4b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 4","caninput_sel5b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 5","caninput_sel6b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 6","caninput_sel7b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 7","caninput_sel8b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 8","caninput_sel9b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 9","caninput_sel10b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 10","caninput_sel11b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 11","caninput_sel12b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 12","caninput_sel13b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 13","caninput_sel14b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 14","caninput_sel15b":"This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 15","caninput_source_can_address0":"The source 11bit CAN address of the data for channel 0","caninput_source_can_address1":"The source 11bit CAN address of the data for channel 1","caninput_source_can_address2":"The source 11bit CAN address of the data for channel 2","caninput_source_can_address3":"The source 11bit CAN address of the data for channel 3","caninput_source_can_address4":"The source 11bit CAN address of the data for channel 4","caninput_source_can_address5":"The source 11bit CAN address of the data for channel 5","caninput_source_can_address6":"The source 11bit CAN address of the data for channel 6","caninput_source_can_address7":"The source 11bit CAN address of the data for channel 7","caninput_source_can_address8":"The source 11bit CAN address of the data for channel 8","caninput_source_can_address9":"The source 11bit CAN address of the data for channel 9","caninput_source_can_address10":"The source 11bit CAN address of the data for channel 10","caninput_source_can_address11":"The source 11bit CAN address of the data for channel 11","caninput_source_can_address12":"The source 11bit CAN address of the data for channel 12","caninput_source_can_address13":"The source 11bit CAN address of the data for channel 13","caninput_source_can_address14":"The source 11bit CAN address of the data for channel 14","caninput_source_can_address15":"The source 11bit CAN address of the data for channel 15","caninput_source_start_byte0":"The Starting byte the data begins at for channel 0","caninput_source_start_byte1":"The Starting byte the data begins at for channel 1","caninput_source_start_byte2":"The Starting byte the data begins at for channel 2","caninput_source_start_byte3":"The Starting byte the data begins at for channel 3","caninput_source_start_byte4":"The Starting byte the data begins at for channel 4","caninput_source_start_byte5":"The Starting byte the data begins at for channel 5","caninput_source_start_byte6":"The Starting byte the data begins at for channel 6","caninput_source_start_byte7":"The Starting byte the data begins at for channel 7","caninput_source_start_byte8":"The Starting byte the data begins at for channel 8","caninput_source_start_byte9":"The Starting byte the data begins at for channel 9","caninput_source_start_byte10":"The Starting byte the data begins at for channel 10","caninput_source_start_byte11":"The Starting byte the data begins at for channel 11","caninput_source_start_byte12":"The Starting byte the data begins at for channel 12","caninput_source_start_byte13":"The Starting byte the data begins at for channel 13","caninput_source_start_byte14":"The Starting byte the data begins at for channel 14","caninput_source_start_byte15":"The Starting byte the data begins at for channel 15","caninput_source_num_bytes0":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes1":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes2":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes3":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes4":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes5":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes6":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes7":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes8":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes9":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes10":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes11":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes12":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes13":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes14":"The number of bytes the data is made from starting at selected start byte number","caninput_source_num_bytes15":"The number of bytes the data is made from starting at selected start byte number","cmdEnableTestMode":"Click this to enable test mode. This will not be available if the engine is running","cmdStopTestMode":"Click this to disable test mode","cmdtestinj150dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestinj250dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestinj350dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestinj450dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestinj550dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestinj650dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestinj750dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestinj850dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestspk150dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestspk250dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestspk350dc":"This will cycle the output at 50% Duty cycle at a 1s interval","cmdtestspk450dc":"This will cycle the output at 50% Duty cycle at a 1s interval","ADCFILTER_TPS":"Recommended value: 50","ADCFILTER_CLT":"Recommended value: 180","ADCFILTER_IAT":"Recommended value: 180","ADCFILTER_O2":"Recommended value: 128","ADCFILTER_BAT":"Recommended value: 128","ADCFILTER_MAP":"This setting is only available when using the Instantaneious MAP sampling method. Recommended value: 20","ADCFILTER_BARO":"This setting is only available when using an external Baro sensor. Recommended value: 64","boostIntv":"The closed loop control interval will run every this many ms. Generally values between 50% and 100% of the valve frequency work best","VVTasOnOff":"Whether or not the VVT table should be treated as on and off control only. If you are using the VVT map to control a switch, this should be Yes. If you are using the VVT control to drive a PWM signal, this should be No","stagedInjSizePri":"Size of the primary injectors. The sum of the Pri and Sec injectors values MUST match the value used in the req_fuel calculation","stagedInjSizeSec":"Size of the secondary injectors. The sum of the Pri and Sec injectors values MUST match the value used in the req_fuel calculation","resetControl":"How to control the Arduino's automatic reset feature. NOTE: Some of these settings require modifying your hardware and replacing the Arduino bootloader. See the Wiki for more details.\\n\\nDisabled: Allow the Arduino to reset when a new serial connection is made.\\n\\nPrevent When Running: Hold the control pin high while the engine is running.\\n\\nPrevent Always: Always hold the control pin high.\\n\\nSerial Command: Normally hold the control pin high, but pull it low when the 'U' serial command is issued and reset upon receiving more data.","resetControlPin":"The Arduino pin used to control resets.","battVCorMode":"The Battery Voltage Correction value from the table below can either be applied on the whole injection Pulse Width value, or only on the Open Time value.","dwellTable":"Sets the dwell time in milliseconds based on RPM/load. This can be used to reduce stress/wear on ignition system where long dwell is not needed. And other areas can use longer dwell value if needed for stronger spark. Battery voltage correction is applied for these dwell values.","useDwellMap":"In normal operation mode this is set to No and speeduino will use fixed running dwell value. But if different dwell values are required across engine RPM/load range, this can be set to Yes and separate Dwell table defines running dwell value."}} \ No newline at end of file diff --git a/public/tunes/202103.msq b/public/tunes/202103.msq new file mode 100644 index 0000000..1e0c7c3 --- /dev/null +++ b/public/tunes/202103.msq @@ -0,0 +1,2370 @@ + + + + + +"0" +"CAN ID 0" +8000.0 +3000.0 +5000.0 +255.0 +200.0 +245.0 + + -2.0 + -1.5 + -1.2 + -1.0 + -0.8 + -0.6 + -0.4 + -0.2 + -0.1 + 0.0 + + + 110.0 + 110.0 + 110.0 + 110.0 + 107.0 + 106.0 + 101.0 + 100.0 + 100.0 + 100.0 + + + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 6.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 8.0 + 4.0 + 4.0 + 4.0 + 4.0 + 8.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + + + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 6.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 8.0 + 4.0 + 4.0 + 4.0 + 4.0 + 8.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + 4.0 + + + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 6.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 8.0 + 0.0 + 0.0 + 0.0 + 0.0 + 8.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + + + 511.0 + 100.0 + 511.0 + 511.0 + 100.0 + 100.0 + 100.0 + 100.0 + +"1" +255.0 +255.0 +255.0 +255.0 +VSS_RAW +Clutch_RAW +Alternator_Disable +"GPS Speed" +0.0 +"cc/min" +"Log HP & Tq" +"Off" +"US Gallons" +"Miles Per Hour" +3450.0 +"lbs" +0.34 +32.0 +19.3 +"sqft" +25.5 +1.0 +3.7 +0.0 + + +5.0 +120.0 +0.0 +"TPS" +"Open Time only" +"Fixed" +"On" +"PW Adder" +"Baro" + + 110.0 + 110.0 + 110.0 + 110.0 + 107.0 + 106.0 + 101.0 + 100.0 + 100.0 + 100.0 + +20.0 +"Speeduino v0.4" +"Board Default" +"Normal" +3.0 +10.0 +30.0 +0.0 +"Unused" +"VE" +"CPU" +"TPS" +"Mem" +"RPM" +"RPM" +"RPM" +6.4 +2.0 +"Alternating" +"No" +"No" +"Full" +"MAP" +"Disabled" +1.0 + + 355.0 + 355.0 + 355.0 + 355.0 + +"Instantaneous" +"Four-stroke" +"Port" +"4" +"MAP" +"Off" +"4" +"Even fire" +"Off" +"No" +"Off" +"Sequential" +"Yes" +"On" +60.0 +90.0 +50.0 +150.0 +50.0 +27.0 +186.0 +10.0 +260.0 +2.0 +14.7 +0.0 +0.0 +0.0 +"36" +"Normal" +"On" +20.0 +1500.0 +2000.0 +0.0 +50.0 +0.0 +16.0 +14610.0 +-1.0 +65535.0 +"No" +"No" +"Yes" +"2" +"Off" +"No" + + 10.0 + 10.0 + 5.0 + 5.0 + + + 10.0 + 10.0 + 5.0 + 2.0 + + + -20.0 + 10.0 + 40.0 + 85.0 + + + 0.0 + 0.0 + 0.0 + 0.0 + + + 0.0 + 33.0 + 60.0 + 95.0 + +"Board Default" +"Inverted" +"On" +"Added" +"TPS" +"0" +900.0 +5.0 + + 500.0 + 2000.0 + 4500.0 + 6500.0 + +4.5 +25.0 +70.0 +"Pulses per KM" +"A15" +0.0 +255.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +"On" +"No" +"Board Default" +7000.0 +1.0 +255.0 +2550.0 +0.0 +0.0 + + 255.0 + 255.0 + 255.0 + + + + + 70.0 70.0 70.0 70.0 67.0 63.0 56.0 62.0 55.0 54.0 53.0 56.0 51.0 52.0 59.0 66.0 + 70.0 72.0 72.0 75.0 72.0 73.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 78.0 + 70.0 72.0 72.0 73.0 71.0 69.0 77.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 83.0 + 69.0 73.0 75.0 73.0 66.0 68.0 74.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 82.0 + 71.0 70.0 72.0 70.0 66.0 69.0 74.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 83.0 + 72.0 72.0 73.0 71.0 67.0 70.0 75.0 81.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 82.0 + 73.0 73.0 70.0 74.0 68.0 66.0 75.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 87.0 + 73.0 74.0 75.0 75.0 71.0 68.0 80.0 82.0 80.0 80.0 80.0 80.0 80.0 80.0 80.0 93.0 + 75.0 77.0 77.0 76.0 78.0 79.0 82.0 86.0 85.0 85.0 85.0 85.0 85.0 85.0 85.0 100.0 + 75.0 76.0 77.0 80.0 86.0 90.0 93.0 94.0 97.0 92.0 92.0 92.0 92.0 101.0 102.0 105.0 + 75.0 76.0 75.0 82.0 85.0 97.0 99.0 100.0 99.0 95.0 93.0 92.0 92.0 101.0 104.0 107.0 + 75.0 78.0 73.0 81.0 85.0 99.0 100.0 103.0 102.0 99.0 97.0 97.0 94.0 99.0 103.0 109.0 + 81.0 82.0 74.0 84.0 96.0 99.0 106.0 108.0 104.0 104.0 103.0 101.0 102.0 106.0 109.0 114.0 + 90.0 91.0 86.0 97.0 111.0 109.0 114.0 117.0 117.0 116.0 117.0 114.0 114.0 111.0 113.0 115.0 + 96.0 91.0 93.0 98.0 119.0 118.0 119.0 120.0 121.0 121.0 122.0 122.0 122.0 119.0 120.0 119.0 + 96.0 101.0 102.0 107.0 119.0 121.0 123.0 124.0 124.0 123.0 123.0 124.0 121.0 119.0 122.0 122.0 + + + 500.0 + 700.0 + 900.0 + 1400.0 + 2100.0 + 2800.0 + 3600.0 + 4600.0 + 5300.0 + 5600.0 + 5900.0 + 6100.0 + 6400.0 + 6700.0 + 6800.0 + 7200.0 + + + 16.0 + 26.0 + 30.0 + 36.0 + 46.0 + 56.0 + 66.0 + 76.0 + 86.0 + 96.0 + 100.0 + 120.0 + 140.0 + 160.0 + 180.0 + 200.0 + + + + + 18.0 14.0 10.0 10.0 10.0 10.0 10.0 10.0 10.0 10.0 10.0 10.0 10.0 10.0 10.0 10.0 + 12.0 10.0 10.0 18.0 25.0 38.0 39.0 38.0 37.0 37.0 17.0 20.0 25.0 29.0 34.0 39.0 + 12.0 10.0 10.0 19.0 26.0 38.0 39.0 38.0 37.0 37.0 30.0 32.0 34.0 36.0 38.0 41.0 + 12.0 10.0 10.0 21.0 28.0 38.0 39.0 38.0 37.0 37.0 36.0 37.0 38.0 38.0 39.0 41.0 + 12.0 12.0 12.0 25.0 28.0 36.0 37.0 37.0 36.0 36.0 37.0 37.0 38.0 38.0 39.0 40.0 + 11.0 11.0 11.0 23.0 26.0 32.0 33.0 35.0 36.0 36.0 36.0 37.0 37.0 38.0 39.0 40.0 + 11.0 11.0 11.0 22.0 25.0 28.0 30.0 32.0 35.0 35.0 35.0 35.0 36.0 37.0 38.0 40.0 + 10.0 10.0 10.0 19.0 23.0 23.0 27.0 29.0 30.0 30.0 31.0 32.0 34.0 35.0 37.0 39.0 + 9.0 9.0 9.0 19.0 22.0 20.0 24.0 25.0 27.0 27.0 28.0 29.0 31.0 33.0 35.0 38.0 + 8.0 8.0 8.0 18.0 19.0 18.0 20.0 21.0 23.0 24.0 24.0 26.0 28.0 30.0 33.0 36.0 + 7.0 7.0 7.0 15.0 16.0 17.0 18.0 18.0 18.0 19.0 20.0 22.0 25.0 27.0 30.0 34.0 + 6.0 6.0 6.0 11.0 12.0 16.0 16.0 16.0 17.0 18.0 18.0 20.0 22.0 25.0 28.0 31.0 + 4.0 4.0 4.0 6.0 8.0 10.0 12.0 12.0 13.0 13.0 14.0 16.0 19.0 21.0 25.0 28.0 + 2.0 2.0 2.0 3.0 4.0 8.0 9.0 9.0 10.0 10.0 10.0 13.0 16.0 19.0 22.0 26.0 + 2.0 2.0 2.0 2.0 4.0 6.0 8.0 8.0 8.0 8.0 8.0 11.0 13.0 16.0 19.0 23.0 + 2.0 2.0 2.0 2.0 2.0 4.0 5.0 6.0 6.0 7.0 7.0 9.0 11.0 13.0 16.0 19.0 + + + 500.0 + 800.0 + 1000.0 + 1500.0 + 1800.0 + 2300.0 + 2900.0 + 3400.0 + 3900.0 + 4300.0 + 4800.0 + 5300.0 + 5900.0 + 6500.0 + 7200.0 + 8000.0 + + + 10.0 + 24.0 + 36.0 + 56.0 + 66.0 + 76.0 + 84.0 + 100.0 + 110.0 + 126.0 + 140.0 + 160.0 + 180.0 + 200.0 + 220.0 + 250.0 + + + +0.0 +10.0 +20.0 +0.0 +"RISING" +"Crank Speed" +"Going Low" +"Miata 99-05" +"RISING" +"Board Default" +"Yes" +1.0 +"Single tooth cam" +"Low" +0.0 +"Serial Command" +"Board Default" +0.0 +"Closed Loop" +"On" +"Sequential" +"Weak" +"On" +3.5 +3.2 +36.0 +1.0 +400.0 +50.0 +7000.0 +0.0 +0.5 +7200.0 + + 30.0 + 160.0 + 430.0 + 790.0 + + + 10.0 + 40.0 + 60.0 + 80.0 + + + -40.0 + -28.0 + -12.0 + 5.0 + 25.0 + 38.0 + 50.0 + 64.0 + 74.0 + 87.0 + +5.0 + + 121.0 + 110.0 + 103.0 + 89.0 + 82.0 + 71.0 + + + 40.0 + 48.0 + 64.0 + 80.0 + 96.0 + 120.0 + + + 0.0 + 1.0 + 3.0 + 5.0 + 7.0 + 10.0 + +1500.0 +200.0 +5.0 +"Off" +"3" +"LOW" +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 + + -20.0 + 10.0 + 30.0 + 45.0 + 60.0 + 80.0 + + + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + + + 0.0 + 10.0 + 40.0 + 300.0 + + + 0.0 + 10.0 + 15.0 + 20.0 + +0.5 + + 87.0 + 93.0 + 97.0 + 99.0 + 101.0 + 102.0 + 103.0 + 107.0 + + + 100.0 + 100.0 + 100.0 + 100.0 + 100.0 + 100.0 + 100.0 + 100.0 + + + -300.0 + -100.0 + -50.0 + 10.0 + 60.0 + 200.0 + + + 0.0 + 0.0 + 0.0 + 4.0 + 5.0 + 7.0 + +400.0 + + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + + + + + 14.7 14.7 14.7 15.0 15.0 15.0 15.0 15.0 15.0 15.0 15.0 15.0 15.0 15.0 15.0 15.0 + 14.7 14.7 14.7 14.5 14.7 15.0 15.0 15.0 15.0 15.0 15.0 15.0 14.9 14.9 14.9 14.9 + 14.7 14.7 14.7 14.5 14.7 15.0 15.0 15.0 15.0 15.0 15.0 15.0 14.9 14.9 14.9 14.9 + 14.5 14.5 14.5 14.5 14.7 15.0 15.0 15.0 15.0 15.0 15.0 15.0 14.9 14.9 14.9 14.9 + 14.4 14.4 14.4 14.6 14.7 14.8 14.8 14.8 14.8 14.8 14.8 14.8 14.8 14.8 14.8 14.8 + 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 14.7 + 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 14.5 + 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 14.2 + 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 13.5 + 13.1 13.1 13.1 13.0 13.0 13.0 13.0 13.0 13.0 13.0 13.0 13.0 13.0 13.0 13.0 13.0 + 13.0 13.0 13.0 13.0 13.0 13.0 13.0 12.8 12.7 12.7 12.7 12.7 12.7 12.7 12.7 12.7 + 12.3 12.3 12.3 12.3 12.3 12.3 12.2 12.2 12.2 12.2 12.2 12.2 12.2 12.2 12.2 12.2 + 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 12.0 + 11.8 11.6 11.6 11.6 11.6 11.6 11.6 11.6 11.6 11.6 11.6 11.6 11.6 11.6 11.6 11.6 + 11.9 11.4 11.4 11.4 11.4 11.4 11.4 11.4 11.4 11.4 11.4 11.4 11.4 11.4 11.4 11.4 + 11.8 11.3 11.3 11.3 11.3 11.3 11.3 11.3 11.3 11.3 11.3 11.3 11.3 11.3 11.3 11.3 + + + 500.0 + 700.0 + 900.0 + 1400.0 + 2100.0 + 2800.0 + 3600.0 + 4600.0 + 5300.0 + 5600.0 + 5900.0 + 6100.0 + 6400.0 + 6700.0 + 6800.0 + 7200.0 + + + 16.0 + 26.0 + 30.0 + 36.0 + 46.0 + 56.0 + 68.0 + 76.0 + 86.0 + 96.0 + 100.0 + 120.0 + 140.0 + 160.0 + 180.0 + 200.0 + + + +"PID" +"Wide Band" +"On" +"Off" +"Spark Only" +100.0 +20.0 +0.0 +70.0 +16.0 +"On/Off" +"MAP" +"Advance" +"Yes" +"No" +"On" +15.0 +10.0 +18.0 +15.0 +100.0 +70.0 +"Board Default" +"No" +"Simple" +"Board Default" +"No" +"No" + + 9.0 + 10.0 + 11.8 + 13.0 + 14.0 + 14.5 + + + 139.0 + 114.0 + 74.0 + 62.0 + 50.0 + 46.0 + + + -40.0 + -20.0 + 0.0 + 15.0 + 35.0 + 50.0 + 60.0 + 90.0 + 215.0 + + + 175.0 + 175.0 + 0.0 + 175.0 + 175.0 + 175.0 + 175.0 + 175.0 + 175.0 + +34.0 +300.0 +496.0 +"51" +"No" +"LOW" +2800.0 +-10.0 +3000.0 +15.0 +0.78125 +1.0625 +0.83567 +192.0 +30.0 +15.0 +9.0 +"Pullup" +"No" +"Yes" +"No" +"A0" +800.0 +0.0 +5000.0 + + 1100.0 + 1100.0 + 1100.0 + 1100.0 + 1000.0 + 900.0 + 850.0 + 850.0 + 850.0 + 850.0 + + + 369.0 + 327.0 + 291.0 + 246.0 + 213.0 + 168.0 + 123.0 + 87.0 + 45.0 + 0.0 + + + 32.0 + 32.0 + 32.0 + 31.0 + 29.0 + 27.0 + 22.0 + 19.0 + 19.0 + 19.0 + + + -38.0 + -19.0 + 1.0 + 17.0 + 35.0 + 41.0 + 65.0 + 70.0 + 80.0 + 105.0 + + + 123.0 + 579.0 + 390.0 + 300.0 + + + 40.0 + 40.0 + 40.0 + 33.0 + + + -15.0 + 1.0 + 16.0 + 70.0 + +"PWM Closed loop" +"3" +"1" +"Normal" +20.0 +240.0 +4.0 +"No" +"On/Off" +"Board Default" +90.0 +2.0 +6.0 + + 60.0 + -20.0 + -40.0 + 158.0 + + + + + 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 + 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 + 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 + 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 + 30.0 30.0 30.0 30.0 30.0 30.0 30.0 30.0 + + + 1000.0 + 2000.0 + 3000.0 + 3800.0 + 4500.0 + 5300.0 + 6000.0 + 7200.0 + + + 0.0 + 10.0 + 20.0 + 40.0 + 50.0 + 60.0 + 80.0 + 100.0 + + + 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 + 11.0 10.0 6.0 6.0 6.0 6.0 7.0 7.0 + 24.0 22.0 20.0 18.0 18.0 18.0 19.0 20.0 + 32.0 30.0 29.0 28.0 27.0 27.0 27.0 29.0 + 39.0 39.0 38.0 38.0 37.0 37.0 36.0 36.0 + 46.0 47.0 47.0 46.0 46.0 45.0 45.0 43.0 + 56.0 56.0 56.0 55.0 55.0 55.0 55.0 56.0 + 68.0 68.0 69.0 69.0 69.0 69.0 69.0 69.0 + + + 1000.0 + 2000.0 + 3000.0 + 3800.0 + 4500.0 + 5300.0 + 6000.0 + 6800.0 + + + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + + + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 7.0 15.0 30.0 41.0 + 55.0 70.0 60.0 50.0 40.0 33.0 25.0 18.0 + 6.0 6.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + + + 12800.0 + 12800.0 + 12800.0 + 12800.0 + 12800.0 + 12800.0 + 12800.0 + 12800.0 + + + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + + + + + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + + + 700.0 + 1500.0 + 3000.0 + 4100.0 + 5500.0 + 7000.0 + + + 36.0 + 50.0 + 66.0 + 80.0 + 100.0 + 120.0 + + + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + + + 700.0 + 1500.0 + 3000.0 + 4100.0 + 5500.0 + 7000.0 + + + 36.0 + 50.0 + 66.0 + 80.0 + 100.0 + 120.0 + + + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + + + 700.0 + 1500.0 + 3000.0 + 4100.0 + 5500.0 + 7000.0 + + + 36.0 + 50.0 + 66.0 + 80.0 + 100.0 + 120.0 + + + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + 0.0 0.0 0.0 0.0 0.0 0.0 + + + 700.0 + 1500.0 + 3000.0 + 4100.0 + 5500.0 + 7000.0 + + + 36.0 + 50.0 + 66.0 + 80.0 + 100.0 + 120.0 + + + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + + + 25500.0 + 25500.0 + 25500.0 + 25500.0 + 25500.0 + 25500.0 + + + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + + + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + + + 25500.0 + 25500.0 + 25500.0 + 25500.0 + 25500.0 + 25500.0 + + + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + + + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + + + 25500.0 + 25500.0 + 25500.0 + 25500.0 + 25500.0 + 25500.0 + + + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + + + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + 127.0 127.0 127.0 127.0 127.0 127.0 + + + 25500.0 + 25500.0 + 25500.0 + 25500.0 + 25500.0 + 25500.0 + + + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + + + +"Disable" +"Disable" +"Enable" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Digital_local" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"Off" +"Digital_local" +"Via Secondary Serial" +"Via Internal CAN" +"Via Internal CAN" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"0x100" +"7" +"0" +"0" +"0" +"0" +"0" +"0" +"0" +"0" +"7" +"7" +"7" +"7" +"7" +"7" +"7" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +255.0 +255.0 +"On" +"On" +"On" +"On" +"On" +"On" +"On" +"On" +"On" + + 65535.0 + 65535.0 + 65535.0 + 65535.0 + 65535.0 + 65535.0 + 65535.0 + 65535.0 + +"7" +"0" +"0" +"0" +"0" +"0" +"0" +"0" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +"1" +255.0 +255.0 +255.0 +255.0 +"CAN ID 0" +"0x101" +"0x201" +"0x2FF" +"A15" +"A0" +"A0" +"A0" +"A0" +"A0" +"A4" +"A0" +"A1" +"A6" +"A10" +"A10" +"A3" +"A3" +"A3" +"A8" +"30" +"51" +"1" +"8" +"11" +"8" +"12" +"8" +"1" +"8" +"26" +"8" +"46" +"8" +"7" +"8" +"Yes" +"0" +"" +"" +765.0 + + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + 7.0 + + + + + -15.0 + 1.0 + 16.0 + 70.0 + + + 105.0 + 105.0 + 105.0 + 90.0 + +"FC" +"On" +"Table" +"A0" + + 255.0 + 7.0 + 255.0 + 7.0 + 255.0 + 7.0 + 255.0 + 7.0 + + + 510.0 + 14.0 + 510.0 + 14.0 + 510.0 + 14.0 + 510.0 + 14.0 + +5000.0 +30.0 +64775.0 +64010.0 +70.0 + + 0.0 + 20.0 + 40.0 + 60.0 + 80.0 + 100.0 + + + 50.0 + 50.0 + 50.0 + 50.0 + 50.0 + 50.0 + + + 0.0 + 20.0 + 40.0 + 60.0 + 80.0 + 100.0 + + + 4.0 + 4.0 + 3.0 + 3.0 + 2.0 + 1.0 + + + 0.0 + 20.0 + 40.0 + 60.0 + 80.0 + 100.0 + + + 15.0 + 29.0 + 43.0 + 57.0 + 71.0 + 85.0 + +"2 stage" +"30" +60.0 +250.0 +50.0 +17.0 +"31" +"LOW" +"Yes" +3000.0 +6000.0 +6.0 +3.0 +5.0 +"32" +"No" +6000.0 +7000.0 +3.0 +2.0 +5.0 +"Analog" +"3" +"LOW" +"Off" +"No" +"3" +"3" +7.5 +100.0 +1000.0 + + 2000.0 + 3000.0 + 4000.0 + 6000.0 + 5000.0 + 5000.0 + + + 0.0 + 0.0 + 0.0 + 0.0 + -20.0 + -20.0 + + + 30.0 + 30.0 + 30.0 + 30.0 + 15.0 + 3.0 + +1.0 +2.0 +20.0 +0.2 +0.1 +0.0 +0.0 +"MAP" +"Multiplied %" +"MAP" +102.0 +"21" +"LOW" +"Yes" +41.0 +6.0 +1.0 +0.0 +342.0 +-1.0 +1.0 +"Off" +"Off" +"Off" +"A15" +"A15" +-1.0 +255.0 +-1.0 +255.0 + + 25500.0 + 25500.0 + 25500.0 + 25500.0 + + + 255.0 + 255.0 + 255.0 + 255.0 + +"On" +"Closedloop" +"On" +255.0 +25500.0 +510.0 +510.0 +215.0 +0.0 +"Off" +"63" +"Inverted" +"Off" +"63" +"Inverted" +"63" + + 0.0 + 100.0 + 200.0 + 300.0 + 400.0 + 500.0 + + + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + +255.0 +255.0 +"Board Default" + + 215.0 + 215.0 + 215.0 + 215.0 + 215.0 + 215.0 + + + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + +"MAP" +"Added" +"ETH%" +65535.0 +"3" +"HIGH" +"Yes" + + 2000.0 + 500.0 + + + + + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 100.0 + + + 500.0 + 700.0 + 900.0 + 1500.0 + 2100.0 + 2900.0 + 3800.0 + 4700.0 + 5500.0 + 5700.0 + 5900.0 + 6100.0 + 6300.0 + 6500.0 + 6600.0 + 6600.0 + + + 16.0 + 26.0 + 30.0 + 36.0 + 40.0 + 46.0 + 50.0 + 56.0 + 60.0 + 66.0 + 70.0 + 76.0 + 86.0 + 90.0 + 96.0 + 100.0 + + + + + 255.0 255.0 255.0 255.0 255.0 255.0 255.0 255.0 + 255.0 255.0 255.0 255.0 255.0 255.0 255.0 255.0 + 255.0 255.0 255.0 255.0 255.0 255.0 255.0 255.0 + 255.0 255.0 255.0 255.0 255.0 255.0 255.0 255.0 + 255.0 255.0 255.0 255.0 255.0 255.0 255.0 255.0 + 255.0 255.0 255.0 255.0 255.0 255.0 255.0 255.0 + 255.0 255.0 255.0 255.0 255.0 255.0 255.0 255.0 + 255.0 255.0 255.0 255.0 255.0 255.0 255.0 255.0 + + + 25500.0 + 25500.0 + 25500.0 + 25500.0 + 25500.0 + 25500.0 + 25500.0 + 25500.0 + + + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + 510.0 + + + 2.0 2.0 2.0 2.0 + 2.0 2.0 2.0 2.0 + 2.0 2.0 2.0 2.0 + 2.0 2.0 2.0 2.0 + + + 500.0 + 2100.0 + 6100.0 + 7200.0 + + + 16.0 + 66.0 + 100.0 + 200.0 + + + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + + + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + + + +"Active high" +"Active low" +"Active low" +"Active low" +"Active low" +"Active low" +"Active low" +"Active low" +255.0 + + 3.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + 0.0 + +"3" +"Disabled" +"Disabled" +"Disabled" +"Disabled" +"Disabled" +"Disabled" +"Disabled" + + 0.5 + 25.5 + 25.5 + 25.5 + 25.5 + 25.5 + 25.5 + 25.5 + + + 14.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + +"RPM" + + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + + + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 255.0 + 32.0 + + + 800.0 + -1.0 + -1.0 + -1.0 + -1.0 + -1.0 + -1.0 + -1.0 + + + 3.0 + -1.0 + -1.0 + -1.0 + -1.0 + -1.0 + -1.0 + -1.0 + +">=" +">=" +"AND" +"==" +"==" +"XOR" +"==" +"==" +"XOR" +"==" +"==" +"XOR" +"==" +"==" +"XOR" +"==" +"==" +"XOR" +"==" +"==" +"XOR" +"==" +"==" +"XOR" + + 19043.0 + 19018.0 + 19274.0 + 19275.0 + 19532.0 + 19532.0 + 19789.0 + 20045.0 + + + 78.0 + 78.0 + 78.0 + 79.0 + 79.0 + 79.0 + 80.0 + 80.0 + 80.0 + 81.0 + 81.0 + 81.0 + 81.0 + 82.0 + 82.0 + 82.0 + 83.0 + 83.0 + 83.0 + 83.0 + 84.0 + 84.0 + + + + + 45.0 45.0 46.0 46.0 46.0 46.0 47.0 47.0 47.0 48.0 48.0 48.0 48.0 49.0 49.0 49.0 + 50.0 50.0 50.0 51.0 51.0 51.0 51.0 52.0 52.0 52.0 53.0 53.0 53.0 53.0 54.0 54.0 + 54.0 55.0 55.0 55.0 56.0 56.0 56.0 56.0 57.0 57.0 57.0 58.0 58.0 58.0 58.0 59.0 + 59.0 59.0 60.0 60.0 60.0 61.0 61.0 61.0 61.0 62.0 62.0 62.0 63.0 63.0 63.0 63.0 + 64.0 64.0 64.0 65.0 65.0 65.0 66.0 66.0 66.0 66.0 67.0 67.0 67.0 68.0 68.0 68.0 + 68.0 69.0 69.0 69.0 70.0 70.0 70.0 71.0 71.0 71.0 71.0 72.0 72.0 72.0 73.0 73.0 + 73.0 73.0 74.0 74.0 74.0 75.0 75.0 75.0 76.0 76.0 76.0 76.0 77.0 77.0 77.0 78.0 + 78.0 78.0 78.0 79.0 79.0 79.0 80.0 80.0 80.0 81.0 81.0 81.0 81.0 82.0 82.0 82.0 + 83.0 83.0 83.0 83.0 84.0 84.0 84.0 85.0 85.0 85.0 85.0 86.0 86.0 86.0 87.0 87.0 + 87.0 88.0 88.0 88.0 88.0 89.0 89.0 89.0 90.0 90.0 90.0 90.0 91.0 91.0 91.0 92.0 + 92.0 92.0 93.0 93.0 93.0 93.0 94.0 94.0 94.0 95.0 95.0 95.0 95.0 96.0 96.0 96.0 + 97.0 97.0 97.0 98.0 98.0 98.0 98.0 99.0 99.0 99.0 100.0 100.0 100.0 100.0 101.0 101.0 + 101.0 102.0 102.0 102.0 103.0 103.0 103.0 103.0 104.0 104.0 104.0 105.0 105.0 105.0 105.0 106.0 + 106.0 106.0 107.0 107.0 107.0 108.0 108.0 108.0 108.0 109.0 109.0 109.0 110.0 110.0 110.0 110.0 + 111.0 111.0 111.0 112.0 112.0 112.0 113.0 113.0 113.0 113.0 114.0 114.0 114.0 115.0 115.0 115.0 + 115.0 116.0 116.0 116.0 117.0 117.0 117.0 118.0 118.0 118.0 118.0 119.0 119.0 119.0 120.0 120.0 + + + 16000.0 + 16000.0 + 16100.0 + 16100.0 + 16100.0 + 16200.0 + 16200.0 + 16200.0 + 16300.0 + 16300.0 + 16300.0 + 16300.0 + 16400.0 + 16400.0 + 16400.0 + 16500.0 + + + 338.0 + 338.0 + 338.0 + 336.0 + 336.0 + 336.0 + 336.0 + 334.0 + 334.0 + 334.0 + 332.0 + 332.0 + 332.0 + 330.0 + 330.0 + 330.0 + + + + + + + + + + + + + + + + + + + diff --git a/public/tunes/202103.yml b/public/tunes/202103.yml new file mode 100644 index 0000000..a7e9e26 --- /dev/null +++ b/public/tunes/202103.yml @@ -0,0 +1,65849 @@ +megaTune: + signature: speeduino 202103 + MTversion: 2.25 + queryCommand: Q + versionInfo: S +tunerStudio: + iniSpecVersion: 3.64 +defines: + loadSourceNames: + - MAP + - TPS + - IMAP/EMAP + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + loadSourceUnits: + - kPa + - '% TPS' + - '%' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + all_IO_Pins: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + IO_Pins_no_def: + - INVALID + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + bitwise_def: + - Disabled + - AND + - OR + - XOR + comparator_def: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + comp_IO_Pins: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + fullStatus_def_1: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + fullStatus_def_2: + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + fullStatus_def_3: + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + fullStatus_def_4: + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + fullStatus_def: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + trigger_missingTooth: + - '0' + trigger_BasicDistributor: + - '1' + trigger_DualWheel: + - '2' + trigger_GM7X: + - '3' + trigger_4G63: + - '4' + trigger_24X: + - '5' + trigger_Jeep2000: + - '6' + trigger_Audi135: + - '7' + trigger_HondaD17: + - '8' + trigger_Miata9905: + - '9' + trigger_MazdaAU: + - '10' + trigger_non360: + - '11' + trigger_Nissan360: + - '12' + trigger_Subaru67: + - '13' + trigger_Daihatsu: + - '14' + trigger_Harley: + - '15' + trigger_ThirtySixMinus222: + - '16' + trigger_ThirtySixMinus21: + - '17' + trigger_420a: + - '18' + trigger_Webber: + - '19' + trigger_FordST170: + - '20' + PIN_OUT10inv: + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + PIN_OUT16inv: + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + PIN_16inv: + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + ANALOG_PIN: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + DIGITAL_PIN: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + ANALOG_DIG_PIN_LIST: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + tsCanId_list: + - CAN ID 0 + - CAN ID 1 + - CAN ID 2 + - CAN ID 3 + - CAN ID 4 + - CAN ID 5 + - CAN ID 6 + - CAN ID 7 + - CAN ID 8 + - CAN ID 9 + - CAN ID 10 + - CAN ID 11 + - CAN ID 12 + - CAN ID 13 + - CAN ID 14 + - INVALID + CAN_ADDRESS_HEX_inv255: + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + CAN_ADDRESS_HEX_00XX: + - INVALID + - '0x001' + - '0x002' + - '0x003' + - '0x004' + - '0x005' + - '0x006' + - '0x007' + - '0x008' + - '0x009' + - '0x00A' + - '0x00B' + - '0x00C' + - '0x00D' + - '0x00E' + - '0x00F' + - '0x010' + - '0x011' + - '0x012' + - '0x013' + - '0x014' + - '0x015' + - '0x016' + - '0x017' + - '0x018' + - '0x019' + - '0x01A' + - '0x01B' + - '0x01C' + - '0x01D' + - '0x01E' + - '0x01F' + - '0x020' + - '0x021' + - '0x022' + - '0x023' + - '0x024' + - '0x025' + - '0x026' + - '0x027' + - '0x028' + - '0x029' + - '0x02A' + - '0x02B' + - '0x02C' + - '0x02D' + - '0x02E' + - '0x02F' + - '0x030' + - '0x031' + - '0x032' + - '0x033' + - '0x034' + - '0x035' + - '0x036' + - '0x037' + - '0x038' + - '0x039' + - '0x03A' + - '0x03B' + - '0x03C' + - '0x03D' + - '0x03E' + - '0x03F' + - '0x040' + - '0x041' + - '0x042' + - '0x043' + - '0x044' + - '0x045' + - '0x046' + - '0x047' + - '0x048' + - '0x049' + - '0x04A' + - '0x04B' + - '0x04C' + - '0x04D' + - '0x04E' + - '0x04F' + - '0x050' + - '0x051' + - '0x052' + - '0x053' + - '0x054' + - '0x055' + - '0x056' + - '0x057' + - '0x058' + - '0x059' + - '0x05A' + - '0x05B' + - '0x05C' + - '0x05D' + - '0x05E' + - '0x05F' + - '0x060' + - '0x061' + - '0x062' + - '0x063' + - '0x064' + - '0x065' + - '0x066' + - '0x067' + - '0x068' + - '0x069' + - '0x06A' + - '0x06B' + - '0x06C' + - '0x06D' + - '0x06E' + - '0x06F' + - '0x070' + - '0x071' + - '0x072' + - '0x073' + - '0x074' + - '0x075' + - '0x076' + - '0x077' + - '0x078' + - '0x079' + - '0x07A' + - '0x07B' + - '0x07C' + - '0x07D' + - '0x07E' + - '0x07F' + - '0x080' + - '0x081' + - '0x082' + - '0x083' + - '0x084' + - '0x085' + - '0x086' + - '0x087' + - '0x088' + - '0x089' + - '0x08A' + - '0x08B' + - '0x08C' + - '0x08D' + - '0x08E' + - '0x08F' + - '0x090' + - '0x091' + - '0x092' + - '0x093' + - '0x094' + - '0x095' + - '0x096' + - '0x097' + - '0x098' + - '0x099' + - '0x09A' + - '0x09B' + - '0x09C' + - '0x09D' + - '0x09E' + - '0x09F' + - '0x0A0' + - '0x0A1' + - '0x0A2' + - '0x0A3' + - '0x0A4' + - '0x0A5' + - '0x0A6' + - '0x0A7' + - '0x0A8' + - '0x0A9' + - '0x0AA' + - '0x0AB' + - '0x0AC' + - '0x0AD' + - '0x0AE' + - '0x0AF' + - '0x0B0' + - '0x0B1' + - '0x0B2' + - '0x0B3' + - '0x0B4' + - '0x0B5' + - '0x0B6' + - '0x0B7' + - '0x0B8' + - '0x0B9' + - '0x0BA' + - '0x0BB' + - '0x0BC' + - '0x0BD' + - '0x0BE' + - '0x0BF' + - '0x0C0' + - '0x0C1' + - '0x0C2' + - '0x0C3' + - '0x0C4' + - '0x0C5' + - '0x0C6' + - '0x0C7' + - '0x0C8' + - '0x0C9' + - '0x0CA' + - '0x0CB' + - '0x0CC' + - '0x0CD' + - '0x0CE' + - '0x0CF' + - '0x0D0' + - '0x0D1' + - '0x0D2' + - '0x0D3' + - '0x0D4' + - '0x0D5' + - '0x0D6' + - '0x0D7' + - '0x0D8' + - '0x0D9' + - '0x0DA' + - '0x0DB' + - '0x0DC' + - '0x0DD' + - '0x0DE' + - '0x0DF' + - '0x0E0' + - '0x0E1' + - '0x0E2' + - '0x0E3' + - '0x0E4' + - '0x0E5' + - '0x0E6' + - '0x0E7' + - '0x0E8' + - '0x0E9' + - '0x0EA' + - '0x0EB' + - '0x0EC' + - '0x0ED' + - '0x0EE' + - '0x0EF' + - '0x0F0' + - '0x0F1' + - '0x0F2' + - '0x0F3' + - '0x0F4' + - '0x0F5' + - '0x0F6' + - '0x0F7' + - '0x0F8' + - '0x0F9' + - '0x0FA' + - '0x0FB' + - '0x0FC' + - '0x0FD' + - '0x0FE' + - '0x0FF' + CAN_ADDRESS_HEX_01XX: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + CAN_ADDRESS_HEX_02XX: + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + CAN_ADDRESS_HEX_03XX: + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + CAN_ADDRESS_HEX_04XX: + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + CAN_ADDRESS_HEX_05XX: + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + CAN_ADDRESS_HEX_06XX: + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + CAN_ADDRESS_HEX_07XX: + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + CAN_ADDRESS_HEX: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID +pcVariables: + tsCanId: + type: bits + size: U08 + address: + - 0 + - 3 + values: + - CAN ID 0 + - CAN ID 1 + - CAN ID 2 + - CAN ID 3 + - CAN ID 4 + - CAN ID 5 + - CAN ID 6 + - CAN ID 7 + - CAN ID 8 + - CAN ID 9 + - CAN ID 10 + - CAN ID 11 + - CAN ID 12 + - CAN ID 13 + - CAN ID 14 + - INVALID + rpmhigh: + type: scalar + size: U16 + units: rpm + scale: 1 + transform: 0 + min: 0 + max: 30000 + digits: 0 + rpmwarn: + type: scalar + size: U16 + units: rpm + scale: 1 + transform: 0 + min: 0 + max: 30000 + digits: 0 + rpmdang: + type: scalar + size: U16 + units: rpm + scale: 1 + transform: 0 + min: 0 + max: 30000 + digits: 0 + maphigh: + type: scalar + size: U16 + units: kPa + scale: 1 + transform: 0 + min: 0 + max: 30000 + digits: 0 + mapwarn: + type: scalar + size: U16 + units: kPa + scale: 1 + transform: 0 + min: 0 + max: 30000 + digits: 0 + mapdang: + type: scalar + size: U16 + units: kPa + scale: 1 + transform: 0 + min: 0 + max: 30000 + digits: 0 + wueAFR: + type: array + size: S16 + shape: + columns: 10 + rows: 0 + units: AFR + scale: 0.1 + transform: 0 + min: -4 + max: 4 + digits: 1 + wueRecommended: + type: array + size: U08 + shape: + columns: 10 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 100 + max: 255 + digits: 0 + idleUnits: + type: bits + size: U08 + address: + - 0 + - 2 + values: + - None + - On/Off + - Duty Cycle + - Duty Cycle + - Steps + - Steps + boardFuelOutputs: + type: array + size: U08 + shape: + columns: 128 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + boardIgnOutputs: + type: array + size: U08 + shape: + columns: 128 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + boardHasRTC: + type: array + size: U08 + shape: + columns: 128 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + algorithmNames: + type: bits + size: U08 + address: + - 0 + - 2 + values: + - MAP + - TPS + - IMAP/EMAP + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + algorithmUnits: + type: bits + size: U08 + address: + - 0 + - 2 + values: + - kPa + - '% TPS' + - '%' + - '% TPS' + - INVALID + - INVALID + - INVALID + - INVALID + algorithmLimits: + type: array + size: U16 + shape: + columns: 8 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 511 + digits: 0 + fuel2SwitchUnits: + type: bits + size: U08 + address: + - 0 + - 2 + values: + - rpm + - kPa + - '% TPS' + - '%' + - '% TPS' + - INVALID + - INVALID + - INVALID + boostTableLabels: + type: bits + size: U08 + address: + - 0 + - 1 + values: + - Duty Cycle % + - kPa + prgm_out_selection: + type: bits + size: U08 + address: + - 0 + - 2 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + fuelLoadMax: + type: scalar + size: U08 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 511 + digits: 0 + ignLoadMax: + type: scalar + size: U08 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 511 + digits: 0 + fuel2LoadMax: + type: scalar + size: U08 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 511 + digits: 0 + ign2LoadMax: + type: scalar + size: U08 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 511 + digits: 0 + AUXin00Alias: + type: string + size: ASCII + length: 20 + AUXin01Alias: + type: string + size: ASCII + length: 20 + AUXin02Alias: + type: string + size: ASCII + length: 20 + AUXin03Alias: + type: string + size: ASCII + length: 20 + AUXin04Alias: + type: string + size: ASCII + length: 20 + AUXin05Alias: + type: string + size: ASCII + length: 20 + AUXin06Alias: + type: string + size: ASCII + length: 20 + AUXin07Alias: + type: string + size: ASCII + length: 20 + AUXin08Alias: + type: string + size: ASCII + length: 20 + AUXin09Alias: + type: string + size: ASCII + length: 20 + AUXin10Alias: + type: string + size: ASCII + length: 20 + AUXin11Alias: + type: string + size: ASCII + length: 20 + AUXin12Alias: + type: string + size: ASCII + length: 20 + AUXin13Alias: + type: string + size: ASCII + length: 20 + AUXin14Alias: + type: string + size: ASCII + length: 20 + AUXin15Alias: + type: string + size: ASCII + length: 20 + prgm_out00Alias: + type: string + size: ASCII + length: 20 + prgm_out01Alias: + type: string + size: ASCII + length: 20 + prgm_out02Alias: + type: string + size: ASCII + length: 20 + prgm_out03Alias: + type: string + size: ASCII + length: 20 + prgm_out04Alias: + type: string + size: ASCII + length: 20 + prgm_out05Alias: + type: string + size: ASCII + length: 20 + prgm_out06Alias: + type: string + size: ASCII + length: 20 + prgm_out07Alias: + type: string + size: ASCII + length: 20 +constants: + pages: + - number: 1 + size: 0 + data: + aseTaperTime: + type: scalar + size: U08 + offset: 0 + units: S + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + aeColdPct: + type: scalar + size: U08 + offset: 1 + units: '%' + scale: 1 + transform: 0 + min: 100 + max: 255 + digits: 0 + aeColdTaperMin: + type: scalar + size: U08 + offset: 2 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + aeMode: + type: bits + size: U08 + offset: 3 + address: + - 0 + - 1 + values: + - TPS + - MAP + - INVALID + - INVALID + battVCorMode: + type: bits + size: U08 + offset: 3 + address: + - 2 + - 2 + values: + - Whole PW + - Open Time only + SoftLimitMode: + type: bits + size: U08 + offset: 3 + address: + - 3 + - 3 + values: + - Fixed + - Relative + useTachoSweep: + type: bits + size: U08 + offset: 3 + address: + - 4 + - 4 + values: + - 'Off' + - 'On' + aeApplyMode: + type: bits + size: U08 + offset: 3 + address: + - 5 + - 5 + values: + - PW Multiplier + - PW Adder + multiplyMAP: + type: bits + size: U08 + offset: 3 + address: + - 6 + - 7 + values: + - 'Off' + - Baro + - Fixed + - INVALID + wueRates: + type: array + size: U08 + offset: 4 + shape: + columns: 10 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + crankingPct: + type: scalar + size: U08 + offset: 14 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + pinLayout: + type: bits + size: U08 + offset: 15 + address: + - 0 + - 7 + values: + - INVALID + - Speeduino v0.2 + - Speeduino v0.3 + - Speeduino v0.4 + - INVALID + - INVALID + - 01-05 MX5 PNP + - INVALID + - 96-97 MX5 PNP + - NA6 MX5 PNP + - Turtana PCB + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - Plazomat I/O 0.1 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - Daz V6 Shield 0.1 + - BMW PnP + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - NO2C + - UA4C + - INVALID + - INVALID + - INVALID + - DIY-EFI CORE4 v1.0 + - INVALID + - INVALID + - INVALID + - INVALID + - dvjcodec Teensy RevA + - dvjcodec Teensy RevB + - INVALID + - JUICEBOX + - INVALID + - Drop Bear + - INVALID + - INVALID + - INVALID + - INVALID + - Black STM32F407VET6 V0.1 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + tachoPin: + type: bits + size: U08 + offset: 16 + address: + - 0 + - 5 + values: + - Board Default + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + tachoDiv: + type: bits + size: U08 + offset: 16 + address: + - 6 + - 7 + values: + - Normal + - Half + - INVALID + - INVALID + tachoDuration: + type: scalar + size: U08 + offset: 17 + units: ms + scale: 1 + transform: 0 + min: 1 + max: 6 + digits: 0 + maeThresh: + type: scalar + size: U08 + offset: 18 + units: kPa/s + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + taeThresh: + type: scalar + size: U08 + offset: 19 + units: '%/s' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + aeTime: + type: scalar + size: U08 + offset: 20 + units: ms + scale: 10 + transform: 0 + min: 0 + max: 2550 + digits: 0 + display: + type: bits + size: U08 + offset: 21 + address: + - 0 + - 2 + values: + - Unused + - Adafruit 128x32 + - Generic 128x32 + - Adafruit 128x64 + - Generic 128x64 + - INVALID + - INVALID + - INVALID + display1: + type: bits + size: U08 + offset: 21 + address: + - 3 + - 5 + values: + - RPM + - PW + - Advance + - VE + - GammaE + - TPS + - IAT + - CLT + display2: + type: bits + size: U08 + offset: 21 + address: + - 6 + - 7 + values: + - O2 + - Voltage + - CPU + - Mem + display3: + type: bits + size: U08 + offset: 22 + address: + - 0 + - 2 + values: + - RPM + - PW + - Advance + - VE + - GammaE + - TPS + - IAT + - CLT + display4: + type: bits + size: U08 + offset: 22 + address: + - 3 + - 4 + values: + - O2 + - Voltage + - CPU + - Mem + display5: + type: bits + size: U08 + offset: 22 + address: + - 5 + - 7 + values: + - RPM + - PW + - Advance + - VE + - GammaE + - TPS + - IAT + - CLT + displayB1: + type: bits + size: U08 + offset: 23 + address: + - 0 + - 3 + values: + - RPM + - PW + - Advance + - VE + - GammaE + - TPS + - IAT + - CLT + displayB2: + type: bits + size: U08 + offset: 23 + address: + - 4 + - 7 + values: + - RPM + - PW + - Advance + - VE + - GammaE + - TPS + - IAT + - CLT + reqFuel: + type: scalar + size: U08 + offset: 24 + units: ms + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + divider: + type: scalar + size: U08 + offset: 25 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 0 + digits: .nan + alternate: + type: bits + size: U08 + offset: 26 + address: + - 0 + - 0 + values: + - Simultaneous + - Alternating + multiplyMAP1: + type: bits + size: U08 + offset: 26 + address: + - 1 + - 1 + values: + - 'No' + - 'Yes' + includeAFR: + type: bits + size: U08 + offset: 26 + address: + - 2 + - 2 + values: + - 'No' + - 'Yes' + hardCutType: + type: bits + size: U08 + offset: 26 + address: + - 3 + - 3 + values: + - Full + - Rolling + ignAlgorithm: + type: bits + size: U08 + offset: 26 + address: + - 4 + - 6 + values: + - MAP + - TPS + - IMAP/EMAP + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + indInjAng: + type: bits + size: U08 + offset: 26 + address: + - 7 + - 7 + values: + - Disabled + - Enabled + injOpen: + type: scalar + size: U08 + offset: 27 + units: ms + scale: 0.1 + transform: 0 + min: 0.1 + max: 25.5 + digits: 1 + injAng: + type: array + size: U16 + offset: 28 + shape: + columns: 4 + rows: 0 + units: deg + scale: 1 + transform: 0 + min: 0 + max: 720 + digits: 0 + mapSample: + type: bits + size: U08 + offset: 36 + address: + - 0 + - 1 + values: + - Instantaneous + - Cycle Average + - Cycle Minimum + - Event Average + twoStroke: + type: bits + size: U08 + offset: 36 + address: + - 2 + - 2 + values: + - Four-stroke + - Two-stroke + injType: + type: bits + size: U08 + offset: 36 + address: + - 3 + - 3 + values: + - Port + - Throttle Body + nCylinders: + type: bits + size: U08 + offset: 36 + address: + - 4 + - 7 + values: + - INVALID + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - INVALID + - '8' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + algorithm: + type: bits + size: U08 + offset: 37 + address: + - 0 + - 2 + values: + - MAP + - TPS + - IMAP/EMAP + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + fixAngEnable: + type: bits + size: U08 + offset: 37 + address: + - 3 + - 3 + values: + - 'Off' + - 'On' + nInjectors: + type: bits + size: U08 + offset: 37 + address: + - 4 + - 7 + values: + - INVALID + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - INVALID + - '8' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + engineType: + type: bits + size: U08 + offset: 38 + address: + - 0 + - 0 + values: + - Even fire + - Odd fire + flexEnabled: + type: bits + size: U08 + offset: 38 + address: + - 1 + - 1 + values: + - 'Off' + - 'On' + legacyMAP: + type: bits + size: U08 + offset: 38 + address: + - 2 + - 2 + values: + - 'No' + - 'Yes' + baroCorr: + type: bits + size: U08 + offset: 38 + address: + - 3 + - 3 + values: + - 'Off' + - 'On' + injLayout: + type: bits + size: U08 + offset: 38 + address: + - 4 + - 5 + values: + - Paired + - Semi-Sequential + - INVALID + - Sequential + perToothIgn: + type: bits + size: U08 + offset: 38 + address: + - 6 + - 6 + values: + - 'No' + - 'Yes' + dfcoEnabled: + type: bits + size: U08 + offset: 38 + address: + - 7 + - 7 + values: + - 'Off' + - 'On' + aeColdTaperMax: + type: scalar + size: U08 + offset: 39 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + dutyLim: + type: scalar + size: U08 + offset: 40 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 95 + digits: 0 + flexFreqLow: + type: scalar + size: U08 + offset: 41 + units: Hz + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + flexFreqHigh: + type: scalar + size: U08 + offset: 42 + units: Hz + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + boostMaxDuty: + type: scalar + size: U08 + offset: 43 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + tpsMin: + type: scalar + size: U08 + offset: 44 + units: ADC + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + tpsMax: + type: scalar + size: U08 + offset: 45 + units: ADC + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + mapMin: + type: scalar + size: S08 + offset: 46 + units: kpa + scale: 1 + transform: 0 + min: -100 + max: 127 + digits: 0 + mapMax: + type: scalar + size: U16 + offset: 47 + units: kpa + scale: 1 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fpPrime: + type: scalar + size: U08 + offset: 49 + units: s + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + stoich: + type: scalar + size: U08 + offset: 50 + units: ':1' + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + oddfire2: + type: scalar + size: U16 + offset: 51 + units: deg + scale: 1 + transform: 0 + min: 0 + max: 720 + digits: 0 + oddfire3: + type: scalar + size: U16 + offset: 53 + units: deg + scale: 1 + transform: 0 + min: 0 + max: 720 + digits: 0 + oddfire4: + type: scalar + size: U16 + offset: 55 + units: deg + scale: 1 + transform: 0 + min: 0 + max: 720 + digits: 0 + idleUpPin: + type: bits + size: U08 + offset: 57 + address: + - 0 + - 5 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + idleUpPolarity: + type: bits + size: U08 + offset: 57 + address: + - 6 + - 6 + values: + - Normal + - Inverted + idleUpEnabled: + type: bits + size: U08 + offset: 57 + address: + - 7 + - 7 + values: + - 'Off' + - 'On' + idleUpAdder: + type: scalar + size: U08 + offset: 58 + units: '% / Steps' + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + aeTaperMin: + type: scalar + size: U08 + offset: 59 + units: RPM + scale: 100 + transform: 0 + min: 1000 + max: 10000 + digits: 0 + aeTaperMax: + type: scalar + size: U08 + offset: 60 + units: RPM + scale: 100 + transform: 0 + min: 2000 + max: 10000 + digits: 0 + iacCLminDuty: + type: scalar + size: U08 + offset: 61 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + iacCLmaxDuty: + type: scalar + size: U08 + offset: 62 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + boostMinDuty: + type: scalar + size: U08 + offset: 63 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + baroMin: + type: scalar + size: S08 + offset: 64 + units: kpa + scale: 1 + transform: 0 + min: -100 + max: 127 + digits: 0 + baroMax: + type: scalar + size: U16 + offset: 65 + units: kpa + scale: 1 + transform: 0 + min: 0 + max: 25500 + digits: 0 + EMAPMin: + type: scalar + size: S08 + offset: 67 + units: kpa + scale: 1 + transform: 0 + min: -100 + max: 127 + digits: 0 + EMAPMax: + type: scalar + size: U16 + offset: 68 + units: kpa + scale: 1 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fanWhenOff: + type: bits + size: U08 + offset: 70 + address: + - 0 + - 0 + values: + - 'No' + - 'Yes' + fanWhenCranking: + type: bits + size: U08 + offset: 70 + address: + - 1 + - 1 + values: + - 'No' + - 'Yes' + useDwellMap: + type: bits + size: U08 + offset: 70 + address: + - 2 + - 2 + values: + - 'No' + - 'Yes' + unused_fan_bits: + type: bits + size: U08 + offset: 70 + address: + - 3 + - 4 + values: [] + rtc_mode: + type: bits + size: U08 + offset: 70 + address: + - 5 + - 6 + values: + - 'Off' + - On-board + - INVALID + - INVALID + incorporateAFR: + type: bits + size: U08 + offset: 70 + address: + - 7 + - 7 + values: + - 'No' + - 'Yes' + asePct: + type: array + size: U08 + offset: 71 + shape: + columns: 4 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 155 + digits: 0 + aseCount: + type: array + size: U08 + offset: 75 + shape: + columns: 4 + rows: 0 + units: s + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + aseBins: + type: array + size: U08 + offset: 79 + shape: + columns: 4 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + primePulse: + type: array + size: U08 + offset: 83 + shape: + columns: 4 + rows: 0 + units: ms + scale: 0.5 + transform: 0 + min: 0 + max: 127.5 + digits: 1 + primeBins: + type: array + size: U08 + offset: 87 + shape: + columns: 4 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + CTPSPin: + type: bits + size: U08 + offset: 91 + address: + - 0 + - 5 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + CTPSPolarity: + type: bits + size: U08 + offset: 91 + address: + - 6 + - 6 + values: + - Normal + - Inverted + CTPSEnabled: + type: bits + size: U08 + offset: 91 + address: + - 7 + - 7 + values: + - 'Off' + - 'On' + idleAdvEnabled: + type: bits + size: U08 + offset: 92 + address: + - 0 + - 1 + values: + - 'Off' + - Added + - Switched + - INVALID + idleAdvAlgorithm: + type: bits + size: U08 + offset: 92 + address: + - 2 + - 2 + values: + - TPS + - CTPS + idleAdvDelay: + type: bits + size: U08 + offset: 92 + address: + - 3 + - 7 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - INVALID + - INVALID + idleAdvRPM: + type: scalar + size: U08 + offset: 93 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + idleAdvTPS: + type: scalar + size: U08 + offset: 94 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 120 + digits: 0 + injAngRPM: + type: array + size: U08 + offset: 95 + shape: + columns: 4 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 10000 + digits: 0 + idleTaperTime: + type: scalar + size: U08 + offset: 99 + units: S + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + dfcoDelay: + type: scalar + size: U08 + offset: 100 + units: S + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + dfcoMinCLT: + type: scalar + size: U08 + offset: 101 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + vssMode: + type: bits + size: U08 + offset: 102 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Pulses per KM + - Pulses per mile + vssPin: + type: bits + size: U08 + offset: 102 + address: + - 2 + - 7 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + vssPulsesPerKm: + type: scalar + size: U16 + offset: 103 + units: pulses + scale: 1 + transform: 0 + min: 0 + max: 25500 + digits: 0 + vssSmoothing: + type: scalar + size: U08 + offset: 105 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + vssRatio1: + type: scalar + size: U16 + offset: 106 + units: km/h per 1000rpm + scale: 0.1 + transform: 0 + min: 0 + max: 99.9 + digits: 1 + vssRatio2: + type: scalar + size: U16 + offset: 108 + units: km/h per 1000rpm + scale: 0.1 + transform: 0 + min: 0 + max: 99.9 + digits: 1 + vssRatio3: + type: scalar + size: U16 + offset: 110 + units: km/h per 1000rpm + scale: 0.1 + transform: 0 + min: 0 + max: 99.9 + digits: 1 + vssRatio4: + type: scalar + size: U16 + offset: 112 + units: km/h per 1000rpm + scale: 0.1 + transform: 0 + min: 0 + max: 99.9 + digits: 1 + vssRatio5: + type: scalar + size: U16 + offset: 114 + units: km/h per 1000rpm + scale: 0.1 + transform: 0 + min: 0 + max: 99.9 + digits: 1 + vssRatio6: + type: scalar + size: U16 + offset: 116 + units: km/h per 1000rpm + scale: 0.1 + transform: 0 + min: 0 + max: 99.9 + digits: 1 + idleUpOutputEnabled: + type: bits + size: U08 + offset: 118 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + idleUpOutputInv: + type: bits + size: U08 + offset: 118 + address: + - 1 + - 1 + values: + - 'No' + - 'Yes' + idleUpOutputPin: + type: bits + size: U08 + offset: 118 + address: + - 2 + - 7 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + tachoSweepMaxRPM: + type: scalar + size: U08 + offset: 119 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 10000 + digits: 0 + primingDelay: + type: scalar + size: U08 + offset: 120 + units: S + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + iacTPSlimit: + type: scalar + size: U08 + offset: 121 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + iacRPMlimitHysteresis: + type: scalar + size: U08 + offset: 122 + units: RPM + scale: 10 + transform: 0 + min: 10 + max: 2500 + digits: 0 + rtc_trim: + type: scalar + size: S08 + offset: 123 + units: ppm + scale: 1 + transform: 0 + min: -127 + max: 127 + digits: 0 + idleAdvVss: + type: scalar + size: U08 + offset: 124 + units: km/h + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + unused2_95: + type: array + size: U08 + offset: 125 + shape: + columns: 3 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + - number: 2 + size: 0 + data: + veTable: + type: array + size: U08 + offset: 0 + shape: + columns: 16 + rows: 16 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + rpmBins: + type: array + size: U08 + offset: 256 + shape: + columns: 16 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + fuelLoadBins: + type: array + size: U08 + offset: 272 + shape: + columns: 16 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + - number: 3 + size: 0 + data: + advTable1: + type: array + size: U08 + offset: 0 + shape: + columns: 16 + rows: 16 + units: deg + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + rpmBins2: + type: array + size: U08 + offset: 256 + shape: + columns: 16 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + mapBins1: + type: array + size: U08 + offset: 272 + shape: + columns: 16 + rows: 0 + units: '{ bitStringValue(algorithmUnits , ignAlgorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{ignLoadMax}' + digits: 0 + - number: 4 + size: 0 + data: + TrigAng: + type: scalar + size: S16 + offset: 0 + units: Deg + scale: 1 + transform: 0 + min: -360 + max: 360 + digits: 0 + FixAng: + type: scalar + size: S08 + offset: 2 + units: Deg + scale: 1 + transform: 0 + min: -64 + max: 64 + digits: 0 + CrankAng: + type: scalar + size: U08 + offset: 3 + units: Deg + scale: 1 + transform: 0 + min: -10 + max: 80 + digits: 0 + TrigAngMul: + type: scalar + size: U08 + offset: 4 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 88 + digits: 0 + TrigEdge: + type: bits + size: U08 + offset: 5 + address: + - 0 + - 0 + values: + - RISING + - FALLING + TrigSpeed: + type: bits + size: U08 + offset: 5 + address: + - 1 + - 1 + values: + - Crank Speed + - Cam Speed + IgInv: + type: bits + size: U08 + offset: 5 + address: + - 2 + - 2 + values: + - Going Low + - Going High + TrigPattern: + type: bits + size: U08 + offset: 5 + address: + - 3 + - 7 + values: + - Missing Tooth + - Basic Distributor + - Dual Wheel + - GM 7X + - 4G63 / Miata / 3000GT + - GM 24X + - Jeep 2000 + - Audi 135 + - Honda D17 + - Miata 99-05 + - Mazda AU + - Non-360 Dual + - Nissan 360 + - Subaru 6/7 + - Daihatsu +1 + - Harley EVO + - 36-2-2-2 + - 36-2-1 + - DSM 420a + - Weber-Marelli + - Ford ST170 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + TrigEdgeSec: + type: bits + size: U08 + offset: 6 + address: + - 0 + - 0 + values: + - RISING + - FALLING + fuelPumpPin: + type: bits + size: U08 + offset: 6 + address: + - 1 + - 6 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + useResync: + type: bits + size: U08 + offset: 6 + address: + - 7 + - 7 + values: + - 'No' + - 'Yes' + sparkDur: + type: scalar + size: U08 + offset: 7 + units: ms + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + trigPatternSec: + type: bits + size: U08 + offset: 8 + address: + - 0 + - 6 + values: + - Single tooth cam + - 4-1 cam + - Poll level + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + PollLevelPol: + type: bits + size: U08 + offset: 8 + address: + - 7 + - 7 + values: + - Low + - High + bootloaderCaps: + type: scalar + size: U08 + offset: 9 + units: level + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + resetControl: + type: bits + size: U08 + offset: 10 + address: + - 0 + - 1 + values: + - Disabled + - Prevent When Running + - Prevent Always + - Serial Command + resetControlPin: + type: bits + size: U08 + offset: 10 + address: + - 2 + - 7 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + SkipCycles: + type: scalar + size: U08 + offset: 11 + units: cycles + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + boostType: + type: bits + size: U08 + offset: 12 + address: + - 0 + - 0 + values: + - Open Loop + - Closed Loop + useDwellLim: + type: bits + size: U08 + offset: 12 + address: + - 1 + - 1 + values: + - 'Off' + - 'On' + sparkMode: + type: bits + size: U08 + offset: 12 + address: + - 2 + - 4 + values: + - Wasted Spark + - Single Channel + - Wasted COP + - Sequential + - Rotary + - INVALID + - INVALID + - INVALID + TrigFilter: + type: bits + size: U08 + offset: 12 + address: + - 5 + - 6 + values: + - 'Off' + - Weak + - Medium + - Aggressive + ignCranklock: + type: bits + size: U08 + offset: 12 + address: + - 7 + - 7 + values: + - 'Off' + - 'On' + dwellcrank: + type: scalar + size: U08 + offset: 13 + units: ms + scale: 0.1 + transform: 0 + min: 0 + max: 25 + digits: 1 + dwellrun: + type: scalar + size: U08 + offset: 14 + units: ms + scale: 0.1 + transform: 0 + min: 0 + max: 8 + digits: 1 + numTeeth: + type: scalar + size: U08 + offset: 15 + units: teeth + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + missingTeeth: + type: scalar + size: U08 + offset: 16 + units: teeth + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + crankRPM: + type: scalar + size: U08 + offset: 17 + units: rpm + scale: 10 + transform: 0 + min: 100 + max: 1000 + digits: 0 + tpsflood: + type: scalar + size: U08 + offset: 18 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + SoftRevLim: + type: scalar + size: U08 + offset: 19 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + SoftLimRetard: + type: scalar + size: U08 + offset: 20 + units: deg + scale: 1 + transform: 0 + min: 0 + max: 80 + digits: 0 + SoftLimMax: + type: scalar + size: U08 + offset: 21 + units: s + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + HardRevLim: + type: scalar + size: U08 + offset: 22 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + taeBins: + type: array + size: U08 + offset: 23 + shape: + columns: 4 + rows: 0 + units: '%/s' + scale: 10 + transform: 0 + min: 0 + max: 2550 + digits: 0 + taeRates: + type: array + size: U08 + offset: 27 + shape: + columns: 4 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + wueBins: + type: array + size: U08 + offset: 31 + shape: + columns: 10 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 102 + digits: 0 + dwellLim: + type: scalar + size: U08 + offset: 41 + units: ms + scale: 1 + transform: 0 + min: 0 + max: 32 + digits: 0 + dwellRates: + type: array + size: U08 + offset: 42 + shape: + columns: 6 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + iatRetBins: + type: array + size: U08 + offset: 48 + shape: + columns: 6 + rows: 0 + units: C + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + iatRetRates: + type: array + size: U08 + offset: 54 + shape: + columns: 6 + rows: 0 + units: deg + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + dfcoRPM: + type: scalar + size: U08 + offset: 60 + units: RPM + scale: 10 + transform: 0 + min: 100 + max: 2550 + digits: 0 + dfcoHyster: + type: scalar + size: U08 + offset: 61 + units: RPM + scale: 1 + transform: 0 + min: 100 + max: 255 + digits: 0 + dfcoTPSThresh: + type: scalar + size: U08 + offset: 62 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + ignBypassEnable: + type: bits + size: U08 + offset: 63 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + ignBypassPin: + type: bits + size: U08 + offset: 63 + address: + - 1 + - 6 + values: + - INVALID + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + ignBypassHiLo: + type: bits + size: U08 + offset: 63 + address: + - 7 + - 7 + values: + - LOW + - HIGH + ADCFILTER_TPS: + type: scalar + size: U08 + offset: 64 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 240 + digits: 0 + ADCFILTER_CLT: + type: scalar + size: U08 + offset: 65 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 240 + digits: 0 + ADCFILTER_IAT: + type: scalar + size: U08 + offset: 66 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 240 + digits: 0 + ADCFILTER_O2: + type: scalar + size: U08 + offset: 67 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 240 + digits: 0 + ADCFILTER_BAT: + type: scalar + size: U08 + offset: 68 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 240 + digits: 0 + ADCFILTER_MAP: + type: scalar + size: U08 + offset: 69 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 240 + digits: 0 + ADCFILTER_BARO: + type: scalar + size: U08 + offset: 70 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 240 + digits: 0 + cltAdvBins: + type: array + size: U08 + offset: 71 + shape: + columns: 6 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 102 + digits: 0 + cltAdvValues: + type: array + size: S08 + offset: 77 + shape: + columns: 6 + rows: 0 + units: deg + scale: 1 + transform: -15 + min: -15 + max: 15 + digits: 0 + maeBins: + type: array + size: U08 + offset: 83 + shape: + columns: 4 + rows: 0 + units: kpa/s + scale: 10 + transform: 0 + min: 0 + max: 2550 + digits: 0 + maeRates: + type: array + size: U08 + offset: 87 + shape: + columns: 4 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + batVoltCorrect: + type: scalar + size: S08 + offset: 91 + units: v + scale: 0.1 + transform: 0 + min: -2 + max: 2 + digits: 1 + baroFuelBins: + type: array + size: U08 + offset: 92 + shape: + columns: 8 + rows: 0 + units: kPa + scale: 1 + transform: 0 + min: 70 + max: 120 + digits: 0 + baroFuelValues: + type: array + size: U08 + offset: 100 + shape: + columns: 8 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + idleAdvBins: + type: array + size: U08 + offset: 108 + shape: + columns: 6 + rows: 0 + units: RPM + scale: 10 + transform: -50 + min: -500 + max: 500 + digits: 0 + idleAdvValues: + type: array + size: U08 + offset: 114 + shape: + columns: 6 + rows: 0 + units: deg + scale: 1 + transform: -15 + min: -15 + max: 50 + digits: 0 + engineProtectMaxRPM: + type: scalar + size: U08 + offset: 120 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + unused4_120: + type: array + size: U08 + offset: 121 + shape: + columns: 7 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + - number: 5 + size: 0 + data: + afrTable: + type: array + size: U08 + offset: 0 + shape: + columns: 16 + rows: 16 + units: AFR + scale: 0.1 + transform: 0 + min: 7 + max: 25.5 + digits: 1 + rpmBinsAFR: + type: array + size: U08 + offset: 256 + shape: + columns: 16 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + loadBinsAFR: + type: array + size: U08 + offset: 272 + shape: + columns: 16 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + - number: 6 + size: 0 + data: + egoAlgorithm: + type: bits + size: U08 + offset: 0 + address: + - 0 + - 1 + values: + - Simple + - INVALID + - PID + - No correction + egoType: + type: bits + size: U08 + offset: 0 + address: + - 2 + - 3 + values: + - Disabled + - Narrow Band + - Wide Band + - INVALID + boostEnabled: + type: bits + size: U08 + offset: 0 + address: + - 4 + - 4 + values: + - 'Off' + - 'On' + vvtEnabled: + type: bits + size: U08 + offset: 0 + address: + - 5 + - 5 + values: + - 'Off' + - 'On' + engineProtectType: + type: bits + size: U08 + offset: 0 + address: + - 6 + - 7 + values: + - 'Off' + - Spark Only + - Fuel Only + - Both + egoKP: + type: scalar + size: U08 + offset: 1 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 200 + digits: 0 + egoKI: + type: scalar + size: U08 + offset: 2 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 200 + digits: 0 + egoKD: + type: scalar + size: U08 + offset: 3 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 200 + digits: 0 + egoTemp: + type: scalar + size: U08 + offset: 4 + units: C + scale: 1 + transform: -40 + min: -40 + max: 102 + digits: 0 + egoCount: + type: scalar + size: U08 + offset: 5 + units: '' + scale: 4 + transform: 0 + min: 4 + max: 255 + digits: 0 + vvtMode: + type: bits + size: U08 + offset: 6 + address: + - 0 + - 1 + values: + - On/Off + - Open Loop + - Closed loop + - INVALID + vvtLoadSource: + type: bits + size: U08 + offset: 6 + address: + - 2 + - 3 + values: + - MAP + - TPS + - INVALID + - INVALID + vvtPWMdir: + type: bits + size: U08 + offset: 6 + address: + - 4 + - 4 + values: + - Advance + - Retard + vvtCLUseHold: + type: bits + size: U08 + offset: 6 + address: + - 5 + - 5 + values: + - 'No' + - 'Yes' + vvtCLAlterFuelTiming: + type: bits + size: U08 + offset: 6 + address: + - 6 + - 6 + values: + - 'No' + - 'Yes' + boostCutEnabled: + type: bits + size: U08 + offset: 6 + address: + - 7 + - 7 + values: + - 'Off' + - 'On' + egoLimit: + type: scalar + size: U08 + offset: 7 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 16 + digits: 0 + ego_min: + type: scalar + size: U08 + offset: 8 + units: AFR + scale: 0.1 + transform: 0 + min: 7 + max: 25 + digits: 1 + ego_max: + type: scalar + size: U08 + offset: 9 + units: AFR + scale: 0.1 + transform: 0 + min: 7 + max: 25 + digits: 1 + ego_sdelay: + type: scalar + size: U08 + offset: 10 + units: sec + scale: 1 + transform: 0 + min: 0 + max: 120 + digits: 0 + egoRPM: + type: scalar + size: U08 + offset: 11 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + egoTPSMax: + type: scalar + size: U08 + offset: 12 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 120 + digits: 0 + vvt1Pin: + type: bits + size: U08 + offset: 13 + address: + - 0 + - 5 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + useExtBaro: + type: bits + size: U08 + offset: 13 + address: + - 6 + - 6 + values: + - 'No' + - 'Yes' + boostMode: + type: bits + size: U08 + offset: 13 + address: + - 7 + - 7 + values: + - Simple + - Full + boostPin: + type: bits + size: U08 + offset: 14 + address: + - 0 + - 5 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + VVTasOnOff: + type: bits + size: U08 + offset: 14 + address: + - 6 + - 6 + values: + - 'No' + - 'Yes' + useEMAP: + type: bits + size: U08 + offset: 14 + address: + - 7 + - 7 + values: + - 'No' + - 'Yes' + brvBins: + type: array + size: U08 + offset: 15 + shape: + columns: 6 + rows: 0 + units: V + scale: 0.1 + transform: 0 + min: 6 + max: 24 + digits: 1 + injBatRates: + type: array + size: U08 + offset: 21 + shape: + columns: 6 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + airDenBins: + type: array + size: U08 + offset: 27 + shape: + columns: 9 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + airDenRates: + type: array + size: U08 + offset: 36 + shape: + columns: 9 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + boostFreq: + type: scalar + size: U08 + offset: 45 + units: Hz + scale: 2 + transform: 0 + min: 10 + max: 511 + digits: 0 + vvtFreq: + type: scalar + size: U08 + offset: 46 + units: Hz + scale: 2 + transform: 0 + min: 10 + max: 511 + digits: 0 + idleFreq: + type: scalar + size: U08 + offset: 47 + units: Hz + scale: 2 + transform: 0 + min: 10 + max: 511 + digits: 0 + launchPin: + type: bits + size: U08 + offset: 48 + address: + - 0 + - 5 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + launchEnable: + type: bits + size: U08 + offset: 48 + address: + - 6 + - 6 + values: + - 'No' + - 'Yes' + launchHiLo: + type: bits + size: U08 + offset: 48 + address: + - 7 + - 7 + values: + - LOW + - HIGH + lnchSoftLim: + type: scalar + size: U08 + offset: 49 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + lnchRetard: + type: scalar + size: S08 + offset: 50 + units: deg + scale: 1 + transform: 0 + min: -30 + max: 40 + digits: 0 + lnchHardLim: + type: scalar + size: U08 + offset: 51 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + lnchFuelAdd: + type: scalar + size: U08 + offset: 52 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 80 + digits: 0 + idleKP: + type: scalar + size: U08 + offset: 53 + units: '%' + scale: 0.03125 + transform: 0 + min: 0 + max: 7.96 + digits: 2 + idleKI: + type: scalar + size: U08 + offset: 54 + units: '%' + scale: 0.03125 + transform: 0 + min: 0 + max: 7.96 + digits: 2 + idleKD: + type: scalar + size: U08 + offset: 55 + units: '%' + scale: 0.00781 + transform: 0 + min: 0 + max: 1.99 + digits: 3 + boostLimit: + type: scalar + size: U08 + offset: 56 + units: kPa + scale: 2 + transform: 0 + min: 0 + max: 511 + digits: 0 + boostKP: + type: scalar + size: U08 + offset: 57 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 200 + digits: 0 + boostKI: + type: scalar + size: U08 + offset: 58 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 200 + digits: 0 + boostKD: + type: scalar + size: U08 + offset: 59 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 200 + digits: 0 + lnchPullRes: + type: bits + size: U08 + offset: 60 + address: + - 0 + - 0 + values: + - Float + - Pullup + iacPWMrun: + type: bits + size: U08 + offset: 60 + address: + - 1 + - 1 + values: + - 'No' + - 'Yes' + fuelTrimEnabled: + type: bits + size: U08 + offset: 60 + address: + - 2 + - 2 + values: + - 'No' + - 'Yes' + flatSEnable: + type: bits + size: U08 + offset: 60 + address: + - 3 + - 3 + values: + - 'No' + - 'Yes' + baroPin: + type: bits + size: U08 + offset: 60 + address: + - 4 + - 7 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + flatSSoftWin: + type: scalar + size: U08 + offset: 61 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + flatSRetard: + type: scalar + size: U08 + offset: 62 + units: deg + scale: 1 + transform: 0 + min: 0 + max: 80 + digits: 0 + flatSArm: + type: scalar + size: U08 + offset: 63 + units: rpm + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + iacCLValues: + type: array + size: U08 + offset: 64 + shape: + columns: 10 + rows: 0 + units: RPM + scale: 10 + transform: 0 + min: 0 + max: 2550 + digits: 0 + iacOLStepVal: + type: array + size: U08 + offset: 74 + shape: + columns: 10 + rows: 0 + units: Steps + scale: 3 + transform: 0 + min: 0 + max: 765 + digits: 0 + iacOLPWMVal: + type: array + size: U08 + offset: 84 + shape: + columns: 10 + rows: 0 + units: Duty % + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + iacBins: + type: array + size: U08 + offset: 94 + shape: + columns: 10 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + iacCrankSteps: + type: array + size: U08 + offset: 104 + shape: + columns: 4 + rows: 0 + units: Steps + scale: 3 + transform: 0 + min: 0 + max: 765 + digits: 0 + iacCrankDuty: + type: array + size: U08 + offset: 108 + shape: + columns: 4 + rows: 0 + units: Duty % + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + iacCrankBins: + type: array + size: U08 + offset: 112 + shape: + columns: 4 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + iacAlgorithm: + type: bits + size: U08 + offset: 116 + address: + - 0 + - 2 + values: + - None + - On/Off + - PWM Open loop + - PWM Closed loop + - Stepper Open Loop + - Stepper Closed Loop + - PWM Closed+Open loop + - INVALID + iacStepTime: + type: bits + size: U08 + offset: 116 + address: + - 3 + - 5 + values: + - INVALID + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - INVALID + iacChannels: + type: bits + size: U08 + offset: 116 + address: + - 6 + - 6 + values: + - '1' + - '2' + iacPWMdir: + type: bits + size: U08 + offset: 116 + address: + - 7 + - 7 + values: + - Normal + - Reverse + iacFastTemp: + type: scalar + size: U08 + offset: 117 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + iacStepHome: + type: scalar + size: U08 + offset: 118 + units: Steps + scale: 3 + transform: 0 + min: 0 + max: 765 + digits: 0 + iacStepHyster: + type: scalar + size: U08 + offset: 119 + units: Steps + scale: 1 + transform: 0 + min: 1 + max: 10 + digits: 0 + fanInv: + type: bits + size: U08 + offset: 120 + address: + - 0 + - 0 + values: + - 'No' + - 'Yes' + fanEnable: + type: bits + size: U08 + offset: 120 + address: + - 1 + - 1 + values: + - 'Off' + - On/Off + fanPin: + type: bits + size: U08 + offset: 120 + address: + - 2 + - 7 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + fanSP: + type: scalar + size: U08 + offset: 121 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + fanHyster: + type: scalar + size: U08 + offset: 122 + units: C + scale: 1 + transform: 0 + min: 0 + max: 40 + digits: 0 + fanFreq: + type: scalar + size: U08 + offset: 123 + units: Hz + scale: 2 + transform: 0 + min: 10 + max: 511 + digits: 0 + fanPWMBins: + type: array + size: U08 + offset: 124 + shape: + columns: 4 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + - number: 7 + size: 0 + data: + boostTable: + type: array + size: U08 + offset: 0 + shape: + columns: 8 + rows: 8 + units: '{ bitStringValue( boostTableLabels, boostType ) }' + scale: 2 + transform: 0 + min: 0 + max: '{boostTableLimit}' + digits: 0 + rpmBinsBoost: + type: array + size: U08 + offset: 64 + shape: + columns: 8 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + tpsBinsBoost: + type: array + size: U08 + offset: 72 + shape: + columns: 8 + rows: 0 + units: TPS + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + vvtTable: + type: array + size: U08 + offset: 80 + shape: + columns: 8 + rows: 8 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + rpmBinsVVT: + type: array + size: U08 + offset: 144 + shape: + columns: 8 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + loadBinsVVT: + type: array + size: U08 + offset: 152 + shape: + columns: 8 + rows: 0 + units: '{ bitStringValue(algorithmUnits , vvtLoadSource) }' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + stagingTable: + type: array + size: U08 + offset: 160 + shape: + columns: 8 + rows: 8 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + rpmBinsStaging: + type: array + size: U08 + offset: 224 + shape: + columns: 8 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + loadBinsStaging: + type: array + size: U08 + offset: 232 + shape: + columns: 8 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + - number: 8 + size: 0 + data: + fuelTrim1Table: + type: array + size: U08 + offset: 0 + shape: + columns: 6 + rows: 6 + units: '%' + scale: 1 + transform: -128 + min: -50 + max: 50 + digits: 0 + fuelTrim1rpmBins: + type: array + size: U08 + offset: 36 + shape: + columns: 6 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fuelTrim1loadBins: + type: array + size: U08 + offset: 42 + shape: + columns: 6 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + fuelTrim2Table: + type: array + size: U08 + offset: 48 + shape: + columns: 6 + rows: 6 + units: '%' + scale: 1 + transform: -128 + min: -50 + max: 50 + digits: 0 + fuelTrim2rpmBins: + type: array + size: U08 + offset: 84 + shape: + columns: 6 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fuelTrim2loadBins: + type: array + size: U08 + offset: 90 + shape: + columns: 6 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + fuelTrim3Table: + type: array + size: U08 + offset: 96 + shape: + columns: 6 + rows: 6 + units: '%' + scale: 1 + transform: -128 + min: -50 + max: 50 + digits: 0 + fuelTrim3rpmBins: + type: array + size: U08 + offset: 132 + shape: + columns: 6 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fuelTrim3loadBins: + type: array + size: U08 + offset: 138 + shape: + columns: 6 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + fuelTrim4Table: + type: array + size: U08 + offset: 144 + shape: + columns: 6 + rows: 6 + units: '%' + scale: 1 + transform: -128 + min: -50 + max: 50 + digits: 0 + fuelTrim4rpmBins: + type: array + size: U08 + offset: 180 + shape: + columns: 6 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fuelTrim4loadBins: + type: array + size: U08 + offset: 186 + shape: + columns: 6 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + fuelTrim5Table: + type: array + size: U08 + offset: 192 + shape: + columns: 6 + rows: 6 + units: '%' + scale: 1 + transform: -128 + min: -50 + max: 50 + digits: 0 + fuelTrim5rpmBins: + type: array + size: U08 + offset: 228 + shape: + columns: 6 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fuelTrim5loadBins: + type: array + size: U08 + offset: 234 + shape: + columns: 6 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + fuelTrim6Table: + type: array + size: U08 + offset: 240 + shape: + columns: 6 + rows: 6 + units: '%' + scale: 1 + transform: -128 + min: -50 + max: 50 + digits: 0 + fuelTrim6rpmBins: + type: array + size: U08 + offset: 276 + shape: + columns: 6 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fuelTrim6loadBins: + type: array + size: U08 + offset: 282 + shape: + columns: 6 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + fuelTrim7Table: + type: array + size: U08 + offset: 288 + shape: + columns: 6 + rows: 6 + units: '%' + scale: 1 + transform: -128 + min: -50 + max: 50 + digits: 0 + fuelTrim7rpmBins: + type: array + size: U08 + offset: 324 + shape: + columns: 6 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fuelTrim7loadBins: + type: array + size: U08 + offset: 330 + shape: + columns: 6 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + fuelTrim8Table: + type: array + size: U08 + offset: 336 + shape: + columns: 6 + rows: 6 + units: '%' + scale: 1 + transform: -128 + min: -50 + max: 50 + digits: 0 + fuelTrim8rpmBins: + type: array + size: U08 + offset: 372 + shape: + columns: 6 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fuelTrim8loadBins: + type: array + size: U08 + offset: 378 + shape: + columns: 6 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + - number: 9 + size: 0 + data: + enable_secondarySerial: + type: bits + size: U08 + offset: 0 + address: + - 0 + - 0 + values: + - Disable + - Enable + intcan_available: + type: bits + size: U08 + offset: 0 + address: + - 1 + - 1 + values: + - Disable + - Enable + enable_intcan: + type: bits + size: U08 + offset: 0 + address: + - 2 + - 2 + values: + - Disable + - Enable + caninput_sel0a: + type: bits + size: U08 + offset: 1 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel0b: + type: bits + size: U08 + offset: 1 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel0extsourcea: + type: bits + size: U08 + offset: 1 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel0extsourceb: + type: bits + size: U08 + offset: 1 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel0extsourcec: + type: bits + size: U08 + offset: 1 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel1a: + type: bits + size: U08 + offset: 2 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel1b: + type: bits + size: U08 + offset: 2 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel1extsourcea: + type: bits + size: U08 + offset: 2 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel1extsourceb: + type: bits + size: U08 + offset: 2 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel1extsourcec: + type: bits + size: U08 + offset: 2 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel2a: + type: bits + size: U08 + offset: 3 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel2b: + type: bits + size: U08 + offset: 3 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel2extsourcea: + type: bits + size: U08 + offset: 3 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel2extsourceb: + type: bits + size: U08 + offset: 3 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel2extsourcec: + type: bits + size: U08 + offset: 3 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel3a: + type: bits + size: U08 + offset: 4 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel3b: + type: bits + size: U08 + offset: 4 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel3extsourcea: + type: bits + size: U08 + offset: 4 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel3extsourceb: + type: bits + size: U08 + offset: 4 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel3extsourcec: + type: bits + size: U08 + offset: 4 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel4a: + type: bits + size: U08 + offset: 5 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel4b: + type: bits + size: U08 + offset: 5 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel4extsourcea: + type: bits + size: U08 + offset: 5 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel4extsourceb: + type: bits + size: U08 + offset: 5 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel4extsourcec: + type: bits + size: U08 + offset: 5 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel5a: + type: bits + size: U08 + offset: 6 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel5b: + type: bits + size: U08 + offset: 6 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel5extsourcea: + type: bits + size: U08 + offset: 6 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel5extsourceb: + type: bits + size: U08 + offset: 6 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel5extsourcec: + type: bits + size: U08 + offset: 6 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel6a: + type: bits + size: U08 + offset: 7 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel6b: + type: bits + size: U08 + offset: 7 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel6extsourcea: + type: bits + size: U08 + offset: 7 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel6extsourceb: + type: bits + size: U08 + offset: 7 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel6extsourcec: + type: bits + size: U08 + offset: 7 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel7a: + type: bits + size: U08 + offset: 8 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel7b: + type: bits + size: U08 + offset: 8 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel7extsourcea: + type: bits + size: U08 + offset: 8 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel7extsourceb: + type: bits + size: U08 + offset: 8 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel7extsourcec: + type: bits + size: U08 + offset: 8 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel8a: + type: bits + size: U08 + offset: 9 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel8b: + type: bits + size: U08 + offset: 9 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel8extsourcea: + type: bits + size: U08 + offset: 9 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel8extsourceb: + type: bits + size: U08 + offset: 9 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel8extsourcec: + type: bits + size: U08 + offset: 9 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel9a: + type: bits + size: U08 + offset: 10 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel9b: + type: bits + size: U08 + offset: 10 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel9extsourcea: + type: bits + size: U08 + offset: 10 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel9extsourceb: + type: bits + size: U08 + offset: 10 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel9extsourcec: + type: bits + size: U08 + offset: 10 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel10a: + type: bits + size: U08 + offset: 11 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel10b: + type: bits + size: U08 + offset: 11 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel10extsourcea: + type: bits + size: U08 + offset: 11 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel10extsourceb: + type: bits + size: U08 + offset: 11 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel10extsourcec: + type: bits + size: U08 + offset: 11 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel11a: + type: bits + size: U08 + offset: 12 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel11b: + type: bits + size: U08 + offset: 12 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel11extsourcea: + type: bits + size: U08 + offset: 12 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel11extsourceb: + type: bits + size: U08 + offset: 12 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel11extsourcec: + type: bits + size: U08 + offset: 12 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel12a: + type: bits + size: U08 + offset: 13 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel12b: + type: bits + size: U08 + offset: 13 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel12extsourcea: + type: bits + size: U08 + offset: 13 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel12extsourceb: + type: bits + size: U08 + offset: 13 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel12extsourcec: + type: bits + size: U08 + offset: 13 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel13a: + type: bits + size: U08 + offset: 14 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel13b: + type: bits + size: U08 + offset: 14 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel13extsourcea: + type: bits + size: U08 + offset: 14 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel13extsourceb: + type: bits + size: U08 + offset: 14 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel13extsourcec: + type: bits + size: U08 + offset: 14 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel14a: + type: bits + size: U08 + offset: 15 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel14b: + type: bits + size: U08 + offset: 15 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel14extsourcea: + type: bits + size: U08 + offset: 15 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel14extsourceb: + type: bits + size: U08 + offset: 15 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel14extsourcec: + type: bits + size: U08 + offset: 15 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_sel15a: + type: bits + size: U08 + offset: 16 + address: + - 0 + - 1 + values: + - 'Off' + - INVALID + - Analog_local + - Digital_local + caninput_sel15b: + type: bits + size: U08 + offset: 16 + address: + - 2 + - 3 + values: + - 'Off' + - External Source + - Analog_local + - Digital_local + caninput_sel15extsourcea: + type: bits + size: U08 + offset: 16 + address: + - 5 + - 5 + values: + - Via Secondary Serial + - INVALID + caninput_sel15extsourceb: + type: bits + size: U08 + offset: 16 + address: + - 6 + - 6 + values: + - Via Secondary Serial + - Via Internal CAN + caninput_sel15extsourcec: + type: bits + size: U08 + offset: 16 + address: + - 7 + - 7 + values: + - INVALID + - Via Internal CAN + caninput_source_can_address0: + type: bits + size: U16 + offset: 17 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address1: + type: bits + size: U16 + offset: 19 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address2: + type: bits + size: U16 + offset: 21 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address3: + type: bits + size: U16 + offset: 23 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address4: + type: bits + size: U16 + offset: 25 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address5: + type: bits + size: U16 + offset: 27 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address6: + type: bits + size: U16 + offset: 29 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address7: + type: bits + size: U16 + offset: 31 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address8: + type: bits + size: U16 + offset: 33 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address9: + type: bits + size: U16 + offset: 35 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address10: + type: bits + size: U16 + offset: 37 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address11: + type: bits + size: U16 + offset: 39 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address12: + type: bits + size: U16 + offset: 41 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address13: + type: bits + size: U16 + offset: 43 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address14: + type: bits + size: U16 + offset: 45 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_can_address15: + type: bits + size: U16 + offset: 47 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + caninput_source_start_byte0: + type: bits + size: U08 + offset: 49 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte1: + type: bits + size: U08 + offset: 50 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte2: + type: bits + size: U08 + offset: 51 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte3: + type: bits + size: U08 + offset: 52 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte4: + type: bits + size: U08 + offset: 53 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte5: + type: bits + size: U08 + offset: 54 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte6: + type: bits + size: U08 + offset: 55 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte7: + type: bits + size: U08 + offset: 56 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte8: + type: bits + size: U08 + offset: 57 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte9: + type: bits + size: U08 + offset: 58 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte10: + type: bits + size: U08 + offset: 59 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte11: + type: bits + size: U08 + offset: 60 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte12: + type: bits + size: U08 + offset: 61 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte13: + type: bits + size: U08 + offset: 62 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte14: + type: bits + size: U08 + offset: 63 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_start_byte15: + type: bits + size: U08 + offset: 64 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + caninput_source_num_bytes0: + type: bits + size: U16 + offset: 65 + address: + - 0 + - 0 + values: + - '1' + - '2' + caninput_source_num_bytes1: + type: bits + size: U16 + offset: 65 + address: + - 1 + - 1 + values: + - '1' + - '2' + caninput_source_num_bytes2: + type: bits + size: U16 + offset: 65 + address: + - 2 + - 2 + values: + - '1' + - '2' + caninput_source_num_bytes3: + type: bits + size: U16 + offset: 65 + address: + - 3 + - 3 + values: + - '1' + - '2' + caninput_source_num_bytes4: + type: bits + size: U16 + offset: 65 + address: + - 4 + - 4 + values: + - '1' + - '2' + caninput_source_num_bytes5: + type: bits + size: U16 + offset: 65 + address: + - 5 + - 5 + values: + - '1' + - '2' + caninput_source_num_bytes6: + type: bits + size: U16 + offset: 65 + address: + - 6 + - 6 + values: + - '1' + - '2' + caninput_source_num_bytes7: + type: bits + size: U16 + offset: 65 + address: + - 7 + - 7 + values: + - '1' + - '2' + caninput_source_num_bytes8: + type: bits + size: U16 + offset: 65 + address: + - 8 + - 8 + values: + - '1' + - '2' + caninput_source_num_bytes9: + type: bits + size: U16 + offset: 65 + address: + - 9 + - 9 + values: + - '1' + - '2' + caninput_source_num_bytes10: + type: bits + size: U16 + offset: 65 + address: + - 10 + - 10 + values: + - '1' + - '2' + caninput_source_num_bytes11: + type: bits + size: U16 + offset: 65 + address: + - 11 + - 11 + values: + - '1' + - '2' + caninput_source_num_bytes12: + type: bits + size: U16 + offset: 65 + address: + - 12 + - 12 + values: + - '1' + - '2' + caninput_source_num_bytes13: + type: bits + size: U16 + offset: 65 + address: + - 13 + - 13 + values: + - '1' + - '2' + caninput_source_num_bytes14: + type: bits + size: U16 + offset: 65 + address: + - 14 + - 14 + values: + - '1' + - '2' + caninput_source_num_bytes15: + type: bits + size: U16 + offset: 65 + address: + - 15 + - 15 + values: + - '1' + - '2' + unused10_67: + type: scalar + size: U08 + offset: 67 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + unused10_68: + type: scalar + size: U08 + offset: 68 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + enable_intcandata_out: + type: bits + size: U08 + offset: 69 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_sel0: + type: bits + size: U08 + offset: 70 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_sel1: + type: bits + size: U08 + offset: 71 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_sel2: + type: bits + size: U08 + offset: 72 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_sel3: + type: bits + size: U08 + offset: 73 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_sel4: + type: bits + size: U08 + offset: 74 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_sel5: + type: bits + size: U08 + offset: 75 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_sel6: + type: bits + size: U08 + offset: 76 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_sel7: + type: bits + size: U08 + offset: 77 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + canoutput_param_group: + type: array + size: U16 + offset: 78 + shape: + columns: 8 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 65535 + digits: 0 + canoutput_param_start_byte0: + type: bits + size: U08 + offset: 94 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + canoutput_param_start_byte1: + type: bits + size: U08 + offset: 95 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + canoutput_param_start_byte2: + type: bits + size: U08 + offset: 96 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + canoutput_param_start_byte3: + type: bits + size: U08 + offset: 97 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + canoutput_param_start_byte4: + type: bits + size: U08 + offset: 98 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + canoutput_param_start_byte5: + type: bits + size: U08 + offset: 99 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + canoutput_param_start_byte6: + type: bits + size: U08 + offset: 100 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + canoutput_param_start_byte7: + type: bits + size: U08 + offset: 101 + address: + - 0 + - 2 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + canoutput_param_num_bytes0: + type: bits + size: U08 + offset: 102 + address: + - 0 + - 1 + values: + - INVALID + - '1' + - '2' + - INVALID + canoutput_param_num_bytes1: + type: bits + size: U08 + offset: 103 + address: + - 0 + - 1 + values: + - INVALID + - '1' + - '2' + - INVALID + canoutput_param_num_bytes2: + type: bits + size: U08 + offset: 104 + address: + - 0 + - 1 + values: + - INVALID + - '1' + - '2' + - INVALID + canoutput_param_num_bytes3: + type: bits + size: U08 + offset: 105 + address: + - 0 + - 1 + values: + - INVALID + - '1' + - '2' + - INVALID + canoutput_param_num_bytes4: + type: bits + size: U08 + offset: 106 + address: + - 0 + - 1 + values: + - INVALID + - '1' + - '2' + - INVALID + canoutput_param_num_bytes5: + type: bits + size: U08 + offset: 107 + address: + - 0 + - 1 + values: + - INVALID + - '1' + - '2' + - INVALID + canoutput_param_num_bytes6: + type: bits + size: U08 + offset: 108 + address: + - 0 + - 1 + values: + - INVALID + - '1' + - '2' + - INVALID + canoutput_param_num_bytes7: + type: bits + size: U08 + offset: 109 + address: + - 0 + - 1 + values: + - INVALID + - '1' + - '2' + - INVALID + unused10_110: + type: scalar + size: U08 + offset: 110 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + unused10_111: + type: scalar + size: U08 + offset: 111 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + unused10_112: + type: scalar + size: U08 + offset: 112 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + unused10_113: + type: scalar + size: U08 + offset: 113 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + speeduino_tsCanId: + type: bits + size: U08 + offset: 114 + address: + - 0 + - 3 + values: + - CAN ID 0 + - CAN ID 1 + - CAN ID 2 + - CAN ID 3 + - CAN ID 4 + - CAN ID 5 + - CAN ID 6 + - CAN ID 7 + - CAN ID 8 + - CAN ID 9 + - CAN ID 10 + - CAN ID 11 + - CAN ID 12 + - CAN ID 13 + - CAN ID 14 + - INVALID + true_address: + type: bits + size: U16 + offset: 115 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + realtime_base_address: + type: bits + size: U16 + offset: 117 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + obd_address: + type: bits + size: U16 + offset: 119 + address: + - 0 + - 10 + values: + - '0x100' + - '0x101' + - '0x102' + - '0x103' + - '0x104' + - '0x105' + - '0x106' + - '0x107' + - '0x108' + - '0x109' + - '0x10A' + - '0x10B' + - '0x10C' + - '0x10D' + - '0x10E' + - '0x10F' + - '0x110' + - '0x111' + - '0x112' + - '0x113' + - '0x114' + - '0x115' + - '0x116' + - '0x117' + - '0x118' + - '0x119' + - '0x11A' + - '0x11B' + - '0x11C' + - '0x11D' + - '0x11E' + - '0x11F' + - '0x120' + - '0x121' + - '0x122' + - '0x123' + - '0x124' + - '0x125' + - '0x126' + - '0x127' + - '0x128' + - '0x129' + - '0x12A' + - '0x12B' + - '0x12C' + - '0x12D' + - '0x12E' + - '0x12F' + - '0x130' + - '0x131' + - '0x132' + - '0x133' + - '0x134' + - '0x135' + - '0x136' + - '0x137' + - '0x138' + - '0x139' + - '0x13A' + - '0x13B' + - '0x13C' + - '0x13D' + - '0x13E' + - '0x13F' + - '0x140' + - '0x141' + - '0x142' + - '0x143' + - '0x144' + - '0x145' + - '0x146' + - '0x147' + - '0x148' + - '0x149' + - '0x14A' + - '0x14B' + - '0x14C' + - '0x14D' + - '0x14E' + - '0x14F' + - '0x150' + - '0x151' + - '0x152' + - '0x153' + - '0x154' + - '0x155' + - '0x156' + - '0x157' + - '0x158' + - '0x159' + - '0x15A' + - '0x15B' + - '0x15C' + - '0x15D' + - '0x15E' + - '0x15F' + - '0x160' + - '0x161' + - '0x162' + - '0x163' + - '0x164' + - '0x165' + - '0x166' + - '0x167' + - '0x168' + - '0x169' + - '0x16A' + - '0x16B' + - '0x16C' + - '0x16D' + - '0x16E' + - '0x16F' + - '0x170' + - '0x171' + - '0x172' + - '0x173' + - '0x174' + - '0x175' + - '0x176' + - '0x177' + - '0x178' + - '0x179' + - '0x17A' + - '0x17B' + - '0x17C' + - '0x17D' + - '0x17E' + - '0x17F' + - '0x180' + - '0x181' + - '0x182' + - '0x183' + - '0x184' + - '0x185' + - '0x186' + - '0x187' + - '0x188' + - '0x189' + - '0x18A' + - '0x18B' + - '0x18C' + - '0x18D' + - '0x18E' + - '0x18F' + - '0x190' + - '0x191' + - '0x192' + - '0x193' + - '0x194' + - '0x195' + - '0x196' + - '0x197' + - '0x198' + - '0x199' + - '0x19A' + - '0x19B' + - '0x19C' + - '0x19D' + - '0x19E' + - '0x19F' + - '0x1A0' + - '0x1A1' + - '0x1A2' + - '0x1A3' + - '0x1A4' + - '0x1A5' + - '0x1A6' + - '0x1A7' + - '0x1A8' + - '0x1A9' + - '0x1AA' + - '0x1AB' + - '0x1AC' + - '0x1AD' + - '0x1AE' + - '0x1AF' + - '0x1B0' + - '0x1B1' + - '0x1B2' + - '0x1B3' + - '0x1B4' + - '0x1B5' + - '0x1B6' + - '0x1B7' + - '0x1B8' + - '0x1B9' + - '0x1BA' + - '0x1BB' + - '0x1BC' + - '0x1BD' + - '0x1BE' + - '0x1BF' + - '0x1C0' + - '0x1C1' + - '0x1C2' + - '0x1C3' + - '0x1C4' + - '0x1C5' + - '0x1C6' + - '0x1C7' + - '0x1C8' + - '0x1C9' + - '0x1CA' + - '0x1CB' + - '0x1CC' + - '0x1CD' + - '0x1CE' + - '0x1CF' + - '0x1D0' + - '0x1D1' + - '0x1D2' + - '0x1D3' + - '0x1D4' + - '0x1D5' + - '0x1D6' + - '0x1D7' + - '0x1D8' + - '0x1D9' + - '0x1DA' + - '0x1DB' + - '0x1DC' + - '0x1DD' + - '0x1DE' + - '0x1DF' + - '0x1E0' + - '0x1E1' + - '0x1E2' + - '0x1E3' + - '0x1E4' + - '0x1E5' + - '0x1E6' + - '0x1E7' + - '0x1E8' + - '0x1E9' + - '0x1EA' + - '0x1EB' + - '0x1EC' + - '0x1ED' + - '0x1EE' + - '0x1EF' + - '0x1F0' + - '0x1F1' + - '0x1F2' + - '0x1F3' + - '0x1F4' + - '0x1F5' + - '0x1F6' + - '0x1F7' + - '0x1F8' + - '0x1F9' + - '0x1FA' + - '0x1FB' + - '0x1FC' + - '0x1FD' + - '0x1FE' + - '0x1FF' + - '0x200' + - '0x201' + - '0x202' + - '0x203' + - '0x204' + - '0x205' + - '0x206' + - '0x207' + - '0x208' + - '0x209' + - '0x20A' + - '0x20B' + - '0x20C' + - '0x20D' + - '0x20E' + - '0x20F' + - '0x210' + - '0x211' + - '0x212' + - '0x213' + - '0x214' + - '0x215' + - '0x216' + - '0x217' + - '0x218' + - '0x219' + - '0x21A' + - '0x21B' + - '0x21C' + - '0x21D' + - '0x21E' + - '0x21F' + - '0x220' + - '0x221' + - '0x222' + - '0x223' + - '0x224' + - '0x225' + - '0x226' + - '0x227' + - '0x228' + - '0x229' + - '0x22A' + - '0x22B' + - '0x22C' + - '0x22D' + - '0x22E' + - '0x22F' + - '0x230' + - '0x231' + - '0x232' + - '0x233' + - '0x234' + - '0x235' + - '0x236' + - '0x237' + - '0x238' + - '0x239' + - '0x23A' + - '0x23B' + - '0x23C' + - '0x23D' + - '0x23E' + - '0x23F' + - '0x240' + - '0x241' + - '0x242' + - '0x243' + - '0x244' + - '0x245' + - '0x246' + - '0x247' + - '0x248' + - '0x249' + - '0x24A' + - '0x24B' + - '0x24C' + - '0x24D' + - '0x24E' + - '0x24F' + - '0x250' + - '0x251' + - '0x252' + - '0x253' + - '0x254' + - '0x255' + - '0x256' + - '0x257' + - '0x258' + - '0x259' + - '0x25A' + - '0x25B' + - '0x25C' + - '0x25D' + - '0x25E' + - '0x25F' + - '0x260' + - '0x261' + - '0x262' + - '0x263' + - '0x264' + - '0x265' + - '0x266' + - '0x267' + - '0x268' + - '0x269' + - '0x26A' + - '0x26B' + - '0x26C' + - '0x26D' + - '0x26E' + - '0x26F' + - '0x270' + - '0x271' + - '0x272' + - '0x273' + - '0x274' + - '0x275' + - '0x276' + - '0x277' + - '0x278' + - '0x279' + - '0x27A' + - '0x27B' + - '0x27C' + - '0x27D' + - '0x27E' + - '0x27F' + - '0x280' + - '0x281' + - '0x282' + - '0x283' + - '0x284' + - '0x285' + - '0x286' + - '0x287' + - '0x288' + - '0x289' + - '0x28A' + - '0x28B' + - '0x28C' + - '0x28D' + - '0x28E' + - '0x28F' + - '0x290' + - '0x291' + - '0x292' + - '0x293' + - '0x294' + - '0x295' + - '0x296' + - '0x297' + - '0x298' + - '0x299' + - '0x29A' + - '0x29B' + - '0x29C' + - '0x29D' + - '0x29E' + - '0x29F' + - '0x2A0' + - '0x2A1' + - '0x2A2' + - '0x2A3' + - '0x2A4' + - '0x2A5' + - '0x2A6' + - '0x2A7' + - '0x2A8' + - '0x2A9' + - '0x2AA' + - '0x2AB' + - '0x2AC' + - '0x2AD' + - '0x2AE' + - '0x2AF' + - '0x2B0' + - '0x2B1' + - '0x2B2' + - '0x2B3' + - '0x2B4' + - '0x2B5' + - '0x2B6' + - '0x2B7' + - '0x2B8' + - '0x2B9' + - '0x2BA' + - '0x2BB' + - '0x2BC' + - '0x2BD' + - '0x2BE' + - '0x2BF' + - '0x2C0' + - '0x2C1' + - '0x2C2' + - '0x2C3' + - '0x2C4' + - '0x2C5' + - '0x2C6' + - '0x2C7' + - '0x2C8' + - '0x2C9' + - '0x2CA' + - '0x2CB' + - '0x2CC' + - '0x2CD' + - '0x2CE' + - '0x2CF' + - '0x2D0' + - '0x2D1' + - '0x2D2' + - '0x2D3' + - '0x2D4' + - '0x2D5' + - '0x2D6' + - '0x2D7' + - '0x2D8' + - '0x2D9' + - '0x2DA' + - '0x2DB' + - '0x2DC' + - '0x2DD' + - '0x2DE' + - '0x2DF' + - '0x2E0' + - '0x2E1' + - '0x2E2' + - '0x2E3' + - '0x2E4' + - '0x2E5' + - '0x2E6' + - '0x2E7' + - '0x2E8' + - '0x2E9' + - '0x2EA' + - '0x2EB' + - '0x2EC' + - '0x2ED' + - '0x2EE' + - '0x2EF' + - '0x2F0' + - '0x2F1' + - '0x2F2' + - '0x2F3' + - '0x2F4' + - '0x2F5' + - '0x2F6' + - '0x2F7' + - '0x2F8' + - '0x2F9' + - '0x2FA' + - '0x2FB' + - '0x2FC' + - '0x2FD' + - '0x2FE' + - '0x2FF' + - '0x300' + - '0x301' + - '0x302' + - '0x303' + - '0x304' + - '0x305' + - '0x306' + - '0x307' + - '0x308' + - '0x309' + - '0x30A' + - '0x30B' + - '0x30C' + - '0x30D' + - '0x30E' + - '0x30F' + - '0x310' + - '0x311' + - '0x312' + - '0x313' + - '0x314' + - '0x315' + - '0x316' + - '0x317' + - '0x318' + - '0x319' + - '0x31A' + - '0x31B' + - '0x31C' + - '0x31D' + - '0x31E' + - '0x31F' + - '0x320' + - '0x321' + - '0x322' + - '0x323' + - '0x324' + - '0x325' + - '0x326' + - '0x327' + - '0x328' + - '0x329' + - '0x32A' + - '0x32B' + - '0x32C' + - '0x32D' + - '0x32E' + - '0x32F' + - '0x330' + - '0x331' + - '0x332' + - '0x333' + - '0x334' + - '0x335' + - '0x336' + - '0x337' + - '0x338' + - '0x339' + - '0x33A' + - '0x33B' + - '0x33C' + - '0x33D' + - '0x33E' + - '0x33F' + - '0x340' + - '0x341' + - '0x342' + - '0x343' + - '0x344' + - '0x345' + - '0x346' + - '0x347' + - '0x348' + - '0x349' + - '0x34A' + - '0x34B' + - '0x34C' + - '0x34D' + - '0x34E' + - '0x34F' + - '0x350' + - '0x351' + - '0x352' + - '0x353' + - '0x354' + - '0x355' + - '0x356' + - '0x357' + - '0x358' + - '0x359' + - '0x35A' + - '0x35B' + - '0x35C' + - '0x35D' + - '0x35E' + - '0x35F' + - '0x360' + - '0x361' + - '0x362' + - '0x363' + - '0x364' + - '0x365' + - '0x366' + - '0x367' + - '0x368' + - '0x369' + - '0x36A' + - '0x36B' + - '0x36C' + - '0x36D' + - '0x36E' + - '0x36F' + - '0x370' + - '0x371' + - '0x372' + - '0x373' + - '0x374' + - '0x375' + - '0x376' + - '0x377' + - '0x378' + - '0x379' + - '0x37A' + - '0x37B' + - '0x37C' + - '0x37D' + - '0x37E' + - '0x37F' + - '0x380' + - '0x381' + - '0x382' + - '0x383' + - '0x384' + - '0x385' + - '0x386' + - '0x387' + - '0x388' + - '0x389' + - '0x38A' + - '0x38B' + - '0x38C' + - '0x38D' + - '0x38E' + - '0x38F' + - '0x390' + - '0x391' + - '0x392' + - '0x393' + - '0x394' + - '0x395' + - '0x396' + - '0x397' + - '0x398' + - '0x399' + - '0x39A' + - '0x39B' + - '0x39C' + - '0x39D' + - '0x39E' + - '0x39F' + - '0x3A0' + - '0x3A1' + - '0x3A2' + - '0x3A3' + - '0x3A4' + - '0x3A5' + - '0x3A6' + - '0x3A7' + - '0x3A8' + - '0x3A9' + - '0x3AA' + - '0x3AB' + - '0x3AC' + - '0x3AD' + - '0x3AE' + - '0x3AF' + - '0x3B0' + - '0x3B1' + - '0x3B2' + - '0x3B3' + - '0x3B4' + - '0x3B5' + - '0x3B6' + - '0x3B7' + - '0x3B8' + - '0x3B9' + - '0x3BA' + - '0x3BB' + - '0x3BC' + - '0x3BD' + - '0x3BE' + - '0x3BF' + - '0x3C0' + - '0x3C1' + - '0x3C2' + - '0x3C3' + - '0x3C4' + - '0x3C5' + - '0x3C6' + - '0x3C7' + - '0x3C8' + - '0x3C9' + - '0x3CA' + - '0x3CB' + - '0x3CC' + - '0x3CD' + - '0x3CE' + - '0x3CF' + - '0x3D0' + - '0x3D1' + - '0x3D2' + - '0x3D3' + - '0x3D4' + - '0x3D5' + - '0x3D6' + - '0x3D7' + - '0x3D8' + - '0x3D9' + - '0x3DA' + - '0x3DB' + - '0x3DC' + - '0x3DD' + - '0x3DE' + - '0x3DF' + - '0x3E0' + - '0x3E1' + - '0x3E2' + - '0x3E3' + - '0x3E4' + - '0x3E5' + - '0x3E6' + - '0x3E7' + - '0x3E8' + - '0x3E9' + - '0x3EA' + - '0x3EB' + - '0x3EC' + - '0x3ED' + - '0x3EE' + - '0x3EF' + - '0x3F0' + - '0x3F1' + - '0x3F2' + - '0x3F3' + - '0x3F4' + - '0x3F5' + - '0x3F6' + - '0x3F7' + - '0x3F8' + - '0x3F9' + - '0x3FA' + - '0x3FB' + - '0x3FC' + - '0x3FD' + - '0x3FE' + - '0x3FF' + - '0x400' + - '0x401' + - '0x402' + - '0x403' + - '0x404' + - '0x405' + - '0x406' + - '0x407' + - '0x408' + - '0x409' + - '0x40A' + - '0x40B' + - '0x40C' + - '0x40D' + - '0x40E' + - '0x40F' + - '0x410' + - '0x411' + - '0x412' + - '0x413' + - '0x414' + - '0x415' + - '0x416' + - '0x417' + - '0x418' + - '0x419' + - '0x41A' + - '0x41B' + - '0x41C' + - '0x41D' + - '0x41E' + - '0x41F' + - '0x420' + - '0x421' + - '0x422' + - '0x423' + - '0x424' + - '0x425' + - '0x426' + - '0x427' + - '0x428' + - '0x429' + - '0x42A' + - '0x42B' + - '0x42C' + - '0x42D' + - '0x42E' + - '0x42F' + - '0x430' + - '0x431' + - '0x432' + - '0x433' + - '0x434' + - '0x435' + - '0x436' + - '0x437' + - '0x438' + - '0x439' + - '0x43A' + - '0x43B' + - '0x43C' + - '0x43D' + - '0x43E' + - '0x43F' + - '0x440' + - '0x441' + - '0x442' + - '0x443' + - '0x444' + - '0x445' + - '0x446' + - '0x447' + - '0x448' + - '0x449' + - '0x44A' + - '0x44B' + - '0x44C' + - '0x44D' + - '0x44E' + - '0x44F' + - '0x450' + - '0x451' + - '0x452' + - '0x453' + - '0x454' + - '0x455' + - '0x456' + - '0x457' + - '0x458' + - '0x459' + - '0x45A' + - '0x45B' + - '0x45C' + - '0x45D' + - '0x45E' + - '0x45F' + - '0x460' + - '0x461' + - '0x462' + - '0x463' + - '0x464' + - '0x465' + - '0x466' + - '0x467' + - '0x468' + - '0x469' + - '0x46A' + - '0x46B' + - '0x46C' + - '0x46D' + - '0x46E' + - '0x46F' + - '0x470' + - '0x471' + - '0x472' + - '0x473' + - '0x474' + - '0x475' + - '0x476' + - '0x477' + - '0x478' + - '0x479' + - '0x47A' + - '0x47B' + - '0x47C' + - '0x47D' + - '0x47E' + - '0x47F' + - '0x480' + - '0x481' + - '0x482' + - '0x483' + - '0x484' + - '0x485' + - '0x486' + - '0x487' + - '0x488' + - '0x489' + - '0x48A' + - '0x48B' + - '0x48C' + - '0x48D' + - '0x48E' + - '0x48F' + - '0x490' + - '0x491' + - '0x492' + - '0x493' + - '0x494' + - '0x495' + - '0x496' + - '0x497' + - '0x498' + - '0x499' + - '0x49A' + - '0x49B' + - '0x49C' + - '0x49D' + - '0x49E' + - '0x49F' + - '0x4A0' + - '0x4A1' + - '0x4A2' + - '0x4A3' + - '0x4A4' + - '0x4A5' + - '0x4A6' + - '0x4A7' + - '0x4A8' + - '0x4A9' + - '0x4AA' + - '0x4AB' + - '0x4AC' + - '0x4AD' + - '0x4AE' + - '0x4AF' + - '0x4B0' + - '0x4B1' + - '0x4B2' + - '0x4B3' + - '0x4B4' + - '0x4B5' + - '0x4B6' + - '0x4B7' + - '0x4B8' + - '0x4B9' + - '0x4BA' + - '0x4BB' + - '0x4BC' + - '0x4BD' + - '0x4BE' + - '0x4BF' + - '0x4C0' + - '0x4C1' + - '0x4C2' + - '0x4C3' + - '0x4C4' + - '0x4C5' + - '0x4C6' + - '0x4C7' + - '0x4C8' + - '0x4C9' + - '0x4CA' + - '0x4CB' + - '0x4CC' + - '0x4CD' + - '0x4CE' + - '0x4CF' + - '0x4D0' + - '0x4D1' + - '0x4D2' + - '0x4D3' + - '0x4D4' + - '0x4D5' + - '0x4D6' + - '0x4D7' + - '0x4D8' + - '0x4D9' + - '0x4DA' + - '0x4DB' + - '0x4DC' + - '0x4DD' + - '0x4DE' + - '0x4DF' + - '0x4E0' + - '0x4E1' + - '0x4E2' + - '0x4E3' + - '0x4E4' + - '0x4E5' + - '0x4E6' + - '0x4E7' + - '0x4E8' + - '0x4E9' + - '0x4EA' + - '0x4EB' + - '0x4EC' + - '0x4ED' + - '0x4EE' + - '0x4EF' + - '0x4F0' + - '0x4F1' + - '0x4F2' + - '0x4F3' + - '0x4F4' + - '0x4F5' + - '0x4F6' + - '0x4F7' + - '0x4F8' + - '0x4F9' + - '0x4FA' + - '0x4FB' + - '0x4FC' + - '0x4FD' + - '0x4FE' + - '0x4FF' + - '0x500' + - '0x501' + - '0x502' + - '0x503' + - '0x504' + - '0x505' + - '0x506' + - '0x507' + - '0x508' + - '0x509' + - '0x50A' + - '0x50B' + - '0x50C' + - '0x50D' + - '0x50E' + - '0x50F' + - '0x510' + - '0x511' + - '0x512' + - '0x513' + - '0x514' + - '0x515' + - '0x516' + - '0x517' + - '0x518' + - '0x519' + - '0x51A' + - '0x51B' + - '0x51C' + - '0x51D' + - '0x51E' + - '0x51F' + - '0x520' + - '0x521' + - '0x522' + - '0x523' + - '0x524' + - '0x525' + - '0x526' + - '0x527' + - '0x528' + - '0x529' + - '0x52A' + - '0x52B' + - '0x52C' + - '0x52D' + - '0x52E' + - '0x52F' + - '0x530' + - '0x531' + - '0x532' + - '0x533' + - '0x534' + - '0x535' + - '0x536' + - '0x537' + - '0x538' + - '0x539' + - '0x53A' + - '0x53B' + - '0x53C' + - '0x53D' + - '0x53E' + - '0x53F' + - '0x540' + - '0x541' + - '0x542' + - '0x543' + - '0x544' + - '0x545' + - '0x546' + - '0x547' + - '0x548' + - '0x549' + - '0x54A' + - '0x54B' + - '0x54C' + - '0x54D' + - '0x54E' + - '0x54F' + - '0x550' + - '0x551' + - '0x552' + - '0x553' + - '0x554' + - '0x555' + - '0x556' + - '0x557' + - '0x558' + - '0x559' + - '0x55A' + - '0x55B' + - '0x55C' + - '0x55D' + - '0x55E' + - '0x55F' + - '0x560' + - '0x561' + - '0x562' + - '0x563' + - '0x564' + - '0x565' + - '0x566' + - '0x567' + - '0x568' + - '0x569' + - '0x56A' + - '0x56B' + - '0x56C' + - '0x56D' + - '0x56E' + - '0x56F' + - '0x570' + - '0x571' + - '0x572' + - '0x573' + - '0x574' + - '0x575' + - '0x576' + - '0x577' + - '0x578' + - '0x579' + - '0x57A' + - '0x57B' + - '0x57C' + - '0x57D' + - '0x57E' + - '0x57F' + - '0x580' + - '0x581' + - '0x582' + - '0x583' + - '0x584' + - '0x585' + - '0x586' + - '0x587' + - '0x588' + - '0x589' + - '0x58A' + - '0x58B' + - '0x58C' + - '0x58D' + - '0x58E' + - '0x58F' + - '0x590' + - '0x591' + - '0x592' + - '0x593' + - '0x594' + - '0x595' + - '0x596' + - '0x597' + - '0x598' + - '0x599' + - '0x59A' + - '0x59B' + - '0x59C' + - '0x59D' + - '0x59E' + - '0x59F' + - '0x5A0' + - '0x5A1' + - '0x5A2' + - '0x5A3' + - '0x5A4' + - '0x5A5' + - '0x5A6' + - '0x5A7' + - '0x5A8' + - '0x5A9' + - '0x5AA' + - '0x5AB' + - '0x5AC' + - '0x5AD' + - '0x5AE' + - '0x5AF' + - '0x5B0' + - '0x5B1' + - '0x5B2' + - '0x5B3' + - '0x5B4' + - '0x5B5' + - '0x5B6' + - '0x5B7' + - '0x5B8' + - '0x5B9' + - '0x5BA' + - '0x5BB' + - '0x5BC' + - '0x5BD' + - '0x5BE' + - '0x5BF' + - '0x5C0' + - '0x5C1' + - '0x5C2' + - '0x5C3' + - '0x5C4' + - '0x5C5' + - '0x5C6' + - '0x5C7' + - '0x5C8' + - '0x5C9' + - '0x5CA' + - '0x5CB' + - '0x5CC' + - '0x5CD' + - '0x5CE' + - '0x5CF' + - '0x5D0' + - '0x5D1' + - '0x5D2' + - '0x5D3' + - '0x5D4' + - '0x5D5' + - '0x5D6' + - '0x5D7' + - '0x5D8' + - '0x5D9' + - '0x5DA' + - '0x5DB' + - '0x5DC' + - '0x5DD' + - '0x5DE' + - '0x5DF' + - '0x5E0' + - '0x5E1' + - '0x5E2' + - '0x5E3' + - '0x5E4' + - '0x5E5' + - '0x5E6' + - '0x5E7' + - '0x5E8' + - '0x5E9' + - '0x5EA' + - '0x5EB' + - '0x5EC' + - '0x5ED' + - '0x5EE' + - '0x5EF' + - '0x5F0' + - '0x5F1' + - '0x5F2' + - '0x5F3' + - '0x5F4' + - '0x5F5' + - '0x5F6' + - '0x5F7' + - '0x5F8' + - '0x5F9' + - '0x5FA' + - '0x5FB' + - '0x5FC' + - '0x5FD' + - '0x5FE' + - '0x5FF' + - '0x600' + - '0x601' + - '0x602' + - '0x603' + - '0x604' + - '0x605' + - '0x606' + - '0x607' + - '0x608' + - '0x609' + - '0x60A' + - '0x60B' + - '0x60C' + - '0x60D' + - '0x60E' + - '0x60F' + - '0x610' + - '0x611' + - '0x612' + - '0x613' + - '0x614' + - '0x615' + - '0x616' + - '0x617' + - '0x618' + - '0x619' + - '0x61A' + - '0x61B' + - '0x61C' + - '0x61D' + - '0x61E' + - '0x61F' + - '0x620' + - '0x621' + - '0x622' + - '0x623' + - '0x624' + - '0x625' + - '0x626' + - '0x627' + - '0x628' + - '0x629' + - '0x62A' + - '0x62B' + - '0x62C' + - '0x62D' + - '0x62E' + - '0x62F' + - '0x630' + - '0x631' + - '0x632' + - '0x633' + - '0x634' + - '0x635' + - '0x636' + - '0x637' + - '0x638' + - '0x639' + - '0x63A' + - '0x63B' + - '0x63C' + - '0x63D' + - '0x63E' + - '0x63F' + - '0x640' + - '0x641' + - '0x642' + - '0x643' + - '0x644' + - '0x645' + - '0x646' + - '0x647' + - '0x648' + - '0x649' + - '0x64A' + - '0x64B' + - '0x64C' + - '0x64D' + - '0x64E' + - '0x64F' + - '0x650' + - '0x651' + - '0x652' + - '0x653' + - '0x654' + - '0x655' + - '0x656' + - '0x657' + - '0x658' + - '0x659' + - '0x65A' + - '0x65B' + - '0x65C' + - '0x65D' + - '0x65E' + - '0x65F' + - '0x660' + - '0x661' + - '0x662' + - '0x663' + - '0x664' + - '0x665' + - '0x666' + - '0x667' + - '0x668' + - '0x669' + - '0x66A' + - '0x66B' + - '0x66C' + - '0x66D' + - '0x66E' + - '0x66F' + - '0x670' + - '0x671' + - '0x672' + - '0x673' + - '0x674' + - '0x675' + - '0x676' + - '0x677' + - '0x678' + - '0x679' + - '0x67A' + - '0x67B' + - '0x67C' + - '0x67D' + - '0x67E' + - '0x67F' + - '0x680' + - '0x681' + - '0x682' + - '0x683' + - '0x684' + - '0x685' + - '0x686' + - '0x687' + - '0x688' + - '0x689' + - '0x68A' + - '0x68B' + - '0x68C' + - '0x68D' + - '0x68E' + - '0x68F' + - '0x690' + - '0x691' + - '0x692' + - '0x693' + - '0x694' + - '0x695' + - '0x696' + - '0x697' + - '0x698' + - '0x699' + - '0x69A' + - '0x69B' + - '0x69C' + - '0x69D' + - '0x69E' + - '0x69F' + - '0x6A0' + - '0x6A1' + - '0x6A2' + - '0x6A3' + - '0x6A4' + - '0x6A5' + - '0x6A6' + - '0x6A7' + - '0x6A8' + - '0x6A9' + - '0x6AA' + - '0x6AB' + - '0x6AC' + - '0x6AD' + - '0x6AE' + - '0x6AF' + - '0x6B0' + - '0x6B1' + - '0x6B2' + - '0x6B3' + - '0x6B4' + - '0x6B5' + - '0x6B6' + - '0x6B7' + - '0x6B8' + - '0x6B9' + - '0x6BA' + - '0x6BB' + - '0x6BC' + - '0x6BD' + - '0x6BE' + - '0x6BF' + - '0x6C0' + - '0x6C1' + - '0x6C2' + - '0x6C3' + - '0x6C4' + - '0x6C5' + - '0x6C6' + - '0x6C7' + - '0x6C8' + - '0x6C9' + - '0x6CA' + - '0x6CB' + - '0x6CC' + - '0x6CD' + - '0x6CE' + - '0x6CF' + - '0x6D0' + - '0x6D1' + - '0x6D2' + - '0x6D3' + - '0x6D4' + - '0x6D5' + - '0x6D6' + - '0x6D7' + - '0x6D8' + - '0x6D9' + - '0x6DA' + - '0x6DB' + - '0x6DC' + - '0x6DD' + - '0x6DE' + - '0x6DF' + - '0x6E0' + - '0x6E1' + - '0x6E2' + - '0x6E3' + - '0x6E4' + - '0x6E5' + - '0x6E6' + - '0x6E7' + - '0x6E8' + - '0x6E9' + - '0x6EA' + - '0x6EB' + - '0x6EC' + - '0x6ED' + - '0x6EE' + - '0x6EF' + - '0x6F0' + - '0x6F1' + - '0x6F2' + - '0x6F3' + - '0x6F4' + - '0x6F5' + - '0x6F6' + - '0x6F7' + - '0x6F8' + - '0x6F9' + - '0x6FA' + - '0x6FB' + - '0x6FC' + - '0x6FD' + - '0x6FE' + - '0x6FF' + - '0x700' + - '0x701' + - '0x702' + - '0x703' + - '0x704' + - '0x705' + - '0x706' + - '0x707' + - '0x708' + - '0x709' + - '0x70A' + - '0x70B' + - '0x70C' + - '0x70D' + - '0x70E' + - '0x70F' + - '0x710' + - '0x711' + - '0x712' + - '0x713' + - '0x714' + - '0x715' + - '0x716' + - '0x717' + - '0x718' + - '0x719' + - '0x71A' + - '0x71B' + - '0x71C' + - '0x71D' + - '0x71E' + - '0x71F' + - '0x720' + - '0x721' + - '0x722' + - '0x723' + - '0x724' + - '0x725' + - '0x726' + - '0x727' + - '0x728' + - '0x729' + - '0x72A' + - '0x72B' + - '0x72C' + - '0x72D' + - '0x72E' + - '0x72F' + - '0x730' + - '0x731' + - '0x732' + - '0x733' + - '0x734' + - '0x735' + - '0x736' + - '0x737' + - '0x738' + - '0x739' + - '0x73A' + - '0x73B' + - '0x73C' + - '0x73D' + - '0x73E' + - '0x73F' + - '0x740' + - '0x741' + - '0x742' + - '0x743' + - '0x744' + - '0x745' + - '0x746' + - '0x747' + - '0x748' + - '0x749' + - '0x74A' + - '0x74B' + - '0x74C' + - '0x74D' + - '0x74E' + - '0x74F' + - '0x750' + - '0x751' + - '0x752' + - '0x753' + - '0x754' + - '0x755' + - '0x756' + - '0x757' + - '0x758' + - '0x759' + - '0x75A' + - '0x75B' + - '0x75C' + - '0x75D' + - '0x75E' + - '0x75F' + - '0x760' + - '0x761' + - '0x762' + - '0x763' + - '0x764' + - '0x765' + - '0x766' + - '0x767' + - '0x768' + - '0x769' + - '0x76A' + - '0x76B' + - '0x76C' + - '0x76D' + - '0x76E' + - '0x76F' + - '0x770' + - '0x771' + - '0x772' + - '0x773' + - '0x774' + - '0x775' + - '0x776' + - '0x777' + - '0x778' + - '0x779' + - '0x77A' + - '0x77B' + - '0x77C' + - '0x77D' + - '0x77E' + - '0x77F' + - '0x780' + - '0x781' + - '0x782' + - '0x783' + - '0x784' + - '0x785' + - '0x786' + - '0x787' + - '0x788' + - '0x789' + - '0x78A' + - '0x78B' + - '0x78C' + - '0x78D' + - '0x78E' + - '0x78F' + - '0x790' + - '0x791' + - '0x792' + - '0x793' + - '0x794' + - '0x795' + - '0x796' + - '0x797' + - '0x798' + - '0x799' + - '0x79A' + - '0x79B' + - '0x79C' + - '0x79D' + - '0x79E' + - '0x79F' + - '0x7A0' + - '0x7A1' + - '0x7A2' + - '0x7A3' + - '0x7A4' + - '0x7A5' + - '0x7A6' + - '0x7A7' + - '0x7A8' + - '0x7A9' + - '0x7AA' + - '0x7AB' + - '0x7AC' + - '0x7AD' + - '0x7AE' + - '0x7AF' + - '0x7B0' + - '0x7B1' + - '0x7B2' + - '0x7B3' + - '0x7B4' + - '0x7B5' + - '0x7B6' + - '0x7B7' + - '0x7B8' + - '0x7B9' + - '0x7BA' + - '0x7BB' + - '0x7BC' + - '0x7BD' + - '0x7BE' + - '0x7BF' + - '0x7C0' + - '0x7C1' + - '0x7C2' + - '0x7C3' + - '0x7C4' + - '0x7C5' + - '0x7C6' + - '0x7C7' + - '0x7C8' + - '0x7C9' + - '0x7CA' + - '0x7CB' + - '0x7CC' + - '0x7CD' + - '0x7CE' + - '0x7CF' + - '0x7D0' + - '0x7D1' + - '0x7D2' + - '0x7D3' + - '0x7D4' + - '0x7D5' + - '0x7D6' + - '0x7D7' + - '0x7D8' + - '0x7D9' + - '0x7DA' + - '0x7DB' + - '0x7DC' + - '0x7DD' + - '0x7DE' + - '0x7DF' + - '0x7E0' + - '0x7E1' + - '0x7E2' + - '0x7E3' + - '0x7E4' + - '0x7E5' + - '0x7E6' + - '0x7E7' + - '0x7E8' + - '0x7E9' + - '0x7EA' + - '0x7EB' + - '0x7EC' + - '0x7ED' + - '0x7EE' + - '0x7EF' + - '0x7F0' + - '0x7F1' + - '0x7F2' + - '0x7F3' + - '0x7F4' + - '0x7F5' + - '0x7F6' + - '0x7F7' + - '0x7F8' + - '0x7F9' + - '0x7FA' + - '0x7FB' + - '0x7FC' + - '0x7FD' + - '0x7FE' + - '0x7FF' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin0pina: + type: bits + size: U08 + offset: 121 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin1pina: + type: bits + size: U08 + offset: 122 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin2pina: + type: bits + size: U08 + offset: 123 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin3pina: + type: bits + size: U08 + offset: 124 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin4pina: + type: bits + size: U08 + offset: 125 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin5pina: + type: bits + size: U08 + offset: 126 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin6pina: + type: bits + size: U08 + offset: 127 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin7pina: + type: bits + size: U08 + offset: 128 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin8pina: + type: bits + size: U08 + offset: 129 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin9pina: + type: bits + size: U08 + offset: 130 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin10pina: + type: bits + size: U08 + offset: 131 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin11pina: + type: bits + size: U08 + offset: 132 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin12pina: + type: bits + size: U08 + offset: 133 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin13pina: + type: bits + size: U08 + offset: 134 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin14pina: + type: bits + size: U08 + offset: 135 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin15pina: + type: bits + size: U08 + offset: 136 + address: + - 0 + - 5 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin0pinb: + type: bits + size: U08 + offset: 137 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin1pinb: + type: bits + size: U08 + offset: 138 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin2pinb: + type: bits + size: U08 + offset: 139 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin3pinb: + type: bits + size: U08 + offset: 140 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin4pinb: + type: bits + size: U08 + offset: 141 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin5pinb: + type: bits + size: U08 + offset: 142 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin6pinb: + type: bits + size: U08 + offset: 143 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin7pinb: + type: bits + size: U08 + offset: 144 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin8pinb: + type: bits + size: U08 + offset: 145 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin9pinb: + type: bits + size: U08 + offset: 146 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin10pinb: + type: bits + size: U08 + offset: 147 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin11pinb: + type: bits + size: U08 + offset: 148 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin12pinb: + type: bits + size: U08 + offset: 149 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin13pinb: + type: bits + size: U08 + offset: 150 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin14pinb: + type: bits + size: U08 + offset: 151 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + Auxin15pinb: + type: bits + size: U08 + offset: 152 + address: + - 0 + - 5 + values: + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + iacStepperInv: + type: bits + size: U08 + offset: 153 + address: + - 0 + - 0 + values: + - 'No' + - 'Yes' + iacCoolTime: + type: bits + size: U08 + offset: 153 + address: + - 1 + - 3 + values: + - '0' + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - INVALID + blankfield: + type: bits + size: U08 + offset: 153 + address: + - 4 + - 4 + values: [] + unused10_153: + type: bits + size: U08 + offset: 153 + address: + - 5 + - 7 + values: [] + iacMaxSteps: + type: scalar + size: U08 + offset: 154 + units: Steps + scale: 3 + transform: 0 + min: 0 + max: '{iacStepHome-3}' + digits: 0 + unused10_154: + type: array + size: U08 + offset: 155 + shape: + columns: 37 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + - number: 10 + size: 0 + data: + crankingEnrichBins: + type: array + size: U08 + offset: 0 + shape: + columns: 4 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + crankingEnrichValues: + type: array + size: U08 + offset: 4 + shape: + columns: 4 + rows: 0 + units: '%' + scale: 5 + transform: 0 + min: 0 + max: 1275 + digits: 0 + rotaryType: + type: bits + size: U08 + offset: 8 + address: + - 0 + - 1 + values: + - FC + - FD + - RX8 + - INVALID + stagingEnabled: + type: bits + size: U08 + offset: 8 + address: + - 2 + - 2 + values: + - 'Off' + - 'On' + stagingMode: + type: bits + size: U08 + offset: 8 + address: + - 3 + - 3 + values: + - Table + - Automatic + EMAPPin: + type: bits + size: U08 + offset: 8 + address: + - 4 + - 7 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + rotarySplitValues: + type: array + size: U08 + offset: 9 + shape: + columns: 8 + rows: 0 + units: degrees + scale: 1 + transform: 0 + min: 0 + max: 40 + digits: 0 + rotarySplitBins: + type: array + size: U08 + offset: 17 + shape: + columns: 8 + rows: 0 + units: '{ bitStringValue(algorithmUnits , algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{fuelLoadMax}' + digits: 0 + boostSens: + type: scalar + size: U16 + offset: 25 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 5000 + digits: 0 + boostIntv: + type: scalar + size: U08 + offset: 27 + units: ms + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + stagedInjSizePri: + type: scalar + size: U16 + offset: 28 + units: cc/min + scale: 1 + transform: 0 + min: 0 + max: 1500 + digits: 0 + stagedInjSizeSec: + type: scalar + size: U16 + offset: 30 + units: cc/min + scale: 1 + transform: 0 + min: 0 + max: 1500 + digits: 0 + lnchCtrlTPS: + type: scalar + size: U08 + offset: 32 + units: '%TPS' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + flexBoostBins: + type: array + size: U08 + offset: 33 + shape: + columns: 6 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + flexBoostAdj: + type: array + size: S16 + offset: 39 + shape: + columns: 6 + rows: 0 + units: kPa + scale: 1 + transform: 0 + min: -500 + max: 500 + digits: 0 + flexFuelBins: + type: array + size: U08 + offset: 51 + shape: + columns: 6 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + flexFuelAdj: + type: array + size: U08 + offset: 57 + shape: + columns: 6 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + flexAdvBins: + type: array + size: U08 + offset: 63 + shape: + columns: 6 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + flexAdvAdj: + type: array + size: U08 + offset: 69 + shape: + columns: 6 + rows: 0 + units: Deg + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + n2o_enable: + type: bits + size: U08 + offset: 75 + address: + - 0 + - 1 + values: + - 'Off' + - 1 Stage + - 2 stage + - INVALID + n2o_arming_pin: + type: bits + size: U08 + offset: 75 + address: + - 2 + - 7 + values: + - INVALID + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + n2o_minCLT: + type: scalar + size: U08 + offset: 76 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + n2o_maxMAP: + type: scalar + size: U08 + offset: 77 + units: kPa + scale: 2 + transform: 0 + min: 0 + max: 511 + digits: 0 + n2o_minTPS: + type: scalar + size: U08 + offset: 78 + units: '%TPS' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + n2o_maxAFR: + type: scalar + size: U08 + offset: 79 + units: AFR + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + n2o_stage1_pin: + type: bits + size: U08 + offset: 80 + address: + - 0 + - 5 + values: + - INVALID + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + n2o_pin_polarity: + type: bits + size: U08 + offset: 80 + address: + - 6 + - 6 + values: + - HIGH + - LOW + n2o_unused: + type: bits + size: U08 + offset: 80 + address: + - 7 + - 7 + values: + - 'No' + - 'Yes' + n2o_stage1_minRPM: + type: scalar + size: U08 + offset: 81 + units: RPM + scale: 100 + transform: 0 + min: 1000 + max: 10000 + digits: 0 + n2o_stage1_maxRPM: + type: scalar + size: U08 + offset: 82 + units: RPM + scale: 100 + transform: 0 + min: 1000 + max: 10000 + digits: 0 + n2o_stage1_adderMin: + type: scalar + size: U08 + offset: 83 + units: ms + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + n2o_stage1_adderMax: + type: scalar + size: U08 + offset: 84 + units: ms + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + n2o_stage1_retard: + type: scalar + size: U08 + offset: 85 + units: Deg + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + n2o_stage2_pin: + type: bits + size: U08 + offset: 86 + address: + - 0 + - 5 + values: + - INVALID + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + n2o_stage2_unused: + type: bits + size: U08 + offset: 86 + address: + - 6 + - 7 + values: + - 'No' + - 'Yes' + - INVALID + - INVALID + n2o_stage2_minRPM: + type: scalar + size: U08 + offset: 87 + units: RPM + scale: 100 + transform: 0 + min: 1000 + max: 10000 + digits: 0 + n2o_stage2_maxRPM: + type: scalar + size: U08 + offset: 88 + units: RPM + scale: 100 + transform: 0 + min: 1000 + max: 10000 + digits: 0 + n2o_stage2_adderMin: + type: scalar + size: U08 + offset: 89 + units: ms + scale: 0.1 + transform: 0 + min: 0 + max: 32 + digits: 1 + n2o_stage2_adderMax: + type: scalar + size: U08 + offset: 90 + units: ms + scale: 0.1 + transform: 0 + min: 0 + max: 32 + digits: 1 + n2o_stage2_retard: + type: scalar + size: U08 + offset: 91 + units: Deg + scale: 1 + transform: 0 + min: 0 + max: 250 + digits: 0 + knock_mode: + type: bits + size: U08 + offset: 92 + address: + - 0 + - 1 + values: + - 'Off' + - Digital + - Analog + - INVALID + knock_pin: + type: bits + size: U08 + offset: 92 + address: + - 2 + - 7 + values: + - INVALID + - INVALID + - '2' + - '3' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - '18' + - '19' + - '20' + - '21' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + knock_trigger: + type: bits + size: U08 + offset: 93 + address: + - 0 + - 0 + values: + - HIGH + - LOW + knock_pullup: + type: bits + size: U08 + offset: 93 + address: + - 1 + - 1 + values: + - 'Off' + - Internal pullup + knock_limiterDisable: + type: bits + size: U08 + offset: 93 + address: + - 2 + - 2 + values: + - 'No' + - 'Yes' + knock_unused: + type: bits + size: U08 + offset: 93 + address: + - 3 + - 4 + values: + - INVALID + - '1' + - '2' + - '3' + knock_count: + type: bits + size: U08 + offset: 93 + address: + - 5 + - 7 + values: + - INVALID + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + knock_threshold: + type: scalar + size: U08 + offset: 94 + units: Volts + scale: 0.1 + transform: 0 + min: 0 + max: 5 + digits: 1 + knock_maxMAP: + type: scalar + size: U08 + offset: 95 + units: kPa + scale: 2 + transform: 0 + min: 0 + max: 511 + digits: 0 + knock_maxRPM: + type: scalar + size: U08 + offset: 96 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 10000 + digits: 0 + knock_window_rpms: + type: array + size: U08 + offset: 97 + shape: + columns: 6 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 10000 + digits: 0 + knock_window_angle: + type: array + size: U08 + offset: 103 + shape: + columns: 6 + rows: 0 + units: deg + scale: 1 + transform: -50 + min: -50 + max: 100 + digits: 0 + knock_window_dur: + type: array + size: U08 + offset: 109 + shape: + columns: 6 + rows: 0 + units: deg + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + knock_maxRetard: + type: scalar + size: U08 + offset: 115 + units: Deg + scale: 1 + transform: 0 + min: 0 + max: 50 + digits: 0 + knock_firstStep: + type: scalar + size: U08 + offset: 116 + units: Deg + scale: 1 + transform: 0 + min: 0 + max: 50 + digits: 0 + knock_stepSize: + type: scalar + size: U08 + offset: 117 + units: Deg + scale: 1 + transform: 0 + min: 0 + max: 50 + digits: 0 + knock_stepTime: + type: scalar + size: U08 + offset: 118 + units: Sec + scale: 0.1 + transform: 0 + min: 0 + max: 2.5 + digits: 1 + knock_duration: + type: scalar + size: U08 + offset: 119 + units: Sec + scale: 0.1 + transform: 0 + min: 0 + max: 2.5 + digits: 1 + knock_recoveryStepTime: + type: scalar + size: U08 + offset: 120 + units: Sec + scale: 0.1 + transform: 0 + min: 0 + max: 2.5 + digits: 1 + knock_recoveryStep: + type: scalar + size: U08 + offset: 121 + units: Deg + scale: 1 + transform: 0 + min: 0 + max: 50 + digits: 0 + fuel2Algorithm: + type: bits + size: U08 + offset: 122 + address: + - 0 + - 2 + values: + - MAP + - TPS + - IMAP/EMAP + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + fuel2Mode: + type: bits + size: U08 + offset: 122 + address: + - 3 + - 5 + values: + - 'Off' + - Multiplied % + - Added + - Switched - Conditional + - Switched - Input based + - INVALID + - INVALID + - INVALID + fuel2SwitchVariable: + type: bits + size: U08 + offset: 122 + address: + - 6 + - 7 + values: + - RPM + - MAP + - TPS + - ETH% + fuel2SwitchValue: + type: scalar + size: U16 + offset: 123 + units: '{ bitStringValue(fuel2SwitchUnits, fuel2SwitchVariable) }' + scale: 1 + transform: 0 + min: 0 + max: 9000 + digits: 0 + fuel2InputPin: + type: bits + size: U08 + offset: 125 + address: + - 0 + - 5 + values: + - INVALID + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + fuel2InputPolarity: + type: bits + size: U08 + offset: 125 + address: + - 6 + - 6 + values: + - LOW + - HIGH + fuel2InputPullup: + type: bits + size: U08 + offset: 125 + address: + - 7 + - 7 + values: + - 'No' + - 'Yes' + vvtCLholdDuty: + type: scalar + size: U08 + offset: 126 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + vvtCLKP: + type: scalar + size: U08 + offset: 127 + units: '%' + scale: 0.03125 + transform: 0 + min: 0 + max: 7.96 + digits: 2 + vvtCLKI: + type: scalar + size: U08 + offset: 128 + units: '%' + scale: 0.03125 + transform: 0 + min: 0 + max: 7.96 + digits: 2 + vvtCLKD: + type: scalar + size: U08 + offset: 129 + units: '%' + scale: 0.00781 + transform: 0 + min: 0 + max: 1.99 + digits: 3 + vvtCLMinAng: + type: scalar + size: S16 + offset: 130 + units: deg + scale: 1 + transform: 0 + min: -360 + max: 360 + digits: 0 + vvtCLMaxAng: + type: scalar + size: S16 + offset: 132 + units: deg + scale: 1 + transform: 0 + min: -360 + max: 360 + digits: 0 + crankingEnrichTaper: + type: scalar + size: U08 + offset: 134 + units: s + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + fuelPressureEnable: + type: bits + size: U08 + offset: 135 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + oilPressureEnable: + type: bits + size: U08 + offset: 135 + address: + - 1 + - 1 + values: + - 'Off' + - 'On' + oilPressureProtEnbl: + type: bits + size: U08 + offset: 135 + address: + - 2 + - 2 + values: + - 'Off' + - 'On' + fuelPressurePin: + type: bits + size: U08 + offset: 136 + address: + - 0 + - 3 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + oilPressurePin: + type: bits + size: U08 + offset: 136 + address: + - 4 + - 7 + values: + - A0 + - A1 + - A2 + - A3 + - A4 + - A5 + - A6 + - A7 + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + fuelPressureMin: + type: scalar + size: S08 + offset: 137 + units: psi + scale: 1 + transform: 0 + min: -100 + max: 127 + digits: 0 + fuelPressureMax: + type: scalar + size: U08 + offset: 138 + units: psi + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + oilPressureMin: + type: scalar + size: S08 + offset: 139 + units: psi + scale: 1 + transform: 0 + min: -100 + max: 127 + digits: 0 + oilPressureMax: + type: scalar + size: U08 + offset: 140 + units: psi + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + oilPressureProtRPM: + type: array + size: U08 + offset: 141 + shape: + columns: 4 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + oilPressureProtMins: + type: array + size: U08 + offset: 145 + shape: + columns: 4 + rows: 0 + units: psi + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + wmiEnabled: + type: bits + size: U08 + offset: 149 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + wmiMode: + type: bits + size: U08 + offset: 149 + address: + - 1 + - 2 + values: + - Simple + - Proportional + - Openloop + - Closedloop + wmiAdvEnabled: + type: bits + size: U08 + offset: 149 + address: + - 7 + - 7 + values: + - 'Off' + - 'On' + wmiTPS: + type: scalar + size: U08 + offset: 150 + units: '%TPS' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + wmiRPM: + type: scalar + size: U08 + offset: 151 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 10000 + digits: 0 + wmiMAP: + type: scalar + size: U08 + offset: 152 + units: kPa + scale: 2 + transform: 0 + min: 0 + max: 511 + digits: 0 + wmiMAP2: + type: scalar + size: U08 + offset: 153 + units: kPa + scale: 2 + transform: 0 + min: 0 + max: 511 + digits: 0 + wmiIAT: + type: scalar + size: U08 + offset: 154 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + wmiOffset: + type: scalar + size: S08 + offset: 155 + units: ms + scale: 1 + transform: 0 + min: -12.7 + max: 12.7 + digits: 0 + wmiIndicatorEnabled: + type: bits + size: U08 + offset: 156 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + wmiIndicatorPin: + type: bits + size: U08 + offset: 156 + address: + - 1 + - 6 + values: + - Board Default + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + wmiIndicatorPolarity: + type: bits + size: U08 + offset: 156 + address: + - 7 + - 7 + values: + - Normal + - Inverted + wmiEmptyEnabled: + type: bits + size: U08 + offset: 157 + address: + - 0 + - 0 + values: + - 'Off' + - 'On' + wmiEmptyPin: + type: bits + size: U08 + offset: 157 + address: + - 1 + - 6 + values: + - Board Default + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + wmiEmptyPolarity: + type: bits + size: U08 + offset: 157 + address: + - 7 + - 7 + values: + - Normal + - Inverted + wmiEnabledPin: + type: bits + size: U08 + offset: 158 + address: + - 0 + - 5 + values: + - Board Default + - '1' + - '2' + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + wmiAdvBins: + type: array + size: U08 + offset: 159 + shape: + columns: 6 + rows: 0 + units: kPa + scale: 2 + transform: 0 + min: 0 + max: 511 + digits: 0 + wmiAdvAdj: + type: array + size: U08 + offset: 165 + shape: + columns: 6 + rows: 0 + units: Deg + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + vvtCLminDuty: + type: scalar + size: U08 + offset: 171 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + vvtCLmaxDuty: + type: scalar + size: U08 + offset: 172 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + vvt2Pin: + type: bits + size: U08 + offset: 173 + address: + - 0 + - 5 + values: + - Board Default + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + fuelTempBins: + type: array + size: U08 + offset: 174 + shape: + columns: 6 + rows: 0 + units: C + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + fuelTempValues: + type: array + size: U08 + offset: 180 + shape: + columns: 6 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + spark2Algorithm: + type: bits + size: U08 + offset: 186 + address: + - 0 + - 2 + values: + - MAP + - TPS + - IMAP/EMAP + - INVALID + - INVALID + - INVALID + - INVALID + - INVALID + spark2Mode: + type: bits + size: U08 + offset: 186 + address: + - 3 + - 5 + values: + - 'Off' + - Multiplied % + - Added + - Switched - Conditional + - Switched - Input based + - INVALID + - INVALID + - INVALID + spark2SwitchVariable: + type: bits + size: U08 + offset: 186 + address: + - 6 + - 7 + values: + - RPM + - MAP + - TPS + - ETH% + spark2SwitchValue: + type: scalar + size: U16 + offset: 187 + units: '{ bitStringValue(fuel2SwitchUnits, spark2SwitchVariable) }' + scale: 1 + transform: 0 + min: 0 + max: 9000 + digits: 0 + spark2InputPin: + type: bits + size: U08 + offset: 189 + address: + - 0 + - 5 + values: + - INVALID + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + spark2InputPolarity: + type: bits + size: U08 + offset: 189 + address: + - 6 + - 6 + values: + - LOW + - HIGH + spark2InputPullup: + type: bits + size: U08 + offset: 189 + address: + - 7 + - 7 + values: + - 'No' + - 'Yes' + unused11_190_191: + type: array + size: U08 + offset: 190 + shape: + columns: 2 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + - number: 11 + size: 0 + data: + veTable2: + type: array + size: U08 + offset: 0 + shape: + columns: 16 + rows: 16 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + fuelRPM2Bins: + type: array + size: U08 + offset: 256 + shape: + columns: 16 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 0 + max: 25500 + digits: 0 + fuelLoad2Bins: + type: array + size: U08 + offset: 272 + shape: + columns: 16 + rows: 0 + units: '{ bitStringValue(algorithmUnits , fuel2Algorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{ fuel2LoadMax }' + digits: 0 + - number: 12 + size: 0 + data: + wmiTable: + type: array + size: U08 + offset: 0 + shape: + columns: 8 + rows: 8 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + rpmBinsWMI: + type: array + size: U08 + offset: 64 + shape: + columns: 8 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + mapBinsWMI: + type: array + size: U08 + offset: 72 + shape: + columns: 8 + rows: 0 + units: kPa + scale: 2 + transform: 0 + min: 0 + max: 511 + digits: 0 + dwellTable: + type: array + size: U08 + offset: 160 + shape: + columns: 4 + rows: 4 + units: ms + scale: 0.1 + transform: 0 + min: 0.1 + max: 8 + digits: 1 + rpmBinsDwell: + type: array + size: U08 + offset: 176 + shape: + columns: 4 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + mapBinsDwell: + type: array + size: U08 + offset: 180 + shape: + columns: 4 + rows: 0 + units: kPa + scale: 2 + transform: 0 + min: 0 + max: 511 + digits: 0 + - number: 13 + size: 0 + data: + outputInverted0: + type: bits + size: U08 + offset: 0 + address: + - 0 + - 0 + values: + - Active high + - Active low + outputInverted1: + type: bits + size: U08 + offset: 0 + address: + - 1 + - 1 + values: + - Active high + - Active low + outputInverted2: + type: bits + size: U08 + offset: 0 + address: + - 2 + - 2 + values: + - Active high + - Active low + outputInverted3: + type: bits + size: U08 + offset: 0 + address: + - 3 + - 3 + values: + - Active high + - Active low + outputInverted4: + type: bits + size: U08 + offset: 0 + address: + - 4 + - 4 + values: + - Active high + - Active low + outputInverted5: + type: bits + size: U08 + offset: 0 + address: + - 5 + - 5 + values: + - Active high + - Active low + outputInverted6: + type: bits + size: U08 + offset: 0 + address: + - 6 + - 6 + values: + - Active high + - Active low + outputInverted7: + type: bits + size: U08 + offset: 0 + address: + - 7 + - 7 + values: + - Active high + - Active low + unused12_1: + type: scalar + size: U08 + offset: 1 + units: bits + scale: 1 + transform: 0 + min: 0 + max: 0 + digits: .nan + outputPin: + type: array + size: U08 + offset: 2 + shape: + columns: 8 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + outputPin0: + type: bits + size: U08 + offset: 2 + address: + - 0 + - 7 + values: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + outputPin1: + type: bits + size: U08 + offset: 3 + address: + - 0 + - 7 + values: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + outputPin2: + type: bits + size: U08 + offset: 4 + address: + - 0 + - 7 + values: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + outputPin3: + type: bits + size: U08 + offset: 5 + address: + - 0 + - 7 + values: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + outputPin4: + type: bits + size: U08 + offset: 6 + address: + - 0 + - 7 + values: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + outputPin5: + type: bits + size: U08 + offset: 7 + address: + - 0 + - 7 + values: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + outputPin6: + type: bits + size: U08 + offset: 8 + address: + - 0 + - 7 + values: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + outputPin7: + type: bits + size: U08 + offset: 9 + address: + - 0 + - 7 + values: + - Disabled + - INVALID + - INVALID + - '3' + - '4' + - '5' + - '6' + - '7' + - '8' + - '9' + - '10' + - '11' + - '12' + - '13' + - '14' + - '15' + - '16' + - '17' + - '18' + - '19' + - '20' + - '21' + - '22' + - '23' + - '24' + - '25' + - '26' + - '27' + - '28' + - '29' + - '30' + - '31' + - '32' + - '33' + - '34' + - '35' + - '36' + - '37' + - '38' + - '39' + - '40' + - '41' + - '42' + - '43' + - '44' + - '45' + - '46' + - '47' + - '48' + - '49' + - '50' + - '51' + - '52' + - '53' + - INVALID + - A8 + - A9 + - A10 + - A11 + - A12 + - A13 + - A14 + - A15 + - INVALID + outputDelay: + type: array + size: U08 + offset: 10 + shape: + columns: 8 + rows: 0 + units: S + scale: 0.1 + transform: 0 + min: 0 + max: 25.5 + digits: 1 + firstDataIn: + type: array + size: U08 + offset: 18 + shape: + columns: 8 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 65535 + digits: 0 + firstDataIn0: + type: bits + size: U08 + offset: 18 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + firstDataIn1: + type: bits + size: U08 + offset: 19 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + firstDataIn2: + type: bits + size: U08 + offset: 20 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + firstDataIn3: + type: bits + size: U08 + offset: 21 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + firstDataIn4: + type: bits + size: U08 + offset: 22 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + firstDataIn5: + type: bits + size: U08 + offset: 23 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + firstDataIn6: + type: bits + size: U08 + offset: 24 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + firstDataIn7: + type: bits + size: U08 + offset: 25 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + secondDataIn: + type: array + size: U08 + offset: 26 + shape: + columns: 8 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 65535 + digits: 0 + secondDataIn0: + type: bits + size: U08 + offset: 26 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + secondDataIn1: + type: bits + size: U08 + offset: 27 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + secondDataIn2: + type: bits + size: U08 + offset: 28 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + secondDataIn3: + type: bits + size: U08 + offset: 29 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + secondDataIn4: + type: bits + size: U08 + offset: 30 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + secondDataIn5: + type: bits + size: U08 + offset: 31 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + secondDataIn6: + type: bits + size: U08 + offset: 32 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + secondDataIn7: + type: bits + size: U08 + offset: 33 + address: + - 0 + - 7 + values: + - seconds + - status bits + - Engine status + - syncLossCounter + - MAP (Kpa) + - INVALID + - IAT / MAT + - coolant + - batCorrection + - battery voltage x10 + - O2 + - egoCorrection + - iatCorrection + - wueCorrection + - RPM + - INVALID + - AEamount/2 + - GammaE + - INVALID + - VE1 + - VE2 + - AFR Target + - TPS DOT + - Advance + - TPS + - loopsPerSecond + - INVALID + - free RAM + - INVALID + - boostTarget/2 + - Boost duty + - spark bits + - RPM DOT + - INVALID + - ethanolPct + - flexCorrection + - flexIgnCorrection + - idle Load + - testOutputs + - O2_2 + - baro + - Aux in 1 + - INVALID + - Aux in 2 + - INVALID + - Aux in 3 + - INVALID + - Aux in 4 + - INVALID + - Aux in 5 + - INVALID + - Aux in 6 + - INVALID + - Aux in 7 + - INVALID + - Aux in 8 + - INVALID + - Aux in 9 + - INVALID + - Aux in 10 + - INVALID + - Aux in 11 + - INVALID + - Aux in 12 + - INVALID + - Aux in 13 + - INVALID + - Aux in 14 + - INVALID + - Aux in 15 + - INVALID + - Aux in 16 + - INVALID + - TPS ADC + - Error code + - Pulsewidth 1 + - INVALID + - Pulsewidth 2 + - INVALID + - Pulsewidth 3 + - INVALID + - Pulsewidth 4 + - INVALID + - status bits 3 + - engineProtectStatus + - Fuel load + - INVALID + - Ignition load + - INVALID + - dwell + - INVALID + - idle C.L. target + - MAP DOT + - VVT1 Angle + - VVT1 Target + - VVT1 duty + - flexBoostCorrection + - INVALID + - baro Correction + - Current VE + - ASE Value + - vss + - INVALID + - Gear + - Fuel Pressure + - Oil Pressure + - INVALID + - WMI duty + - WMI empty + - VVT2 angle + - VVT2 target + - VVT2 duty + - outputs status + - Fuel temp + - Fuel temp correction + - Advance 1 + - Advance 2 + unused13_35_49: + type: array + size: U08 + offset: 34 + shape: + columns: 16 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 100 + digits: 0 + firstTarget: + type: array + size: S16 + offset: 50 + shape: + columns: 8 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: -32768 + max: 32768 + digits: 0 + secondTarget: + type: array + size: S16 + offset: 66 + shape: + columns: 8 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: -32768 + max: 32768 + digits: 0 + firstCompType0: + type: bits + size: U08 + offset: 82 + address: + - 0 + - 2 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + secondCompType0: + type: bits + size: U08 + offset: 82 + address: + - 3 + - 5 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + bitwise0: + type: bits + size: U08 + offset: 82 + address: + - 6 + - 7 + values: + - Disabled + - AND + - OR + - XOR + firstCompType1: + type: bits + size: U08 + offset: 83 + address: + - 0 + - 2 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + secondCompType1: + type: bits + size: U08 + offset: 83 + address: + - 3 + - 5 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + bitwise1: + type: bits + size: U08 + offset: 83 + address: + - 6 + - 7 + values: + - Disabled + - AND + - OR + - XOR + firstCompType2: + type: bits + size: U08 + offset: 84 + address: + - 0 + - 2 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + secondCompType2: + type: bits + size: U08 + offset: 84 + address: + - 3 + - 5 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + bitwise2: + type: bits + size: U08 + offset: 84 + address: + - 6 + - 7 + values: + - Disabled + - AND + - OR + - XOR + firstCompType3: + type: bits + size: U08 + offset: 85 + address: + - 0 + - 2 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + secondCompType3: + type: bits + size: U08 + offset: 85 + address: + - 3 + - 5 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + bitwise3: + type: bits + size: U08 + offset: 85 + address: + - 6 + - 7 + values: + - Disabled + - AND + - OR + - XOR + firstCompType4: + type: bits + size: U08 + offset: 86 + address: + - 0 + - 2 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + secondCompType4: + type: bits + size: U08 + offset: 86 + address: + - 3 + - 5 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + bitwise4: + type: bits + size: U08 + offset: 86 + address: + - 6 + - 7 + values: + - Disabled + - AND + - OR + - XOR + firstCompType5: + type: bits + size: U08 + offset: 87 + address: + - 0 + - 2 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + secondCompType5: + type: bits + size: U08 + offset: 87 + address: + - 3 + - 5 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + bitwise5: + type: bits + size: U08 + offset: 87 + address: + - 6 + - 7 + values: + - Disabled + - AND + - OR + - XOR + firstCompType6: + type: bits + size: U08 + offset: 88 + address: + - 0 + - 2 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + secondCompType6: + type: bits + size: U08 + offset: 88 + address: + - 3 + - 5 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + bitwise6: + type: bits + size: U08 + offset: 88 + address: + - 6 + - 7 + values: + - Disabled + - AND + - OR + - XOR + firstCompType7: + type: bits + size: U08 + offset: 89 + address: + - 0 + - 2 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + secondCompType7: + type: bits + size: U08 + offset: 89 + address: + - 3 + - 5 + values: + - '==' + - '!=' + - '>' + - '>=' + - < + - <= + - INVALID + - INVALID + bitwise7: + type: bits + size: U08 + offset: 89 + address: + - 6 + - 7 + values: + - Disabled + - AND + - OR + - XOR + candID: + type: array + size: U16 + offset: 90 + shape: + columns: 8 + rows: 0 + units: '' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + unused12_106_127: + type: array + size: U08 + offset: 106 + shape: + columns: 22 + rows: 0 + units: '%' + scale: 1 + transform: 0 + min: 0 + max: 255 + digits: 0 + - number: 14 + size: 0 + data: + advTable2: + type: array + size: U08 + offset: 0 + shape: + columns: 16 + rows: 16 + units: deg + scale: 1 + transform: -40 + min: -40 + max: 215 + digits: 0 + rpmBins3: + type: array + size: U08 + offset: 256 + shape: + columns: 16 + rows: 0 + units: RPM + scale: 100 + transform: 0 + min: 100 + max: 25500 + digits: 0 + mapBins2: + type: array + size: U08 + offset: 272 + shape: + columns: 16 + rows: 0 + units: '{ bitStringValue(algorithmUnits , ignAlgorithm) }' + scale: 2 + transform: 0 + min: 0 + max: '{ ign2LoadMax }' + digits: 0 +menus: + settings: + title: Settings + subMenus: + engine_constants: + title: Engine Constants + page: 0 + condition: '' + injChars: + title: Injector Characteristics + page: 0 + condition: '' + triggerSettings: + title: Trigger Setup + page: 0 + condition: '' + airdensity_curve: + title: IAT Density + page: 0 + condition: '' + baroFuel_curve: + title: Barometric Correction + page: 0 + condition: '' + reset_control: + title: Reset Control + page: 0 + condition: '' + std_separator: + title: '' + page: 0 + condition: '' + gaugeLimits: + title: Gauge Limits + page: 0 + condition: '' + io_summary: + title: I/O Summary + page: 0 + condition: '' + prgm_out_config: + title: Programmable outputs + page: 0 + condition: '' + tuning: + title: Tuning + subMenus: + std_realtime: + title: Realtime Display + page: 0 + condition: '' + accelEnrichments: + title: Acceleration Enrichment + page: 0 + condition: '' + egoControl: + title: AFR/O2 + page: 3 + condition: '' + RevLimiterS: + title: Engine Protection + page: 2 + condition: '' + flexFueling: + title: Flex Fuel + page: 2 + condition: '' + veTableDialog: + title: VE Table + page: 0 + condition: '' + sparkTbl: + title: Spark Table + page: 2 + condition: '' + afrTable1Tbl: + title: AFR Table + page: 5 + condition: '' + std_separator: + title: '' + page: 0 + condition: '' + fuelTable2Dialog: + title: Second fuel Table + page: 11 + condition: '' + sparkTable2Dialog: + title: Second spark Table + page: 14 + condition: '' + inj_trimad: + title: Sequential fuel trim (1-4) + page: 9 + condition: '' + inj_trimad_B: + title: Sequential fuel trim (5-8) + page: 9 + condition: '{ nFuelChannels >= 5 }' + stagingTableDialog: + title: Staged Injection + page: 10 + condition: '{ nCylinders <= 4 || injType == 1 }' + fuelTemp_curve: + title: Fuel Temp Correction + page: 0 + condition: '{ flexEnabled }' + spark: + title: Spark + subMenus: + sparkSettings: + title: Spark Settings + page: 0 + condition: '' + sparkTbl: + title: Spark Table + page: 2 + condition: '' + dwellSettings: + title: Dwell settings + page: 0 + condition: '' + dwell_correction_curve: + title: Dwell Compensation + page: 0 + condition: '' + dwell_map: + title: Dwell Map + page: 0 + condition: '{ useDwellMap }' + iat_retard_curve: + title: IAT Retard + page: 0 + condition: '' + clt_advance_curve: + title: Cold Advance + page: 0 + condition: '' + rotary_ignition: + title: Rotary Ignition + page: 0 + condition: '{ sparkMode == 4 }' + startupIdle: + title: Startup/Idle + subMenus: + crankPW: + title: Cranking Settings + page: 0 + condition: '' + primePW: + title: Priming Pulsewidth + page: 0 + condition: '' + warmup: + title: Warmup Enrichment + page: 0 + condition: '' + ASE: + title: Afterstart Enrichment (ASE) + page: 0 + condition: '' + std_separator: + title: '' + page: 0 + condition: '' + idleSettings: + title: Idle Control + page: 0 + condition: '' + iacClosedLoop_curve: + title: Idle - RPM targets + page: 7 + condition: >- + { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || + idleAdvEnabled >= 1 } + iacPwm_curve: + title: Idle - PWM Duty Cycle + page: 7 + condition: '{ iacAlgorithm == 2 || iacAlgorithm == 6}' + iacPwmCrank_curve: + title: Idle - PWM Cranking Duty Cycle + page: 7 + condition: '{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6}' + iacStep_curve: + title: Idle - Stepper Motor + page: 7 + condition: '{ iacAlgorithm == 4 }' + iacStepCrank_curve: + title: Idle - Stepper Motor Cranking + page: 7 + condition: '{ iacAlgorithm == 4 || iacAlgorithm == 5 }' + idleUpSettings: + title: Idle Up Settings + page: 0 + condition: >- + { iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 4 || + iacAlgorithm == 5 || iacAlgorithm == 6 } + idleAdvanceSettings: + title: Idle Advance Settings + page: 0 + condition: '' + accessories: + title: Accessories + subMenus: + fanSettings: + title: Thermo Fan + page: 0 + condition: '' + LaunchControl: + title: Launch Control / Flat Shift + page: 0 + condition: '' + fuelpump: + title: Fuel Pump + page: 0 + condition: '' + NitrousControl: + title: Nitrous + page: 0 + condition: '' + vssSettings: + title: VSS and Gear detection + page: 0 + condition: '' + std_separator: + title: '' + page: 0 + condition: '' + boostSettings: + title: Boost Control + page: 0 + condition: '' + boostLoad: + title: Boost Targets/Load + page: 8 + condition: '{ boostEnabled }' + vvtSettings: + title: VVT Control + page: 0 + condition: '' + vvtTbl: + title: VVT duty cycle + page: 8 + condition: '{ vvtEnabled }' + wmiSettings: + title: WMI Control + page: 0 + condition: '{ !vvtEnabled }' + wmiTbl: + title: WMI duty cycle + page: 8 + condition: '{ !vvtEnabled && wmiEnabled && wmiMode > 1 }' + tacho: + title: Tacho Output + page: 0 + condition: '' + can_serial3IO: + title: Canbus/Secondary Serial IO Interface + page: 0 + condition: '' + Canin_config: + title: External Auxillary Input Channel Configuration + page: 0 + condition: '{enable_secondarySerial || (enable_intcan && intcan_available)}' + Auxin_config: + title: Local Auxillary Input Channel Configuration + page: 0 + condition: '' + serial3IO: + title: Canbus/Secondary Serial IO Interface + page: 0 + condition: '' + pressureSensors: + title: Fuel/Oil pressure + page: 0 + condition: '' + tools: + title: Tools + subMenus: + mapCal: + title: Calibrate Pressure Sensors + page: 0 + condition: '' + batCal: + title: Calibrate Voltage Reading + page: 0 + condition: '' + std_ms2gentherm: + title: Calibrate Temperature Sensors + page: 0 + condition: '' + std_ms2geno2: + title: Calibrate AFR Sensor + page: 0 + condition: '{ egoType > 0 }' + sensorFilters: + title: Set analog sensor filters + page: 0 + condition: '' + dataLogging: + title: Data Logging + subMenus: {} + 3dTuningMaps: + title: 3D Tuning Maps + subMenus: + veTable1Map: + title: Fuel Table + page: 0 + condition: '' + sparkMap: + title: Spark Table + page: 3 + condition: '' + afrTable1Map: + title: AFR Target Table + page: 0 + condition: '' + hardwareTesting: + title: Hardware Testing + subMenus: + outputtest1: + title: Test Output Hardware + page: 0 + condition: '' + stm32cmd: + title: STM32 Commands + page: 0 + condition: '' + help: + title: Help + subMenus: + helpGeneral: + title: Speeduino Help + page: 0 + condition: '' +dialogs: + engine_constants_southwest: + title: Speeduino Board + panels: {} + fields: + - name: stoich + title: Stoichiometric ratio + - name: injLayout + title: Injector Layout + - name: pinLayout + title: Board Layout + - name: mapSample + title: MAP Sample method + engine_constants_west: + title: '' + panels: + std_injection: + layout: North + fields: [] + panels: {} + engine_constants_southwest: + fields: [] + panels: {} + fields: [] + engine_constants_northeast: + title: Oddfire Angles + panels: {} + fields: + - name: oddfire2 + title: Channel 2 angle + condition: '{ engineType == 1 }' + - name: oddfire3 + title: Channel 3 angle + condition: '{ engineType == 1 && nCylinders >= 3 }' + - name: oddfire4 + title: Channel 4 angle + condition: '{ engineType == 1 && nCylinders >= 4 }' + engine_constants_east: + title: '' + panels: + engine_constants_northeast: + layout: North + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: '' + engine_constants_warning: + title: '' + panels: {} + fields: + - name: _fieldText_ + title: >- + !Warning: The board you have selected may not have enough channels for + sequential fuel! + engine_constants: + title: '' + layout: border + panels: + engine_constants_warning: + layout: North + fields: [] + panels: {} + engine_constants_west: + layout: West + fields: [] + panels: {} + engine_constants_east: + layout: East + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/Engine_Constants + flexFuelSettings: + title: '' + layout: yAxis + panels: {} + fields: + - name: flexEnabled + title: Flex Fuel Sensor + - name: flexFreqLow + title: Low (E0) + condition: '{ flexEnabled }' + - name: flexFreqHigh + title: High (E100) + condition: '{ flexEnabled }' + flexFuelWest: + title: '' + panels: + flex_fuel_curve: + condition: '{ flexEnabled }' + fields: [] + panels: {} + flex_adv_curve: + condition: '{ flexEnabled }' + fields: [] + panels: {} + fields: [] + flexFuelEast: + title: '' + panels: + flex_boost_curve: + condition: '{ flexEnabled && boostEnabled }' + fields: [] + panels: {} + fields: [] + flexCurves: + title: '' + layout: xAxis + panels: + flexFuelWest: + layout: West + fields: [] + panels: {} + flexFuelEast: + layout: East + fields: [] + panels: {} + fields: [] + flexFueling: + title: Fuel Sensor Settings + layout: border + panels: + flexFuelSettings: + layout: North + fields: [] + panels: {} + flexCurves: + layout: South + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/Flex_Fuel + knock_windows: + title: Knock Windows + layout: xAxis + panels: + knock_window_angle_curve: + layout: West + condition: '{ knock_mode }' + fields: [] + panels: {} + knock_window_duration_curve: + layout: East + condition: '{ knock_mode }' + fields: [] + panels: {} + fields: [] + knock_settings_west: + title: Settings + layout: yAxis + panels: {} + fields: + - name: knock_mode + title: Knock Mode + - name: knock_pin + title: Knock Pin + condition: '{ knock_mode }' + - name: knock_trigger + title: Knock active when pin is + condition: '{ knock_mode == 1 }' + - name: knock_pullup + title: Use pullup + condition: '{ knock_mode == 1 }' + knock_settings_east: + title: Detection and Response + panels: {} + fields: + - name: _fieldText_ + title: '#Detection' + - name: knock_count + title: Knock count required + condition: '{ knock_mode == 1}' + - name: knock_threshold + title: Knock threshold required + condition: '{ knock_mode == 2}' + - name: knock_maxMAP + title: Maximum MAP + condition: '{ knock_mode }' + - name: knock_maxRPM + title: Maximum RPM + condition: '{ knock_mode }' + - name: _fieldText_ + title: '#Retard' + - name: knock_maxRetard + title: Total retard + condition: '{ knock_mode }' + - name: knock_firstStep + title: First step size + condition: '{ knock_mode }' + - name: knock_stepSize + title: Other step size + condition: '{ knock_mode }' + - name: knock_stepTime + title: Step time + condition: '{ knock_mode }' + - name: _fieldText_ + title: '#Recovery' + - name: knock_duration + title: Retard duration + condition: '{ knock_mode }' + - name: knock_recoveryStepTime + title: Recovery step time + condition: '{ knock_mode }' + - name: knock_recoveryStep + title: Recovery step size + condition: '{ knock_mode }' + knock_settings_top: + title: '' + layout: xAxis + panels: + knock_settings_west: + layout: West + fields: [] + panels: {} + knock_settings_east: + layout: East + fields: [] + panels: {} + fields: [] + knockSettings: + title: '' + layout: border + panels: + knock_settings_top: + layout: North + fields: [] + panels: {} + knock_windows: + layout: South + fields: [] + panels: {} + fields: [] + help: http://speeduino.com/wiki/index.php/Knock + vss_gear_1: + title: '' + layout: xAxis + panels: {} + fields: + - name: vssRatio1 + title: Speed ratio 1 + vss_gear_2: + title: '' + layout: xAxis + panels: {} + fields: + - name: vssRatio2 + title: Speed ratio 2 + vss_gear_3: + title: '' + layout: xAxis + panels: {} + fields: + - name: vssRatio3 + title: Speed ratio 3 + vss_gear_4: + title: '' + layout: xAxis + panels: {} + fields: + - name: vssRatio4 + title: Speed ratio 4 + vss_gear_5: + title: '' + layout: xAxis + panels: {} + fields: + - name: vssRatio5 + title: Speed ratio 5 + vss_gear_6: + title: '' + layout: xAxis + panels: {} + fields: + - name: vssRatio6 + title: Speed ratio 6 + vss_gear_detection: + title: Gear Detection + layout: yAxis + panels: + vss_gear_1: + fields: [] + panels: {} + vss_gear_2: + fields: [] + panels: {} + vss_gear_3: + fields: [] + panels: {} + vss_gear_4: + fields: [] + panels: {} + vss_gear_5: + fields: [] + panels: {} + vss_gear_6: + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: After setting 'Pulses per km/mile' above + - name: _fieldText_ + title: Drive in each gear (any speed) and press appropriate button + vss_calibration: + title: VSS Calibration + panels: {} + fields: + - name: vssPulsesPerKm + title: Pulses Per KM + condition: '{ vssMode > 1 }' + - name: vssSmoothing + title: Smoothing Factor + condition: '{ vssMode > 1 }' + vssSettings: + title: '' + layout: yAxis + panels: + vss_calibration: + fields: [] + panels: {} + vss_gear_detection: + fields: [] + panels: {} + fields: + - name: vssMode + title: VSS Input Mode + - name: vssPin + title: VSS Pin + condition: '{ vssMode > 1 }' + help: https://wiki.speeduino.com/en/configuration/VSS + tacho: + title: Tacho + panels: {} + fields: + - name: tachoPin + title: Output pin + - name: tachoDiv + title: Output speed + - name: tachoDuration + title: Pulse duration + - name: useTachoSweep + title: Tacho sweep on boot + - name: tachoSweepMaxRPM + title: Tacho sweep Max RPM + condition: '{ useTachoSweep }' + accelEnrichments_aeSettings: + title: '' + panels: {} + fields: + - name: aeMode + title: Enrichment mode + - name: aeApplyMode + title: Enrichment method + - name: taeThresh + title: TPSdot Threshold + condition: '{ aeMode == 0 }' + - name: maeThresh + title: MAPdot Threshold + condition: '{ aeMode == 1 }' + - name: aeTime + title: Accel Time + - name: aeTaperMin + title: Taper Start RPM + - name: aeTaperMax + title: Taper End RPM + accelEnrichments_coldAdj: + title: Acceleration Enrichment cold adjustment + panels: {} + fields: + - name: aeColdPct + title: Cold adjustment + - name: aeColdTaperMin + title: Cold adjustment taper start temperature + - name: aeColdTaperMax + title: Cold adjustment taper end temperature + accelEnrichments_south: + title: Decelleration Fuel Cutoff (DFCO) + panels: {} + fields: + - name: dfcoEnabled + title: Enabled + - name: dfcoTPSThresh + title: TPS Threshold + condition: '{ dfcoEnabled }' + - name: dfcoMinCLT + title: Minimum engine temperature + condition: '{ dfcoEnabled }' + - name: dfcoDelay + title: Cutoff delay + condition: '{ dfcoEnabled }' + - name: dfcoRPM + title: Cutoff RPM + condition: '{ dfcoEnabled }' + - name: dfcoHyster + title: RPM Hysteresis + condition: '{ dfcoEnabled }' + accelEnrichments_north_south: + title: '' + panels: {} + fields: [] + accelEnrichments_north: + title: '' + layout: xAxis + panels: + time_accel_tpsdot_curve: + condition: '{ aeMode == 0 }' + fields: [] + panels: {} + time_accel_mapdot_curve: + condition: '{ aeMode == 1 }' + fields: [] + panels: {} + fields: [] + accelEnrichments_center: + title: Acceleration Enrichment + layout: xAxis + panels: + accelEnrichments_aeSettings: + fields: [] + panels: {} + accelEnrichments_coldAdj: + fields: [] + panels: {} + fields: [] + accelEnrichments: + title: Acceleration Enrichment + panels: + accelEnrichments_north: + layout: North + fields: [] + panels: {} + accelEnrichments_north_south: + layout: Center + fields: [] + panels: {} + accelEnrichments_center: + layout: Center + fields: [] + panels: {} + accelEnrichments_south: + layout: South + fields: [] + panels: {} + fields: [] + help: http://speeduino.com/wiki/index.php/Acceleration_Wizard + veTableDialog_north: + title: '' + panels: + veTable1Tbl: + fields: [] + panels: {} + fields: [] + veTableDialog_south: + title: '' + panels: {} + fields: + - name: multiplyMAP + title: Multiply VE value by MAP ratio + - name: includeAFR + title: Multiply by ratio of AFR to Target AFR + condition: '{ egoType == 2 && !incorporateAFR || (incorporateAFR==includeAFR) }' + - name: incorporateAFR + title: Multiply by ratio of stoich AFR/target AFR (incorporate AFR) + condition: '{ !includeAFR || (incorporateAFR==includeAFR) }' + veTableDialog: + title: VE Table + panels: + veTableDialog_north: + layout: North + fields: [] + panels: {} + veTableDialog_south: + layout: South + fields: [] + panels: {} + fields: [] + fuelTable2Dialog_switch: + title: Switch Conditions + layout: xAxis + panels: {} + fields: + - name: fuel2SwitchVariable + title: 'Use secondary table when:' + - name: fuel2SwitchValue + title: 'is greater than:' + fuelTable2Dialog_input: + title: Input Options + layout: yAxis + panels: {} + fields: + - name: fuel2InputPin + title: Use secondary table when pin + - name: fuel2InputPolarity + title: Is + - name: fuel2InputPullup + title: Use internal pullup on pin + condition: '{ fuel2InputPolarity == 0 }' + fuelTable2Dialog_north: + title: '' + panels: + fuelTable2Dialog_switch: + condition: '{ fuel2Mode == 3 }' + fields: [] + panels: {} + fuelTable2Dialog_input: + condition: '{ fuel2Mode == 4 }' + fields: [] + panels: {} + fields: + - name: fuel2Mode + title: Secondary fuel table mode + - name: fuel2Algorithm + title: Load source + condition: '{ fuel2Mode }' + fuelTable2Dialog_south: + title: '' + panels: + fuelTable2Tbl: + fields: [] + panels: {} + fields: [] + fuelTable2Dialog: + title: Fuel Table 2 + panels: + fuelTable2Dialog_north: + layout: North + fields: [] + panels: {} + fuelTable2Dialog_south: + layout: South + condition: '{ fuel2Mode }' + fields: [] + panels: {} + fields: [] + sparkTable2Dialog_switch: + title: Switch Conditions + layout: xAxis + panels: {} + fields: + - name: spark2SwitchVariable + title: 'Use secondary table when:' + - name: spark2SwitchValue + title: 'is greater than:' + sparkTable2Dialog_input: + title: Input Options + layout: yAxis + panels: {} + fields: + - name: spark2InputPin + title: Use secondary table when pin + - name: spark2InputPolarity + title: Is + - name: spark2InputPullup + title: Use internal pullup on pin + condition: '{ spark2InputPolarity == 0 }' + sparkTable2Dialog_north: + title: '' + panels: + sparkTable2Dialog_switch: + condition: '{ spark2Mode == 3 }' + fields: [] + panels: {} + sparkTable2Dialog_input: + condition: '{ spark2Mode == 4 }' + fields: [] + panels: {} + fields: + - name: spark2Mode + title: Secondary advance table mode + - name: spark2Algorithm + title: Load source + condition: '{ spark2Mode }' + sparkTable2Dialog_south: + title: '' + panels: + spark2Tbl: + fields: [] + panels: {} + fields: [] + sparkTable2Dialog: + title: Spark Table 2 + panels: + sparkTable2Dialog_north: + layout: North + fields: [] + panels: {} + sparkTable2Dialog_south: + layout: South + condition: '{ spark2Mode }' + fields: [] + panels: {} + fields: [] + injAngleDialog: + title: Injector close angles + panels: + injector_timing_curve: + fields: [] + panels: {} + fields: [] + injOpenTimeDialog: + title: Injector opening time + panels: + injector_voltage_curve: + fields: [] + panels: {} + fields: + - name: injOpen + title: Injector Open Time + - name: battVCorMode + title: Battery Voltage Correction Mode + injChars: + title: Injector Characteristics + panels: + injOpenTimeDialog: + fields: [] + panels: {} + injAngleDialog: + fields: [] + panels: {} + fields: + - name: dutyLim + title: Injector Duty Limit + help: https://wiki.speeduino.com/en/configuration/Injector_Characteristics + egoControl: + title: '' + panels: {} + fields: + - name: egoType + title: Sensor Type + - name: _fieldText_ + title: '#Please ensure you calibrate your O2 sensor in the Tools menu' + - name: egoAlgorithm + title: Algorithm + condition: '{ egoType }' + - name: egoCount + title: Ignition Events per Step + condition: '{ egoType && (egoAlgorithm < 3) }' + - name: egoLimit + title: Controller Auth +/- + condition: '{ egoType && (egoAlgorithm < 3) }' + - name: ego_min + title: 'Only correct above:' + condition: '{ egoType && (egoAlgorithm < 3) }' + - name: ego_max + title: 'and correct below:' + condition: '{ egoType && (egoAlgorithm < 3) }' + - name: egoTemp + title: Active Above Coolant + condition: '{ egoType && (egoAlgorithm < 3) }' + - name: egoRPM + title: Active Above RPM + condition: '{ egoType && (egoAlgorithm < 3) }' + - name: egoTPSMax + title: Active Below TPS + condition: '{ egoType && (egoAlgorithm < 3) }' + - name: ego_sdelay + title: EGO delay after start + condition: '{ (egoAlgorithm < 3) }' + - name: egoKP + title: PID Proportional Gain + condition: '{ egoType && (egoAlgorithm == 2) }' + - name: egoKI + title: PID Integral + condition: '{ egoType && (egoAlgorithm == 2) }' + - name: egoKD + title: PID Derivative + condition: '{ egoType && (egoAlgorithm == 2) }' + help: https://wiki.speeduino.com/en/configuration/O2 + fanSettings: + title: Fan Settings + layout: '7' + panels: {} + fields: + - name: fanEnable + title: Fan Mode + - name: fanWhenOff + title: Allow fan when off + condition: '{ fanEnable }' + - name: fanWhenCranking + title: Allow fan when cranking + condition: '{ fanEnable }' + - name: fanPin + title: Fan output pin + condition: '{ fanEnable }' + - name: fanInv + title: Fan Output Inverted + condition: '{ fanEnable }' + - name: fanSP + title: Fan switching temperature + condition: '{ fanEnable }' + - name: fanHyster + title: Fan hysteresis + condition: '{ fanEnable }' + help: https://wiki.speeduino.com/en/configuration/Thermo_fan + stepper_idle: + title: Stepper Idle + panels: {} + fields: + - name: iacStepTime + title: Step time (ms) + condition: '{ iacAlgorithm == 4 || iacAlgorithm == 5 }' + - name: iacCoolTime + title: Cool time (ms) + condition: '{ iacAlgorithm == 4 || iacAlgorithm == 5 }' + - name: iacStepHome + title: Home steps + condition: '{ iacAlgorithm == 4 || iacAlgorithm == 5 }' + - name: iacStepHyster + title: Minimum Steps + condition: '{ iacAlgorithm == 4 || iacAlgorithm == 5 }' + - name: iacMaxSteps + title: Don't exceed + condition: '{ iacAlgorithm == 4 || iacAlgorithm == 5 }' + - name: iacStepperInv + title: Stepper Inverted + condition: '{ iacAlgorithm == 4 || iacAlgorithm == 5 }' + pwm_idle: + title: PWM Idle + panels: {} + fields: + - name: iacChannels + title: Number of outputs + condition: '{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 }' + - name: idleFreq + title: Idle valve frequency + condition: '{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 }' + - name: iacPWMdir + title: Idle valve direction + condition: '{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 }' + - name: iacPWMrun + title: Run before start + condition: '{ iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 }' + closedloop_idle: + title: Closed loop Idle + panels: {} + fields: + - name: idleKP + title: P + condition: '{ iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6}' + - name: idleKI + title: I + condition: '{ iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6}' + - name: idleKD + title: D + condition: '{ iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6}' + - name: iacCLminDuty + title: Minimum valve duty + condition: '{ iacAlgorithm == 3 || iacAlgorithm == 6}' + - name: iacCLmaxDuty + title: Maximum valve duty + condition: '{ iacAlgorithm == 3 || iacAlgorithm == 6}' + - name: iacTPSlimit + title: Integeral reset above TPS + condition: '{ iacAlgorithm == 6 }' + - name: iacRPMlimitHysteresis + title: Integeral reset RPM Hysteresis + condition: '{ iacAlgorithm == 6 }' + idleSettings: + title: Idle Settings + panels: + pwm_idle: + fields: [] + panels: {} + stepper_idle: + fields: [] + panels: {} + closedloop_idle: + fields: [] + panels: {} + fields: + - name: iacAlgorithm + title: Idle control type + - name: idleTaperTime + title: Crank to run taper + condition: '{ iacAlgorithm == 2 || iacAlgorithm == 4 }' + - name: _fieldText_ + title: '#Fast Idle' + - name: iacFastTemp + title: Fast idle temp + condition: '{ iacAlgorithm == 1 }' + help: https://wiki.speeduino.com/en/configuration/Idle + idleUpInputSettingsPanel: + title: Idle Up Input Settings + layout: yAxis + panels: {} + fields: + - name: idleUpEnabled + title: Idle Up Enabled + - name: idleUpPin + title: Idle Up Pin + condition: '{ idleUpEnabled }' + - name: idleUpPolarity + title: Idle Up Pin Polarity + condition: '{ idleUpEnabled }' + - name: idleUpAdder + title: Idle Up Amount + condition: '{ idleUpEnabled }' + idleUpOutputSettingsPanel: + title: Idle Up Output Settings + layout: yAxis + panels: {} + fields: + - name: idleUpOutputEnabled + title: Idle Up Output Enabled + condition: '{ idleUpEnabled }' + - name: idleUpOutputInv + title: Idle Up Output Inverted + - name: idleUpOutputPin + title: Idle Up Output Pin + condition: '{ idleUpEnabled && idleUpOutputEnabled }' + idleUpSettings: + title: Idle Up Settings + panels: + idleUpInputSettingsPanel: + fields: [] + panels: {} + idleUpOutputSettingsPanel: + fields: [] + panels: {} + fields: [] + fuelpump: + title: Fuel pump + panels: {} + fields: + - name: fuelPumpPin + title: Fuel pump pin + - name: fpPrime + title: Fuel pump prime duration + crankingEnrichDialog: + title: Cranking Enrichment + layout: yAxis + panels: + cranking_enrich_curve: + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: '#Note' + - name: _fieldText_ + title: >- + Values are specified as modifiers to the normal fueling. Eg 100% = No + change. + crankingIgnOptions: + title: Cranking Timing + layout: yAxis + panels: {} + fields: + - name: CrankAng + title: Cranking advance Angle + condition: '{ ignCranklock == 0 }' + - name: ignBypassEnable + title: Cranking bypass + - name: ignBypassPin + title: Bypass output pin + - name: ignCranklock + title: Fix cranking timing with trigger + condition: >- + { TrigPattern == 1 || TrigPattern == 4 || TrigPattern == 10 || + TrigPattern == 9 } + crankingOptions: + title: '' + layout: yAxis + panels: {} + fields: + - name: crankRPM + title: Cranking RPM (Max) + - name: tpsflood + title: Flood Clear level + - name: fpPrime + title: Fuel pump prime duration + - name: primingDelay + title: Injectors priming delay + - name: crankingEnrichTaper + title: Cranking enrichment taper time + primePW: + title: Priming Pulsewidth + panels: + priming_pw_curve: + fields: [] + panels: {} + fields: [] + crankPW: + title: Cranking Settings + layout: yAxis + panels: + crankingOptions: + layout: North + fields: [] + panels: {} + crankingEnrichDialog: + layout: Center + fields: [] + panels: {} + crankingIgnOptions: + layout: South + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/Cranking + ASE_amount: + title: Enrichment amount (%) + layout: yAxis + panels: + afterstart_enrichment_curve: + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: Defines the fuel enrichment percentage after start. + - name: _fieldText_ + title: This is needed to keep engine running after start + - name: _fieldText_ + title: Common values are 5% when engine is hot to 50% when engine is cold. + ASE_time: + title: Duration (s) + layout: yAxis + panels: + afterstart_enrichment_time: + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: How long time the After Start Enrichment is applied in seconds. + - name: _fieldText_ + title: >- + Usually this is varies from 1-2s when engine is hot up to 20s on a + cold engine. + - name: aseTaperTime + title: Transition time to disable + ASE: + title: Afterstart Enrichment(ASE) + layout: yAxis + panels: + ASE_amount: + fields: [] + panels: {} + ASE_time: + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: '#Time and duration curves share common coolant values' + triggerSettings: + title: Trigger Settings + layout: '4' + panels: {} + fields: + - name: TrigPattern + title: Trigger Pattern + - name: numTeeth + title: Primary base teeth + condition: >- + { TrigPattern == 0 || TrigPattern == 2 || TrigPattern == 11 || + TrigPattern == 18 || TrigPattern == 19 } + - name: TrigSpeed + title: Primary trigger speed + condition: '{ TrigPattern == 0 }' + - name: missingTeeth + title: Missing teeth + condition: '{ TrigPattern == 0 }' + - name: TrigAngMul + title: Trigger angle multiplier + condition: '{ TrigPattern == 11 }' + - name: TrigAng + title: Trigger Angle + - name: _fieldText_ + title: This number represents the angle ATDC when + - name: _fieldText_ + title: 'tooth #1 passes the primary sensor.' + - name: _fieldText_ + title: '' + - name: SkipCycles + title: Skip Revolutions + - name: _fieldText_ + title: 'Note: This is the number of revolutions that will be skipped during' + - name: _fieldText_ + title: cranking before the injectors and coils are fired + - name: TrigEdge + title: Trigger edge + - name: TrigEdgeSec + title: Secondary trigger edge + condition: >- + { (TrigPattern == 0 && TrigSpeed == 0 && trigPatternSec != 2) || + TrigPattern == 2 || TrigPattern == 9 || TrigPattern == 12 || + TrigPattern == 18 || TrigPattern == 19 || TrigPattern == 20 } + - name: _fieldText_ + title: Missing Tooth Secondary type + - name: _fieldText_ + title: Level for 1st phase + - name: TrigFilter + title: Trigger Filter + condition: '{ TrigPattern != 13 }' + - name: useResync + title: Re-sync every cycle + condition: >- + { TrigPattern == 2 || TrigPattern == 4 || TrigPattern == 7 || + TrigPattern == 12 || TrigPattern == 9 || TrigPattern == 13 || + TrigPattern == 18 || TrigPattern == 19 } + help: https://wiki.speeduino.com/en/decoders + lockSparkSettings: + title: Locked timing + panels: {} + fields: + - name: fixAngEnable + title: Enabled Fixed/Locked timing + - name: FixAng + title: Fixed Angle + condition: '{ fixAngEnable }' + - name: _fieldText_ + title: >- + #Note: During cranking the fixed/locked timing angle is overriden by + the Cranking advance angle value above + newIgnitionMode: + title: New Ignition Mode + panels: {} + fields: + - name: _fieldText_ + title: This option will improve accuracy on most compatible triggers + - name: _fieldText_ + title: However if timing issues are encountered, please disable this + - name: perToothIgn + title: Use new ignition mode + sparkSettings: + title: Spark Settings + layout: '4' + panels: + lockSparkSettings: + fields: [] + panels: {} + newIgnitionMode: + condition: >- + {TrigPattern == 0 || TrigPattern == 1 || TrigPattern == 2 || + TrigPattern == 3 || TrigPattern == 4 || TrigPattern == 9 || + TrigPattern == 12 || TrigPattern == 13 || TrigPattern == 16 || + TrigPattern == 18 || TrigPattern == 19} + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: >- + !Warning: The board you have selected may not have enough channels for + sequential ignition! + - name: ignAlgorithm + title: Ignition load source + - name: sparkMode + title: Spark output mode + - name: CrankAng + title: Cranking advance Angle + - name: IgInv + title: Spark Outputs triggers + help: https://wiki.speeduino.com/en/configuration/Spark_Settings + dwellSettings: + title: Dwell Settings + layout: '4' + panels: {} + fields: + - name: dwellcrank + title: Cranking dwell + - name: useDwellMap + title: Use dwell map + - name: dwellrun + title: Running dwell + condition: '{ useDwellMap == 0 }' + - name: sparkDur + title: Spark duration + - name: _fieldText_ + title: '' + - name: _fieldText_ + title: '#Note' + - name: _fieldText_ + title: The above times are for 12V. Voltage correction + - name: _fieldText_ + title: is applied. At higher voltages the time is reduced + - name: _fieldText_ + title: and when low it is increased + - name: _fieldText_ + title: '' + - name: _fieldText_ + title: Overdwell protection + - name: useDwellLim + title: Use Overdwell protection + - name: dwellLim + title: Max dwell time + condition: '{ useDwellLim }' + - name: _fieldText_ + title: 'Note: Set the maximum dwell time at least 3ms above' + - name: _fieldText_ + title: your desired dwell time (Including cranking) + - name: idleAdvEnabled + title: Idle advance mode + - name: idleAdvAlgorithm + title: Idle detect mode + condition: '{ idleAdvEnabled >= 1 }' + - name: idleAdvDelay + title: Delay before idle control starts (s) + condition: '{ idleAdvEnabled >= 1 }' + - name: idleAdvRPM + title: Active Below RPM + condition: '{ idleAdvEnabled >= 1 }' + - name: idleAdvTPS + title: Active Below TPS + condition: '{ idleAdvEnabled >= 1 && idleAdvAlgorithm == 0 }' + - name: idleAdvVss + title: Active Below VSS + condition: '{ idleAdvEnabled >= 1 && vssMode > 0 }' + - name: CTPSEnabled + title: Closed Throttle Sensor Enabled + condition: '{ idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 }' + - name: CTPSPin + title: Closed Throttle Sensor Pin + condition: '{ idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 && CTPSEnabled == 1 }' + - name: CTPSPolarity + title: Closed Throttle Sensor Pin Polarity + condition: '{ idleAdvEnabled >= 1 && idleAdvAlgorithm == 1 && CTPSEnabled == 1 }' + help: https://wiki.speeduino.com/en/configuration/Dwell + idleAdvanceSettings: + title: Idle Advance Settings + layout: xAxis + panels: + idleAdvanceSettings_east: + fields: [] + panels: {} + idle_advance_curve: + condition: '{ idleAdvEnabled >= 1 }' + fields: [] + panels: {} + iacClosedLoop_curve: + condition: >- + { iacAlgorithm == 3 || iacAlgorithm == 5 || iacAlgorithm == 6 || + idleAdvEnabled >= 1 } + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/IdleAdvance + rotary_ignition: + title: Rotary Ignition + layout: '4' + panels: + rotaryTrailing_curve: + fields: [] + panels: {} + fields: + - name: rotaryType + title: Ignition Configuration + boostCut: + title: Boost Cut + panels: {} + fields: + - name: boostCutEnabled + title: Enable Boost limit + - name: boostLimit + title: Boost Limit + condition: '{ boostCutEnabled }' + boostLoad: + title: '' + panels: + boostTbl: + fields: [] + panels: {} + fields: + - name: boostType + title: Mode + - name: _fieldText_ + title: In open loop mode, the values in this table are duty cycle % + - name: _fieldText_ + title: In closed loop mode, the values are boost targets in kPa + revLimiterDialog: + title: Rev Limiter + panels: {} + fields: + - name: _fieldText_ + title: Rev Limiter + - name: _fieldText_ + title: '!Soft limiter only available with ignition cut' + - name: SoftRevLim + title: Soft rev limit + condition: '{ engineProtectType == 1 || engineProtectType == 3 }' + - name: SoftLimitMode + title: Soft limiter mode + condition: '{ engineProtectType == 1 || engineProtectType == 3 }' + - name: SoftLimRetard + title: Soft limit timing + condition: '{ engineProtectType == 1 || engineProtectType == 3 }' + - name: SoftLimMax + title: Soft limit max time + condition: '{ engineProtectType == 1 || engineProtectType == 3 }' + - name: HardRevLim + title: Hard Rev limit + oilPressureProtection: + title: Oil Pressure + panels: + oil_pressure_prot_curve: + condition: '{ oilPressureEnable && oilPressureProtEnbl }' + fields: [] + panels: {} + fields: + - name: oilPressureProtEnbl + title: Oil Pressure Protection + condition: '{ oilPressureEnable }' + engineProtectionWest: + title: '' + panels: + protectIndicatorPanel: + condition: '{ engineProtectType }' + fields: [] + panels: {} + fields: + - name: engineProtectType + title: Protection Cut + - name: engineProtectMaxRPM + title: Engine Protection RPM min + condition: '{ engineProtectType }' + - name: hardCutType + title: Cut method + condition: '{ engineProtectType == 1 || engineProtectType == 3 }' + RevLimiterS: + title: Engine Protection and Limiters + layout: xAxis + panels: + engineProtectionWest: + fields: [] + panels: {} + revLimiterDialog: + condition: '{ engineProtectType }' + fields: [] + panels: {} + boostCut: + condition: '{ engineProtectType }' + fields: [] + panels: {} + oilPressureProtection: + condition: '{ engineProtectType }' + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/Rev_Limits + clutchInput: + title: Clutch input + panels: {} + fields: + - name: launchPin + title: Clutch Input Pin + condition: '{ launchEnable || flatSEnable }' + - name: launchHiLo + title: Clutch enabled when signal is + condition: '{ launchEnable || flatSEnable }' + - name: lnchPullRes + title: Clutch Pullup Resistor + condition: '{ launchEnable || flatSEnable }' + - name: flatSArm + title: Launch / Flat Shift switch RPM + condition: '{ launchEnable || flatSEnable }' + LaunchControl: + title: Launch Control / Flat shift + layout: '6' + panels: + clutchInput: + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: Launch Control + - name: launchEnable + title: Enable Launch + - name: lnchCtrlTPS + title: TPS threshold + condition: '{ launchEnable }' + - name: lnchSoftLim + title: Soft rev limit + condition: '{ launchEnable }' + - name: lnchRetard + title: Soft limit absolute timing + condition: '{ launchEnable }' + - name: lnchHardLim + title: Hard rev limit + condition: '{ launchEnable }' + - name: lnchFuelAdd + title: Fuel adder during launch + condition: '{ launchEnable }' + - name: _fieldText_ + title: Flat Shift + - name: flatSEnable + title: Enable flat shift + - name: flatSSoftWin + title: Soft rev window + condition: '{ flatSEnable }' + - name: flatSRetard + title: Soft limit absolute timing + condition: '{ flatSEnable }' + help: https://wiki.speeduino.com/en/configuration/Launch_Flatshift + NitrousStage1: + title: Stage 1 + panels: {} + fields: + - name: n2o_stage1_pin + title: Nitrous Output Pin + - name: n2o_stage1_minRPM + title: Minimum Engage RPM + - name: n2o_stage1_maxRPM + title: Maximum Engage RPM + - name: n2o_stage1_adderMin + title: Fuel adder @ Min RPM + - name: n2o_stage1_adderMax + title: Fuel adder @ Max RPM + - name: n2o_stage1_retard + title: Ignition retard when active + NitrousStage2: + title: Stage 2 + panels: {} + fields: + - name: n2o_stage2_pin + title: Nitrous Output Pin + - name: n2o_stage2_minRPM + title: Minimum Engage RPM + - name: n2o_stage2_maxRPM + title: Maximum Engage RPM + - name: n2o_stage2_adderMin + title: Fuel adder @ Min RPM + - name: n2o_stage2_adderMax + title: Fuel adder @ Max RPM + - name: n2o_stage2_retard + title: Ignition retard when active + NitrousMain: + title: Settings + panels: {} + fields: + - name: n2o_enable + title: Nitrous Mode + - name: n2o_arming_pin + title: Arming Pin + condition: '{ n2o_enable > 0 }' + - name: n2o_pin_polarity + title: Nitrous is armed when pin is + condition: '{ n2o_enable > 0 }' + - name: n2o_minCLT + title: Minimum CLT + condition: '{ n2o_enable > 0 }' + - name: n2o_minTPS + title: Minimum TPS + condition: '{ n2o_enable > 0 }' + - name: n2o_maxMAP + title: Maximum MAP + condition: '{ n2o_enable > 0 }' + - name: n2o_maxAFR + title: Leanest AFR + condition: '{ n2o_enable > 0 }' + NitrousControl: + title: Nitrous + panels: + NitrousMain: + layout: North + fields: [] + panels: {} + NitrousStage1: + layout: West + condition: '{ n2o_enable > 0 }' + fields: [] + panels: {} + NitrousStage2: + layout: East + condition: '{ n2o_enable > 1 }' + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/Nitrous_Control + OLED: + title: OLED Display + layout: '2' + panels: {} + fields: + - name: display + title: Display Type + - name: _fieldText_ + title: '#Note' + - name: _fieldText_ + title: ECU must be rebooted after changing above value + - name: display1 + title: Field 1 + condition: '{ display }' + - name: display2 + title: Field 2 + condition: '{ display }' + - name: display3 + title: Field 3 + condition: '{ display }' + - name: display4 + title: Field 4 + condition: '{ display }' + batCal: + title: Calibrate voltage reading + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/Sensor_Calibration + mapCal: + title: Calibrate MAP + panels: {} + fields: + - name: _fieldText_ + title: '#MAP Sensor' + - name: mapMin + title: kPa At 0.0 Volts + - name: mapMax + title: kPa At 5.0 Volts + - name: legacyMAP + title: Use legacy MAP reading + - name: _fieldText_ + title: '#Baro Sensor' + - name: useExtBaro + title: Use external Baro sensor + - name: baroPin + title: Analog pin to use for ext. Baro sensor + condition: '{ useExtBaro }' + - name: baroMin + title: kPa At 0.0 Volts + condition: '{ useExtBaro }' + - name: baroMax + title: kPa At 5.0 Volts + condition: '{ useExtBaro }' + - name: _fieldText_ + title: '#EMAP Sensor' + - name: useEMAP + title: Use EMAP sensor + - name: EMAPPin + title: Analog pin to use for ext. Baro sensor + condition: '{ useEMAP }' + - name: EMAPMin + title: kPa At 0.0 Volts + condition: '{ useEMAP }' + - name: EMAPMax + title: kPa At 5.0 Volts + condition: '{ useEMAP }' + help: https://wiki.speeduino.com/en/configuration/Sensor_Calibration + sensorFilters: + title: Analog sensor filters + panels: {} + fields: + - name: _fieldText_ + title: >- + The values here set the amount of filtering to apply to each analog + input + - name: _fieldText_ + title: >- + Higher values result in stronger filtering, but slower response times + for readings + - name: _fieldText_ + title: '#Most setups will NOT require changes to the default filter values' + - name: _fieldText_ + title: '' + - name: fuelPressureEnable + title: Enabled + - name: fuelPressurePin + title: Pin + condition: '{ fuelPressureEnable }' + - name: fuelPressureMin + title: Pressure at 0v + condition: '{ fuelPressureEnable }' + - name: fuelPressureMax + title: Pressure at 5v + condition: '{ fuelPressureEnable }' + fuelPressureDialog: + title: Fuel Pressure + layout: xAxis + panels: + fuelPressureSettings: + fields: [] + panels: {} + fields: + - name: oilPressureEnable + title: Enabled + - name: oilPressurePin + title: Pin + condition: '{ oilPressureEnable }' + - name: oilPressureMin + title: Pressure at 0v + condition: '{ oilPressureEnable }' + - name: oilPressureMax + title: Pressure at 5v + condition: '{ oilPressureEnable }' + oilPressureDialog: + title: Oil Pressure + layout: xAxis + panels: + oilPressureSettings: + fields: [] + panels: {} + fields: [] + pressureSensors: + title: Pressure Transducers + panels: + fuelPressureDialog: + fields: [] + panels: {} + oilPressureDialog: + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/Sensor_Calibration + boostSettings: + title: Boost Control + panels: + boostCut: + fields: [] + panels: {} + fields: + - name: boostEnabled + title: Boost Control Enabled + - name: boostType + title: Boost control type + condition: '{ boostEnabled }' + - name: boostPin + title: Boost output pin + condition: '{ boostEnabled }' + - name: boostFreq + title: Boost solenoid freq. + condition: '{ boostEnabled }' + - name: boostMinDuty + title: Valve minimum duty cycle + condition: '{ boostEnabled && boostType == 1 }' + - name: boostMaxDuty + title: Valve maximum duty cycle + condition: '{ boostEnabled && boostType == 1 }' + - name: _fieldText_ + title: Closed Loop settings + - name: boostMode + title: Control mode + condition: '{ boostEnabled && boostType == 1 }' + - name: boostIntv + title: Control interval + condition: '{ boostEnabled && boostType == 1 }' + - name: boostKP + title: P + condition: '{ boostEnabled && boostMode && boostType == 1 }' + - name: boostKI + title: I + condition: '{ boostEnabled && boostMode && boostType == 1 }' + - name: boostKD + title: D + condition: '{ boostEnabled && boostMode && boostType == 1 }' + help: https://wiki.speeduino.com/en/configuration/Boost_Control + vvtClosedLoop: + title: Closed loop + panels: {} + fields: + - name: vvtCLUseHold + title: Hold duty used + - name: vvtCLholdDuty + title: Hold duty + condition: '{ vvtCLUseHold }' + - name: vvtCLAlterFuelTiming + title: Adjust fuel timing + - name: vvtCLMinAng + title: Cam angle @ 0% duty + - name: _fieldText_ + title: '' + - name: vvtCLKP + title: Proportional Gain + - name: vvtCLKI + title: Integral Gain + - name: vvtCLKD + title: Differential Gain + - name: vvtCLminDuty + title: Minimum valve duty + condition: '{ vvtEnabled && vvtMode == 2 }' + - name: vvtCLmaxDuty + title: Maximum valve duty + condition: '{ vvtEnabled && vvtMode == 2 }' + vvtSettings: + title: VVT Control + panels: + vvtClosedLoop: + condition: '{ vvtEnabled && vvtMode == 2 }' + fields: [] + panels: {} + fields: + - name: vvtEnabled + title: VVT Control Enabled + - name: vvtMode + title: VVT Mode + condition: '{ vvtEnabled }' + - name: _fieldText_ + title: >- + #Please note that close loop is currently experimental for Miata + patterns ONLY + - name: vvtLoadSource + title: Load source + condition: '{ vvtEnabled }' + - name: VVTasOnOff + title: Use VVT map as On / Off only + condition: '{ vvtEnabled && vvtMode != 2 }' + - name: vvt1Pin + title: VVT output pin + condition: '{ vvtEnabled }' + - name: vvtFreq + title: VVT solenoid freq. + condition: '{ vvtEnabled }' + - name: vvtPWMdir + title: Increased duty direction + condition: '{ vvtEnabled }' + wmiSettings: + title: WMI Control + panels: + wmi_adv_curve: + condition: '{ wmiEnabled && wmiAdvEnabled }' + fields: [] + panels: {} + fields: + - name: _fieldText_ + title: '#Experimental!' + - name: wmiEnabled + title: WMI Control Enabled + - name: wmiMode + title: WMI Mode + condition: '{ wmiEnabled }' + - name: wmiTPS + title: WMI min TPS + condition: '{ wmiEnabled }' + - name: wmiRPM + title: WMI min RPM + condition: '{ wmiEnabled }' + - name: wmiMAP + title: WMI min MAP + condition: '{ wmiEnabled }' + - name: wmiMAP2 + title: WMI max MAP + condition: '{ wmiEnabled && wmiMode == 1}' + - name: wmiIAT + title: WMI min IAT + condition: '{ wmiEnabled }' + - name: wmiOffset + title: WMI offset + condition: '{ wmiEnabled && wmiMode == 3}' + - name: _fieldText_ + title: '' + - name: vvt1Pin + title: WMI PWM output pin + condition: '{ wmiEnabled }' + - name: vvtFreq + title: WMI PWM freq. + condition: '{ wmiEnabled }' + - name: _fieldText_ + title: '' + - name: wmiEnabledPin + title: WMI enabled output pin + condition: '{ wmiEnabled }' + - name: _fieldText_ + title: '' + - name: wmiEmptyEnabled + title: WMI tank empty input + condition: '{ wmiEnabled }' + - name: wmiEmptyPin + title: WMI tank empty pin + condition: '{ wmiEnabled }' + - name: wmiEmptyPolarity + title: WMI tank empty polarity + condition: '{ wmiEnabled }' + - name: _fieldText_ + title: '' + - name: wmiIndicatorEnabled + title: WMI tank indicator output + condition: '{ wmiEnabled }' + - name: wmiIndicatorPin + title: WMI tank indicator pin + condition: '{ wmiEnabled }' + - name: wmiIndicatorPolarity + title: WMI tank indicator polarity + condition: '{ wmiEnabled }' + - name: _fieldText_ + title: '' + - name: wmiAdvEnabled + title: Iginition advance correction + condition: '{ wmiEnabled }' + warmup: + title: Warmup Enrichment (WUE) - Percent Multiplier + panels: + warmup_curve: + fields: [] + panels: {} + fields: [] + inj_trim1TblTitle: + title: 'Channel #1' + panels: + fuelTrimTable1Tbl: + condition: '{ fuelTrimEnabled }' + fields: [] + panels: {} + fields: [] + inj_trim2TblTitle: + title: 'Channel #2' + panels: + fuelTrimTable2Tbl: + condition: '{ fuelTrimEnabled }' + fields: [] + panels: {} + fields: [] + inj_trim3TblTitle: + title: 'Channel #3' + panels: + fuelTrimTable3Tbl: + condition: '{ fuelTrimEnabled }' + fields: [] + panels: {} + fields: [] + inj_trim4TblTitle: + title: 'Channel #4' + panels: + fuelTrimTable4Tbl: + condition: '{ fuelTrimEnabled }' + fields: [] + panels: {} + fields: [] + inj_trim5TblTitle: + title: 'Channel #5' + panels: + fuelTrimTable5Tbl: + condition: '{ fuelTrimEnabled }' + fields: [] + panels: {} + fields: [] + inj_trim6TblTitle: + title: 'Channel #6' + panels: + fuelTrimTable6Tbl: + condition: '{ fuelTrimEnabled }' + fields: [] + panels: {} + fields: [] + inj_trim7TblTitle: + title: 'Channel #7' + panels: + fuelTrimTable7Tbl: + condition: '{ fuelTrimEnabled }' + fields: [] + panels: {} + fields: [] + inj_trim8TblTitle: + title: 'Channel #8' + panels: + fuelTrimTable8Tbl: + condition: '{ fuelTrimEnabled }' + fields: [] + panels: {} + fields: [] + inj_trimadt: + title: '' + layout: xAxis + panels: + inj_trim1TblTitle: + fields: [] + panels: {} + inj_trim2TblTitle: + fields: [] + panels: {} + fields: [] + inj_trimadb: + title: '' + layout: xAxis + panels: + inj_trim3TblTitle: + fields: [] + panels: {} + inj_trim4TblTitle: + fields: [] + panels: {} + fields: [] + inj_trimadt_B: + title: '' + layout: xAxis + panels: + inj_trim5TblTitle: + fields: [] + panels: {} + inj_trim6TblTitle: + fields: [] + panels: {} + fields: [] + inj_trimadb_B: + title: '' + layout: xAxis + panels: + inj_trim7TblTitle: + fields: [] + panels: {} + inj_trim8TblTitle: + fields: [] + panels: {} + fields: [] + inj_trim_enable: + title: '' + panels: {} + fields: + - name: fuelTrimEnabled + title: Individual fuel trim enabled + condition: '{ injLayout == 3 && nCylinders <= nFuelChannels }' + inj_trimad: + title: Injector Cyl 1-4 Trims + layout: yAxis + panels: + inj_trim_enable: + layout: North + fields: [] + panels: {} + inj_trimadt: + layout: Center + fields: [] + panels: {} + inj_trimadb: + layout: South + fields: [] + panels: {} + fields: [] + inj_trimad_B: + title: Injector Cyl 5-8 Trims + layout: yAxis + panels: + inj_trim_enable: + layout: North + fields: [] + panels: {} + inj_trimadt_B: + layout: Center + fields: [] + panels: {} + inj_trimadb_B: + layout: South + fields: [] + panels: {} + fields: [] + stagingTableDialog_north: + title: '' + panels: {} + fields: + - name: stagingEnabled + title: Staging enabled + - name: stagingMode + title: Staging mode + - name: stagedInjSizePri + title: Size of primary injectors + condition: '{ stagingEnabled }' + - name: stagedInjSizeSec + title: Size of secondary injectors + condition: '{ stagingEnabled }' + stagingTableDialog_south: + title: '' + panels: + stagingTbl: + condition: '{ stagingMode == 0 }' + fields: [] + panels: {} + fields: [] + stagingTableDialog: + title: Staged injection + panels: + stagingTableDialog_north: + layout: North + fields: [] + panels: {} + stagingTableDialog_south: + layout: South + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/configuration/Staged_Injection + outputtest_warningmessage: + title: '' + panels: {} + fields: + - name: _fieldText_ + title: >- + WARNING! USE AT YOUR OWN RISK. INCORRECT USE WILL DAMAGE YOUR + HARDWARE! + - name: _fieldText_ + title: Do not attempt to use this page whilst your engine is running! + - name: _fieldText_ + title: >- + Forcing the Injector or Spark outputs could cause flooding of your + engine or permanent damage to ignition coils! + enableoutputtestbuttons: + title: Enable Test Controls + layout: xAxis + panels: {} + fields: [] + outputtestinj1: + title: Injector CH1 + layout: yAxis + panels: {} + fields: [] + outputtestinj2: + title: Injector CH2 + layout: yAxis + panels: {} + fields: [] + outputtestinj3: + title: Injector CH3 + layout: yAxis + panels: {} + fields: [] + outputtestinj4: + title: Injector CH4 + layout: yAxis + panels: {} + fields: [] + outputtestinj5: + title: Injector CH5 + layout: yAxis + panels: {} + fields: [] + outputtestinj6: + title: Injector CH6 + layout: yAxis + panels: {} + fields: [] + outputtestinj7: + title: Injector CH7 + layout: yAxis + panels: {} + fields: [] + outputtestinj8: + title: Injector CH8 + layout: yAxis + panels: {} + fields: [] + outputtest_injectors: + title: Injector Driver Output Test + layout: xAxis + panels: + outputtestinj1: + fields: [] + panels: {} + outputtestinj2: + fields: [] + panels: {} + outputtestinj3: + fields: [] + panels: {} + outputtestinj4: + fields: [] + panels: {} + outputtestinj5: + fields: [] + panels: {} + outputtestinj6: + fields: [] + panels: {} + outputtestinj7: + fields: [] + panels: {} + outputtestinj8: + fields: [] + panels: {} + fields: [] + outputtestspk1: + title: Spark CH1 + layout: yAxis + panels: {} + fields: [] + outputtestspk2: + title: Spark CH2 + layout: yAxis + panels: {} + fields: [] + outputtestspk3: + title: Spark CH3 + layout: yAxis + panels: {} + fields: [] + outputtestspk4: + title: Spark CH4 + layout: yAxis + panels: {} + fields: [] + outputtestspk5: + title: Spark CH5 + layout: yAxis + panels: {} + fields: [] + outputtestspk6: + title: Spark CH6 + layout: yAxis + panels: {} + fields: [] + outputtestspk7: + title: Spark CH7 + layout: yAxis + panels: {} + fields: [] + outputtestspk8: + title: Spark CH8 + layout: yAxis + panels: {} + fields: [] + outputtest_spark: + title: Spark Driver Output Test + layout: xAxis + panels: + outputtestspk1: + fields: [] + panels: {} + outputtestspk2: + fields: [] + panels: {} + outputtestspk3: + fields: [] + panels: {} + outputtestspk4: + fields: [] + panels: {} + outputtestspk5: + fields: [] + panels: {} + outputtestspk6: + fields: [] + panels: {} + outputtestspk7: + fields: [] + panels: {} + outputtestspk8: + fields: [] + panels: {} + fields: [] + outputtest1: + title: Test Output Hardware + panels: + enableoutputtestbuttons: + fields: [] + panels: {} + outputtest_injectors: + fields: [] + panels: {} + outputtest_spark: + fields: [] + panels: {} + outputtest_warningmessage: + fields: [] + panels: {} + fields: [] + help: https://wiki.speeduino.com/en/Hardware_testing_page + stm32cmd: + title: STM32 Commands + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: >- + If Secondary Serial or Internal CANBUS is DISABLED then any input + channel assigned to that external source will NOT function + canAuxinput_alias: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Input Alias + - name: AUXin00Alias + title: '' + condition: >- + {(caninput_sel0a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel0b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin01Alias + title: '' + condition: >- + {(caninput_sel1a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel1b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin02Alias + title: '' + condition: >- + {(caninput_sel2a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel2b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin03Alias + title: '' + condition: >- + {(caninput_sel3a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel3b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin04Alias + title: '' + condition: >- + {(caninput_sel4a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel4b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin05Alias + title: '' + condition: >- + {(caninput_sel5a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel5b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin06Alias + title: '' + condition: >- + {(caninput_sel6a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel6b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin07Alias + title: '' + condition: >- + {(caninput_sel7a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel7b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin08Alias + title: '' + condition: >- + {(caninput_sel8a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel8b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin09Alias + title: '' + condition: >- + {(caninput_sel9a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel9b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin10Alias + title: '' + condition: >- + {(caninput_sel10a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel10b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin11Alias + title: '' + condition: >- + {(caninput_sel11a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel11b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin12Alias + title: '' + condition: >- + {(caninput_sel12a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel12b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin13Alias + title: '' + condition: >- + {(caninput_sel13a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel13b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin14Alias + title: '' + condition: >- + {(caninput_sel14a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel14b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin15Alias + title: '' + condition: >- + {(caninput_sel15a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel15b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + caninput_sel: + title: '' + panels: {} + fields: + - name: _fieldText_ + title: CAN Input Channel on/off + - name: caninput_sel0a + title: CAN Input 0 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel0b + title: CAN Input 0 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel1a + title: CAN Input 1 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel1b + title: CAN Input 1 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel2a + title: CAN Input 2 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel2b + title: CAN Input 2 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel3a + title: CAN Input 3 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel3b + title: CAN Input 3 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel4a + title: CAN Input 4 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel4b + title: CAN Input 4 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel5a + title: CAN Input 5 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel5b + title: CAN Input 5 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel6a + title: CAN Input 6 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel6b + title: CAN Input 6 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel7a + title: CAN Input 7 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel7b + title: CAN Input 7 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel8a + title: CAN Input 8 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel8b + title: CAN Input 8 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel9a + title: CAN Input 9 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel9b + title: CAN Input 9 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel10a + title: CAN Input 10 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel10b + title: CAN Input 10 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel11a + title: CAN Input 11 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel11b + title: CAN Input 11 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel12a + title: CAN Input 12 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel12b + title: CAN Input 12 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel13a + title: CAN Input 13 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel13b + title: CAN Input 13 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel14a + title: CAN Input 14 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel14b + title: CAN Input 14 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel15a + title: CAN Input 15 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel15b + title: CAN Input 15 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + caninput_parameter_group: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Source CAN Address + - name: caninput_source_can_address0 + title: '' + condition: >- + { (caninput_sel0a == 1 || caninput_sel0b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address1 + title: '' + condition: >- + { (caninput_sel1a == 1 || caninput_sel1b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address2 + title: '' + condition: >- + { (caninput_sel2a == 1 || caninput_sel2b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address3 + title: '' + condition: >- + { (caninput_sel3a == 1 || caninput_sel3b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address4 + title: '' + condition: >- + { (caninput_sel4a == 1 || caninput_sel4b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address5 + title: '' + condition: >- + { (caninput_sel5a == 1 || caninput_sel5b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address6 + title: '' + condition: >- + { (caninput_sel6a == 1 || caninput_sel6b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address7 + title: '' + condition: >- + { (caninput_sel7a == 1 || caninput_sel7b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address8 + title: '' + condition: >- + { (caninput_sel8a == 1 || caninput_sel8b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address9 + title: '' + condition: >- + { (caninput_sel9a == 1 || caninput_sel9b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address10 + title: '' + condition: >- + { (caninput_sel10a == 1 || caninput_sel10b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address11 + title: '' + condition: >- + { (caninput_sel11a == 1 || caninput_sel11b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address12 + title: '' + condition: >- + { (caninput_sel12a == 1 || caninput_sel12b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address13 + title: '' + condition: >- + { (caninput_sel13a == 1 || caninput_sel13b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address14 + title: '' + condition: >- + { (caninput_sel14a == 1 || caninput_sel14b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_can_address15 + title: '' + condition: >- + { (caninput_sel15a == 1 || caninput_sel15b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + caninput_parameter_start_byte: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: source data start byte + - name: caninput_source_start_byte0 + title: '' + condition: >- + { (caninput_sel0a == 1 || caninput_sel0b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte1 + title: '' + condition: >- + { (caninput_sel1a == 1 || caninput_sel1b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte2 + title: '' + condition: >- + { (caninput_sel2a == 1 || caninput_sel2b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte3 + title: '' + condition: >- + { (caninput_sel3a == 1 || caninput_sel3b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte4 + title: '' + condition: >- + { (caninput_sel4a == 1 || caninput_sel4b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte5 + title: '' + condition: >- + { (caninput_sel5a == 1 || caninput_sel5b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte6 + title: '' + condition: >- + { (caninput_sel6a == 1 || caninput_sel6b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte7 + title: '' + condition: >- + { (caninput_sel7a == 1 || caninput_sel7b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte8 + title: '' + condition: >- + { (caninput_sel8a == 1 || caninput_sel8b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte9 + title: '' + condition: >- + { (caninput_sel9a == 1 || caninput_sel9b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte10 + title: '' + condition: >- + { (caninput_sel10a == 1 || caninput_sel10b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte11 + title: '' + condition: >- + { (caninput_sel11a == 1 || caninput_sel11b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte12 + title: '' + condition: >- + { (caninput_sel12a == 1 || caninput_sel12b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte13 + title: '' + condition: >- + { (caninput_sel13a == 1 || caninput_sel13b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte14 + title: '' + condition: >- + { (caninput_sel14a == 1 || caninput_sel14b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_start_byte15 + title: '' + condition: >- + { (caninput_sel15a == 1 || caninput_sel15b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + caninput_parameter_num_byte: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Input Parameter Number of Bytes + - name: caninput_source_num_bytes0 + title: '' + condition: >- + { (caninput_sel0a == 1 || caninput_sel0b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes1 + title: '' + condition: >- + { (caninput_sel1a == 1 || caninput_sel1b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes2 + title: '' + condition: >- + { (caninput_sel2a == 1 || caninput_sel2b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes3 + title: '' + condition: >- + { (caninput_sel3a == 1 || caninput_sel3b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes4 + title: '' + condition: >- + { (caninput_sel4a == 1 || caninput_sel4b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes5 + title: '' + condition: >- + { (caninput_sel5a == 1 || caninput_sel5b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes6 + title: '' + condition: >- + { (caninput_sel6a == 1 || caninput_sel6b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes7 + title: '' + condition: >- + { (caninput_sel7a == 1 || caninput_sel7b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes8 + title: '' + condition: >- + { (caninput_sel8a == 1 || caninput_sel8b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes9 + title: '' + condition: >- + { (caninput_sel9a == 1 || caninput_sel9b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes10 + title: '' + condition: >- + { (caninput_sel10a == 1 || caninput_sel10b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes11 + title: '' + condition: >- + { (caninput_sel11a == 1 || caninput_sel11b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes12 + title: '' + condition: >- + { (caninput_sel12a == 1 || caninput_sel12b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes13 + title: '' + condition: >- + { (caninput_sel13a == 1 || caninput_sel13b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes14 + title: '' + condition: >- + { (caninput_sel14a == 1 || caninput_sel14b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + - name: caninput_source_num_bytes15 + title: '' + condition: >- + { (caninput_sel15a == 1 || caninput_sel15b == 1) && + (enable_secondarySerial || (enable_intcan && intcan_available)) } + caninput_serial_can: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Serial/CAN + - name: caninput_sel0extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel0extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel0extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel1extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel1extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel1extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel2extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel2extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel2extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel3extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel3extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel3extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel4extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel4extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel4extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel5extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel5extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel5extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel6extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel6extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel6extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel7extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel7extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel7extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel8extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel8extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel8extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel9extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel9extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel9extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel10extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel10extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel10extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel11extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel11extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel11extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel12extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel12extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel12extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel13extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel13extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel13extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel14extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel14extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel14extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel15extsourcea + title: '' + condition: >- + {enable_secondarySerial && (!enable_intcan || (enable_intcan && + !intcan_available))} + - name: caninput_sel15extsourceb + title: '' + condition: '{enable_secondarySerial && (enable_intcan && intcan_available)}' + - name: caninput_sel15extsourcec + title: '' + condition: '{!enable_secondarySerial && (enable_intcan && intcan_available)}' + caninconfig_blank1: + title: '' + panels: {} + fields: + - name: _fieldText_ + title: '' + Canin_config1: + title: '' + layout: xAxis + panels: + canAuxinput_alias: + fields: [] + panels: {} + caninconfig_blank1: + fields: [] + panels: {} + caninput_sel: + fields: [] + panels: {} + caninput_serial_can: + fields: [] + panels: {} + caninput_parameter_group: + fields: [] + panels: {} + caninput_parameter_start_byte: + fields: [] + panels: {} + caninput_parameter_num_byte: + fields: [] + panels: {} + fields: [] + Canin_config: + title: '' + layout: yAxis + panels: + Auxin_north: + fields: [] + panels: {} + Canin_config1: + fields: [] + panels: {} + fields: [] + help: >- + http://speeduino.com/wiki/index.php/Secondary_Serial_IO_interface#Read_external_analog_data + canAuxoutput_alias: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Input Alias + - name: AUXin00Alias + title: '' + condition: '{canoutput_sel0}' + - name: AUXin01Alias + title: '' + condition: '{canoutput_sel1}' + - name: AUXin02Alias + title: '' + condition: '{canoutput_sel2}' + - name: AUXin03Alias + title: '' + condition: '{canoutput_sel3}' + - name: AUXin04Alias + title: '' + condition: '{canoutput_sel4}' + - name: AUXin05Alias + title: '' + condition: '{canoutput_sel5}' + - name: AUXin06Alias + title: '' + condition: '{canoutput_sel6}' + - name: AUXin07Alias + title: '' + condition: '{canoutput_sel7}' + canoutput_sel: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: CAN Output Channel on/off + - name: canoutput_sel0 + title: CAN Output 0 + condition: '{ enable_intcandata_out}' + - name: canoutput_sel1 + title: CAN Output 1 + condition: '{ enable_intcandata_out }' + - name: canoutput_sel2 + title: CAN Output 2 + condition: '{ enable_intcandata_out }' + - name: canoutput_sel3 + title: CAN Output 3 + condition: '{ enable_intcandata_out }' + - name: canoutput_sel4 + title: CAN Output 4 + condition: '{ enable_intcandata_out }' + - name: canoutput_sel5 + title: CAN Output 5 + condition: '{ enable_intcandata_out }' + - name: canoutput_sel6 + title: CAN Output 6 + condition: '{ enable_intcandata_out }' + - name: canoutput_sel7 + title: CAN Output 7 + condition: '{ enable_intcandata_out }' + canoutput_parameter_group: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Output Parameter Group + - name: canoutput_param_group + title: '' + - name: canoutput_param_group + title: '' + - name: canoutput_param_group + title: '' + - name: canoutput_param_group + title: '' + - name: canoutput_param_group + title: '' + - name: canoutput_param_group + title: '' + - name: canoutput_param_group + title: '' + - name: canoutput_param_group + title: '' + canoutput_parameter_start_byte: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Output Parameter Start Byte + - name: canoutput_param_start_byte0 + title: '' + condition: '{ canoutput_sel0 && enable_intcandata_out }' + - name: canoutput_param_start_byte1 + title: '' + condition: '{ canoutput_sel1 && enable_intcandata_out }' + - name: canoutput_param_start_byte2 + title: '' + condition: '{ canoutput_sel2 && enable_intcandata_out }' + - name: canoutput_param_start_byte3 + title: '' + condition: '{ canoutput_sel3 && enable_intcandata_out }' + - name: canoutput_param_start_byte4 + title: '' + condition: '{ canoutput_sel4 && enable_intcandata_out }' + - name: canoutput_param_start_byte5 + title: '' + condition: '{ canoutput_sel5 && enable_intcandata_out }' + - name: canoutput_param_start_byte6 + title: '' + condition: '{ canoutput_sel6 && enable_intcandata_out }' + - name: canoutput_param_start_byte7 + title: '' + condition: '{ canoutput_sel7 && enable_intcandata_out }' + canoutput_parameter_num_byte: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Output Parameter Number of Bytes + - name: canoutput_param_num_bytes0 + title: '' + condition: '{ canoutput_sel0 && enable_intcandata_out }' + - name: canoutput_param_num_bytes1 + title: '' + condition: '{ canoutput_sel1 && enable_intcandata_out }' + - name: canoutput_param_num_bytes2 + title: '' + condition: '{ canoutput_sel2 && enable_intcandata_out }' + - name: canoutput_param_num_bytes3 + title: '' + condition: '{ canoutput_sel3 && enable_intcandata_out }' + - name: canoutput_param_num_bytes4 + title: '' + condition: '{ canoutput_sel4 && enable_intcandata_out }' + - name: canoutput_param_num_bytes5 + title: '' + condition: '{ canoutput_sel5 && enable_intcandata_out }' + - name: canoutput_param_num_bytes6 + title: '' + condition: '{ canoutput_sel6 && enable_intcandata_out }' + - name: canoutput_param_num_bytes7 + title: '' + condition: '{ canoutput_sel7 && enable_intcandata_out }' + canoutconfig_blank1: + title: '' + panels: {} + fields: + - name: _fieldText_ + title: '' + Canout_config1: + title: '' + layout: xAxis + panels: + canAuxoutput_alias: + fields: [] + panels: {} + canoutconfig_blank1: + fields: [] + panels: {} + canoutput_sel: + fields: [] + panels: {} + canoutput_parameter_group: + fields: [] + panels: {} + canoutput_parameter_start_byte: + fields: [] + panels: {} + canoutput_parameter_num_byte: + fields: [] + panels: {} + fields: [] + Canout_config2: + title: CAN Data Out + panels: {} + fields: + - name: enable_intcandata_out + title: Enable CanBus data Output + Canout_config: + title: '' + layout: yAxis + panels: + Canout_config2: + fields: [] + panels: {} + Canout_config1: + fields: [] + panels: {} + fields: [] + help: '' + can_serial3IO: + title: CanBus/Secondary Serial IO interface + panels: {} + fields: + - name: enable_secondarySerial + title: Enable Second Serial + - name: enable_intcan + title: Enable Internal Canbus + - name: true_address + title: True Canbus Address + - name: _fieldText_ + title: >- + NOTE! Realtime Data Base Address MUST be at least 0x16 GREATER than + the True Address as they are reserved for future expansion + - name: realtime_base_address + title: Realtime Data Base Can Address + - name: obd_address + title: Speeduino OBD address + help: http://speeduino.com/wiki/index.php/Secondary_Serial_IO_interface + serial3IO: + title: Secondary Serial IO interface + panels: {} + fields: + - name: enable_secondarySerial + title: Enable Second Serial + - name: enable_intcan + title: Enable Internal Canbus + - name: true_address + title: True Canbus Address + - name: _fieldText_ + title: >- + NOTE! Realtime Data Base Address MUST be at least 0x16 GREATER than + the True Address as they are reserved for future expansion + - name: realtime_base_address + title: Realtime Data Base Can Address + - name: obd_address + title: Speeduino OBD address + help: http://speeduino.com/wiki/index.php/Serial3_IO_interface + reset_control: + title: Reset Control + panels: {} + fields: + - name: resetControl + title: Control Type + - name: resetControlPin + title: Control Pin + Auxinput_pin_selection: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Source + - name: Auxin0pina + title: 'Local Analog Source 0 Pin No:' + condition: >- + {(caninput_sel0a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin0pinb + title: 'Local Digital Source 0 Pin No:' + condition: >- + {(caninput_sel0a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel0b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin1pina + title: 'Local Analog Source 1 Pin No:' + condition: >- + {(caninput_sel1a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin1pinb + title: 'Local Digital Source 1 Pin No:' + condition: >- + {(caninput_sel1a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel1b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin2pina + title: 'Local Analog Source 2 Pin No:' + condition: >- + {(caninput_sel2a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin2pinb + title: 'Local Digital Source 2 Pin No:' + condition: >- + {(caninput_sel2a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel2b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin3pina + title: 'Local Analog Source 3 Pin No:' + condition: >- + {(caninput_sel3a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin3pinb + title: 'Local Digital Source 3 Pin No:' + condition: >- + {(caninput_sel3a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel3b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin4pina + title: 'Local Analog Source 4 Pin No:' + condition: >- + {(caninput_sel4a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin4pinb + title: 'Local Digital Source 4 Pin No:' + condition: >- + {(caninput_sel4a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel4b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin5pina + title: 'Local Analog Source 5 Pin No:' + condition: >- + {(caninput_sel5a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin5pinb + title: 'Local Digital Source 5 Pin No:' + condition: >- + {(caninput_sel5a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel5b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin6pina + title: 'Local Analog Source 6 Pin No:' + condition: >- + {(caninput_sel6a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin6pinb + title: 'Local Digital Source 6 Pin No:' + condition: >- + {(caninput_sel6a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel6b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin7pina + title: 'Local Analog Source 7 Pin No:' + condition: >- + {(caninput_sel7a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin7pinb + title: 'Local Digital Source 7 Pin No:' + condition: >- + {(caninput_sel7a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel7b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin8pina + title: 'Local Analog Source 8 Pin No:' + condition: >- + {(caninput_sel8a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin8pinb + title: 'Local Digital Source 8 Pin No:' + condition: >- + {(caninput_sel8a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel8b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin9pina + title: 'Local Analog Source 9 Pin No:' + condition: >- + {(caninput_sel9a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b == 2 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin9pinb + title: 'Local Digital Source 9 Pin No:' + condition: >- + {(caninput_sel9a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel9b == 3 + && (enable_secondarySerial || (enable_intcan && intcan_available == 1 + )))} + - name: Auxin10pina + title: 'Local Analog Source 10 Pin No:' + condition: >- + {(caninput_sel10a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b == + 2 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin10pinb + title: 'Local Digital Source 10 Pin No:' + condition: >- + {(caninput_sel10a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel10b == + 3 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin11pina + title: 'Local Analog Source 11 Pin No:' + condition: >- + {(caninput_sel11a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b == + 2 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin11pinb + title: 'Local Digital Source 11 Pin No:' + condition: >- + {(caninput_sel11a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel11b == + 3 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin12pina + title: 'Local Analog Source 12 Pin No:' + condition: >- + {(caninput_sel12a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b == + 2 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin12pinb + title: 'Local Digital Source 12 Pin No:' + condition: >- + {(caninput_sel12a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel12b == + 3 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin13pina + title: 'Local Analog Source 13 Pin No:' + condition: >- + {(caninput_sel13a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b == + 2 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin13pinb + title: 'Local Digital Source 13 Pin No:' + condition: >- + {(caninput_sel13a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel13b == + 3 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin14pina + title: 'Local Analog Source 14 Pin No:' + condition: >- + {(caninput_sel14a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b == + 2 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin14pinb + title: 'Local Digital Source 14 Pin No:' + condition: >- + {(caninput_sel14a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel14b == + 3 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin15pina + title: 'Local Analog Source 15 Pin No:' + condition: >- + {(caninput_sel15a == 2 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b == + 2 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + - name: Auxin15pinb + title: 'Local Digital Source 15 Pin No:' + condition: >- + {(caninput_sel15a == 3 && (!enable_secondarySerial && (!enable_intcan + || (enable_intcan && intcan_available == 0)))) || (caninput_sel15b == + 3 && (enable_secondarySerial || (enable_intcan && intcan_available == + 1 )))} + Auxinput_alias: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Input Alias + - name: AUXin00Alias + title: '' + condition: >- + {(caninput_sel0a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel0b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin01Alias + title: '' + condition: >- + {(caninput_sel1a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel1b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin02Alias + title: '' + condition: >- + {(caninput_sel2a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel2b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin03Alias + title: '' + condition: >- + {(caninput_sel3a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel3b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin04Alias + title: '' + condition: >- + {(caninput_sel4a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel4b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin05Alias + title: '' + condition: >- + {(caninput_sel5a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel5b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin06Alias + title: '' + condition: >- + {(caninput_sel6a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel6b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin07Alias + title: '' + condition: >- + {(caninput_sel7a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel7b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin08Alias + title: '' + condition: >- + {(caninput_sel8a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel8b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin09Alias + title: '' + condition: >- + {(caninput_sel9a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel9b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin10Alias + title: '' + condition: >- + {(caninput_sel10a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel10b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin11Alias + title: '' + condition: >- + {(caninput_sel11a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel11b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin12Alias + title: '' + condition: >- + {(caninput_sel12a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel12b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin13Alias + title: '' + condition: >- + {(caninput_sel13a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel13b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin14Alias + title: '' + condition: >- + {(caninput_sel14a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel14b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + - name: AUXin15Alias + title: '' + condition: >- + {(caninput_sel15a && (!enable_secondarySerial && (!enable_intcan || + (enable_intcan && intcan_available == 0)))) || (caninput_sel15b && + (enable_secondarySerial || (enable_intcan && intcan_available)))} + Auxinput_channelenable: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Aux Input Channel Enable + - name: caninput_sel0a + title: AUX Input 0 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel0b + title: AUX Input 0 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel1a + title: AUX Input 1 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel1b + title: AUX Input 1 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel2a + title: AUX Input 2 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel2b + title: AUX Input 2 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel3a + title: AUX Input 3 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel3b + title: AUX Input 3 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel4a + title: AUX Input 4 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel4b + title: AUX Input 4 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel5a + title: AUX Input 5 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel5b + title: AUX Input 5 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel6a + title: AUX Input 6 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel6b + title: AUX Input 6 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel7a + title: AUX Input 7 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel7b + title: AUX Input 7 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel8a + title: AUX Input 8 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel8b + title: AUX Input 8 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel9a + title: AUX Input 9 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel9b + title: AUX Input 9 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel10a + title: AUX Input 10 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel10b + title: AUX Input 10 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel11a + title: AUX Input 11 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel11b + title: AUX Input 11 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel12a + title: AUX Input 12 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel12b + title: AUX Input 12 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel13a + title: AUX Input 13 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel13b + title: AUX Input 13 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel14a + title: AUX Input 14 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel14b + title: AUX Input 14 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + - name: caninput_sel15a + title: AUX Input 15 + condition: >- + { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && + intcan_available == 0))) } + - name: caninput_sel15b + title: AUX Input 15 + condition: >- + { (enable_secondarySerial && enable_intcan) || + (!enable_secondarySerial && (enable_intcan && intcan_available)) || + (enable_secondarySerial && !enable_intcan) } + Auxin_south: + title: Auxillary Input Configuration + layout: xAxis + panels: + Auxinput_alias: + fields: [] + panels: {} + Auxinput_channelenable: + fields: [] + panels: {} + Auxinput_pin_selection: + fields: [] + panels: {} + fields: [] + Auxin_config: + title: '' + layout: yAxis + panels: + Auxin_north: + fields: [] + panels: {} + Auxin_south: + fields: [] + panels: {} + fields: [] + gaugeLimits: + title: Gauge Limits + panels: {} + fields: + - name: _fieldText_ + title: '#RPM' + - name: rpmwarn + title: Warning + - name: rpmdang + title: Danger + - name: rpmhigh + title: High + - name: _fieldText_ + title: '#MAP' + - name: mapwarn + title: Warning + - name: mapdang + title: Danger + - name: maphigh + title: High + io_summary: + title: I/O Summary + panels: {} + fields: [] + prgm_out_pin_selection_1: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: outputInverted0 + title: '' + condition: '{outputPin[0]}' + - name: outputInverted1 + title: '' + condition: '{outputPin[1]}' + - name: outputInverted2 + title: '' + condition: '{outputPin[2]}' + - name: outputInverted3 + title: '' + condition: '{outputPin[3]}' + - name: outputInverted4 + title: '' + condition: '{outputPin[4]}' + - name: outputInverted5 + title: '' + condition: '{outputPin[5]}' + - name: outputInverted6 + title: '' + condition: '{outputPin[6]}' + - name: outputInverted7 + title: '' + condition: '{outputPin[7]}' + prgm_out_pin_selection_2: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: firstDataIn0 + title: if( + condition: '{outputPin[0]}' + - name: firstDataIn1 + title: if( + condition: '{outputPin[1]}' + - name: firstDataIn2 + title: if( + condition: '{outputPin[2]}' + - name: firstDataIn3 + title: if( + condition: '{outputPin[3]}' + - name: firstDataIn4 + title: if( + condition: '{outputPin[4]}' + - name: firstDataIn5 + title: if( + condition: '{outputPin[5]}' + - name: firstDataIn6 + title: if( + condition: '{outputPin[6]}' + - name: firstDataIn7 + title: if( + condition: '{outputPin[7]}' + prgm_out_pin_selection_3: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: firstCompType0 + title: '' + condition: '{outputPin[0]}' + - name: firstCompType1 + title: '' + condition: '{outputPin[1]}' + - name: firstCompType2 + title: '' + condition: '{outputPin[2]}' + - name: firstCompType3 + title: '' + condition: '{outputPin[3]}' + - name: firstCompType4 + title: '' + condition: '{outputPin[4]}' + - name: firstCompType5 + title: '' + condition: '{outputPin[5]}' + - name: firstCompType6 + title: '' + condition: '{outputPin[6]}' + - name: firstCompType7 + title: '' + condition: '{outputPin[7]}' + prgm_out_pin_selection_4: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + prgm_out_pin_selection_5: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: bitwise0 + title: ) + condition: '{outputPin[0]}' + - name: bitwise1 + title: ) + condition: '{outputPin[1]}' + - name: bitwise2 + title: ) + condition: '{outputPin[2]}' + - name: bitwise3 + title: ) + condition: '{outputPin[3]}' + - name: bitwise4 + title: ) + condition: '{outputPin[4]}' + - name: bitwise5 + title: ) + condition: '{outputPin[6]}' + - name: bitwise6 + title: ) + condition: '{outputPin[6]}' + - name: bitwise7 + title: ) + condition: '{outputPin[7]}' + prgm_out_pin_selection_6: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: secondDataIn0 + title: '' + condition: '{outputPin[0] && bitwise0}' + - name: secondDataIn1 + title: '' + condition: '{outputPin[1] && bitwise1}' + - name: secondDataIn2 + title: '' + condition: '{outputPin[2] && bitwise2}' + - name: secondDataIn3 + title: '' + condition: '{outputPin[3] && bitwise3}' + - name: secondDataIn4 + title: '' + condition: '{outputPin[4] && bitwise4}' + - name: secondDataIn5 + title: '' + condition: '{outputPin[5] && bitwise5}' + - name: secondDataIn6 + title: '' + condition: '{outputPin[6] && bitwise6}' + - name: secondDataIn7 + title: '' + condition: '{outputPin[7] && bitwise7}' + prgm_out_pin_selection_: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + - name: firstTarget + title: '' + prgm_out_pin_selection_7: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: secondCompType0 + title: '' + condition: '{outputPin[0] && bitwise0}' + - name: secondCompType1 + title: '' + condition: '{outputPin[1] && bitwise1}' + - name: secondCompType2 + title: '' + condition: '{outputPin[2] && bitwise2}' + - name: secondCompType3 + title: '' + condition: '{outputPin[3] && bitwise3}' + - name: secondCompType4 + title: '' + condition: '{outputPin[4] && bitwise4}' + - name: secondCompType5 + title: '' + condition: '{outputPin[5] && bitwise5}' + - name: secondCompType6 + title: '' + condition: '{outputPin[6] && bitwise6}' + - name: secondCompType6 + title: '' + condition: '{outputPin[7] && bitwise7}' + prgm_out_pin_selection_8: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: secondTarget + title: '' + - name: secondTarget + title: '' + - name: secondTarget + title: '' + - name: secondTarget + title: '' + - name: secondTarget + title: '' + - name: secondTarget + title: '' + - name: secondTarget + title: '' + - name: secondTarget + title: '' + prgm_out_pin_selection_9: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: '' + - name: outputDelay + title: during + - name: outputDelay + title: during + - name: outputDelay + title: during + - name: outputDelay + title: during + - name: outputDelay + title: during + - name: outputDelay + title: during + - name: outputDelay + title: during + - name: outputDelay + title: during + prgm_out_alias: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: Input Alias + - name: prgm_out00Alias + title: '' + condition: '{outputPin[0]}' + - name: prgm_out01Alias + title: '' + condition: '{outputPin[1]}' + - name: prgm_out02Alias + title: '' + condition: '{outputPin[2]}' + - name: prgm_out03Alias + title: '' + condition: '{outputPin[3]}' + - name: prgm_out04Alias + title: '' + condition: '{outputPin[4]}' + - name: prgm_out05Alias + title: '' + condition: '{outputPin[5]}' + - name: prgm_out06Alias + title: '' + condition: '{outputPin[6]}' + - name: prgm_out07Alias + title: '' + condition: '{outputPin[7]}' + prgm_out_channelenable: + title: '' + layout: yAxis + panels: {} + fields: + - name: _fieldText_ + title: 'Pin No:' + - name: outputPin0 + title: '' + - name: outputPin1 + title: '' + - name: outputPin2 + title: '' + - name: outputPin3 + title: '' + - name: outputPin4 + title: '' + - name: outputPin5 + title: '' + - name: outputPin6 + title: '' + - name: outputPin7 + title: '' + prgm_out_unique: + title: '' + layout: xAxis + panels: + prgm_out_channelenable: + fields: [] + panels: {} + prgm_out_alias: + fields: [] + panels: {} + prgm_out_pin_selection_1: + fields: [] + panels: {} + prgm_out_pin_selection_2: + fields: [] + panels: {} + prgm_out_pin_selection_3: + fields: [] + panels: {} + prgm_out_pin_selection_4: + fields: [] + panels: {} + prgm_out_pin_selection_5: + fields: [] + panels: {} + prgm_out_pin_selection_6: + fields: [] + panels: {} + prgm_out_pin_selection_7: + fields: [] + panels: {} + prgm_out_pin_selection_8: + fields: [] + panels: {} + prgm_out_pin_selection_9: + fields: [] + panels: {} + fields: [] + prgm_out_rules_1_condition_1: + title: Condition 1 + layout: xAxis + panels: {} + fields: + - name: firstDataIn0 + title: '' + condition: '{outputPin[0]}' + - name: firstCompType0 + title: '' + condition: '{outputPin[0]}' + - name: firstTarget + title: '' + prgm_out_rules_1_condition_2: + title: Condition 2 + layout: xAxis + panels: {} + fields: + - name: secondDataIn0 + title: '' + condition: '{outputPin[0] && bitwise0}' + - name: secondCompType0 + title: '' + condition: '{outputPin[0] && bitwise0}' + - name: secondTarget + title: '' + prgm_out_rules_2_condition_1: + title: Condition 1 + layout: xAxis + panels: {} + fields: + - name: firstDataIn1 + title: '' + condition: '{outputPin[1]}' + - name: firstCompType1 + title: '' + condition: '{outputPin[1]}' + - name: firstTarget + title: '' + prgm_out_rules_2_condition_2: + title: Condition 2 + layout: xAxis + panels: {} + fields: + - name: secondDataIn1 + title: '' + condition: '{outputPin[1] && bitwise1}' + - name: secondCompType1 + title: '' + condition: '{outputPin[1] && bitwise1}' + - name: secondTarget + title: '' + prgm_out_rules_3_condition_1: + title: Condition 1 + layout: xAxis + panels: {} + fields: + - name: firstDataIn2 + title: '' + condition: '{outputPin[2]}' + - name: firstCompType2 + title: '' + condition: '{outputPin[2]}' + - name: firstTarget + title: '' + prgm_out_rules_3_condition_2: + title: Condition 2 + layout: xAxis + panels: {} + fields: + - name: secondDataIn2 + title: '' + condition: '{outputPin[2] && bitwise2}' + - name: secondCompType2 + title: '' + condition: '{outputPin[2] && bitwise2}' + - name: secondTarget + title: '' + prgm_out_rules_4_condition_1: + title: Condition 1 + layout: xAxis + panels: {} + fields: + - name: firstDataIn3 + title: '' + condition: '{outputPin[3]}' + - name: firstCompType3 + title: '' + condition: '{outputPin[3]}' + - name: firstTarget + title: '' + prgm_out_rules_4_condition_2: + title: Condition 2 + layout: xAxis + panels: {} + fields: + - name: secondDataIn3 + title: '' + condition: '{outputPin[3] && bitwise3}' + - name: secondCompType3 + title: '' + condition: '{outputPin[3] && bitwise3}' + - name: secondTarget + title: '' + prgm_out_rules_5_condition_1: + title: Condition 1 + layout: xAxis + panels: {} + fields: + - name: firstDataIn4 + title: '' + condition: '{outputPin[4]}' + - name: firstCompType4 + title: '' + condition: '{outputPin[4]}' + - name: firstTarget + title: '' + prgm_out_rules_5_condition_2: + title: Condition 2 + layout: xAxis + panels: {} + fields: + - name: secondDataIn4 + title: '' + condition: '{outputPin[4] && bitwise4}' + - name: secondCompType4 + title: '' + condition: '{outputPin[4] && bitwise4}' + - name: secondTarget + title: '' + prgm_out_rules_6_condition_1: + title: Condition 1 + layout: xAxis + panels: {} + fields: + - name: firstDataIn5 + title: '' + condition: '{outputPin[5]}' + - name: firstCompType5 + title: '' + condition: '{outputPin[5]}' + - name: firstTarget + title: '' + prgm_out_rules_6_condition_2: + title: Condition 2 + layout: xAxis + panels: {} + fields: + - name: secondDataIn5 + title: '' + condition: '{outputPin[5] && bitwise5}' + - name: secondCompType5 + title: '' + condition: '{outputPin[5] && bitwise5}' + - name: secondTarget + title: '' + prgm_out_rules_7_condition_1: + title: Condition 1 + layout: xAxis + panels: {} + fields: + - name: firstDataIn6 + title: '' + condition: '{outputPin[6]}' + - name: firstCompType6 + title: '' + condition: '{outputPin[6]}' + - name: firstTarget + title: '' + prgm_out_rules_7_condition_2: + title: Condition 2 + layout: xAxis + panels: {} + fields: + - name: secondDataIn6 + title: '' + condition: '{outputPin[6] && bitwise6}' + - name: secondCompType6 + title: '' + condition: '{outputPin[6] && bitwise6}' + - name: secondTarget + title: '' + prgm_out_rules_8_condition_1: + title: Condition 1 + layout: xAxis + panels: {} + fields: + - name: firstDataIn7 + title: '' + condition: '{outputPin[7]}' + - name: firstCompType7 + title: '' + condition: '{outputPin[7]}' + - name: firstTarget + title: '' + prgm_out_rules_8_condition_2: + title: Condition 2 + layout: xAxis + panels: {} + fields: + - name: secondDataIn7 + title: '' + condition: '{outputPin[7] && bitwise7}' + - name: secondCompType7 + title: '' + condition: '{outputPin[7] && bitwise7}' + - name: secondTarget + title: '' + prgm_out_rules_1: + title: Rule 1 + layout: yAxis + panels: + prgm_out_rules_1_condition_1: + fields: [] + panels: {} + prgm_out_rules_1_condition_2: + fields: [] + panels: {} + fields: + - name: outputPin0 + title: Output Pin Num + - name: prgm_out00Alias + title: Rule Alias + condition: '{outputPin[0]}' + - name: outputInverted0 + title: Output Polarity + condition: '{outputPin[0]}' + - name: outputDelay + title: Activation Delay + - name: bitwise0 + title: 2nd Condition + condition: '{outputPin[0]}' + prgm_out_rules_2: + title: Rule 2 + layout: yAxis + panels: + prgm_out_rules_2_condition_1: + fields: [] + panels: {} + prgm_out_rules_2_condition_2: + fields: [] + panels: {} + fields: + - name: outputPin1 + title: Output Pin Num + - name: prgm_out01Alias + title: Rule Alias + condition: '{outputPin[1]}' + - name: outputInverted1 + title: Output Polarity + condition: '{outputPin[1]}' + - name: outputDelay + title: Activation Delay + - name: bitwise1 + title: 2nd Condition + condition: '{outputPin[1]}' + prgm_out_rules_3: + title: Rule 3 + layout: yAxis + panels: + prgm_out_rules_3_condition_1: + fields: [] + panels: {} + prgm_out_rules_3_condition_2: + fields: [] + panels: {} + fields: + - name: outputPin2 + title: Output Pin Num + - name: prgm_out02Alias + title: Rule Alias + condition: '{outputPin[2]}' + - name: outputInverted2 + title: Output Polarity + condition: '{outputPin[2]}' + - name: outputDelay + title: Activation Delay + - name: bitwise2 + title: 2nd Condition + condition: '{outputPin[2]}' + prgm_out_rules_4: + title: Rule 4 + layout: yAxis + panels: + prgm_out_rules_4_condition_1: + fields: [] + panels: {} + prgm_out_rules_4_condition_2: + fields: [] + panels: {} + fields: + - name: outputPin3 + title: Output Pin Num + - name: prgm_out03Alias + title: Rule Alias + condition: '{outputPin[3]}' + - name: outputInverted3 + title: Output Polarity + condition: '{outputPin[3]}' + - name: outputDelay + title: Activation Delay + - name: bitwise3 + title: 2nd Condition + condition: '{outputPin[3]}' + prgm_out_rules_5: + title: Rule 5 + layout: yAxis + panels: + prgm_out_rules_5_condition_1: + fields: [] + panels: {} + prgm_out_rules_5_condition_2: + fields: [] + panels: {} + fields: + - name: outputPin4 + title: Output Pin Num + - name: prgm_out04Alias + title: Rule Alias + condition: '{outputPin[4]}' + - name: outputInverted4 + title: Output Polarity + condition: '{outputPin[4]}' + - name: outputDelay + title: Activation Delay + - name: bitwise4 + title: 2nd Condition + condition: '{outputPin[4]}' + prgm_out_rules_6: + title: Rule 6 + layout: yAxis + panels: + prgm_out_rules_6_condition_1: + fields: [] + panels: {} + prgm_out_rules_6_condition_2: + fields: [] + panels: {} + fields: + - name: outputPin5 + title: Output Pin Num + - name: prgm_out05Alias + title: Rule Alias + condition: '{outputPin[5]}' + - name: outputInverted5 + title: Output Polarity + condition: '{outputPin[5]}' + - name: outputDelay + title: Activation Delay + - name: bitwise5 + title: 2nd Condition + condition: '{outputPin[5]}' + prgm_out_rules_7: + title: Rule 7 + layout: yAxis + panels: + prgm_out_rules_7_condition_1: + fields: [] + panels: {} + prgm_out_rules_7_condition_2: + fields: [] + panels: {} + fields: + - name: outputPin6 + title: Output Pin Num + - name: prgm_out06Alias + title: Rule Alias + condition: '{outputPin[6]}' + - name: outputInverted6 + title: Output Polarity + condition: '{outputPin[6]}' + - name: outputDelay + title: Activation Delay + - name: bitwise6 + title: 2nd Condition + condition: '{outputPin[6]}' + prgm_out_rules_8: + title: Rule 8 + layout: yAxis + panels: + prgm_out_rules_8_condition_1: + fields: [] + panels: {} + prgm_out_rules_8_condition_2: + fields: [] + panels: {} + fields: + - name: outputPin7 + title: Output Pin Num + - name: prgm_out07Alias + title: Rule Alias + condition: '{outputPin[7]}' + - name: outputInverted7 + title: Output Polarity + condition: '{outputPin[7]}' + - name: outputDelay + title: Activation Delay + - name: bitwise7 + title: 2nd Condition + condition: '{outputPin[7]}' + prgm_out_rules_master: + title: '' + layout: card + panels: + prgm_out_rules_1: + layout: Center + condition: '{ prgm_out_selection == 0 }' + fields: [] + panels: {} + prgm_out_rules_2: + layout: Center + condition: '{ prgm_out_selection == 1 }' + fields: [] + panels: {} + prgm_out_rules_3: + layout: Center + condition: '{ prgm_out_selection == 2 }' + fields: [] + panels: {} + prgm_out_rules_4: + layout: Center + condition: '{ prgm_out_selection == 3 }' + fields: [] + panels: {} + prgm_out_rules_5: + layout: Center + condition: '{ prgm_out_selection == 4 }' + fields: [] + panels: {} + prgm_out_rules_6: + layout: Center + condition: '{ prgm_out_selection == 5 }' + fields: [] + panels: {} + prgm_out_rules_7: + layout: Center + condition: '{ prgm_out_selection == 6 }' + fields: [] + panels: {} + prgm_out_rules_8: + layout: Center + condition: '{ prgm_out_selection == 7 }' + fields: [] + panels: {} + fields: [] + prgm_out_config: + title: '' + layout: yAxis + panels: + prgm_out_rules_master: + fields: [] + panels: {} + fields: + - name: prgm_out_selection + title: Select Rule Number + rtc_setup: + title: Real Time Clock + panels: {} + fields: + - name: rtc_mode + title: Real Time Clock mode + - name: rtc_trim + title: Real Time Clock Trim +/- + condition: '{rtc_mode}' + rtc_settings: + title: Real Time Clock + panels: + rtc_setup: + fields: [] + panels: {} + std_ms3Rtc: + fields: [] + panels: {} + fields: [] +curves: + time_accel_tpsdot_curve: + title: TPS based AE + labels: + - TPSdot + - Added + xAxis: + - 0 + - 1200 + - 6 + yAxis: + - 0 + - 250 + - 4 + xBins: + - taeBins + - TPSdot + yBins: + - taeRates + size: [] + time_accel_mapdot_curve: + title: MAP based AE + labels: + - MAPdot + - Added + xAxis: + - 0 + - 1200 + - 6 + yAxis: + - 0 + - 250 + - 4 + xBins: + - maeBins + - MAPdot + yBins: + - maeRates + size: [] + dwell_correction_curve: + title: Dwell voltage correction + labels: + - Voltage + - Dwell + xAxis: + - 6 + - 22 + - 6 + yAxis: + - 0 + - 255 + - 6 + xBins: + - brvBins + - batteryVoltage + yBins: + - dwellRates + size: [] + injector_voltage_curve: + title: Injector voltage correction + labels: + - Voltage + - Injector + xAxis: + - 6 + - 22 + - 6 + yAxis: + - 0 + - 255 + - 6 + xBins: + - brvBins + - batteryVoltage + yBins: + - injBatRates + size: [] + injector_timing_curve: + title: Injector timing + labels: + - RPM + - Injector + xAxis: + - 0 + - 7000 + - 6 + yAxis: + - 0 + - 720 + - 5 + xBins: + - injAngRPM + - rpm + yBins: + - injAng + size: [] + airdensity_curve: + title: IAT density correction + labels: + - Air Temperature + - Fuel Amount + xAxis: + - -40 + - 160 + - 6 + yAxis: + - 0 + - 255 + - 6 + xBins: + - airDenBins + - iat + yBins: + - airDenRates + size: [] + baroFuel_curve: + title: Baro fuel correction + labels: + - Baro Pressure + - Fuel Amount + xAxis: + - 75 + - 112 + - 6 + yAxis: + - 0 + - 255 + - 6 + xBins: + - baroFuelBins + - baro + yBins: + - baroFuelValues + size: [] + fuelTemp_curve: + title: Fuel temp correction + labels: + - Fuel Temperature + - Fuel Amount + xAxis: + - -40 + - 125 + - 6 + yAxis: + - 0 + - 255 + - 6 + xBins: + - fuelTempBins + - fuelTemp + yBins: + - fuelTempValues + size: [] + iat_retard_curve: + title: IAT timing retard + labels: + - Inlet Air Temp + - Retard + xAxis: + - -40 + - 200 + - 5 + yAxis: + - 0 + - 30 + - 5 + xBins: + - iatRetBins + - iat + yBins: + - iatRetRates + size: [] + clt_advance_curve: + title: Cold Advance + labels: + - Coolant Temp + - Advance + xAxis: + - -40 + - 200 + - 5 + yAxis: + - -12.7 + - 12.7 + - 5 + xBins: + - cltAdvBins + - coolant + yBins: + - cltAdvValues + size: [] + idle_advance_curve: + title: Idle Advance + labels: + - RPM Delta + - Advance + xAxis: + - -500 + - 500 + - 5 + yAxis: + - -15 + - 50 + - 5 + xBins: + - idleAdvBins + - CLIdleDelta + yBins: + - idleAdvValues + size: + - 450 + - 200 + iacPwm_curve: + title: IAC PWM Duty + labels: + - Coolant Temperature + - Valve + xAxis: + - -40 + - 315 + - 6 + yAxis: + - 0 + - 100 + - 4 + xBins: + - iacBins + - coolant + yBins: + - iacOLPWMVal + size: [] + iacPwmCrank_curve: + title: IAC PWM Cranking Duty + labels: + - Coolant Temperature + - Valve + xAxis: + - -40 + - 215 + - 6 + yAxis: + - 0 + - 100 + - 4 + xBins: + - iacCrankBins + - coolant + yBins: + - iacCrankDuty + size: [] + iacStep_curve: + title: IAC Stepper Motor + labels: + - Coolant Temperature + - Motor + xAxis: + - -40 + - 315 + - 6 + yAxis: + - 0 + - 850 + - 4 + xBins: + - iacBins + - coolant + yBins: + - iacOLStepVal + size: [] + iacStepCrank_curve: + title: IAC Stepper Motor Cranking + labels: + - Coolant Temperature + - Motor + xAxis: + - -40 + - 120 + - 6 + yAxis: + - 0 + - 850 + - 4 + xBins: + - iacCrankBins + - coolant + yBins: + - iacCrankSteps + size: [] + iacClosedLoop_curve: + title: Idle RPM Targets + labels: + - Coolant Temperature + - Motor + xAxis: + - -40 + - 120 + - 6 + yAxis: + - 0 + - 2000 + - 4 + xBins: + - iacBins + - coolant + yBins: + - iacCLValues + size: + - 450 + - 200 + rotaryTrailing_curve: + title: Rotary Trailing Split + labels: + - Engine load + - Split + xAxis: + - 0 + - '{ fuelLoadMax }' + - 5 + yAxis: + - 0 + - 40 + - 4 + xBins: + - rotarySplitBins + - fuelLoad + yBins: + - rotarySplitValues + size: [] + warmup_curve: + title: Warmup Enrichment (WUE) Curve + labels: + - Coolant + - WUE % + xAxis: + - -40 + - 210 + - 9 + yAxis: + - 0 + - 240 + - 6 + xBins: + - wueBins + - coolant + yBins: + - wueRates + size: [] + cranking_enrich_curve: + title: Cranking Enrichment Curve + labels: + - Coolant + - Fuel Modifier + xAxis: + - -40 + - 110 + - 9 + yAxis: + - 0 + - 400 + - 6 + xBins: + - crankingEnrichBins + - coolant + yBins: + - crankingEnrichValues + size: [] + priming_pw_curve: + title: Priming Pulsewidth + labels: + - Coolant + - PW + xAxis: + - -40 + - 110 + - 4 + yAxis: + - 0 + - 10 + - 4 + xBins: + - primeBins + - coolant + yBins: + - primePulse + size: [] + afterstart_enrichment_curve: + title: ASE - Enrichment % + labels: + - Coolant + - Enrichment + xAxis: + - -40 + - 110 + - 4 + yAxis: + - 0 + - 200 + - 4 + xBins: + - aseBins + - coolant + yBins: + - asePct + size: + - 50 + - 250 + afterstart_enrichment_time: + title: ASE - Duration + labels: + - Coolant + - Time + xAxis: + - -40 + - 110 + - 4 + yAxis: + - 0 + - 20 + - 4 + xBins: + - aseBins + - coolant + yBins: + - aseCount + size: + - 50 + - 250 + flex_fuel_curve: + title: Flex Fuel Adjustments + labels: + - Ethanol + - Fuel + xAxis: + - 0 + - 100 + - 10 + yAxis: + - 50 + - 250 + - 5 + xBins: + - flexFuelBins + - flex + yBins: + - flexFuelAdj + size: + - 400 + - 200 + flex_adv_curve: + title: Flex Timing Advance + labels: + - Ethanol + - Advance + xAxis: + - 0 + - 100 + - 10 + yAxis: + - 0 + - 50 + - 5 + xBins: + - flexAdvBins + - flex + yBins: + - flexAdvAdj + size: + - 400 + - 200 + flex_boost_curve: + title: Flex Boost Adjustments + labels: + - Ethanol + - Boost + xAxis: + - 0 + - 100 + - 10 + yAxis: + - -100 + - 200 + - 5 + xBins: + - flexBoostBins + - flex + yBins: + - flexBoostAdj + size: + - 400 + - 200 + knock_window_angle_curve: + title: Knock Window + labels: + - RPM + - Window Start + xAxis: + - 0 + - 8000 + - 9 + yAxis: + - -100 + - 100 + - 11 + xBins: + - knock_window_rpms + - rpm + yBins: + - knock_window_angle + size: + - 400 + - 200 + knock_window_duration_curve: + title: Knock Window Duration + labels: + - RPM + - Window Duration + xAxis: + - 0 + - 8000 + - 9 + yAxis: + - 0 + - 100 + - 10 + xBins: + - knock_window_rpms + - rpm + yBins: + - knock_window_dur + size: + - 400 + - 200 + oil_pressure_prot_curve: + title: Oil Pressure Protection + labels: + - RPM + - Minimum PSI + xAxis: + - 0 + - 8000 + - 9 + yAxis: + - 0 + - 150 + - 3 + xBins: + - oilPressureProtRPM + - rpm + yBins: + - oilPressureProtMins + size: + - 400 + - 200 + warmup_afr_curve: + title: Target Adjustment + labels: + - Coolant + - Offset + xAxis: + - -40 + - 210 + - 9 + yAxis: + - -4 + - 1 + - 5 + xBins: + - wueBins + - coolant + yBins: + - wueAFR + size: [] + warmup_analyzer_curve: + title: Warmup Enrichment + labels: + - Coolant + - Current WUE + - Coolant + - Recommended WUE + xAxis: + - -40 + - 210 + - 9 + yAxis: + - 100 + - 255 + - 6 + xBins: + - wueBins + - coolant + yBins: + - wueRecommended + size: [] + wmi_adv_curve: + title: WMI Timing Advance + labels: + - kPa + - Advance + xAxis: + - 0 + - 511 + - 20 + yAxis: + - 0 + - 50 + - 5 + xBins: + - wmiAdvBins + - map + yBins: + - wmiAdvAdj + size: + - 400 + - 200 +tables: + veTable1Tbl: + map: veTable1Map + title: VE Table + page: 2 + xBins: + - rpmBins + - rpm + yBins: + - fuelLoadBins + - fuelLoad + xyLabels: + - RPM + - 'Fuel Load:' + zBins: + - veTable + gridHeight: 2 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - (RICHER) + - (LEANER) + help: http://speeduino.com/wiki/index.php/Tuning + fuelTable2Tbl: + map: fuel2Map + title: Fuel Table 2 + page: 11 + xBins: + - fuelRPM2Bins + - rpm + yBins: + - fuelLoad2Bins + - fuelLoad2 + xyLabels: + - RPM + - 'Fuel Load:' + zBins: + - veTable2 + gridHeight: 2 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - (RICHER) + - (LEANER) + help: http://speeduino.com/wiki/index.php/Tuning + sparkTbl: + map: sparkMap + title: Ignition Advance Table + page: 3 + xBins: + - rpmBins2 + - rpm + yBins: + - mapBins1 + - ignLoad + xyLabels: + - RPM + - 'Ignition Load:' + zBins: + - advTable1 + gridHeight: 3 + gridOrient: [] + upDownLabel: + - ADVANCING + - RETARDING + spark2Tbl: + map: spark2Map + title: Second Ignition Advance Table + page: 14 + xBins: + - rpmBins3 + - rpm + yBins: + - mapBins2 + - ignLoad + xyLabels: + - RPM + - 'Ignition Load:' + zBins: + - advTable2 + gridHeight: 3 + gridOrient: [] + upDownLabel: + - ADVANCING + - RETARDING + afrTable1Tbl: + map: afrTable1Map + title: AFR Table + page: 5 + xBins: + - rpmBinsAFR + - rpm + yBins: + - loadBinsAFR + - fuelLoad + xyLabels: [] + zBins: + - afrTable + gridHeight: 1 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - RICHER + - LEANER + boostTbl: + map: boostMap + title: Boost Duty / Target + page: 8 + xBins: + - rpmBinsBoost + - rpm + yBins: + - tpsBinsBoost + - throttle + xyLabels: [] + zBins: + - boostTable + gridHeight: 3 + gridOrient: [] + upDownLabel: + - HIGHER + - LOWER + vvtTbl: + map: vvtMap + title: VVT control Table + page: 8 + xBins: + - rpmBinsVVT + - rpm + yBins: + - loadBinsVVT + - vvtLoad + xyLabels: + - RPM + - 'VVT Load:' + zBins: + - vvtTable + gridHeight: 3 + gridOrient: [] + upDownLabel: + - HIGHER + - LOWER + wmiTbl: + map: wmiMapMap + title: WMI control Table + page: 8 + xBins: + - rpmBinsWMI + - rpm + yBins: + - mapBinsWMI + - map + xyLabels: + - RPM + - 'WMI Load:' + zBins: + - wmiTable + gridHeight: 3 + gridOrient: [] + upDownLabel: + - HIGHER + - LOWER + stagingTbl: + map: stagingMap + title: Fuel Staging Table + page: 10 + xBins: + - rpmBinsStaging + - rpm + yBins: + - loadBinsStaging + - fuelLoad + xyLabels: [] + zBins: + - stagingTable + gridHeight: 3 + gridOrient: [] + upDownLabel: + - HIGHER + - LOWER + fuelTrimTable1Tbl: + map: fuelTrimTable1Map + title: Fuel trim Table 1 + page: 9 + xBins: + - fuelTrim1rpmBins + - rpm + yBins: + - fuelTrim1loadBins + - fuelLoad + xyLabels: [] + zBins: + - fuelTrim1Table + gridHeight: 2 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - (RICHER) + - (LEANER) + help: http://speeduino.com/wiki/index.php/Tuning + fuelTrimTable2Tbl: + map: fuelTrimTable2Map + title: Fuel trim Table 2 + page: 9 + xBins: + - fuelTrim2rpmBins + - rpm + yBins: + - fuelTrim2loadBins + - fuelLoad + xyLabels: [] + zBins: + - fuelTrim2Table + gridHeight: 2 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - (RICHER) + - (LEANER) + help: http://speeduino.com/wiki/index.php/Tuning + fuelTrimTable3Tbl: + map: fuelTrimTable3Map + title: Fuel trim Table 3 + page: 9 + xBins: + - fuelTrim3rpmBins + - rpm + yBins: + - fuelTrim3loadBins + - fuelLoad + xyLabels: [] + zBins: + - fuelTrim3Table + gridHeight: 2 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - (RICHER) + - (LEANER) + help: http://speeduino.com/wiki/index.php/Tuning + fuelTrimTable4Tbl: + map: fuelTrimTable4Map + title: Fuel trim Table 4 + page: 9 + xBins: + - fuelTrim4rpmBins + - rpm + yBins: + - fuelTrim4loadBins + - fuelLoad + xyLabels: [] + zBins: + - fuelTrim4Table + gridHeight: 2 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - (RICHER) + - (LEANER) + help: http://speeduino.com/wiki/index.php/Tuning + fuelTrimTable5Tbl: + map: fuelTrimTable5Map + title: Fuel trim Table 5 + page: 9 + xBins: + - fuelTrim5rpmBins + - rpm + yBins: + - fuelTrim5loadBins + - fuelLoad + xyLabels: [] + zBins: + - fuelTrim5Table + gridHeight: 2 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - (RICHER) + - (LEANER) + help: http://speeduino.com/wiki/index.php/Tuning + fuelTrimTable6Tbl: + map: fuelTrimTable6Map + title: Fuel trim Table 6 + page: 9 + xBins: + - fuelTrim6rpmBins + - rpm + yBins: + - fuelTrim6loadBins + - fuelLoad + xyLabels: [] + zBins: + - fuelTrim6Table + gridHeight: 2 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - (RICHER) + - (LEANER) + help: http://speeduino.com/wiki/index.php/Tuning + fuelTrimTable7Tbl: + map: fuelTrimTable7Map + title: Fuel trim Table 7 + page: 9 + xBins: + - fuelTrim7rpmBins + - rpm + yBins: + - fuelTrim7loadBins + - fuelLoad + xyLabels: [] + zBins: + - fuelTrim7Table + gridHeight: 2 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - (RICHER) + - (LEANER) + help: http://speeduino.com/wiki/index.php/Tuning + fuelTrimTable8Tbl: + map: fuelTrimTable8Map + title: Fuel trim Table 8 + page: 9 + xBins: + - fuelTrim8rpmBins + - rpm + yBins: + - fuelTrim8loadBins + - fuelLoad + xyLabels: [] + zBins: + - fuelTrim8Table + gridHeight: 2 + gridOrient: + - 250 + - 0 + - 340 + upDownLabel: + - (RICHER) + - (LEANER) + help: http://speeduino.com/wiki/index.php/Tuning + dwell_map: + map: dwell_tblMap + title: Dwell map + page: 4 + xBins: + - rpmBinsDwell + - rpm + yBins: + - mapBinsDwell + - map + xyLabels: + - RPM + - 'Load:' + zBins: + - dwellTable + gridHeight: 3 + gridOrient: [] + upDownLabel: + - HIGHER + - LOWER +outputChannels: + ochGetCommand: + value: r\$tsCanId\x30%2o%2c + ochBlockSize: + value: '117' + secl: + type: scalar + size: U08 + offset: 0 + units: sec + scale: 1 + transform: 0 + status1: + type: scalar + size: U08 + offset: 1 + units: bits + scale: 1 + transform: 0 + inj1Status: + type: bits + size: U08 + offset: 1 + units: '' + scale: '' + transform: '' + inj2Status: + type: bits + size: U08 + offset: 1 + units: '' + scale: '' + transform: '' + inj3Status: + type: bits + size: U08 + offset: 1 + units: '' + scale: '' + transform: '' + inj4Status: + type: bits + size: U08 + offset: 1 + units: '' + scale: '' + transform: '' + DFCOOn: + type: bits + size: U08 + offset: 1 + units: '' + scale: '' + transform: '' + boostCutFuel: + type: bits + size: U08 + offset: 1 + units: '' + scale: '' + transform: '' + toothLog1Ready: + type: bits + size: U08 + offset: 1 + units: '' + scale: '' + transform: '' + toothLog2Ready: + type: bits + size: U08 + offset: 1 + units: '' + scale: '' + transform: '' + engine: + type: scalar + size: U08 + offset: 2 + units: bits + scale: 1 + transform: 0 + running: + type: bits + size: U08 + offset: 2 + units: '' + scale: '' + transform: '' + crank: + type: bits + size: U08 + offset: 2 + units: '' + scale: '' + transform: '' + ase: + type: bits + size: U08 + offset: 2 + units: '' + scale: '' + transform: '' + warmup: + type: bits + size: U08 + offset: 2 + units: '' + scale: '' + transform: '' + tpsaccaen: + type: bits + size: U08 + offset: 2 + units: '' + scale: '' + transform: '' + tpsaccden: + type: bits + size: U08 + offset: 2 + units: '' + scale: '' + transform: '' + mapaccaen: + type: bits + size: U08 + offset: 2 + units: '' + scale: '' + transform: '' + mapaccden: + type: bits + size: U08 + offset: 2 + units: '' + scale: '' + transform: '' + syncLossCounter: + type: scalar + size: U08 + offset: 3 + units: '' + scale: 1 + transform: 0 + map: + type: scalar + size: U16 + offset: 4 + units: kpa + scale: 1 + transform: 0 + iatRaw: + type: scalar + size: U08 + offset: 6 + units: °C + scale: 1 + transform: 0 + coolantRaw: + type: scalar + size: U08 + offset: 7 + units: °C + scale: 1 + transform: 0 + batCorrection: + type: scalar + size: U08 + offset: 8 + units: '%' + scale: 1 + transform: 0 + batteryVoltage: + type: scalar + size: U08 + offset: 9 + units: V + scale: 0.1 + transform: 0 + afr: + type: scalar + size: U08 + offset: 10 + units: O2 + scale: 0.1 + transform: 0 + egoCorrection: + type: scalar + size: U08 + offset: 11 + units: '%' + scale: 1 + transform: 0 + airCorrection: + type: scalar + size: U08 + offset: 12 + units: '%' + scale: 1 + transform: 0 + warmupEnrich: + type: scalar + size: U08 + offset: 13 + units: '%' + scale: 1 + transform: 0 + rpm: + type: scalar + size: U16 + offset: 14 + units: rpm + scale: 1 + transform: 0 + accelEnrich: + type: scalar + size: U08 + offset: 16 + units: '%' + scale: 2 + transform: 0 + gammaEnrich: + type: scalar + size: U16 + offset: 17 + units: '%' + scale: 1 + transform: 0 + VE1: + type: scalar + size: U08 + offset: 19 + units: '%' + scale: 1 + transform: 0 + VE2: + type: scalar + size: U08 + offset: 20 + units: '%' + scale: 1 + transform: 0 + afrTarget: + type: scalar + size: U08 + offset: 21 + units: O2 + scale: 0.1 + transform: 0 + TPSdot: + type: scalar + size: U08 + offset: 22 + units: '%/s' + scale: 10 + transform: 0 + advance: + type: scalar + size: S08 + offset: 23 + units: deg + scale: 1 + transform: 0 + tps: + type: scalar + size: U08 + offset: 24 + units: '%' + scale: 1 + transform: 0 + loopsPerSecond: + type: scalar + size: U16 + offset: 25 + units: loops + scale: 1 + transform: 0 + freeRAM: + type: scalar + size: U16 + offset: 27 + units: bytes + scale: 1 + transform: 0 + boostTarget: + type: scalar + size: U08 + offset: 29 + units: kPa + scale: 2 + transform: 0 + boostDuty: + type: scalar + size: U08 + offset: 30 + units: '%' + scale: 1 + transform: 0 + status2: + type: scalar + size: U08 + offset: 31 + units: bits + scale: 1 + transform: 0 + launchHard: + type: bits + size: U08 + offset: 31 + units: '' + scale: '' + transform: '' + launchSoft: + type: bits + size: U08 + offset: 31 + units: '' + scale: '' + transform: '' + hardLimitOn: + type: bits + size: U08 + offset: 31 + units: '' + scale: '' + transform: '' + softlimitOn: + type: bits + size: U08 + offset: 31 + units: '' + scale: '' + transform: '' + boostCutSpark: + type: bits + size: U08 + offset: 31 + units: '' + scale: '' + transform: '' + error: + type: bits + size: U08 + offset: 31 + units: '' + scale: '' + transform: '' + idleControlOn: + type: bits + size: U08 + offset: 31 + units: '' + scale: '' + transform: '' + sync: + type: bits + size: U08 + offset: 31 + units: '' + scale: '' + transform: '' + rpmDOT: + type: scalar + size: S16 + offset: 32 + units: rpm/s + scale: 1 + transform: 0 + flex: + type: scalar + size: U08 + offset: 34 + units: '%' + scale: 1 + transform: 0 + flexFuelCor: + type: scalar + size: U08 + offset: 35 + units: '%' + scale: 1 + transform: 0 + flexIgnCor: + type: scalar + size: S08 + offset: 36 + units: deg + scale: 1 + transform: 0 + idleLoad: + type: scalar + size: U08 + offset: 37 + units: '{ bitStringValue( idleUnits , iacAlgorithm ) }' + scale: >- + { (iacAlgorithm == 2 || iacAlgorithm == 3 || iacAlgorithm == 6 || + iacMaxSteps <= 255) ? 1.000 : 2.000 } + transform: 0 + testoutputs: + type: scalar + size: U08 + offset: 38 + units: bits + scale: 1 + transform: 0 + testenabled: + type: bits + size: U08 + offset: 38 + units: '' + scale: '' + transform: '' + testactive: + type: bits + size: U08 + offset: 38 + units: '' + scale: '' + transform: '' + afr2: + type: scalar + size: U08 + offset: 39 + units: O2 + scale: 0.1 + transform: 0 + baro: + type: scalar + size: U08 + offset: 40 + units: kpa + scale: 1 + transform: 0 + auxin_gauge0: + type: scalar + size: U16 + offset: 41 + units: '' + scale: 1 + transform: 0 + auxin_gauge1: + type: scalar + size: U16 + offset: 43 + units: '' + scale: 1 + transform: 0 + auxin_gauge2: + type: scalar + size: U16 + offset: 45 + units: '' + scale: 1 + transform: 0 + auxin_gauge3: + type: scalar + size: U16 + offset: 47 + units: '' + scale: 1 + transform: 0 + auxin_gauge4: + type: scalar + size: U16 + offset: 49 + units: '' + scale: 1 + transform: 0 + auxin_gauge5: + type: scalar + size: U16 + offset: 51 + units: '' + scale: 1 + transform: 0 + auxin_gauge6: + type: scalar + size: U16 + offset: 53 + units: '' + scale: 1 + transform: 0 + auxin_gauge7: + type: scalar + size: U16 + offset: 55 + units: '' + scale: 1 + transform: 0 + auxin_gauge8: + type: scalar + size: U16 + offset: 57 + units: '' + scale: 1 + transform: 0 + auxin_gauge9: + type: scalar + size: U16 + offset: 59 + units: '' + scale: 1 + transform: 0 + auxin_gauge10: + type: scalar + size: U16 + offset: 61 + units: '' + scale: 1 + transform: 0 + auxin_gauge11: + type: scalar + size: U16 + offset: 63 + units: '' + scale: 1 + transform: 0 + auxin_gauge12: + type: scalar + size: U16 + offset: 65 + units: '' + scale: 1 + transform: 0 + auxin_gauge13: + type: scalar + size: U16 + offset: 67 + units: '' + scale: 1 + transform: 0 + auxin_gauge14: + type: scalar + size: U16 + offset: 69 + units: '' + scale: 1 + transform: 0 + auxin_gauge15: + type: scalar + size: U16 + offset: 71 + units: '' + scale: 1 + transform: 0 + tpsADC: + type: scalar + size: U08 + offset: 73 + units: ADC + scale: 1 + transform: 0 + errors: + type: scalar + size: U08 + offset: 74 + units: bits + scale: 1 + transform: 0 + errorNum: + type: bits + size: U08 + offset: 74 + units: '' + scale: '' + transform: '' + currentError: + type: bits + size: U08 + offset: 74 + units: '' + scale: '' + transform: '' + pulseWidth: + type: scalar + size: U16 + offset: 75 + units: ms + scale: 0.001 + transform: 0 + pulseWidth2: + type: scalar + size: U16 + offset: 77 + units: ms + scale: 0.001 + transform: 0 + pulseWidth3: + type: scalar + size: U16 + offset: 79 + units: ms + scale: 0.001 + transform: 0 + pulseWidth4: + type: scalar + size: U16 + offset: 81 + units: ms + scale: 0.001 + transform: 0 + status3: + type: scalar + size: U08 + offset: 83 + units: bits + scale: 1 + transform: 0 + resetLockOn: + type: bits + size: U08 + offset: 83 + units: '' + scale: '' + transform: '' + nitrousOn: + type: bits + size: U08 + offset: 83 + units: '' + scale: '' + transform: '' + fuel2Active: + type: bits + size: U08 + offset: 83 + units: '' + scale: '' + transform: '' + vssRefresh: + type: bits + size: U08 + offset: 83 + units: '' + scale: '' + transform: '' + halfSync: + type: bits + size: U08 + offset: 83 + units: '' + scale: '' + transform: '' + nSquirts: + type: bits + size: U08 + offset: 83 + units: '' + scale: '' + transform: '' + engineProtectStatus: + type: scalar + size: U08 + offset: 84 + units: bits + scale: 1 + transform: 0 + engineProtectRPM: + type: bits + size: U08 + offset: 84 + units: '' + scale: '' + transform: '' + engineProtectMAP: + type: bits + size: U08 + offset: 84 + units: '' + scale: '' + transform: '' + engineProtectOil: + type: bits + size: U08 + offset: 84 + units: '' + scale: '' + transform: '' + engineProtectAFR: + type: bits + size: U08 + offset: 84 + units: '' + scale: '' + transform: '' + engineProtectOth: + type: bits + size: U08 + offset: 84 + units: '' + scale: '' + transform: '' + IOError: + type: bits + size: U08 + offset: 84 + units: '' + scale: '' + transform: '' + unused1: + type: scalar + size: U08 + offset: 84 + units: ADC + scale: 1 + transform: 0 + fuelLoad: + type: scalar + size: S16 + offset: 85 + units: '{ bitStringValue( algorithmUnits , algorithm ) }' + scale: 1 + transform: 0 + ignLoad: + type: scalar + size: S16 + offset: 87 + units: '{ bitStringValue( algorithmUnits , ignAlgorithm ) }' + scale: 1 + transform: 0 + dwell: + type: scalar + size: U16 + offset: 89 + units: ms + scale: 0.001 + transform: 0 + CLIdleTarget: + type: scalar + size: U08 + offset: 91 + units: RPM + scale: 10 + transform: 0 + MAPdot: + type: scalar + size: U08 + offset: 92 + units: kPa/s + scale: 10 + transform: 0 + vvt1Angle: + type: scalar + size: S08 + offset: 93 + units: deg + scale: 1 + transform: 0 + vvt1Target: + type: scalar + size: U08 + offset: 94 + units: deg + scale: 1 + transform: 0 + vvt1Duty: + type: scalar + size: U08 + offset: 95 + units: '%' + scale: 1 + transform: 0 + flexBoostCor: + type: scalar + size: S16 + offset: 96 + units: kPa + scale: 1 + transform: 0 + baroCorrection: + type: scalar + size: U08 + offset: 98 + units: '%' + scale: 1 + transform: 0 + veCurr: + type: scalar + size: U08 + offset: 99 + units: '%' + scale: 1 + transform: 0 + ASECurr: + type: scalar + size: U08 + offset: 100 + units: '%' + scale: 1 + transform: 0 + vss: + type: scalar + size: U16 + offset: 101 + units: km/h + scale: 1 + transform: 0 + gear: + type: scalar + size: U08 + offset: 103 + units: '' + scale: 1 + transform: 0 + fuelPressure: + type: scalar + size: U08 + offset: 104 + units: PSI + scale: 1 + transform: 0 + oilPressure: + type: scalar + size: U08 + offset: 105 + units: PSI + scale: 1 + transform: 0 + wmiPW: + type: scalar + size: U08 + offset: 106 + units: '%' + scale: 1 + transform: 0 + wmiEmpty: + type: scalar + size: U08 + offset: 107 + units: bits + scale: 1 + transform: 0 + wmiEmptyBit: + type: bits + size: U08 + offset: 107 + units: '' + scale: '' + transform: '' + vvt2Angle: + type: scalar + size: S08 + offset: 108 + units: deg + scale: 1 + transform: 0 + vvt2Target: + type: scalar + size: U08 + offset: 109 + units: deg + scale: 1 + transform: 0 + vvt2Duty: + type: scalar + size: U08 + offset: 110 + units: '%' + scale: 1 + transform: 0 + outputsStatus0: + type: bits + size: U08 + offset: 111 + units: '' + scale: '' + transform: '' + outputsStatus1: + type: bits + size: U08 + offset: 111 + units: '' + scale: '' + transform: '' + outputsStatus2: + type: bits + size: U08 + offset: 111 + units: '' + scale: '' + transform: '' + outputsStatus3: + type: bits + size: U08 + offset: 111 + units: '' + scale: '' + transform: '' + outputsStatus4: + type: bits + size: U08 + offset: 111 + units: '' + scale: '' + transform: '' + outputsStatus5: + type: bits + size: U08 + offset: 111 + units: '' + scale: '' + transform: '' + outputsStatus6: + type: bits + size: U08 + offset: 111 + units: '' + scale: '' + transform: '' + outputsStatus7: + type: bits + size: U08 + offset: 111 + units: '' + scale: '' + transform: '' + fuelTempRaw: + type: scalar + size: U08 + offset: 112 + units: °C + scale: 1 + transform: 0 + fuelTempCor: + type: scalar + size: U08 + offset: 113 + units: '%' + scale: 1 + transform: 0 + advance1: + type: scalar + size: S08 + offset: 114 + units: deg + scale: 1 + transform: 0 + advance2: + type: scalar + size: S08 + offset: 115 + units: deg + scale: 1 + transform: 0 + sd_status: + type: scalar + size: U08 + offset: 116 + units: '' + scale: 1 + transform: 0 + coolant: + value: '{ (coolantRaw - 40) * 1.8 + 32 }' + iat: + value: '{ (iatRaw - 40) * 1.8 + 32 }' + fuelTemp: + value: '{ (fuelTempRaw - 40) * 1.8 + 32 }' + time: + value: '{ timeNow }' + seconds: + value: '{ secl }' + throttle: + value: '{ tps }' + revolutionTime: + value: '{ rpm ? ( 60000.0 / rpm) : 0 }' + strokeMultipler: + value: '{ twoStroke == 1 ? 1 : 2 }' + cycleTime: + value: '{ revolutionTime * strokeMultipler }' + pulseLimit: + value: '{ cycleTime / nSquirts }' + nFuelChannels: + value: '{ arrayValue( array.boardFuelOutputs, pinLayout ) }' + nIgnChannels: + value: '{ arrayValue( array.boardIgnOutputs, pinLayout ) }' + sequentialFuelAvailable: + value: '{ nCylinders <= nFuelChannels }' + sequentialIgnitionAvailable: + value: '{ nCylinders <= nIgnChannels }' + dutyCycle: + value: '{ rpm ? ( 100.0*pulseWidth/pulseLimit ) : 0 }' + stgDutyCycle: + value: '{ rpm && stagingEnabled ? ( 100.0*pulseWidth3/pulseLimit ) : 0 }' + boostCutOut: + value: '{ boostCutFuel || boostCutSpark }' + lambda: + value: '{ afr / stoich }' + lambdaTarget: + value: '{ afrTarget / stoich }' + MAPxRPM: + value: '{ rpm * map }' + loopsPerRev: + value: '{ loopsPerSecond / (rpm / 60) }' + req_fuel: + value: '{ reqFuel }' + bat_correction: + value: '{ battVCorMode ? 100 : batCorrection }' + inj_open: + value: '{ battVCorMode ? ((injOpen * batCorrection) / 100) : injOpen }' + ase_enrich: + value: '{ ASECurr }' + map_multiply_amt: + value: '{ multiplyMAP ? map : 100 }' + map_bar: + value: '{ (map - baro) / 101.33 }' + map_psi: + value: '{ (map - baro) * 0.145038 }' + map_inhg: + value: '{ (baro - map) * 0.2953007 }' + map_vacboost: + value: '{ map < baro ? -map_inhg : map_psi }' + vssMPH: + value: '{ vss / 1.60934 }' + fuelLoadMax: + value: '{ (algorithm == 0 || algorithm == 2) ? 511 : 100 }' + ignLoadMax: + value: '{ (ignAlgorithm == 0 || ignAlgorithm == 2) ? 511 : 100 }' + fuel2LoadMax: + value: '{ (fuel2Algorithm == 0 || fuel2Algorithm == 2) ? 511 : 100 }' + ign2LoadMax: + value: '{ (spark2Algorithm == 0 || spark2Algorithm == 2) ? 511 : 100 }' + fuelLoad2: + value: >- + { fuel2Algorithm == 0 ? map : fuel2Algorithm == 1 ? tps : fuel2Algorithm + == 2 ? 0 : 0 } + vvtLoad: + value: '{ (vvtLoadSource == 0) ? map : tps }' + boostTableLimit: + value: '{ boostType == 0 ? 100 : 511 }' + CLIdleDelta: + value: '{ CLIdleTarget - rpm }' +help: + nCylinders: Cylinder count + alternate: >- + Whether or not the injectors should be fired at the same time. This setting + is ignored when Sequential is selected below, however it will still affect + the req_fuel value. + engineType: >- + Engines with an equal number of degrees between all firings (This is most + engines) should select Even fire. Some 2 and 6 cylinder engines are Odd fire + however. + twoStroke: Four-Stroke (most engines), Two-stroke. + nInjectors: Number of primary injectors. + mapSample: >- + The method used for calculating the MAP reading\nFor 1-2 Cylinder engines, + Cycle Minimum is recommended.\nFor more than 2 cylinders Cycle Average is + recommended + stoich: >- + The stoichiometric ration of the fuel being used. For flex fuel, choose the + primary fuel + injLayout: >- + The injector layout and timing to be used. Options are: \n 1. Paired - 2 + injectors per output. Outputs active is equal to half the number of + cylinders. Outputs are timed over 1 crank revolution. \n 2. Semi-sequential: + Same as paired except that injector channels are mirrored (1&4, 2&3) meaning + the number of outputs used are equal to the number of cylinders. Only valid + for 4 cylinders or less. \n 3. Banked: 2 outputs only used. \n 4. + Sequential: 1 injector per output and outputs used equals the number of + cylinders. Injection is timed over full cycle. + TrigPattern: The type of input trigger decoder to be used. + useResync: >- + If enabled, sync will be rechecked once every full cycle from the cam input. + This is good for accuracy, however if your cam input is noisy then this can + cause issues. + trigPatternSec: Cam mode/type also known as Secondary Trigger Pattern. + numTeeth: Number of teeth on Primary Wheel. + TrigSpeed: Primary trigger speed. + missingTeeth: Number of Missing teeth on Primary Wheel. + TrigAng: >- + The Angle ATDC when tooth No:1 on the primary wheel passes the primary + sensor. The range of this field is -360 to +360 degrees. + TrigAngMul: >- + A multiplier used by non-360 degree tooth wheels (i.e. Wheels where the + tooth count doesn't divide evenly into 360. Usage: (360 * ) / + tooth_count = Whole number + SkipCycles: >- + The number of revolutions that will be skipped during cranking before the + injectors and coils are fired. + TrigEdge: The Trigger edge of the primary sensor.\nLeading.\nTrailing. + TrigEdgeSec: The Trigger edge of the secondary (Cam) sensor.\nLeading.\nTrailing. + TrigFilter: >- + Tuning of the trigger filter algorithm. The more aggressive the setting, the + more noise will be removed, however this increases the chance of some true + readings being filtered out (False positive). Medium is safe for most + setups. Only select 'Aggressive' if no other options are working + sparkMode: >- + Wasted Spark: Ignition outputs are on the channels <= half the number of + cylinders. Eg 4 cylinder outputs on IGN1 and IGN2.\nSingle Channel: All + ignition pulses are output on IGN1.\nWasted COP: Ignition pulses are output + on all ignition channels up to the number of cylinders. Eg 4 cylinder + outputs on all ignition channels. Note that your board needs to have same + number of igntion outputs as cylinders to be able to run this + IgInv: >- + Whether the spark fires when the ignition signal goes high or goes low. + Nearly all ignition systems use 'Going Low' but please verify this as damage + to coils can result from the incorrect selection. (NOTE: THIS IS NOT + MEGASQUIRT. THIS SETTING IS USUALLY THE OPPOSITE OF WHAT THEY USE!) + sparkDur: The duration of the spark at full dwell. Typically around 1ms + fixAngEnable: >- + If enabled, timing will be locked/fixed and the ignition map will be + ignored. Note that this value will be overriden by the fixed cranking value + when cranking + FixAng: Timing will be locked at this value if the above is enabled + crankRPM: >- + The cranking RPM threshold. When RPM is lower than this value (and above 0) + the system will be considered to be cranking + tpsflood: >- + Keep throttle over this value to disable the priming pulse and cranking + fuel. Used to prevent flood or clear already flooded engine + fanInv: 0 + fanHyster: >- + The number of degrees of hysteresis to be used in controlling the fan. + Recommended values are between 2 and 5 + fanWhenCranking: >- + Whether the fan should be disabled or continue running when the engine is + cranking + fanWhenOff: Whether the fan will continue to run when the engine is turned off + fanPin: >- + The Arduino pin that the fan control signal will output on. This is NOT + necesarrily the same as the connector pin on any particlar board + fanSP: The trigger temperature for the fan. Fan will be enabled above this temp + vssPulsesPerKm: The number of pulses on the VSS signal per KM/Mile + vssSmoothing: >- + A smoothing factor to help reduce noise in the VSS signal. Typical values + are between 0 and 50 + aeTime: The duration of the acceleration enrichment + aseTaperTime: Transition time to disable ASE + iacChannels: >- + The number of output channels used for PWM valves. Select 1 for 2-wire + valves or 2 for 3-wire valves. + iacStepTime: >- + Duration of each stepping pulse. Values that are too low can cause the motor + to behave erratically or not at all. See the manual for suggested step times + iacCoolTime: >- + Cool time between each step. Set to zero if you don't want any cooling at + all + iacStepHome: >- + Homing steps to perform on startup. Must be greater than the fully open + steps value + iacMaxSteps: >- + Maximum number of steps the IAC can be moved away from the home position. + Should always be less than Homing steps. + iacStepHyster: The minimum number of steps to move in any one go. + iacAlgorithm: >- + Selects method of idle control.\nNone = no idle control valve.\nOn/Off + valve.\nPWM valve (2,3 wire).\nStepper Valve (4,6,8 wire). + iacPWMdir: >- + Normal PWM valves increase RPM with higher duty. If RPM decreases with + higher duty then select Reverse + iacPWMrun: >- + Determies if the idle valve runs before engine is cranked over. This can + help starting the engine by letting more air in before the RPM sync is + acheived. + iacCLminDuty: >- + When using closed loop idle control, this is the minimum duty cycle that the + PID loop will allow. Combined with the maximum value, this specifies the + working range of your idle valve + iacCLmaxDuty: >- + When using closed loop idle control, this is the maximum duty cycle that the + PID loop will allow. Combined with the minimum value, this specifies the + working range of your idle valve + iacTPSlimit: >- + When using OL+CL idle control, if the TPS is higher than this value closed + loop idle resets the integeral of the PID (To prevent RPM dips comming back + to idle) + iacRPMlimitHysteresis: >- + When using closed loop idle control, if the closed loop Target RPM + this + value is higher than the actual RPM, closed loop idle resets the integeral + of the PID (To prevent RPM dips comming back to idle) + iacFastTemp: >- + Below this temperature, the idle output will be high (On). Above this + temperature, it will turn off. + idleUpPolarity: >- + Normal polarity is a ground switch where an earthed signal activates the + Idle Up. The internal pullup will be enabled with Normal polarity. \n + Inverted may be used if a 5v signal is used to enable the Idle Up. + CTPSPolarity: >- + Normal polarity is a ground switch where an earthed signal activates the + closed throttle position. The internal pullup will be enabled with Normal + polarity. \n Inverted may be used if a 5v signal is used to enable the + closed throttle position. + idleUpAdder: >- + The amount (In either Duty Cycle % or Steps (Depending on the idle control + method in use), that the idle control will increase by when Idle Up is + active + idleAdvEnabled: >- + Added setting adds curve values to current spark table values when user + defined idle is active. \n Switched setting overrides spark table values and + uses curve values for idle ignition timing. + idleAdvAlgorithm: >- + Use Throttle position sensor (TPS) or closed throttle position sensor (CTPS) + to detect idle state. + idleAdvDelay: >- + The number of seconds after sync is achieved before the idle advance control + begins + idleTaperTime: Soft time transition from crank to running PWM targets + oddfire2: >- + The ATDC angle of channel 2 for oddfire engines. This is relative to the TDC + angle of channel 1 + oddfire3: >- + The ATDC angle of channel 3 for oddfire engines. This is relative to the TDC + angle of channel 1 (NOT channel 2) + oddfire4: >- + The ATDC angle of channel 4 for oddfire engines. This is relative to the TDC + angle of channel 1 (NOT channel 3) + aeColdPct: >- + Acceleration enrichment adjustment for cold engine. Cold adjustment % is + tapered between start and end temperatures.\n100% = no adjustment. + aeColdTaperMin: >- + AE cold adjustment taper start temperature. When coolant is below this + value, full cold adjustment is applied. + aeColdTaperMax: >- + AE cold adjustment taper end temperature. When coolant is above this value, + no cold adjustment is applied. + dfcoRPM: >- + The RPM above which DFCO will be active. Typically set a few hundred RPM + above maximum idle speed + dfcoHyster: >- + Hysteresis for DFCO RPM. 200-300 RPM is typical for this, however a higher + value may be needed if the RPM is fluctuating around the cutout speed + dfcoTPSThresh: >- + The TPS value below which DFCO will be active. Typical value is 5%-10%, but + higher may be needed if TPS signal is noisy + dfcoDelay: Delay for activate DFCO. + dfcoMinCLT: Minimum temperature to enable DFCO. + launchPin: >- + The ARDUINO pin that the clutch switch is connected to. This is NOT the pin + on the connector, but the pin it relates to on the arduino + launchHiLo: >- + Whether the signal is High or Low when the clutch pedal is engaged. For a + ground switching input (Most clutch switches), this should be LOW + lnchPullRes: >- + Whether the internal pullup resistor is enabled or left floating. For a + ground switching input (Most clutch switches), select Pullup. For a 0v-5v + input, select Floating + ignBypassPin: >- + The ARDUINO pin that the ignition bypass is connected to. This is NOT the + pin on the connector, but the pin it relates to on the arduino + ignBypassEnable: >- + If turned on, a ground signal will be output during cranking on the + specified pin. This is used to bypass the Speeduino ignition control during + cranking. + ignCranklock: >- + On certain low resolution ignition patterns, the cranking timing can be + locked to occur when a pulse is recieved. + multiplyMAP: >- + If enabled, the MAP reading is included directly into the pulsewidth + calculation by multiplying the VE lookup value by the MAP:Baro ratio. This + results in a flatter VE table that can be easier to tune in some instances. + VE table must be retuned when this value is changed. + legacyMAP: >- + Use the legacy method of reading the MAP sensor that was used prior to the + 201905 firmware. This should ONLY be enabled if you are upgrading from a + firmware earlier than this + includeAFR: >- + When enabled, the current AFR reading is incorporated directly in the + pulsewidth calculation as a percentage of the current target ratio. VE table + must be retuned when this value is changed. + incorporateAFR: >- + When enabled, the AFR stoich/AFR target -ratio is incorporated directly in + the pulsewidth calculation. When enabled, AFR target table affects + pulsewidth even with EGO disabled. VE table must be retuned when this value + is changed. + useExtBaro: >- + By Default, Speeduino will measure barometric pressure upon startup. + Optionally however, a 2nd pressure sensor can be used to perform live + barometric readings whilst the system is on. + flexEnabled: Turns on readings from the Flex sensor and enables the below adjustments + flexFreqLow: >- + The frequency of the sensor at 0% ethanol (50Hz for standard GM/Continental + sensor) + flexFreqHigh: >- + The frequency of the sensor at 100% ethanol (150Hz for standard + GM/Continental sensor) + flexFuelAdj: >- + Fuel % to be used for the current ethanol % (Typically 100% @ 0%, 163% @ + 100%) + flexAdvAdj: >- + Additional advance (in degrees) for the current ethanol % (Typically 0 @ 0%, + 10-20 @ 100%) + flexBoostAdj: >- + Adjustment, in kPa, to the boost target for the current ethanol %. Negative + values are allowed to lower boost at lower ethanol % if necessary. + n2o_arming_pin: Pin that the nitrous arming/enagement switch is on. + n2o_pin_polarity: >- + Whether Nitrous is active (Armed) when the pin is LOW or HIGH. If LOW is + selected, the internal pullup will be used. + flatSArm: >- + The RPM switch point that determines whether an eganged clutch is for launch + control or flat shift. Below this figure, an engaged clutch is considered to + be for launch, above this figure an active clutch input will be considered a + flat shift. This should be set at least several hundred RPM above idle + flatSSoftWin: >- + The number of RPM below the flat shift point where the softlimit will be + applied (aka Soft limit window). Recommended values are 200-1000 + flatSRetard: >- + The absolute timing (BTDC) that will be used when within the soft limit + window + engineProtectType: >- + Whether the engine protect an rev limiter will cut the fuel, the ignition or + both + hardCutType: >- + How the cuts should be performed for rev/launch limits. Full cut will stop + all fuel/ignition events, Rolling cut will step through all ignition + outputs, only cutting a limited number per revolution + SoftLimitMode: >- + Fixed: the soft limiter will retard the ignition advance to the specified + value.\nRelative: current timing advance will be retarted by the specified + amount + HardRevLim: >- + The hard rev limit is the point that the fuel or ignition (or both) will be + cut completely to reduce increasing RPMs + engineProtectMaxRPM: >- + The RPM point that engine protections will engage from. Below this RPM + value, engine protections will NOT be active + fuel2InputPin: >- + The Arduino pin that is being used to trigger the second fuel table to be + active + fuel2InputPolarity: >- + Whether the 2nd fuel table should be active when input is high or low. This + should be LOW for a typical ground switching input + fuel2InputPullup: >- + Whether to use the built in PULLUP for the switching input. This should be + Yes for a typical ground switching input + enable_secondarySerial: >- + This Enables the secondary serial port . Secondary serial is serial3 on + mega2560 processor, and Serial2 on STM32 and Teensy processor + cltAdvValues: >- + This curve can be used to advance ignition timing when engine is warming up. + This can also be used to warm up the catalytic converters in cold start by + retarding timing. Or even as safety feature to retard timing when engine is + too hot to prevent knock. + wueRates: Final enrichment value must be 100%. + true_address: This is the 11bit Can address of the Speeduino ECU + realtime_base_address: >- + This is the 11bit CAN address of the realtime data broadcast from the + Speeduino ECU. This MUST be at least 0x16 greater than the true address + AUXin00Alias: The Ascii alias asigned to Aux input channel 0 + AUXin01Alias: The Ascii alias asigned to Aux input channel 1 + AUXin02Alias: The Ascii alias asigned to Aux input channel 2 + AUXin03Alias: The Ascii alias asigned to Aux input channel 3 + AUXin04Alias: The Ascii alias asigned to Aux input channel 4 + AUXin05Alias: The Ascii alias asigned to Aux input channel 5 + AUXin06Alias: The Ascii alias asigned to Aux input channel 6 + AUXin07Alias: The Ascii alias asigned to Aux input channel 7 + AUXin08Alias: The Ascii alias asigned to Aux input channel 8 + AUXin09Alias: The Ascii alias asigned to Aux input channel 9 + AUXin10Alias: The Ascii alias asigned to Aux input channel 10 + AUXin11Alias: The Ascii alias asigned to Aux input channel 11 + AUXin12Alias: The Ascii alias asigned to Aux input channel 12 + AUXin13Alias: The Ascii alias asigned to Aux input channel 13 + AUXin14Alias: The Ascii alias asigned to Aux input channel 14 + AUXin15Alias: The Ascii alias asigned to Aux input channel 15 + caninput_sel0a: This Enables local analog/digital on input channel 0 + caninput_sel1a: This Enables local analog/digital on input channel 1 + caninput_sel2a: This Enables local analog/digital on input channel 2 + caninput_sel3a: This Enables local analog/digital on input channel 3 + caninput_sel4a: This Enables local analog/digital on input channel 4 + caninput_sel5a: This Enables local analog/digital on input channel 5 + caninput_sel6a: This Enables local analog/digital on input channel 6 + caninput_sel7a: This Enables local analog/digital on input channel 7 + caninput_sel8a: This Enables local analog/digital on input channel 8 + caninput_sel9a: This Enables local analog/digital on input channel 9 + caninput_sel10a: This Enables local analog/digital on input channel 10 + caninput_sel11a: This Enables local analog/digital on input channel 11 + caninput_sel12a: This Enables local analog/digital on input channel 12 + caninput_sel13a: This Enables local analog/digital on input channel 13 + caninput_sel14a: This Enables local analog/digital on input channel 14 + caninput_sel15a: This Enables local analog/digital on input channel 15 + fpPrime: Duration to power fuel pump on to ensure fuel line pressure. + primingDelay: >- + Delay to priming after fuel pump is on, used to wait fuel line get + pressurized correctly. + idleUpOutputEnabled: >- + Enable an output that is toggled by the idle up input pin. An example use is + driving an AC fan relay. + idleUpOutputInv: >- + No = When the idle up pin is high the output is active (grounding), when the + idle up pin is low the output is inactive. Yes = When the idle up pin is + high the output is inactive, when the idle up pin is low the output is + active (grounding). + crankingEnrichTaper: >- + Taper time from cranking enrichment to ASE or run (after engine has + started). + lnchCtrlTPS: The minimum RPM that launch control will engage at + lnchSoftLim: >- + The RPM point that the launch control ignition timing adjustment will engage + (When under launch conditions). Should be below the hard rev limit RPM + lnchRetard: >- + When under launch conditions (Eg Clutch engaged) the ignition timing will be + set to this when above the Soft rev limit. This will override any other + ignition modifiers + lnchHardLim: >- + The RPM point above which the fuel and/or ignition will be cut when launch + is active (Eg Clutch engaged). See the Engine Protection dialog to set + whether it is fuel, ignition or both that are cut. + lnchFuelAdd: >- + The additional fuel % that will be added during Soft and Hard launch + conditions. Set to 0 for no fuel modifier. + caninput_sel0b: >- + This Enables External CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 0 + caninput_sel1b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 1 + caninput_sel2b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 2 + caninput_sel3b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 3 + caninput_sel4b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 4 + caninput_sel5b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 5 + caninput_sel6b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 6 + caninput_sel7b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 7 + caninput_sel8b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 8 + caninput_sel9b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 9 + caninput_sel10b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 10 + caninput_sel11b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 11 + caninput_sel12b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 12 + caninput_sel13b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 13 + caninput_sel14b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 14 + caninput_sel15b: >- + This Enables External/CAN data via the Secondary Serial CANBUS expansion + module or local analog/digital on input channel 15 + caninput_source_can_address0: The source 11bit CAN address of the data for channel 0 + caninput_source_can_address1: The source 11bit CAN address of the data for channel 1 + caninput_source_can_address2: The source 11bit CAN address of the data for channel 2 + caninput_source_can_address3: The source 11bit CAN address of the data for channel 3 + caninput_source_can_address4: The source 11bit CAN address of the data for channel 4 + caninput_source_can_address5: The source 11bit CAN address of the data for channel 5 + caninput_source_can_address6: The source 11bit CAN address of the data for channel 6 + caninput_source_can_address7: The source 11bit CAN address of the data for channel 7 + caninput_source_can_address8: The source 11bit CAN address of the data for channel 8 + caninput_source_can_address9: The source 11bit CAN address of the data for channel 9 + caninput_source_can_address10: The source 11bit CAN address of the data for channel 10 + caninput_source_can_address11: The source 11bit CAN address of the data for channel 11 + caninput_source_can_address12: The source 11bit CAN address of the data for channel 12 + caninput_source_can_address13: The source 11bit CAN address of the data for channel 13 + caninput_source_can_address14: The source 11bit CAN address of the data for channel 14 + caninput_source_can_address15: The source 11bit CAN address of the data for channel 15 + caninput_source_start_byte0: The Starting byte the data begins at for channel 0 + caninput_source_start_byte1: The Starting byte the data begins at for channel 1 + caninput_source_start_byte2: The Starting byte the data begins at for channel 2 + caninput_source_start_byte3: The Starting byte the data begins at for channel 3 + caninput_source_start_byte4: The Starting byte the data begins at for channel 4 + caninput_source_start_byte5: The Starting byte the data begins at for channel 5 + caninput_source_start_byte6: The Starting byte the data begins at for channel 6 + caninput_source_start_byte7: The Starting byte the data begins at for channel 7 + caninput_source_start_byte8: The Starting byte the data begins at for channel 8 + caninput_source_start_byte9: The Starting byte the data begins at for channel 9 + caninput_source_start_byte10: The Starting byte the data begins at for channel 10 + caninput_source_start_byte11: The Starting byte the data begins at for channel 11 + caninput_source_start_byte12: The Starting byte the data begins at for channel 12 + caninput_source_start_byte13: The Starting byte the data begins at for channel 13 + caninput_source_start_byte14: The Starting byte the data begins at for channel 14 + caninput_source_start_byte15: The Starting byte the data begins at for channel 15 + caninput_source_num_bytes0: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes1: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes2: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes3: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes4: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes5: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes6: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes7: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes8: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes9: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes10: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes11: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes12: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes13: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes14: >- + The number of bytes the data is made from starting at selected start byte + number + caninput_source_num_bytes15: >- + The number of bytes the data is made from starting at selected start byte + number + cmdEnableTestMode: >- + Click this to enable test mode. This will not be available if the engine is + running + cmdStopTestMode: Click this to disable test mode + cmdtestinj150dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestinj250dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestinj350dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestinj450dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestinj550dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestinj650dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestinj750dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestinj850dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestspk150dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestspk250dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestspk350dc: This will cycle the output at 50% Duty cycle at a 1s interval + cmdtestspk450dc: This will cycle the output at 50% Duty cycle at a 1s interval + ADCFILTER_TPS: 'Recommended value: 50' + ADCFILTER_CLT: 'Recommended value: 180' + ADCFILTER_IAT: 'Recommended value: 180' + ADCFILTER_O2: 'Recommended value: 128' + ADCFILTER_BAT: 'Recommended value: 128' + ADCFILTER_MAP: >- + This setting is only available when using the Instantaneious MAP sampling + method. Recommended value: 20 + ADCFILTER_BARO: >- + This setting is only available when using an external Baro sensor. + Recommended value: 64 + boostIntv: >- + The closed loop control interval will run every this many ms. Generally + values between 50% and 100% of the valve frequency work best + VVTasOnOff: >- + Whether or not the VVT table should be treated as on and off control only. + If you are using the VVT map to control a switch, this should be Yes. If you + are using the VVT control to drive a PWM signal, this should be No + stagedInjSizePri: >- + Size of the primary injectors. The sum of the Pri and Sec injectors values + MUST match the value used in the req_fuel calculation + stagedInjSizeSec: >- + Size of the secondary injectors. The sum of the Pri and Sec injectors values + MUST match the value used in the req_fuel calculation + resetControl: >- + How to control the Arduino's automatic reset feature. NOTE: Some of these + settings require modifying your hardware and replacing the Arduino + bootloader. See the Wiki for more details.\n\nDisabled: Allow the Arduino to + reset when a new serial connection is made.\n\nPrevent When Running: Hold + the control pin high while the engine is running.\n\nPrevent Always: Always + hold the control pin high.\n\nSerial Command: Normally hold the control pin + high, but pull it low when the 'U' serial command is issued and reset upon + receiving more data. + resetControlPin: The Arduino pin used to control resets. + battVCorMode: >- + The Battery Voltage Correction value from the table below can either be + applied on the whole injection Pulse Width value, or only on the Open Time + value. + dwellTable: >- + Sets the dwell time in milliseconds based on RPM/load. This can be used to + reduce stress/wear on ignition system where long dwell is not needed. And + other areas can use longer dwell value if needed for stronger spark. Battery + voltage correction is applied for these dwell values. + useDwellMap: >- + In normal operation mode this is set to No and speeduino will use fixed + running dwell value. But if different dwell values are required across + engine RPM/load range, this can be set to Yes and separate Dwell table + defines running dwell value. diff --git a/public/tunes/bin.mlg b/public/tunes/bin.mlg new file mode 100644 index 0000000..e05f5d2 Binary files /dev/null and b/public/tunes/bin.mlg differ diff --git a/src/@types/react-table-drag-select.d.ts b/src/@types/react-table-drag-select.d.ts new file mode 100644 index 0000000..53edf73 --- /dev/null +++ b/src/@types/react-table-drag-select.d.ts @@ -0,0 +1 @@ +declare module 'react-table-drag-select'; diff --git a/src/App.less b/src/App.less new file mode 100644 index 0000000..0d313c2 --- /dev/null +++ b/src/App.less @@ -0,0 +1,100 @@ +@import '~antd/dist/antd.less'; +// @import '~antd/dist/antd.compact.less'; +// @import './themes/light.less'; +@import './themes/dark.less'; +@import './themes/common.less'; +@import './themes/ant.less'; + +body { + overflow: hidden; +} + +.border-right { + border-right-width: 1px; + border-right-color: @border-color-split; + border-right-style: solid; +} + +.row { + margin: 20px; +} + +.electron-draggable { + -webkit-app-region: drag; +} + +.electron-not-draggable { + -webkit-app-region: no-drag; +} + +.app-top-bar { + .electron-draggable; + // border-bottom-width: 1px; + // border-bottom-color: @border-color-split; + // border-bottom-style: solid; + box-shadow: 0px 0px 20px 0px #0000001c, 5px 5px 15px 5px rgb(0 0 0 e('/') 4%); + z-index: @bars-z-index; +} + +.app-sidebar { + height: calc(100vh - @layout-header-height - @layout-footer-height); + position: fixed; + left: 0; + user-select: none; + // .border-right; +} + +.app-status-bar { + position: fixed; + bottom: 0; + width: 100%; + height: @layout-footer-height; + font-size: @font-size-sm; + color: @text-color; + z-index: @bars-z-index; + // border-top-width: 1px; + // border-top-color: @border-color-split; + // border-top-style: solid; +} + +.app-content { + height: calc(100vh - @layout-header-height - @layout-footer-height); +} + +.table { + margin: 20px; + + table { + width: 100%; + } + + td { + text-align: center; + border: 1px solid @main-light; + height: 50px; + user-select: none; + // transition: all 0.1s; + + &.value { + color: rgba(0, 0, 0, 1); + width: 5%; + font-weight: 600; + } + + &.title-curve { + width: 15%; + } + + &.title-map { + width: 5%; + } + + &.cell-selected { + box-shadow: inset 0 0 25px 2px @info-color; + } + + &.cell-being-selected { + box-shadow: inset 0 0 25px 2px @warning-color; + } + } +} diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..e399564 --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,108 @@ +import { useEffect, useMemo } from 'react'; +import { + useLocation, + Switch, + Route, + matchPath, + Redirect, + generatePath, +} from 'react-router-dom'; +import { Layout, Result } from 'antd'; +import { connect } from 'react-redux'; +import PerfectScrollbar from 'react-perfect-scrollbar'; +import Dialog from './components/Dialog'; +import { loadAll } from './utils/api'; +import SideBar, { DialogMatchedPathType } from './components/SideBar'; +import { AppState, UIState } from './types/state'; +import BurnButton from './components/BurnButton'; +import TopBar from './components/TopBar'; +import StatusBar from './components/StatusBar'; +import { isDesktop } from './utils/env'; +import 'react-perfect-scrollbar/dist/css/styles.css'; +import './App.less'; +import { Routes } from './routes'; +import { Config as ConfigType } from './types/config'; +import { storageGet } from './utils/storage'; + +const { Content } = Layout; + +const mapStateToProps = (state: AppState) => ({ + ui: state.ui, + status: state.status, + config: state.config, +}); + +const App = ({ ui, config }: { ui: UIState, config: ConfigType }) => { + const margin = ui.sidebarCollapsed ? 80 : 250; + const { pathname } = useLocation(); + const dialogMatchedPath: DialogMatchedPathType = useMemo(() => matchPath(pathname, { + path: Routes.DIALOG, + exact: true, + }) || { url: '', params: { category: '', dialog: '' } }, [pathname]); + + const lastDialogPath = storageGet('lastDialog'); + const firstDialogPath = useMemo(() => { + if (!config.menus) { + return null; + } + + const firstCategory = Object.keys(config.menus)[0]; + const firstDialog = Object.keys(config.menus[firstCategory].subMenus)[0]; + return generatePath(Routes.DIALOG, { category: firstCategory, dialog: firstDialog }); + }, [config.menus]); + + console.log({ + firstDialogPath, + }); + + useEffect(() => { + loadAll(); + // window.addEventListener('beforeunload', beforeUnload); + + // return () => { + // window.removeEventListener('beforeunload', beforeUnload); + // }; + }, []); + + return ( + <> + + + + + + + + + {firstDialogPath && } + + + + + + + } + /> + + + + + + + + + + + + + ); +}; + +export default connect(mapStateToProps)(App); diff --git a/src/components/BurnButton.tsx b/src/components/BurnButton.tsx new file mode 100644 index 0000000..70340b9 --- /dev/null +++ b/src/components/BurnButton.tsx @@ -0,0 +1,23 @@ +import { Button, Grid } from 'antd'; +import { FireOutlined } from '@ant-design/icons'; + +const { useBreakpoint } = Grid; + +const BurnButton = () => { + const { md } = useBreakpoint(); + + return ( + + ); +}; + +export default BurnButton; diff --git a/src/components/Dialog.tsx b/src/components/Dialog.tsx new file mode 100644 index 0000000..644e2e8 --- /dev/null +++ b/src/components/Dialog.tsx @@ -0,0 +1,421 @@ +import { useEffect } from 'react'; +import { connect } from 'react-redux'; +import { + Form, + Skeleton, + Divider, + Col, + Row, + Popover, + Space, + Result, +} from 'antd'; +import { QuestionCircleOutlined } from '@ant-design/icons'; +import { AppState } from '../types/state'; +import SmartSelect from './Dialog/SmartSelect'; +import SmartNumber from './Dialog/SmartNumber'; +import TextField from './Dialog/TextField'; +import Curve from './Dialog/Curve'; +import { + Dialogs as DialogsType, + Dialog as DialogType, + Config as ConfigType, + Field as FieldType, + Curve as CurveType, + Table as TableType, + ScalarConstant as ScalarConstantType, + ConstantTypes, +} from '../types/config'; +import { + Tune as TuneType, +} from '../types/tune'; +import { findOnPage } from '../utils/config/find'; +import { parseXy, parseZ } from '../utils/tune/table'; +import Map from './Dialog/Map'; +import { evaluateExpression, isExpression } from '../utils/tune/expression'; +import { storageSet } from '../utils/storage'; + +interface DialogsAndCurves { + [name: string]: DialogType | CurveType | TableType, +} + +interface RenderedPanel { + type: string, + name: string, + title: string; + labels: string[]; + xAxis: number[]; + yAxis: number[]; + xBins: string[]; + yBins: string[]; + size: number[]; + gauge?: string; + fields: FieldType[], + map: string; + page: number; + help?: string; + xyLabels: string[]; + zBins: string[]; + gridHeight: number; + gridOrient: number[]; + upDownLabel: string[]; +} + +enum PanelTypes { + FIELDS = 'fields', + CURVE = 'curve', + TABLE = 'table', +} + +const mapStateToProps = (state: AppState) => ({ + config: state.config, + tune: state.tune, +}); + +const containerStyle = { + padding: 20, +}; + +const skeleton = (
+ +
); + +// TODO: refactor this +const Dialog = ({ + config, + tune, + url, + name, + burnButton, +}: { + config: ConfigType, + tune: TuneType, + name: string, + url: string, + burnButton: any +}) => { + const isDataReady = Object.keys(tune.constants).length && Object.keys(config.constants).length; + + useEffect(() => { + storageSet('lastDialog', url); + }, [url]); + + const renderHelp = (link?: string) => (link && + + {link} + + } + placement="right" + > + + + ); + + const renderCurve = (curve: CurveType) => { + const x = tune.constants[curve.xBins[0]]; + const y = tune.constants[curve.yBins[0]]; + const xConstant = findOnPage(config, curve.xBins[0]) as ScalarConstantType; + const yConstant = findOnPage(config, curve.yBins[0]) as ScalarConstantType; + + return ( + + ); + }; + + const renderTable = (table: TableType | RenderedPanel) => { + const x = tune.constants[table.xBins[0]]; + const y = tune.constants[table.yBins[0]]; + const z = tune.constants[table.zBins[0]]; + const zConstant = findOnPage(config, table.zBins[0]) as ScalarConstantType; + + let max = zConstant.max as number; + if (isExpression(zConstant.max)) { + max = evaluateExpression(zConstant.max as string, tune.constants, config); + } + + let min = zConstant.min as number; + if (isExpression(zConstant.min)) { + min = evaluateExpression(zConstant.min as string, tune.constants, config); + } + + return
+ {renderHelp(table.help)} + +
; + }; + + if (!isDataReady) { + return skeleton; + } + + const dialogConfig = config.dialogs[name]; + const curveConfig = config.curves[name]; + const tableConfig = config.tables[name]; + + // standalone dialog / page + if (!dialogConfig) { + if (curveConfig) { + return ( +
+ {curveConfig.title} + {renderCurve(curveConfig)} +
+ ); + } + + if (tableConfig) { + return ( +
+ {renderHelp(tableConfig.help)} + {tableConfig.title} + {renderTable(tableConfig)} +
+ ); + } + + return ( + + ); + } + + const calculateSpan = (type: PanelTypes, dialogsCount: number) => { + let xxl = 24; + const xl = 24; + + if (dialogsCount > 1 && type === PanelTypes.FIELDS) { + xxl = 12; + } + + return { + span: 24, + xxl, + xl, + }; + }; + + const resolvedDialogs: DialogsAndCurves = {}; + + const resolveDialogs = (source: DialogsType, dialogName: string) => { + if (!source[dialogName]) { + return; + } + + // resolve root dialog + resolvedDialogs[dialogName] = source[dialogName]; + + Object.keys(source[dialogName].panels).forEach((panelName: string) => { + const currentDialog = source[panelName]; + + if (!currentDialog) { + // resolve 2D map / curve panel + if (config.curves[panelName]) { + resolvedDialogs[panelName] = { + ...config.curves[panelName], + }; + + return; + } + + // resolve 3D map / table panel + if (config.tables[panelName]) { + resolvedDialogs[panelName] = { + ...config.tables[panelName], + }; + + return; + } + + console.info('Unable to resolve panel:', panelName); + + return; + } + + if (currentDialog.fields.length > 0) { + // resolve in root scope + resolvedDialogs[panelName] = config.dialogs[panelName]; + } + + // recursion + resolveDialogs(config.dialogs, panelName); + }); + }; + + // TODO: refactor this + resolveDialogs(config.dialogs, name); + + // remove dummy dialogs and flatten to array + const panels = Object.keys(resolvedDialogs).map((dialogName: string): RenderedPanel => { + const currentDialog: DialogType | CurveType | TableType = resolvedDialogs[dialogName]; + let type = PanelTypes.CURVE; + let fields: FieldType[] = []; + + if ('fields' in currentDialog) { + type = PanelTypes.FIELDS; + fields = (currentDialog as DialogType) + .fields + .filter((field) => field.title !== '' ); + } else if ('zBins' in currentDialog) { + type = PanelTypes.TABLE; + } + + return { + type, + name: dialogName, + title: currentDialog.title, + fields, + labels: (currentDialog as CurveType).labels, + xAxis: (currentDialog as CurveType).xAxis, + yAxis: (currentDialog as CurveType).yAxis, + xBins: (currentDialog as CurveType).xBins, + yBins: (currentDialog as CurveType).yBins, + size: (currentDialog as CurveType).size, + gauge: (currentDialog as CurveType).gauge, + map: (currentDialog as TableType).map, + page: (currentDialog as TableType).page, + help: (currentDialog as TableType).help, + xyLabels: (currentDialog as TableType).xyLabels, + zBins: (currentDialog as TableType).zBins, + gridHeight: (currentDialog as TableType).gridHeight, + gridOrient: (currentDialog as TableType).gridOrient, + upDownLabel: (currentDialog as TableType).upDownLabel, + }; + }); + + const panelsComponents = () => panels.map((panel: RenderedPanel) => { + if (panel.type === PanelTypes.FIELDS && panel.fields.length === 0) { + return null; + } + + return ( + + {panel.title} + {(panel.fields).map((field: FieldType) => { + const constant = findOnPage(config, field.name); + const tuneField = tune.constants[field.name]; + const help = config.help[field.name]; + let input; + let enabled = true; + + if (field.condition) { + enabled = evaluateExpression(field.condition, tune.constants, config); + } + + if (field.name === '_fieldText_' && enabled) { + return ; + } + + if (!tuneField) { + // TODO: handle this? + // name: "rpmwarn", title: "Warning", + return null; + } + + switch (constant.type) { + // case ConstantTypes.ARRAY: // TODO: arrays + case ConstantTypes.BITS: + input = ; + break; + + case ConstantTypes.SCALAR: + input = ; + break; + + default: + break; + } + + return ( + + {field.title} + {help && (
{line}
) + }> + +
)} + + } + > + {input} +
+ ); + })} + + {panel.type === PanelTypes.CURVE && renderCurve(panel)} + + {panel.type === PanelTypes.TABLE && renderTable(panel)} + + ); + }); + + return ( +
+ {renderHelp(dialogConfig?.help)} +
+ + {isDataReady && panelsComponents()} + + + {burnButton} + +
+
+ ); +}; + +export default connect(mapStateToProps)(Dialog); diff --git a/src/components/Dialog/Curve.tsx b/src/components/Dialog/Curve.tsx new file mode 100644 index 0000000..03310da --- /dev/null +++ b/src/components/Dialog/Curve.tsx @@ -0,0 +1,128 @@ +import { Typography } from 'antd'; +import { useState } from 'react'; +import { + CartesianGrid, + Line, + LineChart, + XAxis, + YAxis, + Tooltip, + ResponsiveContainer, + Label, +} from 'recharts'; +import Table from './Table'; + +const Curve = ({ + name, + xLabel, + yLabel, + xData, + yData, + disabled, + help, + xMin, + xMax, + yMin, + yMax, + xUnits = '', + yUnits = '', +}: { + name: string, + xLabel: string, + yLabel: string, + xData: number[], + yData: number[], + disabled: boolean, + help: string, + xMin: number, + xMax: number, + yMin: number, + yMax: number, + xUnits?: string, + yUnits?: string, +}) => { + const mapData = (rawData: number[][]) => rawData[1].map((val, i) => ({ + x: val, + y: rawData[0][i], + })); + const [data, setData] = useState(mapData([yData, xData])); + const margin = 15; + const mainColor = '#ccc'; + const tooltipBg = '#2E3338'; + const animationDuration = 500; + + return ( + <> + + {help} + + + + + + + + + `${xLabel} : ${value} ${xUnits}`} + formatter={(value: number) => [`${value} ${yUnits}`, yLabel]} + contentStyle={{ + backgroundColor: tooltipBg, + border: 0, + boxShadow: '0 3px 6px -4px rgb(0 0 0 / 12%), 0 6px 16px 0 rgb(0 0 0 / 8%), 0 9px 28px 8px rgb(0 0 0 / 5%)', + borderRadius: 5, + }} + animationDuration={animationDuration} + /> + + + + setData(mapData(newData))} + /> + + ); +}; + +export default Curve; diff --git a/src/components/Dialog/Map.tsx b/src/components/Dialog/Map.tsx new file mode 100644 index 0000000..9579dd3 --- /dev/null +++ b/src/components/Dialog/Map.tsx @@ -0,0 +1,276 @@ +/* eslint-disable react/no-array-index-key */ + +import { + useEffect, + useRef, + useState, +} from 'react'; +import { + Button, + InputNumber, + Modal, + Popover, + Space, +} from 'antd'; +import { + PlusCircleOutlined, + MinusCircleOutlined, + EditOutlined, +} from '@ant-design/icons'; +import TableDragSelect from 'react-table-drag-select'; +import { + isDecrement, + isEscape, + isIncrement, + isReplace, +} from '../../utils/keyboard/shortcuts'; + +type CellsType = boolean[][]; +type DataType = number[][]; +type OnChangeType = (data: DataType) => void; +enum Operations { + INC, + DEC, + REPLACE, +} +type HslType = [number, number, number]; + +const Map = ({ + name, + xData, + yData, + zData, + disabled, + onChange, + zMin, + zMax, + digits, + xUnits, + yUnits, +}: { + name: string, + xData: number[], + yData: number[], + zData: number[][], + disabled: boolean, + onChange?: OnChangeType, + zMin: number, + zMax: number, + digits: number, + xUnits: string, + yUnits: string, +}) => { + const titleProps = { disabled: true }; + const [isModalVisible, setIsModalVisible] = useState(false); + const [modalValue, setModalValue] = useState(); + const [data, _setData] = useState(zData); + const generateCells = () => Array.from( + Array(yData.length + 1).fill(false), + () => new Array(xData.length + 1).fill(false), + ); + const [cells, _setCells] = useState(generateCells()); + const cellsRef = useRef(cells); + const dataRef = useRef(data); + const modalInputRef = useRef(null); + const setCells = (currentCells: CellsType) => { + cellsRef.current = currentCells; + _setCells(currentCells); + }; + const setData = (currentData: DataType) => { + dataRef.current = currentData; + _setData(currentData); + if (onChange) { + onChange(currentData); + } + }; + const modifyData = (operation: Operations, currentCells: CellsType, currentData: DataType, value = 0): DataType => { + const newData = [...currentData.map((row) => [...row])]; + currentCells.forEach((_, rowIndex) => { + currentCells[rowIndex].forEach((selected, valueIndex) => { + if (!selected) { + return; + } + + const current = newData[rowIndex][valueIndex - 1]; + switch (operation) { + case Operations.INC: + if (current < zMax) { + newData[rowIndex][valueIndex - 1] = Number((newData[rowIndex][valueIndex - 1] + 10**-digits).toFixed(digits)); + } + break; + case Operations.DEC: + if (current > zMin) { + newData[rowIndex][valueIndex - 1] = Number((newData[rowIndex][valueIndex - 1] - 10**-digits).toFixed(digits)); + } + break; + case Operations.REPLACE: + if (value > zMax) { + newData[rowIndex][valueIndex - 1] = zMax; + break; + } + if (value < zMin) { + newData[rowIndex][valueIndex - 1] = zMin; + break; + } + newData[rowIndex][valueIndex - 1] = value; + break; + default: + break; + } + }); + }); + + return [...newData]; + }; + + const oneModalOk = () => { + setData(modifyData(Operations.REPLACE, cellsRef.current, dataRef.current, modalValue)); + setIsModalVisible(false); + setModalValue(undefined); + }; + const onModalCancel = () => { + setIsModalVisible(false); + setModalValue(undefined); + }; + const resetCells = () => setCells(generateCells()); + const increment = () => setData(modifyData(Operations.INC, cellsRef.current, dataRef.current)); + const decrement = () => setData(modifyData(Operations.DEC, cellsRef.current, dataRef.current)); + const replace = () => { + // don't show modal when no cell is selected + if (cellsRef.current.flat().find((val) => val === true)) { + setModalValue(undefined); + setIsModalVisible(true); + setInterval(() => modalInputRef.current?.focus(), 1); + } + }; + + useEffect(() => { + const keyboardListener = (e: KeyboardEvent) => { + + if (isIncrement(e)) { + increment(); + } + if (isDecrement(e)) { + decrement(); + } + if (isReplace(e)) { + e.preventDefault(); + replace(); + } + if (isEscape(e)) { + resetCells(); + } + }; + + document.addEventListener('keydown', keyboardListener); + + return () => { + document.removeEventListener('keydown', keyboardListener); + }; + // eslint-disable-next-line react-hooks/exhaustive-deps + }, []); + + const colorHsl = (min: number, max: number, value: number): HslType => { + const saturation = 60; + const lightness = 40; + const coldDeg = 220; + const hotDeg = 0; + const remap = (x: number, inMin: number, inMax: number, outMin: number, outMax: number) => (x - inMin) * (outMax - outMin) / (inMax - inMin) + outMin; + + let hue = remap(value, min, max, coldDeg, hotDeg); + + // fallback to cold temp + if (Number.isNaN(hue)) { + hue = coldDeg; + } + + return [hue, saturation, lightness]; + }; + + const min = Math.min(...data.map((row) => Math.min(...row))); + const max = Math.max(...data.map((row) => Math.max(...row))); + + const renderRow = (rowIndex: number, input: number[]) => input + .map((value, index) => { + const [hue, sat, light] = colorHsl(min, max, value); + const yValue = yData[rowIndex]; + const result = []; + + if (index === 0) { + result.push(( + + )); + } + + result.push(( + + )); + + return result; + }); + + return ( + <> +
+ val === true) === true} + content={ + +
+ {renderRow(i, row)} + + ))} + + + {xData.map((xValue) => ( + + ))} + + + + + + setModalValue(Number(val))} + onPressEnter={oneModalOk} + style={{ width: '20%' }} + /> + + + ); +}; + +export default Map; diff --git a/src/components/Dialog/SmartNumber.tsx b/src/components/Dialog/SmartNumber.tsx new file mode 100644 index 0000000..8d98a52 --- /dev/null +++ b/src/components/Dialog/SmartNumber.tsx @@ -0,0 +1,65 @@ +import { + InputNumber, + Slider, +} from 'antd'; + +const SmartNumber = ({ + defaultValue, + min, + max, + units, + digits, + disabled, +}: { + defaultValue: number, + min: number, + max: number, + units: string | undefined, + digits: number, + disabled: boolean, +}) => { + const isSlider = (u: string) => ['%', 'C'] + .includes(`${u}`.toUpperCase()); + const sliderMarks: { [value: number]: string } = {}; + sliderMarks[min] = `${min}${units}`; + + if (min <= 0) { + sliderMarks[0] = `0${units}`; + } + + if (max) { + sliderMarks[max] = `${max}${units}`; + } + + if (isSlider(units || '')) { + return ( + `${val}${units}`} + // tooltipVisible + // tooltipPlacement="bottom" + /> + ); + } + + return ( + units ? `${val} ${units}` : `${val}`} + parser={(val) => Number(`${val}`.replace(/[^\d.]/g, ''))} + /> + ); +}; + +export default SmartNumber; diff --git a/src/components/Dialog/SmartSelect.tsx b/src/components/Dialog/SmartSelect.tsx new file mode 100644 index 0000000..06f817a --- /dev/null +++ b/src/components/Dialog/SmartSelect.tsx @@ -0,0 +1,68 @@ +import { + Radio, + Select, + Switch, +} from 'antd'; +import { + CheckOutlined, + CloseOutlined, +} from '@ant-design/icons'; +import { Switches } from '../../types/config'; + +const SmartSelect = ({ + values, + defaultValue, + disabled, +}: { + values: string[], + defaultValue: string, + disabled: boolean, +}) => { + + if (values.length === 2 + && ( + (values.includes(Switches.YES) && values.includes(Switches.NO)) || + (values.includes(Switches.ON) && values.includes(Switches.OFF)) + ) + ) { + return } + unCheckedChildren={} + />; + } + + if (values.length < 3) { + return ( + + {values.map((val: string, index) => + {val}, + )} + + ); + } + + return ( + + ); +}; + +export default SmartSelect; diff --git a/src/components/Dialog/Table.tsx b/src/components/Dialog/Table.tsx new file mode 100644 index 0000000..0868c6f --- /dev/null +++ b/src/components/Dialog/Table.tsx @@ -0,0 +1,277 @@ +/* eslint-disable react/no-array-index-key */ + +import { + useCallback, + useEffect, + useRef, + useState, +} from 'react'; +import { + Button, + InputNumber, + Modal, + Popover, + Space, +} from 'antd'; +import { + PlusCircleOutlined, + MinusCircleOutlined, + EditOutlined, +} from '@ant-design/icons'; +import TableDragSelect from 'react-table-drag-select'; +import { + isDecrement, + isEscape, + isIncrement, + isReplace, +} from '../../utils/keyboard/shortcuts'; + +type AxisType = 'x' | 'y'; +type CellsType = boolean[][]; +type DataType = number[][]; +type OnChangeType = (data: DataType) => void; +enum Operations { + INC, + DEC, + REPLACE, +} +type HslType = [number, number, number]; + +const Table = ({ + name, + xLabel, + yLabel, + xData, + yData, + disabled, + onChange, + xMin, + xMax, + yMin, + yMax, + xUnits, + yUnits, +}: { + name: string, + xLabel: string, + yLabel: string, + xData: number[], + yData: number[], + disabled: boolean, + onChange?: OnChangeType, + xMin: number, + xMax: number, + yMin: number, + yMax: number, + xUnits: string, + yUnits: string, +}) => { + const titleProps = { disabled: true }; + const [isModalVisible, setIsModalVisible] = useState(false); + const [modalValue, setModalValue] = useState(); + const [data, _setData] = useState([yData, xData]); + // data starts from `1` index, 0 is title / name + const rowsCount = data[1].length + 1; + const generateCells = () => [ + Array(rowsCount).fill(false), + Array(rowsCount).fill(false), + ]; + const [cells, _setCells] = useState(generateCells()); + const cellsRef = useRef(cells); + const dataRef = useRef(data); + const modalInputRef = useRef(null); + const setCells = (currentCells: CellsType) => { + cellsRef.current = currentCells; + _setCells(currentCells); + }; + const setData = (currentData: DataType) => { + dataRef.current = currentData; + _setData(currentData); + if (onChange) { + onChange(currentData); + } + }; + const modifyData = useCallback((operation: Operations, currentCells: CellsType, currentData: DataType, value = 0): DataType => { + const newData = [...currentData.map((row) => [...row])]; + // rowIndex: [0 => Y, 1 => X] + const isY = (row: number) => row === 0; + const isX = (row: number) => row === 1; + const isNotGreater = (row: number, val: number) => (isY(row) && val < yMax) || (isX(row) && val < xMax); + const isNotLess = (row: number, val: number) => (isY(row) && val > yMin) || (isX(row) && val > xMin); + + currentCells.forEach((_, rowIndex) => { + currentCells[rowIndex].forEach((selected, valueIndex) => { + if (!selected) { + return; + } + + const current = newData[rowIndex][valueIndex - 1]; + switch (operation) { + case Operations.INC: + if (isNotGreater(rowIndex, current)) { + newData[rowIndex][valueIndex - 1] += 1; + } + break; + case Operations.DEC: + if (isNotLess(rowIndex, current)) { + newData[rowIndex][valueIndex - 1] -= 1; + } + break; + case Operations.REPLACE: + if (isX(rowIndex) && value > xMax) { + newData[rowIndex][valueIndex - 1] = xMax; + break; + } + if (isX(rowIndex) && value < xMin) { + newData[rowIndex][valueIndex - 1] = xMin; + break; + } + if (isY(rowIndex) && value < yMin) { + newData[rowIndex][valueIndex - 1] = yMin; + break; + } + if (isY(rowIndex) && value > yMax) { + newData[rowIndex][valueIndex - 1] = yMax; + break; + } + + newData[rowIndex][valueIndex - 1] = value; + break; + default: + break; + } + }); + }); + + return [...newData]; + }, [xMax, xMin, yMax, yMin]); + + const oneModalOk = () => { + setData(modifyData(Operations.REPLACE, cellsRef.current, dataRef.current, modalValue)); + setIsModalVisible(false); + setModalValue(undefined); + }; + const onModalCancel = () => { + setIsModalVisible(false); + setModalValue(undefined); + }; + const resetCells = () => setCells(generateCells()); + const increment = () => setData(modifyData(Operations.INC, cellsRef.current, dataRef.current)); + const decrement = () => setData(modifyData(Operations.DEC, cellsRef.current, dataRef.current)); + const replace = () => { + // don't show modal when no cell is selected + if (cellsRef.current.flat().find((val) => val === true)) { + setModalValue(undefined); + setIsModalVisible(true); + setInterval(() => modalInputRef.current?.focus(), 1); + } + }; + + useEffect(() => { + const keyboardListener = (e: KeyboardEvent) => { + + if (isIncrement(e)) { + increment(); + } + if (isDecrement(e)) { + decrement(); + } + if (isReplace(e)) { + e.preventDefault(); + replace(); + } + if (isEscape(e)) { + resetCells(); + } + }; + + document.addEventListener('keydown', keyboardListener); + + return () => { + document.removeEventListener('keydown', keyboardListener); + }; + // eslint-disable-next-line react-hooks/exhaustive-deps + }, []); + + const colorHsl = (min: number, max: number, value: number): HslType => { + const saturation = 60; + const lightness = 40; + const coldDeg = 220; + const hotDeg = 0; + const remap = (x: number, inMin: number, inMax: number, outMin: number, outMax: number) => (x - inMin) * (outMax - outMin) / (inMax - inMin) + outMin; + + let hue = remap(value, min, max, coldDeg, hotDeg); + + // fallback to cold temp + if (Number.isNaN(hue)) { + hue = coldDeg; + } + + return [hue, saturation, lightness]; + }; + + const renderRow = (axis: AxisType, input: number[]) => input + .map((value, index) => { + const [hue, sat, light] = colorHsl(Math.min(...input), Math.max(...input), value); + + return ( + + ); + }); + + return ( + <> +
+ val === true) === true} + content={ + +
+ + {renderRow('y', data[0])} + + + + {renderRow('x', data[1])} + + + + + + setModalValue(Number(val))} + onPressEnter={oneModalOk} + style={{ width: '20%' }} + /> + + + ); +}; + +export default Table; diff --git a/src/components/Dialog/TextField.tsx b/src/components/Dialog/TextField.tsx new file mode 100644 index 0000000..fe8c4b3 --- /dev/null +++ b/src/components/Dialog/TextField.tsx @@ -0,0 +1,27 @@ +import { + Typography, + Alert, +} from 'antd'; + +const TextField = ({ title }: { title: string }) => { + const types: { [char: string]: 'info' | 'warning' } = { + '#': 'info', + '!': 'warning', + }; + const type = types[title.charAt(0)]; + + return ( + + {type ? : {title}} + + ); +}; + +export default TextField; diff --git a/src/components/SideBar.tsx b/src/components/SideBar.tsx new file mode 100644 index 0000000..05a18b3 --- /dev/null +++ b/src/components/SideBar.tsx @@ -0,0 +1,152 @@ +import { Layout, Menu, Skeleton } from 'antd'; +import { connect } from 'react-redux'; +import { + generatePath, + Link, +} from 'react-router-dom'; +import PerfectScrollbar from 'react-perfect-scrollbar'; +import { useCallback } from 'react'; +import store from '../store'; +import { + AppState, + UIState, +} from '../types/state'; +import { + Config as ConfigType, + Menus as MenusType, +} from '../types/config'; +import { + Tune as TuneType, +} from '../types/tune'; +import Icon from './SideBar/Icon'; +import { evaluateExpression } from '../utils/tune/expression'; +import { Routes } from '../routes'; + +const { Sider } = Layout; +const { SubMenu } = Menu; + +export interface DialogMatchedPathType { + url: string; + params: { + category: string; + dialog: string; + }; +} + +const mapStateToProps = (state: AppState) => ({ + config: state.config, + tune: state.tune, + ui: state.ui, +}); + +const SKIP_MENUS = [ + 'help', + 'hardwareTesting', + '3dTuningMaps', + 'dataLogging', + 'tools', +]; + +const SKIP_SUB_MENUS = [ + 'settings/gaugeLimits', + 'settings/io_summary', + 'tuning/std_realtime', +]; + +const SideBar = ({ + config, + tune, + ui, + matchedPath, +}: { + config: ConfigType, + tune: TuneType, + ui: UIState, + matchedPath: DialogMatchedPathType, +}) => { + const sidebarWidth = 250; + const siderProps = { + width: sidebarWidth, + collapsible: true, + breakpoint: 'xl', + collapsed: ui.sidebarCollapsed, + onCollapse: (collapsed: boolean) => store.dispatch({ type: 'ui/sidebarCollapsed', payload: collapsed }), + } as any; + const checkCondition = useCallback((condition: string) => evaluateExpression(condition, tune.constants, config), [tune.constants, config]); + const buildLink = useCallback((main: string, sub: string) => generatePath(Routes.DIALOG, { + category: main, + dialog: sub, + }), []); + + const menusList = useCallback((menus: MenusType) => ( + Object.keys(menus).map((menuName: string) => { + if (SKIP_MENUS.includes(menuName)) { + return null; + } + + return ( + } + title={menus[menuName].title} + > + {Object.keys(menus[menuName].subMenus).map((subMenuName: string) => { + if (subMenuName === 'std_separator') { + return ; + } + + if (SKIP_SUB_MENUS.includes(`${menuName}/${subMenuName}`)) { + return null; + } + + const subMenu = menus[menuName].subMenus[subMenuName]; + let enabled = true; + + // TODO: optimize this! + if (subMenu.condition) { + enabled = checkCondition(subMenu.condition); + } + + return (} + disabled={!enabled} + > + + {subMenu.title} + + ); + })} + + ); + }) + ), [buildLink, checkCondition]); + + if (!config || !config.constants) { + return ( + +
+ +
+
+ ); + } + + return ( + + + + {Object.keys(tune.constants).length && menusList(config.menus)} + + + + ); +}; + +export default connect(mapStateToProps)(SideBar); diff --git a/src/components/SideBar/Icon.tsx b/src/components/SideBar/Icon.tsx new file mode 100644 index 0000000..f4c4418 --- /dev/null +++ b/src/components/SideBar/Icon.tsx @@ -0,0 +1,127 @@ +import { + ApartmentOutlined, + ApiOutlined, + CarOutlined, + ControlOutlined, + DashboardOutlined, + DotChartOutlined, + ExperimentOutlined, + FieldTimeOutlined, + FireOutlined, + FundOutlined, + FundProjectionScreenOutlined, + PoweroffOutlined, + QuestionCircleOutlined, + RocketOutlined, + SafetyOutlined, + SettingOutlined, + TableOutlined, + ThunderboltOutlined, + ToolOutlined, + UnorderedListOutlined, + UpCircleOutlined, +} from '@ant-design/icons'; + +const Icon = ({ name }: { name: string }) => { + switch (name) { + // main menu + case 'settings': + return ; + case 'tuning': + return ; + case 'spark': + return ; + case 'startupIdle': + return ; + case 'accessories': + return ; + case 'tools': + return ; + case '3dTuningMaps': + return ; + case 'hardwareTesting': + return ; + case 'help': + return ; + + // common, 2D table + case 'injChars': + case 'airdensity_curve': + case 'baroFuel_curve': + case 'dwellCompensation': + case 'iatRetard': + case 'clt_advance_curve': + case 'rotary_ignition': + case 'accelEnrichments': + case 'flexFueling': + case 'dwell_correction_curve': + case 'iat_retard_curve': + case 'crankPW': + case 'primePW': + case 'warmup': + case 'ASE': + case 'iacClosedLoop_curve': + case 'iacPwm_curve': + case 'iacPwmCrank_curve': + case 'iacStep_curve': + case 'iacStepCrank_curve': + case 'idleAdvanceSettings': + return ; + + // common 3D table / map + case 'sparkTbl': + case 'veTableDialog': + case 'afrTable1Tbl': + case 'fuelTable2Dialog': + case 'sparkTable2Dialog': + case 'inj_trimad': + case 'stagingTableDialog': + case 'stagedInjection': + case 'fuelTemp_curve': + case 'boostLoad': + return ; + + // rest + case 'triggerSettings': + return ; + case 'reset_control': + return ; + case 'engine_constants': + return ; + case 'io_summary': + return ; + case 'prgm_out_config': + return ; + case 'std_realtime': + return ; + case 'sparkSettings': + return ; + case 'dwellSettings': + return ; + case 'RevLimiterS': + return ; + case 'idleUpSettings': + return ; + case 'LaunchControl': + return ; + case 'NitrousControl': + return ; + case 'vssSettings': + return ; + case 'Auxin_config': + return ; + case 'tacho': + case 'pressureSensors': + return ; + + // default / not found + default: + // return null; + // return ; + // return ; + // return ; + return ; + } +}; + +export default Icon; diff --git a/src/components/StatusBar.tsx b/src/components/StatusBar.tsx new file mode 100644 index 0000000..817eb90 --- /dev/null +++ b/src/components/StatusBar.tsx @@ -0,0 +1,39 @@ + +import { Layout, Space, Row, Col } from 'antd'; +import { CarOutlined, InfoCircleOutlined } from '@ant-design/icons'; +import { connect } from 'react-redux'; +import { AppState, ConfigState, StatusState } from '../types/state'; + +const { Footer } = Layout; + +const mapStateToProps = (state: AppState) => ({ + status: state.status, + config: state.config, +}); + +const firmware = (signature: string) => ( + + {signature} + +); + +const StatusBar = ({ status, config }: { status: StatusState, config: ConfigState }) => ( +
+ +
+ + + default + + + + {config.megaTune && firmware(config.megaTune.signature)} + + + {status.text} + + + +); + +export default connect(mapStateToProps)(StatusBar); diff --git a/src/components/TopBar.tsx b/src/components/TopBar.tsx new file mode 100644 index 0000000..f3010bf --- /dev/null +++ b/src/components/TopBar.tsx @@ -0,0 +1,187 @@ +import { + matchPath, + useLocation, + useHistory, +} from 'react-router'; +import { + Layout, + Space, + Button, + Input, + Row, + Col, + Tooltip, + Grid, + Menu, + Dropdown, + Typography, + Radio, +} from 'antd'; +import { + UserOutlined, + ShareAltOutlined, + CloudUploadOutlined, + CloudDownloadOutlined, + SettingOutlined, + LoginOutlined, + LineChartOutlined, + SlidersOutlined, + GithubOutlined, + FileExcelOutlined, + FileTextOutlined, + FileZipOutlined, + SaveOutlined, + DesktopOutlined, + GlobalOutlined, + LinkOutlined, + DownOutlined, + SearchOutlined, +} from '@ant-design/icons'; +import { + useEffect, + useMemo, + useRef, +} from 'react'; +import store from '../store'; +import { isMac } from '../utils/env'; +import { + isCommand, + isToggleSidebar, +} from '../utils/keyboard/shortcuts'; +import { Routes } from '../routes'; + +const { Header } = Layout; +const { useBreakpoint } = Grid; +const { SubMenu } = Menu; + +const TopBar = () => { + const { sm } = useBreakpoint(); + const { pathname } = useLocation(); + const history = useHistory(); + const matchedTabPath = useMemo(() => matchPath(pathname, { path: Routes.TAB }), [pathname]); + + const userMenu = ( + + }> + Login / Sign-up + + }> + + GitHub + + + + }> + Preferences + + + ); + + const shareMenu = ( + + }> + Upload + + }> + }> + }> + + Download + + + }> + Open in app + + + }> + }> + MLG + + }> + MSL + + }> + CSV + + + + }> + Create link + + }> + Publish to Hub + + + ); + + const searchInput = useRef(null); + const handleGlobalKeyboard = (e: KeyboardEvent) => { + if (isCommand(e)) { + if (searchInput) { + e.preventDefault(); + searchInput.current!.focus(); + } + } + + if (isToggleSidebar(e)) { + e.preventDefault(); + store.dispatch({ type: 'ui/toggleSidebar' }); + } + }; + useEffect(() => { + document.addEventListener('keydown', handleGlobalKeyboard); + + return () => document.removeEventListener('keydown', handleGlobalKeyboard); + }); + + return ( +
+ +
+ + history.push(e.target.value)} + > + Tune + Log + Diagnose + + + + + + {isMac ? '⌘' : 'CTRL'} + P + + }> + {sm && + + + + + + + + + ); +}; + +export default TopBar; diff --git a/src/data/constants.ts b/src/data/constants.ts new file mode 100644 index 0000000..3d929e4 --- /dev/null +++ b/src/data/constants.ts @@ -0,0 +1,17 @@ +import { + ConstantTypes, + ScalarConstant, +} from '../types/config'; + +// eslint-disable-next-line import/prefer-default-export +export const divider: ScalarConstant = { + type: ConstantTypes.SCALAR, + size: 'U08', + offset: 25, + units: '', + scale: 1, + transform: 0, + min: 1, + max: 8, + digits: 0, +}; diff --git a/src/data/help.ts b/src/data/help.ts new file mode 100644 index 0000000..0188c88 --- /dev/null +++ b/src/data/help.ts @@ -0,0 +1,16 @@ +import { + Help as HelpType, +} from '../types/config'; + +export const help: HelpType = { + reqFuel: 'The base reference pulse width required to achieve stoichiometric at 100% VE and a manifold absolute pressure (MAP) of 100kPa using current settings.', + algorithm: 'Fueling calculation algorithm', + alternate: 'Whether or not the injectors should be fired at the same time.\nThis setting is ignored when Sequential is selected below, however it will still affect req_fuel value.', + twoStroke: 'Four-stroke (most engines) / Two-stroke', + nCylinders: 'Cylinder count', + injType: 'Port Injection (one injector for each cylinder) or Throttle Body (injectors shared by cylinders)', + nInjectors: 'Number of primary injectors', + engineType: 'Engines with an equal number of degrees between all firings (This is most engines) should select Even fire.\nSome 2 and 6 cylinder engines are Odd fire however', +}; + +export default help; diff --git a/src/data/standardDialogs.ts b/src/data/standardDialogs.ts new file mode 100644 index 0000000..ef485ee --- /dev/null +++ b/src/data/standardDialogs.ts @@ -0,0 +1,58 @@ +import { + Dialogs as DialogsType, +} from '../types/config'; + +const standardDialogs: DialogsType = { + std_injection: { + title: 'Engine Constants', + help: 'https://wiki.speeduino.com/en/configuration/Engine_Constants', + layout: '', + panels: { + engine_constants_southwest: { + layout: '', + fields: [], // overridden by ini file + condition: '', + }, + }, + fields: [ + { + name: 'reqFuel', + title: 'Required Fuel', + }, + { + name: 'algorithm', + title: 'Control Algorithm', + }, + { + name: 'divider', + title: 'Squirts Per Engine Cycle', + }, + { + name: 'alternate', + title: 'Injector Staging', + }, + { + name: 'twoStroke', + title: 'Engine Stroke', + }, + { + name: 'nCylinders', + title: 'Number of Cylinders', + }, + { + name: 'injType', + title: 'Injector Port Type', + }, + { + name: 'nInjectors', + title: 'Number of Injectors', + }, + { + name: 'engineType', + title: 'Engine Type', + }, + ], + }, +}; + +export default standardDialogs; diff --git a/src/electron.ts b/src/electron.ts new file mode 100644 index 0000000..43a8b97 --- /dev/null +++ b/src/electron.ts @@ -0,0 +1,62 @@ +import { app, BrowserWindow } from 'electron'; +import path from 'path'; + +const isDev = !app.isPackaged; + +let main: BrowserWindow; +// let splash: BrowserWindow | null; + +// const createSplash = () => { +// splash = new BrowserWindow({ +// width: 200, +// height: 400, +// frame: false, +// transparent: true, +// resizable: false, +// }); +// splash.loadURL(`file://${path.join(__dirname, '../public/splash.html')}`); + +// splash.on('closed', () => { +// splash = null; +// }); + +// splash.webContents.on('did-finish-load', () => { +// splash.show(); +// }); +// }; + +function createMain() { + main = new BrowserWindow({ + title: 'SpeedyTuner', + width: 1400, + height: 1000, + show: false, + titleBarStyle: 'hiddenInset', + backgroundColor: '#222629', + }); + main.setMenuBarVisibility(false); + + const startURL = isDev + ? 'http://localhost:3000' + : `file://${path.join(__dirname, '../build/index.html')}`; + + main.loadURL(startURL); + + main.on('closed', () => { + main = null as any; + }); + + main.once('ready-to-show', () => main.show()); + // main.webContents.on('did-finish-load', () => { + // if (splash) { + // splash.close(); + // } + // main.show(); + // }); +} + +app.on('ready', () => { + // createSplash(); + createMain(); +}); + diff --git a/src/index.tsx b/src/index.tsx new file mode 100644 index 0000000..28fda32 --- /dev/null +++ b/src/index.tsx @@ -0,0 +1,14 @@ +import ReactDOM from 'react-dom'; +import { Provider } from 'react-redux'; +import { HashRouter } from 'react-router-dom'; +import App from './App'; +import store from './store'; + +ReactDOM.render( + + + + + , + document.getElementById('root'), +); diff --git a/src/parser/ini.ts b/src/parser/ini.ts new file mode 100644 index 0000000..48de70e --- /dev/null +++ b/src/parser/ini.ts @@ -0,0 +1,1124 @@ +import fs from 'fs'; +import path from 'path'; +import yaml from 'js-yaml'; +import * as P from 'parsimmon'; + +import { + Config as ConfigType, + Constant, +} from '../types/config'; + +console.log('------- start --------'); + +class INI { + space: P.Parser; + + expression: P.Parser; + + numbers: P.Parser; + + name: P.Parser; + + equal: P.Parser; + + quote: P.Parser; + + quotes: [P.Parser, P.Parser]; + + comma: P.Parser; + + size: P.Parser; + + delimiter: [P.Parser, P.Parser, P.Parser]; + + notQuote: P.Parser; + + sqrBrackets: [P.Parser, P.Parser]; + + inQuotes: P.Parser; + + values: P.Parser; + + lines: string[]; + + currentPage?: number; + + currentDialog?: string; + + currentPanel?: string; + + currentMenu?: string; + + currentCurve?: string; + + currentTable?: string; + + result: ConfigType; + + constructor(buffer: string) { + this.space = P.optWhitespace; + this.expression = P.regexp(/{.+?}/); + this.numbers = P.regexp(/[0-9.-]*/); + this.name = P.regexp(/[0-9a-z_]*/i); + this.equal = P.string('='); + this.quote = P.string('"'); + this.quotes = [this.quote, this.quote]; + this.comma = P.string(','); + this.size = P.regexp(/U08|S08|U16|S16|U32|S32|S64|F32|ASCII/); + this.delimiter = [this.space, this.comma, this.space]; + this.notQuote = P.regexp(/[^"]*/); + this.sqrBrackets = [P.string('['), P.string(']')]; + this.inQuotes = this.notQuote.trim(this.space).wrap(...this.quotes); + this.values = P.regexp(/[^,;]*/).trim(this.space).sepBy(this.comma); + + this.lines = buffer.toString().split('\n'); + + this.currentPage = undefined; + this.currentDialog = undefined; + this.currentPanel = undefined; + this.currentMenu = undefined; + this.currentCurve = undefined; + this.currentTable = undefined; + + this.result = { + megaTune: { + signature: '', + MTversion: 0, + queryCommand: '', + versionInfo: '', + }, + tunerStudio: { + iniSpecVersion: 0, + }, + defines: {}, + pcVariables: {}, + constants: { + pages: [], + }, + menus: {}, + dialogs: {}, + curves: {}, + tables: {}, + outputChannels: {}, + help: {}, + }; + } + + parse() { + this.parseSections(); + return this.result; + } + + private parseSections() { + let section: string; + + this.lines.forEach((raw) => { + const line = raw.trim(); + // skip empty lines and lines with comments only + // skip #if for now + if (line === '' || line.startsWith(';') || (line.startsWith('#') && !line.startsWith('#define'))) { + return; + } + + const result = P + .seqObj( + ['section', P.letters.wrap(P.string('['), P.string(']'))], + P.all, + ).parse(line); + + // top level section found + if (result.status) { + section = result.value.section.trim(); + return; + } + + if (section) { + this.parseSectionLine(section, line); + } + }); + } + + private parseSectionLine(section: string, line: string) { + switch (section) { + case 'MegaTune': + this.parseKeyValueFor('megaTune', line); + break; + case 'TunerStudio': + this.parseKeyValueFor('tunerStudio', line); + break; + case 'PcVariables': + this.parsePcVariables(line); + break; + case 'Constants': + this.parseConstants(line); + break; + case 'Menu': + this.parseMenu(line); + break; + case 'SettingContextHelp': + this.parseKeyValueFor('help', line); + break; + case 'UserDefined': + this.parseDialogs(line); + break; + case 'CurveEditor': + this.parseCurves(line); + break; + case 'TableEditor': + this.parseTables(line); + break; + case 'OutputChannels': + this.parseOutputChannels(line); + break; + default: + break; + } + } + + private parseOutputChannels(line: string) { + try { + const result = this.parseConstAndVar(line); + + this.result.outputChannels[result.name] = { + type: result.type, + size: result.size, + offset: Number(result.offset), + units: INI.sanitize(result.units), + scale: INI.isNumber(result.scale) ? Number(result.scale) : INI.sanitize(result.scale), + transform: INI.isNumber(result.transform) ? Number(result.transform) : INI.sanitize(result.transform), + }; + return; + } catch (_) { + const base: any = [ + ['name', this.name], + this.space, this.equal, this.space, + ]; + + // TODO: throttle = { tps }, "%" + // ochGetCommand = "r\$tsCanId\x30%2o%2c" + // ochBlockSize = 117 + // coolant = { coolantRaw - 40 } + const result = P + .seqObj( + ...base, + ['value', this.notQuote.wrap(...this.quotes)], + P.all, + ) + .or(P.seqObj( + ...base, + ['value', this.expression], + P.all, + )) + .or(P.seqObj( + ...base, + ['value', this.numbers], + P.all, + )) + .tryParse(line); + + this.result.outputChannels[result.name] = { + value: INI.sanitize(result.value), + }; + } + } + + private parseTables(line: string) { + // table = veTable1Tbl, veTable1Map, "VE Table", 2 + const tableResult = P.seqObj( + P.string('table'), + this.space, this.equal, this.space, + ['name', this.name], + ...this.delimiter, + ['map', this.name], + ...this.delimiter, + ['title', this.inQuotes], + ...this.delimiter, + ['page', P.digits], + P.all, + ).parse(line); + + if (tableResult.status) { + this.currentTable = tableResult.value.name; + this.result.tables[this.currentTable!] = { + map: tableResult.value.map, + title: INI.sanitize(tableResult.value.title), + page: Number(tableResult.value.page), + xBins: [], + yBins: [], + xyLabels: [], + zBins: [], + gridHeight: 0, + gridOrient: [], + upDownLabel: [], + }; + + return; + } + + // topicHelp = "http://speeduino.com/wiki/index.php/Tuning" + const helpResult = P.seqObj( + P.string('topicHelp'), + this.space, this.equal, this.space, + ['help', this.inQuotes], + P.all, + ).parse(line); + + if (helpResult.status) { + if (!this.currentTable) { + throw new Error('Table not set'); + } + this.result.tables[this.currentTable].help = INI.sanitize(helpResult.value.help); + + return; + } + + // xBins = rpmBins, rpm + // yBins = fuelLoadBins, fuelLoad + // xyLabels = "RPM", "Fuel Load: " + // zBins = veTable + // gridOrient = 250, 0, 340 + // upDownLabel = "(RICHER)", "(LEANER)" + const parseBins = (name: string) => P.seqObj( + P.string(name), + this.space, this.equal, this.space, + ['values', this.values], + P.all, + ).parse(line); + + const xBinsResult = parseBins('xBins'); + if (xBinsResult.status) { + if (!this.currentTable) { + throw new Error('Table not set'); + } + this.result.tables[this.currentTable].xBins = xBinsResult + .value + .values + .map(INI.sanitize); + + return; + } + + const yBinsResult = parseBins('yBins'); + if (yBinsResult.status) { + if (!this.currentTable) { + throw new Error('Table not set'); + } + this.result.tables[this.currentTable].yBins = yBinsResult + .value + .values + .map(INI.sanitize); + + return; + } + + const yxLabelsResult = parseBins('xyLabels'); + if (yxLabelsResult.status) { + if (!this.currentTable) { + throw new Error('Table not set'); + } + this.result.tables[this.currentTable].xyLabels = yxLabelsResult + .value + .values + .map(INI.sanitize); + + return; + } + + const zBinsResult = parseBins('zBins'); + if (zBinsResult.status) { + if (!this.currentTable) { + throw new Error('Table not set'); + } + this.result.tables[this.currentTable].zBins = zBinsResult + .value + .values + .map(INI.sanitize); + + return; + } + + // gridHeight = 2.0 + const gridHeightResult = P.seqObj( + P.string('gridHeight'), + this.space, this.equal, this.space, + ['gridHeight', this.numbers], + P.all, + ).parse(line); + + if (gridHeightResult.status) { + if (!this.currentTable) { + throw new Error('Table not set'); + } + this.result.tables[this.currentTable].gridHeight = Number(gridHeightResult.value.gridHeight); + + return; + } + + const gridOrientResult = parseBins('gridOrient'); + if (gridOrientResult.status) { + if (!this.currentTable) { + throw new Error('Table not set'); + } + this.result.tables[this.currentTable].gridOrient = gridOrientResult + .value + .values + .map(Number); + + return; + } + + const upDownResult = parseBins('upDownLabel'); + if (upDownResult.status) { + if (!this.currentTable) { + throw new Error('Table not set'); + } + this.result.tables[this.currentTable].upDownLabel = upDownResult + .value + .values + .map(INI.sanitize); + } + } + + private parseCurves(line: string) { + // curve = time_accel_tpsdot_curve, "TPS based AE" + const curveResult = P.seqObj( + P.string('curve'), + this.space, this.equal, this.space, + ['name', this.name], + ...this.delimiter, + ['title', this.inQuotes], + P.all, + ).parse(line); + + if (curveResult.status) { + this.currentCurve = curveResult.value.name; + this.result.curves[this.currentCurve!] = { + title: INI.sanitize(curveResult.value.title), + labels: [], + xAxis: [], + yAxis: [], + xBins: [], + yBins: [], + size: [], + }; + + return; + } + + // columnLabel = "TPSdot", "Added" + const labelsResult = P.seqObj( + P.string('columnLabel'), + this.space, this.equal, this.space, + ['labels', this.values], + P.all, + ).parse(line); + + if (labelsResult.status) { + if (!this.currentCurve) { + throw new Error('Curve not set'); + } + this.result.curves[this.currentCurve].labels = labelsResult + .value + .labels + .map(INI.sanitize); + + return; + } + + // xAxis = 0, 1200, 6 + // yAxis = 0, 1200, 6 + // xBins = taeBins, TPSdot + // yBins = taeRates + const parseAxis = (name: string) => P.seqObj( + P.string(name), + this.space, this.equal, this.space, + ['values', this.values], + P.all, + ).parse(line); + + const xAxisResult = parseAxis('xAxis'); + if (xAxisResult.status) { + if (!this.currentCurve) { + throw new Error('Curve not set'); + } + this.result.curves[this.currentCurve].xAxis = xAxisResult + .value + .values + .map((val: string) => INI.isNumber(val) ? Number(val) : INI.sanitize(val)); + + return; + } + + const yAxisResult = parseAxis('yAxis'); + if (yAxisResult.status) { + if (!this.currentCurve) { + throw new Error('Curve not set'); + } + this.result.curves[this.currentCurve].yAxis = yAxisResult + .value + .values + .map((val: string) => INI.isNumber(val) ? Number(val) : INI.sanitize(val)); + + return; + } + + const xBinsResult = parseAxis('xBins'); + if (xBinsResult.status) { + if (!this.currentCurve) { + throw new Error('Curve not set'); + } + this.result.curves[this.currentCurve].xBins = xBinsResult + .value + .values + .map((val: string) => INI.isNumber(val) ? Number(val) : INI.sanitize(val)); + + return; + } + + const yBinsResult = parseAxis('yBins'); + if (yBinsResult.status) { + if (!this.currentCurve) { + throw new Error('Curve not set'); + } + this.result.curves[this.currentCurve].yBins = yBinsResult + .value + .values + .map((val: string) => INI.isNumber(val) ? Number(val) : INI.sanitize(val)); + + return; + } + + const size = parseAxis('size'); + if (size.status) { + if (!this.currentCurve) { + throw new Error('Curve not set'); + } + this.result.curves[this.currentCurve].size = size + .value + .values + .map((val: string) => INI.isNumber(val) ? Number(val) : INI.sanitize(val)); + } + } + + private parseDialogs(line: string) { + const dialogBase: any = [ + P.string('dialog'), + this.space, this.equal, this.space, + ['name', this.name], + ...this.delimiter, + ['title', this.inQuotes], + ]; + const dialogResult = P + .seqObj( + ...dialogBase, + ...this.delimiter, + ['layout', this.name], + P.all, + ) + .or(P.seqObj(...dialogBase, P.all)) + .parse(line); + + if (dialogResult.status) { + this.currentDialog = dialogResult.value.name; + this.result.dialogs[this.currentDialog!] = { + title: INI.sanitize(dialogResult.value.title), + layout: dialogResult.value.layout, + panels: {}, + fields: [], + }; + + return; + } + + // panel = knock_window_angle_curve + const panelBase: any = [ + P.string('panel'), + this.space, this.equal, this.space, + ['name', this.name], + ]; + + // panel = knock_window_angle_curve, West + const panelWithLayout = [ + ...panelBase, + ...this.delimiter, + ['layout', this.name], + ]; + + // panel = flex_fuel_curve, { flexEnabled } + const panelWithCondition = [ + ...panelBase, + ...this.delimiter, + ['condition', this.expression], + ]; + + const panelResult = P + .seqObj( + ...panelWithLayout, + ...this.delimiter, + ['condition', this.expression], + P.all, + ) + .or(P.seqObj( + ...panelWithCondition, + P.all, + )) + .or(P.seqObj( + ...panelWithLayout, + P.all, + )) + .or(P.seqObj( + ...panelBase, + P.all, + )) + .parse(line); + + if (panelResult.status) { + if (!this.currentDialog) { + throw new Error('Dialog not set'); + } + this.currentPanel = panelResult.value.name; + + this.result.dialogs[this.currentDialog!].panels[this.currentPanel!] = { + layout: panelResult.value.layout, + condition: panelResult.value.condition, + fields: [], + panels: {}, + }; + + return; + } + + // field = "Injector Layout" + const fieldBase: any = [ + P.string('field'), + this.space, this.equal, this.space, + ['title', this.notQuote.wrap(...this.quotes)], + ]; + + // field = "Injector Layout", injLayout + const fieldWithName = [ + ...fieldBase, + ...this.delimiter, + ['name', this.name], + ]; + + // field = "Low (E0) ", flexFreqLow, { flexEnabled } + const fieldWithCondition = [ + ...fieldWithName, + ...this.delimiter, + ['condition', this.expression], + ]; + + // NOTE: this is probably a mistake, investigate that + // field = "AUX Input 0", caninput_sel0a, {}, { (!enable_secondarySerial && (!enable_intcan || (enable_intcan && intcan_available == 0))) } + const fieldWithDoubleCondition = [ + ...fieldWithName, + ...this.delimiter, + P.regexp(/{.*?}/), + ...this.delimiter, + ['condition', this.expression], + ]; + + const fieldResult = P + .seqObj( + ...fieldWithDoubleCondition, + P.all, + ) + .or(P.seqObj( + ...fieldWithCondition, + P.all, + )) + .or(P.seqObj( + ...fieldWithName, + P.all, + )) + .or(P.seqObj( + ...fieldBase, + P.all, + )) + .parse(line); + + if (fieldResult.status) { + if (!this.currentDialog) { + throw new Error('Dialog not set'); + } + + this.result.dialogs[this.currentDialog!].fields.push({ + name: fieldResult.value.name || '_fieldText_', + title: INI.sanitize(fieldResult.value.title), + condition: fieldResult.value.condition, + }); + + return; + } + + // topicHelp = "https://wiki.speeduino.com/en/configuration/Engine_Constants" + const helpResult = P + .seqObj( + P.string('topicHelp'), + this.space, this.equal, this.space, + ['help', this.notQuote.wrap(...this.quotes)], + P.all, + ) + .parse(line); + + if (!this.currentDialog) { + throw new Error('Dialog not set'); + } + + if (helpResult.status) { + this.result.dialogs[this.currentDialog!].help = INI.sanitize( + helpResult.value.help, + ); + } + + // TODO: missing fields: + // - settingSelector + // - commandButton + // - displayOnlyField + } + + private parseKeyValueFor(section: string, line: string) { + const { key, value } = this.parseKeyValue(line); + + if (this.result[section][key]) { + // TODO: enable this for linting duplicates + return; + // throw new Error(`Key: ${key} for section: ${section} already exist`); + } + + this.result[section][key] = value; + } + + private parseKeyValue(line: string) { + const base: any = [ + ['key', this.name], + this.space, this.equal, this.space, + ]; + + const result = P + .seqObj( + ...base, + ['value', this.notQuote.wrap(...this.quotes)], + P.all, + ) + .or(P.seqObj( + ...base, + ['value', this.numbers], + P.all, + )) + .tryParse(line); + + return { + key: result.key as string, + value: INI.isNumber(result.value) + ? Number(result.value) + : INI.sanitize(result.value), + }; + } + + private parseMenu(line: string) { + // skip root "menuDialog = main" for now + if (line.startsWith('menuDialog')) { + return; + } + + const menuResult = P + .seqObj( + P.string('menu'), + this.space, this.equal, this.space, + ['name', this.inQuotes], + P.all, + ).parse(line); + + if (menuResult.status) { + const title = INI + .sanitize(menuResult.value.name) + .replace(/&/g, ''); + const name = title + .toLowerCase() + .replace(/([^\w]\w)/g, (g) => g[1].toUpperCase()); // camelCase + + this.currentMenu = name; + this.result.menus[this.currentMenu] = { + title: INI.sanitize(title), + subMenus: {}, + }; + return; + } + + if (this.currentMenu) { + // subMenu = std_separator + const base: any = [ + P.string('subMenu'), + this.space, this.equal, this.space, + ['name', this.name], + ]; + + // subMenu = io_summary, "I/O Summary" + const withTitle: any = [ + ...base, + ...this.delimiter, + ['title', this.notQuote.wrap(...this.quotes)], + ]; + + // subMenu = egoControl, "AFR/O2", 3 + const withPage: any = [ + ...withTitle, + ...this.delimiter, + ['page', P.digits], + ]; + + // subMenu = fuelTemp_curve, "Fuel Temp Correction", { flexEnabled } + const withCondition: any = [ + ...withTitle, + ...this.delimiter, + ['condition', this.expression], + P.all, + ]; + + // subMenu = inj_trimad_B, "Sequential fuel trim (5-8)", 9, { nFuelChannels >= 5 } + const full: any = [ + ...withPage, + ...this.delimiter, + ['condition', this.expression], + ]; + + const subMenuResult = P.seqObj(...full, P.all) + .or(P.seqObj(...withCondition, P.all)) + .or(P.seqObj(...withPage, P.all)) + .or(P.seqObj(...withTitle, P.all)) + .or(P.seqObj(...base, P.all)) + .tryParse(line); + + this.result.menus[this.currentMenu].subMenus[subMenuResult.name] = { + title: INI.sanitize(subMenuResult.title), + page: Number(subMenuResult.page || 0), + condition: subMenuResult.condition ? INI.sanitize(subMenuResult.condition) : '', + }; + } + } + + private parseDefines(line: string) { + const result = P.seqObj( + P.string('#define'), + this.space, + ['name', this.name], + this.space, this.equal, this.space, + ['values', this.values], + P.all, + ).tryParse(line); + + this.result.defines[result.name] = result.values.map(INI.sanitize); + + const resolved = this.result.defines[result.name].map((val) => ( + val.startsWith('$') + ? this.result.defines[val.slice(1)] + : val + )).flat(); + + this.result.defines[result.name] = resolved; + } + + private parsePcVariables(line: string) { + if (line.startsWith('#define')) { + this.parseDefines(line); + return; + } + + const result = this.parseConstAndVar(line, true); + + let constant = {} as Constant; + switch (result.type) { + case 'scalar': + constant = { + type: result.type, + size: result.size, + units: INI.sanitize(result.units), + scale: INI.numberOrExpression(result.scale), + transform: INI.numberOrExpression(result.transform), + min: INI.numberOrExpression(result.min), + max: INI.numberOrExpression(result.max), + digits: Number(result.digits), + }; + break; + case 'array': + constant = { + type: result.type, + size: result.size, + shape: INI.arrayShape(result.shape), + units: INI.sanitize(result.units), + scale: INI.numberOrExpression(result.scale), + transform: INI.numberOrExpression(result.transform), + min: INI.numberOrExpression(result.min), + max: INI.numberOrExpression(result.max), + digits: Number(result.digits), + }; + break; + case 'bits': + constant = { + type: result.type, + size: result.size, + address: result.address.split(':').map(Number), + values: this.resolveBitsValues(result.name, result.values || []), + }; + break; + case 'string': + constant = { + type: result.type, + size: result.size, + length: Number(result.length), + }; + break; + default: + break; + } + + this.result.pcVariables[result.name] = constant; + } + + private parseConstants(line: string) { + if (line.startsWith('#define')) { + this.parseDefines(line); + return; + } + + const page = P + .seqObj( + P.string('page'), + this.space, this.equal, this.space, + ['page', P.digits], + P.all, + ).parse(line); + + if (page.status) { + this.currentPage = Number(page.value.page) - 1; + return; + } + + if (INI.isNumber(this.currentPage)) { + const result = this.parseConstAndVar(line); + + if (!this.result.constants.pages[this.currentPage!]) { + this.result.constants.pages[this.currentPage!] = { + number: this.currentPage! + 1, + size: 0, + data: {}, + }; + } + + let constant = {} as Constant; + switch (result.type) { + case 'scalar': + constant = { + type: result.type, + size: result.size, + offset: Number(result.offset), + units: INI.sanitize(result.units), + scale: INI.numberOrExpression(result.scale), + transform: INI.numberOrExpression(result.transform), + min: INI.numberOrExpression(result.min), + max: INI.numberOrExpression(result.max), + digits: Number(result.digits), + }; + break; + case 'array': + constant = { + type: result.type, + size: result.size, + offset: Number(result.offset), + shape: INI.arrayShape(result.shape), + units: INI.sanitize(result.units), + scale: INI.numberOrExpression(result.scale), + transform: INI.numberOrExpression(result.transform), + min: INI.numberOrExpression(result.min), + max: INI.numberOrExpression(result.max), + digits: Number(result.digits), + }; + break; + case 'bits': + constant = { + type: result.type, + size: result.size, + offset: Number(result.offset), + address: result.address.split(':').map(Number), + values: this.resolveBitsValues(result.name, result.values || []), + }; + break; + default: + break; + } + + if (this.result.constants.pages[this.currentPage!].data[result.name]) { + // TODO: if else + return; + } + + this.result.constants.pages[this.currentPage!].data[result.name] = constant; + } + } + + private resolveBitsValues(name: string, values: string[]) { + return values.map((val: string) => { + const resolve = () => { + const defineName = INI.sanitize(val.slice(1)); // name without $ + const resolved = this.result.defines[defineName]; + if (!resolved) { + throw new Error(`Unable to resolve bits values for ${name}`); + } + + return resolved; + }; + + return val.startsWith('$') ? resolve() : INI.sanitize(val); + }).flat().filter((val) => val !== ''); + } + + private parseConstAndVar(line: string, asPcVariable = false) { + const address: any = [ + ['address', P.regexp(/\d+:\d+/).trim(this.space).wrap(...this.sqrBrackets)], + ]; + + // first common (eg. name = scalar, U08, 3,) + const base: any = (type: string) => { + let list = [ + ['name', this.name], + this.space, this.equal, this.space, + ['type', P.string(type)], + ...this.delimiter, + ['size', this.size], + ]; + + // pcVariables don't have "offset" + if (!asPcVariable) { + list = [ + ...list, + ...[ + ...this.delimiter, + ['offset', P.digits], + ], + ]; + } + + return list; + }; + + const scalarShortRest: any = [ + ['units', P.alt( + this.expression, + this.inQuotes, + )], + ...this.delimiter, + ['scale', P.alt(this.expression, this.numbers)], + ...this.delimiter, + ['transform', P.alt(this.expression, this.numbers)], + ]; + + const scalarRest: any = [ + ...scalarShortRest, + ...this.delimiter, + ['min', P.alt(this.expression, this.numbers)], + ...this.delimiter, + ['max', P.alt(this.expression, this.numbers)], + ...this.delimiter, + ['digits', P.digits], + P.all, + ]; + + // normal scalar + const scalar = P.seqObj( + ...base('scalar'), + ...this.delimiter, + ...scalarRest, + ); + + // short version of scalar (e.g. 'divider') + const scalarShort = P.seqObj( + ...base('scalar'), + ...this.delimiter, + ...scalarShortRest, + P.all, + ); + + // normal version of array + const array = P.seqObj( + ...base('array'), + ...this.delimiter, + ['shape', P.regexp(/\d+\s*(x\s*\d+)*/).trim(this.space).wrap(...this.sqrBrackets)], + ...this.delimiter, + ...scalarRest, + ); + + // normal version of bits + const bits = P.seqObj( + ...base('bits'), + ...this.delimiter, + ...address, + ...this.delimiter, + ['values', this.values], + P.all, + ); + + // short version of bits + const bitsShort = P.seqObj( + ...base('bits'), + ...this.delimiter, + ...address, + P.all, + ); + + // string (in pcVariables) + const string = P.seqObj( + ...base('string'), + ...this.delimiter, + ['length', P.digits], + P.all, + ); + + return scalar + .or(scalarShort) + .or(array) + .or(bits) + .or(bitsShort) + .or(string) + .tryParse(line); + } + + private static numberOrExpression = (val: string | undefined | null) => INI.isNumber(val || '0') ? Number(val || 0) : INI.sanitize(`${val}`); + + private static sanitize = (val: any) => val === undefined ? '' : `${val}`.replace(/"/g, '').trim(); + + private static isNumber = (val: any) => !Number.isNaN(Number(val)); + + private static arrayShape = (val: string) => { + const parts = INI.sanitize(val).split('x'); + return { + columns: Number(parts[0]), + rows: parts[1] ? Number(parts[1]) : 0, + }; + }; +} + +const versions = [ + 202012, + 202103, +]; + +versions.forEach((version) => { + const result = new INI( + fs.readFileSync(path.join(__dirname, `/../../public/tunes/${version}.ini`), 'utf8'), + ).parse(); + + fs.writeFileSync(path.join(__dirname, `/../../public/tunes/${version}.yml`), yaml.dump(result)); + fs.writeFileSync(path.join(__dirname, `/../../public/tunes/${version}.json`), JSON.stringify(result)); +}); + +// const result = new INI( +// fs.readFileSync(path.join(__dirname, `/../../public/tunes/${versions[1]}.ini`), 'utf8'), +// ).parse(); +// console.dir( +// result.outputChannels, +// { depth: null, compact: false }, +// ); + +console.log('------- end --------'); diff --git a/src/react-app-env.d.ts b/src/react-app-env.d.ts new file mode 100644 index 0000000..6431bc5 --- /dev/null +++ b/src/react-app-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/src/routes.ts b/src/routes.ts new file mode 100644 index 0000000..0f09b8f --- /dev/null +++ b/src/routes.ts @@ -0,0 +1,9 @@ +// eslint-disable-next-line import/prefer-default-export +export enum Routes { + ROOT = '/', + TAB = '/:tab', + TUNE = '/tune', + DIALOG = '/tune/:category/:dialog', + LOG = '/log', + DIAGNOSE = '/diagnose', +} diff --git a/src/store.ts b/src/store.ts new file mode 100644 index 0000000..b84b72e --- /dev/null +++ b/src/store.ts @@ -0,0 +1,57 @@ +/* eslint-disable no-param-reassign */ + +import { configureStore, createAction, createReducer } from '@reduxjs/toolkit'; +import * as Types from './types/state'; + +// tune and config +const updateTune = createAction('tune/update'); +const loadTune = createAction('tune/load'); +const loadConfig = createAction('config/load'); + +// status bar +const setStatus = createAction('status'); + +// ui +const setSidebarCollapsed = createAction('ui/sidebarCollapsed'); +const toggleSidebar = createAction('ui/toggleSidebar'); + +const initialState: Types.AppState = { + tune: { + constants: {}, + }, + config: {} as any, + ui: { + sidebarCollapsed: false, + }, + status: { + text: null, + }, +}; + +const rootReducer = createReducer(initialState, (builder) => { + builder + .addCase(loadConfig, (state: Types.AppState, action) => { + state.config = action.payload; + }) + .addCase(loadTune, (state: Types.AppState, action) => { + state.tune = action.payload; + }) + .addCase(updateTune, (state: Types.AppState, action) => { + state.tune.constants[action.payload.name].value = action.payload.value; + }) + .addCase(setSidebarCollapsed, (state: Types.AppState, action) => { + state.ui.sidebarCollapsed = action.payload; + }) + .addCase(toggleSidebar, (state: Types.AppState) => { + state.ui.sidebarCollapsed = !state.ui.sidebarCollapsed; + }) + .addCase(setStatus, (state: Types.AppState, action) => { + state.status.text = action.payload; + }); +}); + +const store = configureStore({ + reducer: rootReducer, +}); + +export default store; diff --git a/src/themes/ant.less b/src/themes/ant.less new file mode 100644 index 0000000..fc632ce --- /dev/null +++ b/src/themes/ant.less @@ -0,0 +1,16 @@ +.ant-menu { + border-color: transparent; +} + +.ant-layout-sider-trigger { + bottom: @layout-footer-height; + // .border-right; +} + +.ant-empty { + opacity: 0.6; +} + +.ant-popover-content { + box-shadow: @box-shadow; +} diff --git a/src/themes/common.less b/src/themes/common.less new file mode 100644 index 0000000..303e12a --- /dev/null +++ b/src/themes/common.less @@ -0,0 +1,14 @@ +@primary-color: #126ec3; +@text-light: #fff; + +@border-radius-base: 5px; + +@layout-header-padding: 0 15px; +@layout-header-height: 45px; + +@layout-footer-padding: 2px 10px; +@layout-footer-height: 24px; + +@bars-z-index: 5; +@zindex-modal: 1080; +@box-shadow: 0 3px 6px -4px rgb(0 0 0 e('/') 12%), 0 6px 16px 0 rgb(0 0 0 e('/') 8%), 0 9px 28px 8px rgb(0 0 0 e('/') 5%); diff --git a/src/themes/dark.less b/src/themes/dark.less new file mode 100644 index 0000000..76b2401 --- /dev/null +++ b/src/themes/dark.less @@ -0,0 +1,102 @@ +// darker +@main: #222629; +@main-dark: #191C1E; +@main-light: #2E3338; + +@text: #ddd; + +// lighter +// @main: #272c30; +// @main-dark: #212527; +// @main-light: #394046; + +@text-dark: #222; +@text-disabled: #999; + +// First +// @primary-color: #26547C; +@info: #FFD166; +@success: #06D6A0; +@error: #EF476F; +@warn: #E55934; + +// Second +// @primary-color: #004E64; +// @info: #F2C14E; +// @success: #499F68; +// @error: #DA2C38; +// @warn: #ED5A31; + +// new ant +@primary-1: @primary-color; + +@processing-color: @info; +@info-color: @info; +@success-color: @success; +@error-color: @error; +@highlight-color: @error; +@warning-color: @warn; +@text-color: @text; +@text-color-dark: @text-dark; +@disabled-color: @text-disabled; +@text-color-secondary: @text-disabled; +@heading-color: @text-light; +@heading-color-dark: @text-dark; +@link-color: lighten(@primary-color, 10%); + +@body-background: @main; +@component-background: @main-light; +@item-active-bg: @primary-color; +@item-hover-bg: @primary-color; +@menu-highlight-color: @text; +@table-row-hover-bg: darken(@primary-color, 10%); + +@descriptions-bg: @main-light; +@menu-bg: @main; + +@border-color-base: @main-dark; +@border-color-split: lighten(@main-light, 2%); +@background-color-light: @main-light; +@background-color-base: @main-light; + +@checkbox-check-color: @main-light; +@layout-body-background: @main; + +// Alert +@alert-success-border-color: @success; +@alert-success-bg-color: darken(@success, 20%); +@alert-success-icon-color: @success; + +@alert-info-border-color: @info; +@alert-info-bg-color: darken(@info, 30%); +@alert-info-icon-color: @info; + +@alert-warning-border-color: @warn; +@alert-warning-bg-color: darken(@warn, 20%); +@alert-warning-icon-color: @warn; + +@alert-error-border-color: @error; +@alert-error-bg-color: darken(@error, 20%); +@alert-error-icon-color: @error; + +// Divider +@divider-color: @border-color-split; + +// Header +@layout-header-background: @main; + +// Side +@layout-sider-background: @main; +@layout-trigger-background: @main; +@layout-trigger-color: @text-color; + +// Tooltip +@tooltip-bg: rgb(46, 51, 56, 0.8); +@zindex-tooltip: 1; + +// Modal +@modal-header-bg: @main; +@modal-content-bg: @main; + +// Radio buttons +@radio-solid-checked-color: @white; diff --git a/src/themes/light.less b/src/themes/light.less new file mode 100644 index 0000000..74bad23 --- /dev/null +++ b/src/themes/light.less @@ -0,0 +1,12 @@ +@main: @white; +@text: @white; +@main-light: #181818; + +@body-background: @main; +@menu-bg: @main; +@layout-body-background: @main; +@layout-header-background: @main; + +@layout-sider-background: @main; +@layout-trigger-background: @main; +@layout-trigger-color: @text-color; diff --git a/src/types/config.ts b/src/types/config.ts new file mode 100644 index 0000000..d0a5f93 --- /dev/null +++ b/src/types/config.ts @@ -0,0 +1,200 @@ +export enum Switches { + YES = 'Yes', + NO = 'No', + ON = 'On', + OFF = 'Off', +} + +export interface Field { + title: string; + name: string; + condition?: string; +} + +export interface Panel { + layout: string; + panels?: { + [name: string]: Panel; + }; + fields?: Field[]; + condition?: string; +} + +export interface Dialog { + title: string; + layout: string; + help?: string; + panels: { + [name: string]: Panel; + }; + fields: Field[]; + // TODO: + // settingSelector + // commandButton +} + +export interface Dialogs { + [name: string]: Dialog; +} + +export interface SubMenu { + title: string; + page: number; + condition: string; +} + +export interface Menu { + title: string; + subMenus: { + [name: string]: SubMenu; + }; +} + +export interface Menus { + [name: string]: Menu; +} + +export interface ArrayShape { + columns: number; + rows: number; +} + +export enum ConstantTypes { + SCALAR = 'scalar', + BITS = 'bits', + ARRAY = 'array', + STRING = 'string', +} + +export type ConstantSize = 'U08' | 'S08' | 'U16' | 'S16' | 'U32' | 'S32' | 'S64' | 'F32' | 'ASCII'; + +export interface ScalarConstant { + type: ConstantTypes.SCALAR; + size: ConstantSize; + offset?: number; + units: string; + scale: number | string; + transform: number | string; + min: number | string; + max: number | string; + digits: number; +} + +export interface BitsConstant { + type: ConstantTypes.BITS; + size: ConstantSize; + offset?: number; + address: number[]; + values: string[]; +} + +export interface ArrayConstant { + type: ConstantTypes.ARRAY; + size: ConstantSize; + offset?: number; + shape: ArrayShape; + units: string; + scale: number | string; + transform: number | string; + min: number | string; + max: number | string; + digits: number; +} + +export interface StringConstant { + type: ConstantTypes.SCALAR; + size: ConstantSize; + length: number; +} + +export interface OutputChannel { + type: ConstantTypes.SCALAR | ConstantTypes.BITS; + size: ConstantSize; + offset: number; + units: string; + scale: number | string; + transform: number | string; +} + +export interface SimpleConstant { + value: string; +} + +export type Constant = ScalarConstant | BitsConstant | ArrayConstant | StringConstant; + +export interface Constants { + [name: string]: Constant; +} + +export interface Page { + number: number; + size: number; + data: Constants; +} + +export interface Help { + [key: string]: string; +} + +export interface Curve { + title: string; + labels: string[]; + xAxis: number[]; + yAxis: number[]; + xBins: string[]; + yBins: string[]; + size: number[]; + gauge?: string; +} + +export interface Table { + map: string; + title: string; + page: number; + help?: string; + xBins: string[]; + yBins: string[]; + xyLabels: string[]; + zBins: string[]; + gridHeight: number; + gridOrient: number[]; + upDownLabel: string[]; +} + +export interface OutputChannels { + [name: string]: OutputChannel | SimpleConstant; +} + +export interface Config { + [key: string]: any; + megaTune: { + [key: string]: any; + signature: string; + MTversion: number; + queryCommand: string; + versionInfo: string; + }; + tunerStudio: { + [key: string]: any; + iniSpecVersion: number; + }; + pcVariables: Constants; + constants: { + pages: Page[]; + }; + defines: { + [name: string]: string[]; + }; + menus: Menus; + help: Help; + dialogs: { + [name: string]: Dialog; + }; + curves: { + [name: string]: Curve; + }; + tables: { + [name: string]: Table; + }; + outputChannels: OutputChannels; +} diff --git a/src/types/state.ts b/src/types/state.ts new file mode 100644 index 0000000..58f8e63 --- /dev/null +++ b/src/types/state.ts @@ -0,0 +1,26 @@ +import { Config } from './config'; +import { Tune } from './tune'; + +export interface ConfigState extends Config {} + +export interface TuneState extends Tune {} + +export interface UIState { + sidebarCollapsed: boolean; +} + +export interface StatusState { + text: string | null; +} + +export interface AppState { + tune: TuneState; + config: ConfigState; + ui: UIState; + status: StatusState; +} + +export interface UpdateTunePayload { + name: string; + value: string | number; +} diff --git a/src/types/tune.ts b/src/types/tune.ts new file mode 100644 index 0000000..1bbe8f3 --- /dev/null +++ b/src/types/tune.ts @@ -0,0 +1,12 @@ +export interface Constant { + units?: string; + value: string | number; +} + +export interface Constants { + [name: string]: Constant; +} + +export interface Tune { + constants: Constants; +} diff --git a/src/utils/api.ts b/src/utils/api.ts new file mode 100644 index 0000000..f0bd24b --- /dev/null +++ b/src/utils/api.ts @@ -0,0 +1,82 @@ +import store from '../store'; +import { + Config as ConfigType, +} from '../types/config'; +import stdDialogs from '../data/standardDialogs'; +import help from '../data/help'; +import { divider } from '../data/constants'; + +export const loadAll = () => { + const started = new Date(); + // const version = 202012; + const version = 202103; + + fetch(`./tunes/${version}.json`) + .then((response) => response.json()) + .then((json: ConfigType) => { + + fetch(`./tunes/${version}.msq`) + .then((response) => response.text()) + .then((tune) => { + const xml = (new DOMParser()).parseFromString(tune, 'text/xml'); + const xmlPages = xml.getElementsByTagName('page'); + const constants: any = {}; + + Object.keys(xmlPages).forEach((key: any) => { + const page = xmlPages[key]; + const pageElements = page.children; + + Object.keys(pageElements).forEach((item: any) => { + const element = pageElements[item]; + + if (element.tagName === 'constant') { + const attributes: any = {}; + + Object.keys(element.attributes).forEach((attr: any) => { + attributes[element.attributes[attr].name] = element.attributes[attr].value; + }); + + const val = element.textContent?.replace(/"/g, '').toString(); + + constants[attributes.name] = { + value: Number.isNaN(Number(val)) ? val : Number(val), + // digits: Number.isNaN(Number(attributes.digits)) ? attributes.digits : Number(attributes.digits), + // cols: Number.isNaN(Number(attributes.cols)) ? attributes.cols : Number(attributes.cols), + // rows: Number.isNaN(Number(attributes.rows)) ? attributes.rows : Number(attributes.rows), + units: attributes.units ?? null, + }; + } + }); + }); + + if (!Object.keys(constants).length) { + console.error('Invalid tune'); + } + + const config = json; + + // override / merge standard dialogs, constants and help + config.dialogs = { + ...config.dialogs, + ...stdDialogs, + }; + config.help = { + ...config.help, + ...help, + }; + config.constants.pages[0].data.divider = divider; + + const loadingTimeInfo = `Tune loaded in ${(new Date().getTime() - started.getTime())}ms`; + console.log(loadingTimeInfo); + + store.dispatch({ type: 'config/load', payload: config }); + store.dispatch({ type: 'tune/load', payload: { constants } }); + store.dispatch({ + type: 'status', + payload: loadingTimeInfo, + }); + }); + }); +}; + +export const test = () => 'test'; diff --git a/src/utils/config/find.ts b/src/utils/config/find.ts new file mode 100644 index 0000000..5f78654 --- /dev/null +++ b/src/utils/config/find.ts @@ -0,0 +1,16 @@ +import { + Config as ConfigType, + Page as PageType, + Constant, +} from '../../types/config'; + +export const findOnPage = (config: ConfigType, fieldName: string): Constant => { + const foundPage = config + .constants + .pages + .find((page: PageType) => fieldName in page.data) || { data: {} } as PageType; + + return foundPage.data[fieldName]; +}; + +export const todo = ''; diff --git a/src/utils/env.ts b/src/utils/env.ts new file mode 100644 index 0000000..4a97d96 --- /dev/null +++ b/src/utils/env.ts @@ -0,0 +1,4 @@ +export const isWeb = process.env.APP_PLATFORM === 'web'; +export const isDesktop = process.env.APP_PLATFORM === 'desktop'; +export const isMac = `${window.navigator.platform}`.includes('Mac'); +export const platform = `${window.navigator.platform}`; diff --git a/src/utils/keyboard/shortcuts.ts b/src/utils/keyboard/shortcuts.ts new file mode 100644 index 0000000..5abea45 --- /dev/null +++ b/src/utils/keyboard/shortcuts.ts @@ -0,0 +1,28 @@ +import React from 'react'; + +type KeyEvent = KeyboardEvent | React.KeyboardEvent; + +enum Keys { + INCREMENT = '.', + DECREMENT = ',', + COMMAND = 'p', + SIDEBAR = '\\', + ESCAPE = 'Escape', + REPLACE = '=', +} + +const digits = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; + +export const isCommand = (e: KeyEvent) => (e.metaKey || e.ctrlKey) && e.key === Keys.COMMAND; + +export const isToggleSidebar = (e: KeyEvent) => (e.metaKey || e.ctrlKey) && e.key === Keys.SIDEBAR; + +export const isIncrement = (e: KeyEvent) => e.key === Keys.INCREMENT; + +export const isDecrement = (e: KeyEvent) => e.key === Keys.DECREMENT; + +export const isReplace = (e: KeyEvent) => e.key === Keys.REPLACE; + +export const isEscape = (e: KeyEvent) => e.key === Keys.ESCAPE; + +export const useDigits = (e: KeyEvent): [boolean, number] => [digits.includes(Number(e.key)), Number(e.key)]; diff --git a/src/utils/storage.ts b/src/utils/storage.ts new file mode 100644 index 0000000..0907018 --- /dev/null +++ b/src/utils/storage.ts @@ -0,0 +1,3 @@ +export const storageGet = (key: string) => window.localStorage.getItem(key); + +export const storageSet = (key: string, value: string) => window.localStorage.setItem(key, value); diff --git a/src/utils/string.ts b/src/utils/string.ts new file mode 100644 index 0000000..60b0368 --- /dev/null +++ b/src/utils/string.ts @@ -0,0 +1,8 @@ +export const camelToSnakeCase = (str: string) => str + .replace(/[A-Z]/g, (letter: string) => `_${letter.toLowerCase()}`); + +export const camelToUrlCase = (str: string) => str + .replace(/[A-Z]/g, (letter: string) => `-${letter.toLowerCase()}`); + +export const snakeToCamelCase = (str: string) => str + .replace(/([-_]\w)/g, (g) => g[1].toUpperCase()); diff --git a/src/utils/tune/expression.ts b/src/utils/tune/expression.ts new file mode 100644 index 0000000..4a747c7 --- /dev/null +++ b/src/utils/tune/expression.ts @@ -0,0 +1,113 @@ +import { + Constants as TuneConstantsType, +} from '../../types/tune'; + +import { + Config as ConfigType, + OutputChannels as OutputChannelsType, + Page as ConfigPageType, + SimpleConstant as SimpleConstantType, +} from '../../types/config'; + +export const isExpression = (val: any) => `${val}`.startsWith('{') && `${val}`.endsWith('}'); + +export const stripExpression = (val: string) => val.slice(1).slice(0, -1).trim(); + +export const isNumber = (val: any) => !Number.isNaN(Number(val)); + +// export const isNumber +// ochGetCommand +export const prepareConstDeclarations = (tuneConstants: TuneConstantsType, configPages: ConfigPageType[]) => ( + Object.keys(tuneConstants).map((constName: string) => { + let val = tuneConstants[constName].value; + + // TODO: skip 2D and 3D maps for now + if (typeof val === 'string' && val.includes('\n')) { + return null; + } + + // TODO: check whether we can limit this to a single page + const constant = configPages + .find((page: ConfigPageType) => constName in page.data) + ?.data[constName]; + + // we need array index instead of a display value + if (constant?.type === 'bits') { + val = (constant.values as string[]).indexOf(`${val}`); + } + + // escape string values + if (typeof val === 'string') { + val = `'${val}'`; + } + + return `const ${constName} = ${val};`; + }) +); + +const prepareChannelsDeclarations = (configOutputChannels: OutputChannelsType) => ( + Object.keys(configOutputChannels).map((channelName: string) => { + const current = configOutputChannels[channelName] as SimpleConstantType; + if (!current.value) { + return null; + } + + let val = current.value; + + if (isExpression(val)) { + val = stripExpression(val); + } else if (!isNumber(val)) { + val = `"${val}"`; + } + + return `const ${channelName} = ${val};`; + }).filter((val) => val !== null) +); + +export const evaluateExpression = (expression: string, tuneConstants: TuneConstantsType, config: ConfigType) => { + const constDeclarations = prepareConstDeclarations(tuneConstants, config.constants.pages); + const channelsDeclarations = prepareChannelsDeclarations(config.outputChannels); + + try { + // TODO: strip eval from `command` etc + // https://www.electronjs.org/docs/tutorial/security + // eslint-disable-next-line no-eval + return eval(` + 'use strict'; + const arrayValue = (number, layout) => number; + const array = { + boardFuelOutputs: 4, + boardIgnOutputs: 4, + }; + + const coolantRaw = 21; + const iatRaw = 21; + const fuelTempRaw = 21; + const timeNow = new Date().getTime(); + const secl = 0; + const tps = 0; + const rpm = 0; + const nSquirts = 1; + const boostCutFuel = 0; + const boostCutSpark = 0; + const afr = 14.7; + const afrTarget = 14.7; + const map = 0; + const loopsPerSecond = 0; + const batCorrection = 0; + const ASECurr = 0; + const baro = 0; + const vss = 0; + const CLIdleTarget = 0; + + ${constDeclarations.join('')} + ${channelsDeclarations.join('')} + ${stripExpression(expression)}; + `); + } catch (error) { + console.info('Condition evaluation failed with:', error.message); + } + + return undefined; +}; + diff --git a/src/utils/tune/table.ts b/src/utils/tune/table.ts new file mode 100644 index 0000000..3d77af7 --- /dev/null +++ b/src/utils/tune/table.ts @@ -0,0 +1,12 @@ +export const parseXy = (value: string) => value + .trim() + .split('\n') + .map((val) => val.trim()) + .filter((val) => val !== '') + .map(Number); + +export const parseZ = (value: string) => value + .trim() + .split('\n') + .map((val) => val.trim().split(' ').map(Number)) + .reverse(); diff --git a/tsconfig.custom.json b/tsconfig.custom.json new file mode 100644 index 0000000..0c43088 --- /dev/null +++ b/tsconfig.custom.json @@ -0,0 +1,17 @@ +{ + "extends": "./tsconfig.json", + "target": "ES2019", + "lib": [ + "ES2019" + ], + "compilerOptions": { + "module": "commonjs", + "noEmit": false + }, + "files": [ + "src/electron.ts" + ], + "include": [ + "src/parser" + ] +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..84b1e9f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compilerOptions": { + "target": "ES6", + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "allowJs": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noFallthroughCasesInSwitch": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "removeComments": true, + "jsx": "react-jsx" + }, + "include": [ + "src" + ], +}
+ {`${yValue}`} + + {`${value}`} +
+ {yUnits} / {xUnits} + + {`${xValue}`} +
+ {`${value}`} +
{`${yLabel} (${yUnits})`}
{`${xLabel} (${xUnits})`}