From 7c13c130b8d991f725506d7def7155a48a3cf69b Mon Sep 17 00:00:00 2001 From: Sebastien Date: Mon, 21 Dec 2020 11:01:22 -0500 Subject: [PATCH] Wifi UI update --- .gitignore | 2502 +---------------- components/driver_bt/bt_app_sink.c | 2 +- components/driver_bt/bt_app_source.c | 6 +- components/platform_console/cmd_config.c | 2 - components/services/messaging.c | 1 + components/wifi-manager/.gitignore | 1 - components/wifi-manager/CMakeLists.txt | 10 +- components/wifi-manager/compress.bat | 2 - components/wifi-manager/connect | 2 - .../wifi-manager/http_server_handlers.c | 91 +- .../wifi-manager/index.development.html | 410 --- components/wifi-manager/index.html | 1 - components/wifi-manager/res/bootstrap.css | 12 - components/wifi-manager/res/bootstrap.css.gz | Bin 25478 -> 0 bytes components/wifi-manager/res/bootstrap.css.map | 1 - components/wifi-manager/res/bootstrap.js | 7 - components/wifi-manager/res/bootstrap.js.gz | Bin 21661 -> 0 bytes components/wifi-manager/res/bootstrap.map | 1 - components/wifi-manager/res/bootstrap.map.gz | Bin 83076 -> 0 bytes components/wifi-manager/res/code.js | 1372 --------- components/wifi-manager/res/code.js.gz | Bin 12741 -> 0 bytes components/wifi-manager/res/favicon.ico.gz | Bin 2275 -> 0 bytes components/wifi-manager/res/jquery.js | 2 - components/wifi-manager/res/jquery.js.gz | Bin 30838 -> 0 bytes components/wifi-manager/res/style.css.gz | Bin 4825 -> 0 bytes components/wifi-manager/webapp/.babelrc | 19 + components/wifi-manager/webapp/.eslintcache | 1 + components/wifi-manager/webapp/.eslintrc | 27 + .../wifi-manager/webapp/.eslintrc.json.back | 18 + components/wifi-manager/webapp/.gitignore | 5 + .../wifi-manager/webapp/.vscode/launch.json | 12 + .../wifi-manager/webapp/.vscode/tasks.json | 42 + components/wifi-manager/webapp/LICENSE | 21 + components/wifi-manager/webapp/README.md | 204 ++ .../wifi-manager/webapp/config/.stylelintrc | 24 + components/wifi-manager/webapp/debug.log | 3 + .../wifi-manager/{ => webapp/mock}/ap.json | 3 +- .../{ => webapp/mock}/commands.json | 421 ++- .../{ => webapp/mock}/config.json | 0 .../{ => webapp/mock}/messages.json | 22 + .../{ => webapp/mock}/messages_testing.json | 0 .../wifi-manager/{ => webapp/mock}/scan.json | 0 .../{ => webapp/mock}/status-messages.json | 0 .../{ => webapp/mock}/status.json | 6 +- .../webapp/mock/statusdefinition.json | 24 + components/wifi-manager/webapp/package.json | 133 + .../wifi-manager/webapp/postcss.config.js | 3 + components/wifi-manager/webapp/src/.htaccess | 37 + .../assets/images/200px-ControllerAppIcon.png | Bin 0 -> 32492 bytes .../src/assets/images/favicon-32x32.png | Bin 0 -> 634 bytes .../src/assets/images}/favicon.ico | Bin components/wifi-manager/webapp/src/index.ejs | 439 +++ components/wifi-manager/webapp/src/index.ts | 24 + .../wifi-manager/webapp/src/js/custom.js | 1702 +++++++++++ components/wifi-manager/webapp/src/js/test.js | 135 + .../webapp/src/sass/layout/_features.scss | 34 + .../wifi-manager/webapp/src/sass/main.scss | 5 + .../webapp/src/sass/setup/_normalize.scss | 348 +++ .../webapp/src/sass/themes/_darkly.scss | 3 + .../webapp/src/sass/utils/_mixins.scss | 24 + .../src/sass/utils/_style.css} | 109 +- components/wifi-manager/webapp/src/test.ejs | 122 + components/wifi-manager/webapp/src/test.ts | 23 + components/wifi-manager/webapp/test.js | 55 + components/wifi-manager/webapp/test.txt | 1 + components/wifi-manager/webapp/test/test.js | 8 + components/wifi-manager/webapp/tsconfig.json | 17 + components/wifi-manager/webapp/tslint.json | 22 + components/wifi-manager/webapp/webapp.cmake | 5 + components/wifi-manager/webapp/webpack.c | 34 + components/wifi-manager/webapp/webpack.h | 72 + .../wifi-manager/webapp/webpack/cmdline.js | 0 .../webapp/webpack/postcss.config.js | 9 + .../webapp/webpack/webpack.common.js | 231 ++ .../webapp/webpack/webpack.dev.js | 235 ++ .../webapp/webpack/webpack.prod.js | 182 ++ components/wifi-manager/wifi_manager.c | 37 +- components/wifi-manager/wifi_manager.h | 4 +- .../wifi-manager/wifi_manager_http_server.c | 8 +- main/esp_app_main.c | 26 +- sdkconfig | 365 ++- 81 files changed, 5032 insertions(+), 4697 deletions(-) delete mode 100644 components/wifi-manager/.gitignore delete mode 100644 components/wifi-manager/compress.bat delete mode 100644 components/wifi-manager/connect delete mode 100644 components/wifi-manager/index.development.html delete mode 100644 components/wifi-manager/index.html delete mode 100644 components/wifi-manager/res/bootstrap.css delete mode 100644 components/wifi-manager/res/bootstrap.css.gz delete mode 100644 components/wifi-manager/res/bootstrap.css.map delete mode 100644 components/wifi-manager/res/bootstrap.js delete mode 100644 components/wifi-manager/res/bootstrap.js.gz delete mode 100644 components/wifi-manager/res/bootstrap.map delete mode 100644 components/wifi-manager/res/bootstrap.map.gz delete mode 100644 components/wifi-manager/res/code.js delete mode 100644 components/wifi-manager/res/code.js.gz delete mode 100644 components/wifi-manager/res/favicon.ico.gz delete mode 100644 components/wifi-manager/res/jquery.js delete mode 100644 components/wifi-manager/res/jquery.js.gz delete mode 100644 components/wifi-manager/res/style.css.gz create mode 100644 components/wifi-manager/webapp/.babelrc create mode 100644 components/wifi-manager/webapp/.eslintcache create mode 100644 components/wifi-manager/webapp/.eslintrc create mode 100644 components/wifi-manager/webapp/.eslintrc.json.back create mode 100644 components/wifi-manager/webapp/.gitignore create mode 100644 components/wifi-manager/webapp/.vscode/launch.json create mode 100644 components/wifi-manager/webapp/.vscode/tasks.json create mode 100644 components/wifi-manager/webapp/LICENSE create mode 100644 components/wifi-manager/webapp/README.md create mode 100644 components/wifi-manager/webapp/config/.stylelintrc create mode 100644 components/wifi-manager/webapp/debug.log rename components/wifi-manager/{ => webapp/mock}/ap.json (82%) rename components/wifi-manager/{ => webapp/mock}/commands.json (71%) rename components/wifi-manager/{ => webapp/mock}/config.json (100%) rename components/wifi-manager/{ => webapp/mock}/messages.json (96%) rename components/wifi-manager/{ => webapp/mock}/messages_testing.json (100%) rename components/wifi-manager/{ => webapp/mock}/scan.json (100%) rename components/wifi-manager/{ => webapp/mock}/status-messages.json (100%) rename components/wifi-manager/{ => webapp/mock}/status.json (73%) create mode 100644 components/wifi-manager/webapp/mock/statusdefinition.json create mode 100644 components/wifi-manager/webapp/package.json create mode 100644 components/wifi-manager/webapp/postcss.config.js create mode 100644 components/wifi-manager/webapp/src/.htaccess create mode 100644 components/wifi-manager/webapp/src/assets/images/200px-ControllerAppIcon.png create mode 100644 components/wifi-manager/webapp/src/assets/images/favicon-32x32.png rename components/wifi-manager/{res => webapp/src/assets/images}/favicon.ico (100%) create mode 100644 components/wifi-manager/webapp/src/index.ejs create mode 100644 components/wifi-manager/webapp/src/index.ts create mode 100644 components/wifi-manager/webapp/src/js/custom.js create mode 100644 components/wifi-manager/webapp/src/js/test.js create mode 100644 components/wifi-manager/webapp/src/sass/layout/_features.scss create mode 100644 components/wifi-manager/webapp/src/sass/main.scss create mode 100644 components/wifi-manager/webapp/src/sass/setup/_normalize.scss create mode 100644 components/wifi-manager/webapp/src/sass/themes/_darkly.scss create mode 100644 components/wifi-manager/webapp/src/sass/utils/_mixins.scss rename components/wifi-manager/{res/style.css => webapp/src/sass/utils/_style.css} (89%) create mode 100644 components/wifi-manager/webapp/src/test.ejs create mode 100644 components/wifi-manager/webapp/src/test.ts create mode 100644 components/wifi-manager/webapp/test.js create mode 100644 components/wifi-manager/webapp/test.txt create mode 100644 components/wifi-manager/webapp/test/test.js create mode 100644 components/wifi-manager/webapp/tsconfig.json create mode 100644 components/wifi-manager/webapp/tslint.json create mode 100644 components/wifi-manager/webapp/webapp.cmake create mode 100644 components/wifi-manager/webapp/webpack.c create mode 100644 components/wifi-manager/webapp/webpack.h create mode 100644 components/wifi-manager/webapp/webpack/cmdline.js create mode 100644 components/wifi-manager/webapp/webpack/postcss.config.js create mode 100644 components/wifi-manager/webapp/webpack/webpack.common.js create mode 100644 components/wifi-manager/webapp/webpack/webpack.dev.js create mode 100644 components/wifi-manager/webapp/webpack/webpack.prod.js diff --git a/.gitignore b/.gitignore index 2f9ef431..221a0480 100644 --- a/.gitignore +++ b/.gitignore @@ -96,2504 +96,4 @@ components/wifi-manager/res/backup/ test/.vscode/ -node_modules/.bin/acorn - -node_modules/.bin/ - -node_modules/\@babel/highlight/ -node_modules/@babel/code-frame/LICENSE -node_modules/@babel/code-frame/package.json -node_modules/@babel/code-frame/README.md -node_modules/@babel/code-frame/lib/index.js -node_modules/@babel/helper-validator-identifier/LICENSE -node_modules/@babel/helper-validator-identifier/package.json -node_modules/@babel/helper-validator-identifier/README.md -node_modules/@babel/helper-validator-identifier/lib/identifier.js -node_modules/@babel/helper-validator-identifier/lib/index.js -node_modules/@babel/helper-validator-identifier/lib/keyword.js -node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js -node_modules/@eslint/eslintrc/CHANGELOG.md -node_modules/@eslint/eslintrc/LICENSE -node_modules/@eslint/eslintrc/package.json -node_modules/@eslint/eslintrc/README.md -node_modules/@eslint/eslintrc/conf/config-schema.js -node_modules/@eslint/eslintrc/conf/environments.js -node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js -node_modules/@eslint/eslintrc/lib/config-array-factory.js -node_modules/@eslint/eslintrc/lib/index.js -node_modules/@eslint/eslintrc/lib/config-array/config-array.js -node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js -node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js -node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js -node_modules/@eslint/eslintrc/lib/config-array/index.js -node_modules/@eslint/eslintrc/lib/config-array/override-tester.js -node_modules/@eslint/eslintrc/lib/shared/ajv.js -node_modules/@eslint/eslintrc/lib/shared/config-ops.js -node_modules/@eslint/eslintrc/lib/shared/config-validator.js -node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js -node_modules/@eslint/eslintrc/lib/shared/naming.js -node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js -node_modules/@eslint/eslintrc/lib/shared/types.js -node_modules/acorn/CHANGELOG.md -node_modules/acorn/LICENSE -node_modules/acorn/package.json -node_modules/acorn/README.md -node_modules/acorn/bin/acorn -node_modules/acorn/dist/acorn.d.ts -node_modules/acorn/dist/acorn.js -node_modules/acorn/dist/acorn.js.map -node_modules/acorn/dist/acorn.mjs -node_modules/acorn/dist/acorn.mjs.d.ts -node_modules/acorn/dist/acorn.mjs.map -node_modules/acorn/dist/bin.js -node_modules/acorn-jsx/index.js -node_modules/acorn-jsx/LICENSE -node_modules/acorn-jsx/package.json -node_modules/acorn-jsx/README.md -node_modules/acorn-jsx/xhtml.js -node_modules/ajv/.tonic_example.js -node_modules/ajv/LICENSE -node_modules/ajv/package.json -node_modules/ajv/README.md -node_modules/ajv/dist/ajv.bundle.js -node_modules/ajv/dist/ajv.min.js -node_modules/ajv/dist/ajv.min.js.map -node_modules/ajv/lib/ajv.d.ts -node_modules/ajv/lib/ajv.js -node_modules/ajv/lib/cache.js -node_modules/ajv/lib/data.js -node_modules/ajv/lib/definition_schema.js -node_modules/ajv/lib/keyword.js -node_modules/ajv/lib/compile/async.js -node_modules/ajv/lib/compile/equal.js -node_modules/ajv/lib/compile/error_classes.js -node_modules/ajv/lib/compile/formats.js -node_modules/ajv/lib/compile/index.js -node_modules/ajv/lib/compile/resolve.js -node_modules/ajv/lib/compile/rules.js -node_modules/ajv/lib/compile/schema_obj.js -node_modules/ajv/lib/compile/ucs2length.js -node_modules/ajv/lib/compile/util.js -node_modules/ajv/lib/dot/_limit.jst -node_modules/ajv/lib/dot/_limitItems.jst -node_modules/ajv/lib/dot/_limitLength.jst -node_modules/ajv/lib/dot/_limitProperties.jst -node_modules/ajv/lib/dot/allOf.jst -node_modules/ajv/lib/dot/anyOf.jst -node_modules/ajv/lib/dot/coerce.def -node_modules/ajv/lib/dot/comment.jst -node_modules/ajv/lib/dot/const.jst -node_modules/ajv/lib/dot/contains.jst -node_modules/ajv/lib/dot/custom.jst -node_modules/ajv/lib/dot/defaults.def -node_modules/ajv/lib/dot/definitions.def -node_modules/ajv/lib/dot/dependencies.jst -node_modules/ajv/lib/dot/enum.jst -node_modules/ajv/lib/dot/errors.def -node_modules/ajv/lib/dot/format.jst -node_modules/ajv/lib/dot/if.jst -node_modules/ajv/lib/dot/items.jst -node_modules/ajv/lib/dot/missing.def -node_modules/ajv/lib/dot/multipleOf.jst -node_modules/ajv/lib/dot/not.jst -node_modules/ajv/lib/dot/oneOf.jst -node_modules/ajv/lib/dot/pattern.jst -node_modules/ajv/lib/dot/properties.jst -node_modules/ajv/lib/dot/propertyNames.jst -node_modules/ajv/lib/dot/ref.jst -node_modules/ajv/lib/dot/required.jst -node_modules/ajv/lib/dot/uniqueItems.jst -node_modules/ajv/lib/dot/validate.jst -node_modules/ajv/lib/dotjs/_limit.js -node_modules/ajv/lib/dotjs/_limitItems.js -node_modules/ajv/lib/dotjs/_limitLength.js -node_modules/ajv/lib/dotjs/_limitProperties.js -node_modules/ajv/lib/dotjs/allOf.js -node_modules/ajv/lib/dotjs/anyOf.js -node_modules/ajv/lib/dotjs/comment.js -node_modules/ajv/lib/dotjs/const.js -node_modules/ajv/lib/dotjs/contains.js -node_modules/ajv/lib/dotjs/custom.js -node_modules/ajv/lib/dotjs/dependencies.js -node_modules/ajv/lib/dotjs/enum.js -node_modules/ajv/lib/dotjs/format.js -node_modules/ajv/lib/dotjs/if.js -node_modules/ajv/lib/dotjs/index.js -node_modules/ajv/lib/dotjs/items.js -node_modules/ajv/lib/dotjs/multipleOf.js -node_modules/ajv/lib/dotjs/not.js -node_modules/ajv/lib/dotjs/oneOf.js -node_modules/ajv/lib/dotjs/pattern.js -node_modules/ajv/lib/dotjs/properties.js -node_modules/ajv/lib/dotjs/propertyNames.js -node_modules/ajv/lib/dotjs/README.md -node_modules/ajv/lib/dotjs/ref.js -node_modules/ajv/lib/dotjs/required.js -node_modules/ajv/lib/dotjs/uniqueItems.js -node_modules/ajv/lib/dotjs/validate.js -node_modules/ajv/lib/refs/data.json -node_modules/ajv/lib/refs/json-schema-draft-04.json -node_modules/ajv/lib/refs/json-schema-draft-06.json -node_modules/ajv/lib/refs/json-schema-draft-07.json -node_modules/ajv/lib/refs/json-schema-secure.json -node_modules/ajv/scripts/.eslintrc.yml -node_modules/ajv/scripts/bundle.js -node_modules/ajv/scripts/compile-dots.js -node_modules/ajv/scripts/info -node_modules/ajv/scripts/prepare-tests -node_modules/ajv/scripts/publish-built-version -node_modules/ajv/scripts/travis-gh-pages -node_modules/ansi-colors/index.js -node_modules/ansi-colors/LICENSE -node_modules/ansi-colors/package.json -node_modules/ansi-colors/README.md -node_modules/ansi-colors/symbols.js -node_modules/ansi-colors/types/index.d.ts -node_modules/ansi-regex/index.d.ts -node_modules/ansi-regex/index.js -node_modules/ansi-regex/license -node_modules/ansi-regex/package.json -node_modules/ansi-regex/readme.md -node_modules/ansi-styles/index.js -node_modules/ansi-styles/license -node_modules/ansi-styles/package.json -node_modules/ansi-styles/readme.md -node_modules/argparse/CHANGELOG.md -node_modules/argparse/index.js -node_modules/argparse/LICENSE -node_modules/argparse/package.json -node_modules/argparse/README.md -node_modules/argparse/lib/action_container.js -node_modules/argparse/lib/action.js -node_modules/argparse/lib/argparse.js -node_modules/argparse/lib/argument_parser.js -node_modules/argparse/lib/const.js -node_modules/argparse/lib/namespace.js -node_modules/argparse/lib/utils.js -node_modules/argparse/lib/action/append.js -node_modules/argparse/lib/action/count.js -node_modules/argparse/lib/action/help.js -node_modules/argparse/lib/action/store.js -node_modules/argparse/lib/action/subparsers.js -node_modules/argparse/lib/action/version.js -node_modules/argparse/lib/action/append/constant.js -node_modules/argparse/lib/action/store/constant.js -node_modules/argparse/lib/action/store/false.js -node_modules/argparse/lib/action/store/true.js -node_modules/argparse/lib/argument/error.js -node_modules/argparse/lib/argument/exclusive.js -node_modules/argparse/lib/argument/group.js -node_modules/argparse/lib/help/added_formatters.js -node_modules/argparse/lib/help/formatter.js -node_modules/astral-regex/index.js -node_modules/astral-regex/license -node_modules/astral-regex/package.json -node_modules/astral-regex/readme.md -node_modules/balanced-match/.npmignore -node_modules/balanced-match/index.js -node_modules/balanced-match/LICENSE.md -node_modules/balanced-match/package.json -node_modules/balanced-match/README.md -node_modules/brace-expansion/index.js -node_modules/brace-expansion/LICENSE -node_modules/brace-expansion/package.json -node_modules/brace-expansion/README.md -node_modules/callsites/index.d.ts -node_modules/callsites/index.js -node_modules/callsites/license -node_modules/callsites/package.json -node_modules/callsites/readme.md -node_modules/chalk/index.d.ts -node_modules/chalk/license -node_modules/chalk/package.json -node_modules/chalk/readme.md -node_modules/chalk/node_modules/ansi-styles/index.d.ts -node_modules/chalk/node_modules/ansi-styles/index.js -node_modules/chalk/node_modules/ansi-styles/license -node_modules/chalk/node_modules/ansi-styles/package.json -node_modules/chalk/node_modules/ansi-styles/readme.md -node_modules/chalk/node_modules/color-convert/CHANGELOG.md -node_modules/chalk/node_modules/color-convert/conversions.js -node_modules/chalk/node_modules/color-convert/index.js -node_modules/chalk/node_modules/color-convert/LICENSE -node_modules/chalk/node_modules/color-convert/package.json -node_modules/chalk/node_modules/color-convert/README.md -node_modules/chalk/node_modules/color-convert/route.js -node_modules/chalk/node_modules/color-name/index.js -node_modules/chalk/node_modules/color-name/LICENSE -node_modules/chalk/node_modules/color-name/package.json -node_modules/chalk/node_modules/color-name/README.md -node_modules/chalk/node_modules/has-flag/index.d.ts -node_modules/chalk/node_modules/has-flag/index.js -node_modules/chalk/node_modules/has-flag/license -node_modules/chalk/node_modules/has-flag/package.json -node_modules/chalk/node_modules/has-flag/readme.md -node_modules/chalk/node_modules/supports-color/browser.js -node_modules/chalk/node_modules/supports-color/index.js -node_modules/chalk/node_modules/supports-color/license -node_modules/chalk/node_modules/supports-color/package.json -node_modules/chalk/node_modules/supports-color/readme.md -node_modules/chalk/source/index.js -node_modules/chalk/source/templates.js -node_modules/chalk/source/util.js -node_modules/color-convert/CHANGELOG.md -node_modules/color-convert/conversions.js -node_modules/color-convert/index.js -node_modules/color-convert/LICENSE -node_modules/color-convert/package.json -node_modules/color-convert/README.md -node_modules/color-convert/route.js -node_modules/color-name/.eslintrc.json -node_modules/color-name/.npmignore -node_modules/color-name/index.js -node_modules/color-name/LICENSE -node_modules/color-name/package.json -node_modules/color-name/README.md -node_modules/color-name/test.js -node_modules/concat-map/.travis.yml -node_modules/concat-map/index.js -node_modules/concat-map/LICENSE -node_modules/concat-map/package.json -node_modules/concat-map/README.markdown -node_modules/concat-map/example/map.js -node_modules/concat-map/test/map.js -node_modules/cross-spawn/CHANGELOG.md -node_modules/cross-spawn/index.js -node_modules/cross-spawn/LICENSE -node_modules/cross-spawn/package.json -node_modules/cross-spawn/README.md -node_modules/cross-spawn/lib/enoent.js -node_modules/cross-spawn/lib/parse.js -node_modules/cross-spawn/lib/util/escape.js -node_modules/cross-spawn/lib/util/readShebang.js -node_modules/cross-spawn/lib/util/resolveCommand.js -node_modules/debug/LICENSE -node_modules/debug/package.json -node_modules/debug/README.md -node_modules/debug/src/browser.js -node_modules/debug/src/common.js -node_modules/debug/src/index.js -node_modules/debug/src/node.js -node_modules/deep-is/.npmignore -node_modules/deep-is/.travis.yml -node_modules/deep-is/index.js -node_modules/deep-is/LICENSE -node_modules/deep-is/package.json -node_modules/deep-is/README.markdown -node_modules/deep-is/example/cmp.js -node_modules/deep-is/test/cmp.js -node_modules/deep-is/test/NaN.js -node_modules/deep-is/test/neg-vs-pos-0.js -node_modules/doctrine/CHANGELOG.md -node_modules/doctrine/LICENSE -node_modules/doctrine/LICENSE.closure-compiler -node_modules/doctrine/LICENSE.esprima -node_modules/doctrine/package.json -node_modules/doctrine/README.md -node_modules/doctrine/lib/doctrine.js -node_modules/doctrine/lib/typed.js -node_modules/doctrine/lib/utility.js -node_modules/emoji-regex/index.d.ts -node_modules/emoji-regex/index.js -node_modules/emoji-regex/LICENSE-MIT.txt -node_modules/emoji-regex/package.json -node_modules/emoji-regex/README.md -node_modules/emoji-regex/text.js -node_modules/emoji-regex/es2015/index.js -node_modules/emoji-regex/es2015/text.js -node_modules/enquirer/CHANGELOG.md -node_modules/enquirer/index.d.ts -node_modules/enquirer/index.js -node_modules/enquirer/LICENSE -node_modules/enquirer/package.json -node_modules/enquirer/README.md -node_modules/enquirer/lib/ansi.js -node_modules/enquirer/lib/combos.js -node_modules/enquirer/lib/completer.js -node_modules/enquirer/lib/interpolate.js -node_modules/enquirer/lib/keypress.js -node_modules/enquirer/lib/placeholder.js -node_modules/enquirer/lib/prompt.js -node_modules/enquirer/lib/render.js -node_modules/enquirer/lib/roles.js -node_modules/enquirer/lib/state.js -node_modules/enquirer/lib/styles.js -node_modules/enquirer/lib/symbols.js -node_modules/enquirer/lib/theme.js -node_modules/enquirer/lib/timer.js -node_modules/enquirer/lib/utils.js -node_modules/enquirer/lib/prompts/autocomplete.js -node_modules/enquirer/lib/prompts/basicauth.js -node_modules/enquirer/lib/prompts/confirm.js -node_modules/enquirer/lib/prompts/editable.js -node_modules/enquirer/lib/prompts/form.js -node_modules/enquirer/lib/prompts/index.js -node_modules/enquirer/lib/prompts/input.js -node_modules/enquirer/lib/prompts/invisible.js -node_modules/enquirer/lib/prompts/list.js -node_modules/enquirer/lib/prompts/multiselect.js -node_modules/enquirer/lib/prompts/numeral.js -node_modules/enquirer/lib/prompts/password.js -node_modules/enquirer/lib/prompts/quiz.js -node_modules/enquirer/lib/prompts/scale.js -node_modules/enquirer/lib/prompts/select.js -node_modules/enquirer/lib/prompts/snippet.js -node_modules/enquirer/lib/prompts/sort.js -node_modules/enquirer/lib/prompts/survey.js -node_modules/enquirer/lib/prompts/text.js -node_modules/enquirer/lib/prompts/toggle.js -node_modules/enquirer/lib/types/array.js -node_modules/enquirer/lib/types/auth.js -node_modules/enquirer/lib/types/boolean.js -node_modules/enquirer/lib/types/index.js -node_modules/enquirer/lib/types/number.js -node_modules/enquirer/lib/types/string.js -node_modules/escape-string-regexp/index.js -node_modules/escape-string-regexp/license -node_modules/escape-string-regexp/package.json -node_modules/escape-string-regexp/readme.md -node_modules/eslint/CHANGELOG.md -node_modules/eslint/LICENSE -node_modules/eslint/package.json -node_modules/eslint/README.md -node_modules/eslint/bin/eslint.js -node_modules/eslint/conf/category-list.json -node_modules/eslint/conf/config-schema.js -node_modules/eslint/conf/default-cli-options.js -node_modules/eslint/conf/eslint-all.js -node_modules/eslint/conf/eslint-recommended.js -node_modules/eslint/conf/replacements.json -node_modules/eslint/lib/api.js -node_modules/eslint/lib/cli.js -node_modules/eslint/lib/options.js -node_modules/eslint/lib/cli-engine/cli-engine.js -node_modules/eslint/lib/cli-engine/file-enumerator.js -node_modules/eslint/lib/cli-engine/hash.js -node_modules/eslint/lib/cli-engine/index.js -node_modules/eslint/lib/cli-engine/lint-result-cache.js -node_modules/eslint/lib/cli-engine/load-rules.js -node_modules/eslint/lib/cli-engine/xml-escape.js -node_modules/eslint/lib/cli-engine/formatters/checkstyle.js -node_modules/eslint/lib/cli-engine/formatters/codeframe.js -node_modules/eslint/lib/cli-engine/formatters/compact.js -node_modules/eslint/lib/cli-engine/formatters/html-template-message.html -node_modules/eslint/lib/cli-engine/formatters/html-template-page.html -node_modules/eslint/lib/cli-engine/formatters/html-template-result.html -node_modules/eslint/lib/cli-engine/formatters/html.js -node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js -node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js -node_modules/eslint/lib/cli-engine/formatters/json.js -node_modules/eslint/lib/cli-engine/formatters/junit.js -node_modules/eslint/lib/cli-engine/formatters/stylish.js -node_modules/eslint/lib/cli-engine/formatters/table.js -node_modules/eslint/lib/cli-engine/formatters/tap.js -node_modules/eslint/lib/cli-engine/formatters/unix.js -node_modules/eslint/lib/cli-engine/formatters/visualstudio.js -node_modules/eslint/lib/eslint/eslint.js -node_modules/eslint/lib/eslint/index.js -node_modules/eslint/lib/init/autoconfig.js -node_modules/eslint/lib/init/config-file.js -node_modules/eslint/lib/init/config-initializer.js -node_modules/eslint/lib/init/config-rule.js -node_modules/eslint/lib/init/npm-utils.js -node_modules/eslint/lib/init/source-code-utils.js -node_modules/eslint/lib/linter/apply-disable-directives.js -node_modules/eslint/lib/linter/config-comment-parser.js -node_modules/eslint/lib/linter/index.js -node_modules/eslint/lib/linter/interpolate.js -node_modules/eslint/lib/linter/linter.js -node_modules/eslint/lib/linter/node-event-generator.js -node_modules/eslint/lib/linter/report-translator.js -node_modules/eslint/lib/linter/rule-fixer.js -node_modules/eslint/lib/linter/rules.js -node_modules/eslint/lib/linter/safe-emitter.js -node_modules/eslint/lib/linter/source-code-fixer.js -node_modules/eslint/lib/linter/timing.js -node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js -node_modules/eslint/lib/linter/code-path-analysis/code-path-segment.js -node_modules/eslint/lib/linter/code-path-analysis/code-path-state.js -node_modules/eslint/lib/linter/code-path-analysis/code-path.js -node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js -node_modules/eslint/lib/linter/code-path-analysis/fork-context.js -node_modules/eslint/lib/linter/code-path-analysis/id-generator.js -node_modules/eslint/lib/rule-tester/index.js -node_modules/eslint/lib/rule-tester/rule-tester.js -node_modules/eslint/lib/rules/accessor-pairs.js -node_modules/eslint/lib/rules/array-bracket-newline.js -node_modules/eslint/lib/rules/array-bracket-spacing.js -node_modules/eslint/lib/rules/array-callback-return.js -node_modules/eslint/lib/rules/array-element-newline.js -node_modules/eslint/lib/rules/arrow-body-style.js -node_modules/eslint/lib/rules/arrow-parens.js -node_modules/eslint/lib/rules/arrow-spacing.js -node_modules/eslint/lib/rules/block-scoped-var.js -node_modules/eslint/lib/rules/block-spacing.js -node_modules/eslint/lib/rules/brace-style.js -node_modules/eslint/lib/rules/callback-return.js -node_modules/eslint/lib/rules/camelcase.js -node_modules/eslint/lib/rules/capitalized-comments.js -node_modules/eslint/lib/rules/class-methods-use-this.js -node_modules/eslint/lib/rules/comma-dangle.js -node_modules/eslint/lib/rules/comma-spacing.js -node_modules/eslint/lib/rules/comma-style.js -node_modules/eslint/lib/rules/complexity.js -node_modules/eslint/lib/rules/computed-property-spacing.js -node_modules/eslint/lib/rules/consistent-return.js -node_modules/eslint/lib/rules/consistent-this.js -node_modules/eslint/lib/rules/constructor-super.js -node_modules/eslint/lib/rules/curly.js -node_modules/eslint/lib/rules/default-case-last.js -node_modules/eslint/lib/rules/default-case.js -node_modules/eslint/lib/rules/default-param-last.js -node_modules/eslint/lib/rules/dot-location.js -node_modules/eslint/lib/rules/dot-notation.js -node_modules/eslint/lib/rules/eol-last.js -node_modules/eslint/lib/rules/eqeqeq.js -node_modules/eslint/lib/rules/for-direction.js -node_modules/eslint/lib/rules/func-call-spacing.js -node_modules/eslint/lib/rules/func-name-matching.js -node_modules/eslint/lib/rules/func-names.js -node_modules/eslint/lib/rules/func-style.js -node_modules/eslint/lib/rules/function-call-argument-newline.js -node_modules/eslint/lib/rules/function-paren-newline.js -node_modules/eslint/lib/rules/generator-star-spacing.js -node_modules/eslint/lib/rules/getter-return.js -node_modules/eslint/lib/rules/global-require.js -node_modules/eslint/lib/rules/grouped-accessor-pairs.js -node_modules/eslint/lib/rules/guard-for-in.js -node_modules/eslint/lib/rules/handle-callback-err.js -node_modules/eslint/lib/rules/id-blacklist.js -node_modules/eslint/lib/rules/id-denylist.js -node_modules/eslint/lib/rules/id-length.js -node_modules/eslint/lib/rules/id-match.js -node_modules/eslint/lib/rules/implicit-arrow-linebreak.js -node_modules/eslint/lib/rules/indent-legacy.js -node_modules/eslint/lib/rules/indent.js -node_modules/eslint/lib/rules/index.js -node_modules/eslint/lib/rules/init-declarations.js -node_modules/eslint/lib/rules/jsx-quotes.js -node_modules/eslint/lib/rules/key-spacing.js -node_modules/eslint/lib/rules/keyword-spacing.js -node_modules/eslint/lib/rules/line-comment-position.js -node_modules/eslint/lib/rules/linebreak-style.js -node_modules/eslint/lib/rules/lines-around-comment.js -node_modules/eslint/lib/rules/lines-around-directive.js -node_modules/eslint/lib/rules/lines-between-class-members.js -node_modules/eslint/lib/rules/max-classes-per-file.js -node_modules/eslint/lib/rules/max-depth.js -node_modules/eslint/lib/rules/max-len.js -node_modules/eslint/lib/rules/max-lines-per-function.js -node_modules/eslint/lib/rules/max-lines.js -node_modules/eslint/lib/rules/max-nested-callbacks.js -node_modules/eslint/lib/rules/max-params.js -node_modules/eslint/lib/rules/max-statements-per-line.js -node_modules/eslint/lib/rules/max-statements.js -node_modules/eslint/lib/rules/multiline-comment-style.js -node_modules/eslint/lib/rules/multiline-ternary.js -node_modules/eslint/lib/rules/new-cap.js -node_modules/eslint/lib/rules/new-parens.js -node_modules/eslint/lib/rules/newline-after-var.js -node_modules/eslint/lib/rules/newline-before-return.js -node_modules/eslint/lib/rules/newline-per-chained-call.js -node_modules/eslint/lib/rules/no-alert.js -node_modules/eslint/lib/rules/no-array-constructor.js -node_modules/eslint/lib/rules/no-async-promise-executor.js -node_modules/eslint/lib/rules/no-await-in-loop.js -node_modules/eslint/lib/rules/no-bitwise.js -node_modules/eslint/lib/rules/no-buffer-constructor.js -node_modules/eslint/lib/rules/no-caller.js -node_modules/eslint/lib/rules/no-case-declarations.js -node_modules/eslint/lib/rules/no-catch-shadow.js -node_modules/eslint/lib/rules/no-class-assign.js -node_modules/eslint/lib/rules/no-compare-neg-zero.js -node_modules/eslint/lib/rules/no-cond-assign.js -node_modules/eslint/lib/rules/no-confusing-arrow.js -node_modules/eslint/lib/rules/no-console.js -node_modules/eslint/lib/rules/no-const-assign.js -node_modules/eslint/lib/rules/no-constant-condition.js -node_modules/eslint/lib/rules/no-constructor-return.js -node_modules/eslint/lib/rules/no-continue.js -node_modules/eslint/lib/rules/no-control-regex.js -node_modules/eslint/lib/rules/no-debugger.js -node_modules/eslint/lib/rules/no-delete-var.js -node_modules/eslint/lib/rules/no-div-regex.js -node_modules/eslint/lib/rules/no-dupe-args.js -node_modules/eslint/lib/rules/no-dupe-class-members.js -node_modules/eslint/lib/rules/no-dupe-else-if.js -node_modules/eslint/lib/rules/no-dupe-keys.js -node_modules/eslint/lib/rules/no-duplicate-case.js -node_modules/eslint/lib/rules/no-duplicate-imports.js -node_modules/eslint/lib/rules/no-else-return.js -node_modules/eslint/lib/rules/no-empty-character-class.js -node_modules/eslint/lib/rules/no-empty-function.js -node_modules/eslint/lib/rules/no-empty-pattern.js -node_modules/eslint/lib/rules/no-empty.js -node_modules/eslint/lib/rules/no-eq-null.js -node_modules/eslint/lib/rules/no-eval.js -node_modules/eslint/lib/rules/no-ex-assign.js -node_modules/eslint/lib/rules/no-extend-native.js -node_modules/eslint/lib/rules/no-extra-bind.js -node_modules/eslint/lib/rules/no-extra-boolean-cast.js -node_modules/eslint/lib/rules/no-extra-label.js -node_modules/eslint/lib/rules/no-extra-parens.js -node_modules/eslint/lib/rules/no-extra-semi.js -node_modules/eslint/lib/rules/no-fallthrough.js -node_modules/eslint/lib/rules/no-floating-decimal.js -node_modules/eslint/lib/rules/no-func-assign.js -node_modules/eslint/lib/rules/no-global-assign.js -node_modules/eslint/lib/rules/no-implicit-coercion.js -node_modules/eslint/lib/rules/no-implicit-globals.js -node_modules/eslint/lib/rules/no-implied-eval.js -node_modules/eslint/lib/rules/no-import-assign.js -node_modules/eslint/lib/rules/no-inline-comments.js -node_modules/eslint/lib/rules/no-inner-declarations.js -node_modules/eslint/lib/rules/no-invalid-regexp.js -node_modules/eslint/lib/rules/no-invalid-this.js -node_modules/eslint/lib/rules/no-irregular-whitespace.js -node_modules/eslint/lib/rules/no-iterator.js -node_modules/eslint/lib/rules/no-label-var.js -node_modules/eslint/lib/rules/no-labels.js -node_modules/eslint/lib/rules/no-lone-blocks.js -node_modules/eslint/lib/rules/no-lonely-if.js -node_modules/eslint/lib/rules/no-loop-func.js -node_modules/eslint/lib/rules/no-loss-of-precision.js -node_modules/eslint/lib/rules/no-magic-numbers.js -node_modules/eslint/lib/rules/no-misleading-character-class.js -node_modules/eslint/lib/rules/no-mixed-operators.js -node_modules/eslint/lib/rules/no-mixed-requires.js -node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js -node_modules/eslint/lib/rules/no-multi-assign.js -node_modules/eslint/lib/rules/no-multi-spaces.js -node_modules/eslint/lib/rules/no-multi-str.js -node_modules/eslint/lib/rules/no-multiple-empty-lines.js -node_modules/eslint/lib/rules/no-native-reassign.js -node_modules/eslint/lib/rules/no-negated-condition.js -node_modules/eslint/lib/rules/no-negated-in-lhs.js -node_modules/eslint/lib/rules/no-nested-ternary.js -node_modules/eslint/lib/rules/no-new-func.js -node_modules/eslint/lib/rules/no-new-object.js -node_modules/eslint/lib/rules/no-new-require.js -node_modules/eslint/lib/rules/no-new-symbol.js -node_modules/eslint/lib/rules/no-new-wrappers.js -node_modules/eslint/lib/rules/no-new.js -node_modules/eslint/lib/rules/no-obj-calls.js -node_modules/eslint/lib/rules/no-octal-escape.js -node_modules/eslint/lib/rules/no-octal.js -node_modules/eslint/lib/rules/no-param-reassign.js -node_modules/eslint/lib/rules/no-path-concat.js -node_modules/eslint/lib/rules/no-plusplus.js -node_modules/eslint/lib/rules/no-process-env.js -node_modules/eslint/lib/rules/no-process-exit.js -node_modules/eslint/lib/rules/no-promise-executor-return.js -node_modules/eslint/lib/rules/no-proto.js -node_modules/eslint/lib/rules/no-prototype-builtins.js -node_modules/eslint/lib/rules/no-redeclare.js -node_modules/eslint/lib/rules/no-regex-spaces.js -node_modules/eslint/lib/rules/no-restricted-exports.js -node_modules/eslint/lib/rules/no-restricted-globals.js -node_modules/eslint/lib/rules/no-restricted-imports.js -node_modules/eslint/lib/rules/no-restricted-modules.js -node_modules/eslint/lib/rules/no-restricted-properties.js -node_modules/eslint/lib/rules/no-restricted-syntax.js -node_modules/eslint/lib/rules/no-return-assign.js -node_modules/eslint/lib/rules/no-return-await.js -node_modules/eslint/lib/rules/no-script-url.js -node_modules/eslint/lib/rules/no-self-assign.js -node_modules/eslint/lib/rules/no-self-compare.js -node_modules/eslint/lib/rules/no-sequences.js -node_modules/eslint/lib/rules/no-setter-return.js -node_modules/eslint/lib/rules/no-shadow-restricted-names.js -node_modules/eslint/lib/rules/no-shadow.js -node_modules/eslint/lib/rules/no-spaced-func.js -node_modules/eslint/lib/rules/no-sparse-arrays.js -node_modules/eslint/lib/rules/no-sync.js -node_modules/eslint/lib/rules/no-tabs.js -node_modules/eslint/lib/rules/no-template-curly-in-string.js -node_modules/eslint/lib/rules/no-ternary.js -node_modules/eslint/lib/rules/no-this-before-super.js -node_modules/eslint/lib/rules/no-throw-literal.js -node_modules/eslint/lib/rules/no-trailing-spaces.js -node_modules/eslint/lib/rules/no-undef-init.js -node_modules/eslint/lib/rules/no-undef.js -node_modules/eslint/lib/rules/no-undefined.js -node_modules/eslint/lib/rules/no-underscore-dangle.js -node_modules/eslint/lib/rules/no-unexpected-multiline.js -node_modules/eslint/lib/rules/no-unmodified-loop-condition.js -node_modules/eslint/lib/rules/no-unneeded-ternary.js -node_modules/eslint/lib/rules/no-unreachable-loop.js -node_modules/eslint/lib/rules/no-unreachable.js -node_modules/eslint/lib/rules/no-unsafe-finally.js -node_modules/eslint/lib/rules/no-unsafe-negation.js -node_modules/eslint/lib/rules/no-unused-expressions.js -node_modules/eslint/lib/rules/no-unused-labels.js -node_modules/eslint/lib/rules/no-unused-vars.js -node_modules/eslint/lib/rules/no-use-before-define.js -node_modules/eslint/lib/rules/no-useless-backreference.js -node_modules/eslint/lib/rules/no-useless-call.js -node_modules/eslint/lib/rules/no-useless-catch.js -node_modules/eslint/lib/rules/no-useless-computed-key.js -node_modules/eslint/lib/rules/no-useless-concat.js -node_modules/eslint/lib/rules/no-useless-constructor.js -node_modules/eslint/lib/rules/no-useless-escape.js -node_modules/eslint/lib/rules/no-useless-rename.js -node_modules/eslint/lib/rules/no-useless-return.js -node_modules/eslint/lib/rules/no-var.js -node_modules/eslint/lib/rules/no-void.js -node_modules/eslint/lib/rules/no-warning-comments.js -node_modules/eslint/lib/rules/no-whitespace-before-property.js -node_modules/eslint/lib/rules/no-with.js -node_modules/eslint/lib/rules/nonblock-statement-body-position.js -node_modules/eslint/lib/rules/object-curly-newline.js -node_modules/eslint/lib/rules/object-curly-spacing.js -node_modules/eslint/lib/rules/object-property-newline.js -node_modules/eslint/lib/rules/object-shorthand.js -node_modules/eslint/lib/rules/one-var-declaration-per-line.js -node_modules/eslint/lib/rules/one-var.js -node_modules/eslint/lib/rules/operator-assignment.js -node_modules/eslint/lib/rules/operator-linebreak.js -node_modules/eslint/lib/rules/padded-blocks.js -node_modules/eslint/lib/rules/padding-line-between-statements.js -node_modules/eslint/lib/rules/prefer-arrow-callback.js -node_modules/eslint/lib/rules/prefer-const.js -node_modules/eslint/lib/rules/prefer-destructuring.js -node_modules/eslint/lib/rules/prefer-exponentiation-operator.js -node_modules/eslint/lib/rules/prefer-named-capture-group.js -node_modules/eslint/lib/rules/prefer-numeric-literals.js -node_modules/eslint/lib/rules/prefer-object-spread.js -node_modules/eslint/lib/rules/prefer-promise-reject-errors.js -node_modules/eslint/lib/rules/prefer-reflect.js -node_modules/eslint/lib/rules/prefer-regex-literals.js -node_modules/eslint/lib/rules/prefer-rest-params.js -node_modules/eslint/lib/rules/prefer-spread.js -node_modules/eslint/lib/rules/prefer-template.js -node_modules/eslint/lib/rules/quote-props.js -node_modules/eslint/lib/rules/quotes.js -node_modules/eslint/lib/rules/radix.js -node_modules/eslint/lib/rules/require-atomic-updates.js -node_modules/eslint/lib/rules/require-await.js -node_modules/eslint/lib/rules/require-jsdoc.js -node_modules/eslint/lib/rules/require-unicode-regexp.js -node_modules/eslint/lib/rules/require-yield.js -node_modules/eslint/lib/rules/rest-spread-spacing.js -node_modules/eslint/lib/rules/semi-spacing.js -node_modules/eslint/lib/rules/semi-style.js -node_modules/eslint/lib/rules/semi.js -node_modules/eslint/lib/rules/sort-imports.js -node_modules/eslint/lib/rules/sort-keys.js -node_modules/eslint/lib/rules/sort-vars.js -node_modules/eslint/lib/rules/space-before-blocks.js -node_modules/eslint/lib/rules/space-before-function-paren.js -node_modules/eslint/lib/rules/space-in-parens.js -node_modules/eslint/lib/rules/space-infix-ops.js -node_modules/eslint/lib/rules/space-unary-ops.js -node_modules/eslint/lib/rules/spaced-comment.js -node_modules/eslint/lib/rules/strict.js -node_modules/eslint/lib/rules/switch-colon-spacing.js -node_modules/eslint/lib/rules/symbol-description.js -node_modules/eslint/lib/rules/template-curly-spacing.js -node_modules/eslint/lib/rules/template-tag-spacing.js -node_modules/eslint/lib/rules/unicode-bom.js -node_modules/eslint/lib/rules/use-isnan.js -node_modules/eslint/lib/rules/valid-jsdoc.js -node_modules/eslint/lib/rules/valid-typeof.js -node_modules/eslint/lib/rules/vars-on-top.js -node_modules/eslint/lib/rules/wrap-iife.js -node_modules/eslint/lib/rules/wrap-regex.js -node_modules/eslint/lib/rules/yield-star-spacing.js -node_modules/eslint/lib/rules/yoda.js -node_modules/eslint/lib/rules/utils/ast-utils.js -node_modules/eslint/lib/rules/utils/fix-tracker.js -node_modules/eslint/lib/rules/utils/keywords.js -node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js -node_modules/eslint/lib/rules/utils/patterns/letters.js -node_modules/eslint/lib/rules/utils/unicode/index.js -node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js -node_modules/eslint/lib/rules/utils/unicode/is-emoji-modifier.js -node_modules/eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js -node_modules/eslint/lib/rules/utils/unicode/is-surrogate-pair.js -node_modules/eslint/lib/shared/ajv.js -node_modules/eslint/lib/shared/ast-utils.js -node_modules/eslint/lib/shared/config-validator.js -node_modules/eslint/lib/shared/deprecation-warnings.js -node_modules/eslint/lib/shared/logging.js -node_modules/eslint/lib/shared/relative-module-resolver.js -node_modules/eslint/lib/shared/runtime-info.js -node_modules/eslint/lib/shared/traverser.js -node_modules/eslint/lib/shared/types.js -node_modules/eslint/lib/source-code/index.js -node_modules/eslint/lib/source-code/source-code.js -node_modules/eslint/lib/source-code/token-store/backward-token-comment-cursor.js -node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js -node_modules/eslint/lib/source-code/token-store/cursor.js -node_modules/eslint/lib/source-code/token-store/cursors.js -node_modules/eslint/lib/source-code/token-store/decorative-cursor.js -node_modules/eslint/lib/source-code/token-store/filter-cursor.js -node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js -node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js -node_modules/eslint/lib/source-code/token-store/index.js -node_modules/eslint/lib/source-code/token-store/limit-cursor.js -node_modules/eslint/lib/source-code/token-store/padded-token-cursor.js -node_modules/eslint/lib/source-code/token-store/skip-cursor.js -node_modules/eslint/lib/source-code/token-store/utils.js -node_modules/eslint/messages/all-files-ignored.txt -node_modules/eslint/messages/extend-config-missing.txt -node_modules/eslint/messages/failed-to-read-json.txt -node_modules/eslint/messages/file-not-found.txt -node_modules/eslint/messages/no-config-found.txt -node_modules/eslint/messages/plugin-conflict.txt -node_modules/eslint/messages/plugin-invalid.txt -node_modules/eslint/messages/plugin-missing.txt -node_modules/eslint/messages/print-config-with-directory-path.txt -node_modules/eslint/messages/whitespace-found.txt -node_modules/eslint-config-google/index.js -node_modules/eslint-config-google/LICENSE -node_modules/eslint-config-google/package.json -node_modules/eslint-config-google/README.md -node_modules/eslint-scope/CHANGELOG.md -node_modules/eslint-scope/LICENSE -node_modules/eslint-scope/package.json -node_modules/eslint-scope/README.md -node_modules/eslint-scope/lib/definition.js -node_modules/eslint-scope/lib/index.js -node_modules/eslint-scope/lib/pattern-visitor.js -node_modules/eslint-scope/lib/reference.js -node_modules/eslint-scope/lib/referencer.js -node_modules/eslint-scope/lib/scope-manager.js -node_modules/eslint-scope/lib/scope.js -node_modules/eslint-scope/lib/variable.js -node_modules/eslint-utils/index.js -node_modules/eslint-utils/index.js.map -node_modules/eslint-utils/index.mjs -node_modules/eslint-utils/index.mjs.map -node_modules/eslint-utils/LICENSE -node_modules/eslint-utils/package.json -node_modules/eslint-utils/README.md -node_modules/eslint-utils/node_modules/eslint-visitor-keys/CHANGELOG.md -node_modules/eslint-utils/node_modules/eslint-visitor-keys/LICENSE -node_modules/eslint-utils/node_modules/eslint-visitor-keys/package.json -node_modules/eslint-utils/node_modules/eslint-visitor-keys/README.md -node_modules/eslint-utils/node_modules/eslint-visitor-keys/lib/index.js -node_modules/eslint-utils/node_modules/eslint-visitor-keys/lib/visitor-keys.json -node_modules/eslint-visitor-keys/CHANGELOG.md -node_modules/eslint-visitor-keys/LICENSE -node_modules/eslint-visitor-keys/package.json -node_modules/eslint-visitor-keys/README.md -node_modules/eslint-visitor-keys/lib/index.js -node_modules/eslint-visitor-keys/lib/visitor-keys.json -node_modules/espree/CHANGELOG.md -node_modules/espree/espree.js -node_modules/espree/LICENSE -node_modules/espree/package.json -node_modules/espree/README.md -node_modules/espree/lib/ast-node-types.js -node_modules/espree/lib/espree.js -node_modules/espree/lib/features.js -node_modules/espree/lib/options.js -node_modules/espree/lib/token-translator.js -node_modules/espree/lib/visitor-keys.js -node_modules/espree/node_modules/eslint-visitor-keys/CHANGELOG.md -node_modules/espree/node_modules/eslint-visitor-keys/LICENSE -node_modules/espree/node_modules/eslint-visitor-keys/package.json -node_modules/espree/node_modules/eslint-visitor-keys/README.md -node_modules/espree/node_modules/eslint-visitor-keys/lib/index.js -node_modules/espree/node_modules/eslint-visitor-keys/lib/visitor-keys.json -node_modules/esprima/ChangeLog -node_modules/esprima/LICENSE.BSD -node_modules/esprima/package.json -node_modules/esprima/README.md -node_modules/esprima/bin/esparse.js -node_modules/esprima/bin/esvalidate.js -node_modules/esprima/dist/esprima.js -node_modules/esquery/license.txt -node_modules/esquery/package.json -node_modules/esquery/parser.js -node_modules/esquery/README.md -node_modules/esquery/dist/esquery.esm.js -node_modules/esquery/dist/esquery.esm.min.js -node_modules/esquery/dist/esquery.esm.min.js.map -node_modules/esquery/dist/esquery.js -node_modules/esquery/dist/esquery.min.js -node_modules/esquery/dist/esquery.min.js.map -node_modules/esquery/node_modules/estraverse/.jshintrc -node_modules/esquery/node_modules/estraverse/estraverse.js -node_modules/esquery/node_modules/estraverse/gulpfile.js -node_modules/esquery/node_modules/estraverse/LICENSE.BSD -node_modules/esquery/node_modules/estraverse/package.json -node_modules/esquery/node_modules/estraverse/README.md -node_modules/esrecurse/.babelrc -node_modules/esrecurse/esrecurse.js -node_modules/esrecurse/gulpfile.babel.js -node_modules/esrecurse/package.json -node_modules/esrecurse/README.md -node_modules/esrecurse/node_modules/estraverse/.jshintrc -node_modules/esrecurse/node_modules/estraverse/estraverse.js -node_modules/esrecurse/node_modules/estraverse/gulpfile.js -node_modules/esrecurse/node_modules/estraverse/LICENSE.BSD -node_modules/esrecurse/node_modules/estraverse/package.json -node_modules/esrecurse/node_modules/estraverse/README.md -node_modules/estraverse/.jshintrc -node_modules/estraverse/estraverse.js -node_modules/estraverse/gulpfile.js -node_modules/estraverse/LICENSE.BSD -node_modules/estraverse/package.json -node_modules/estraverse/README.md -node_modules/esutils/LICENSE.BSD -node_modules/esutils/package.json -node_modules/esutils/README.md -node_modules/esutils/lib/ast.js -node_modules/esutils/lib/code.js -node_modules/esutils/lib/keyword.js -node_modules/esutils/lib/utils.js -node_modules/fast-deep-equal/index.d.ts -node_modules/fast-deep-equal/index.js -node_modules/fast-deep-equal/LICENSE -node_modules/fast-deep-equal/package.json -node_modules/fast-deep-equal/react.d.ts -node_modules/fast-deep-equal/react.js -node_modules/fast-deep-equal/README.md -node_modules/fast-deep-equal/es6/index.d.ts -node_modules/fast-deep-equal/es6/index.js -node_modules/fast-deep-equal/es6/react.d.ts -node_modules/fast-deep-equal/es6/react.js -node_modules/fast-json-stable-stringify/.eslintrc.yml -node_modules/fast-json-stable-stringify/.travis.yml -node_modules/fast-json-stable-stringify/index.d.ts -node_modules/fast-json-stable-stringify/index.js -node_modules/fast-json-stable-stringify/LICENSE -node_modules/fast-json-stable-stringify/package.json -node_modules/fast-json-stable-stringify/README.md -node_modules/fast-json-stable-stringify/.github/FUNDING.yml -node_modules/fast-json-stable-stringify/benchmark/index.js -node_modules/fast-json-stable-stringify/benchmark/test.json -node_modules/fast-json-stable-stringify/example/key_cmp.js -node_modules/fast-json-stable-stringify/example/nested.js -node_modules/fast-json-stable-stringify/example/str.js -node_modules/fast-json-stable-stringify/example/value_cmp.js -node_modules/fast-json-stable-stringify/test/cmp.js -node_modules/fast-json-stable-stringify/test/nested.js -node_modules/fast-json-stable-stringify/test/str.js -node_modules/fast-json-stable-stringify/test/to-json.js -node_modules/fast-levenshtein/levenshtein.js -node_modules/fast-levenshtein/LICENSE.md -node_modules/fast-levenshtein/package.json -node_modules/fast-levenshtein/README.md -node_modules/file-entry-cache/cache.js -node_modules/file-entry-cache/changelog.md -node_modules/file-entry-cache/LICENSE -node_modules/file-entry-cache/package.json -node_modules/file-entry-cache/README.md -node_modules/flat-cache/cache.js -node_modules/flat-cache/changelog.md -node_modules/flat-cache/del.js -node_modules/flat-cache/LICENSE -node_modules/flat-cache/package.json -node_modules/flat-cache/README.md -node_modules/flat-cache/utils.js -node_modules/flatted/index.js -node_modules/flatted/LICENSE -node_modules/flatted/min.js -node_modules/flatted/package.json -node_modules/flatted/README.md -node_modules/flatted/SPECS.md -node_modules/flatted/types.d.ts -node_modules/flatted/.github/FUNDING.yml -node_modules/flatted/cjs/index.js -node_modules/flatted/esm/index.js -node_modules/fs.realpath/index.js -node_modules/fs.realpath/LICENSE -node_modules/fs.realpath/old.js -node_modules/fs.realpath/package.json -node_modules/fs.realpath/README.md -node_modules/functional-red-black-tree/.npmignore -node_modules/functional-red-black-tree/LICENSE -node_modules/functional-red-black-tree/package.json -node_modules/functional-red-black-tree/rbtree.js -node_modules/functional-red-black-tree/README.md -node_modules/functional-red-black-tree/bench/test.js -node_modules/functional-red-black-tree/test/test.js -node_modules/glob/changelog.md -node_modules/glob/common.js -node_modules/glob/glob.js -node_modules/glob/LICENSE -node_modules/glob/package.json -node_modules/glob/README.md -node_modules/glob/sync.js -node_modules/glob-parent/index.js -node_modules/glob-parent/LICENSE -node_modules/glob-parent/package.json -node_modules/glob-parent/README.md -node_modules/globals/globals.json -node_modules/globals/index.d.ts -node_modules/globals/index.js -node_modules/globals/license -node_modules/globals/package.json -node_modules/globals/readme.md -node_modules/has-flag/index.js -node_modules/has-flag/license -node_modules/has-flag/package.json -node_modules/has-flag/readme.md -node_modules/ignore/CHANGELOG.md -node_modules/ignore/index.d.ts -node_modules/ignore/index.js -node_modules/ignore/legacy.js -node_modules/ignore/LICENSE-MIT -node_modules/ignore/package.json -node_modules/ignore/README.md -node_modules/import-fresh/index.d.ts -node_modules/import-fresh/index.js -node_modules/import-fresh/license -node_modules/import-fresh/package.json -node_modules/import-fresh/readme.md -node_modules/imurmurhash/imurmurhash.js -node_modules/imurmurhash/imurmurhash.min.js -node_modules/imurmurhash/package.json -node_modules/imurmurhash/README.md -node_modules/inflight/inflight.js -node_modules/inflight/LICENSE -node_modules/inflight/package.json -node_modules/inflight/README.md -node_modules/inherits/inherits_browser.js -node_modules/inherits/inherits.js -node_modules/inherits/LICENSE -node_modules/inherits/package.json -node_modules/inherits/README.md -node_modules/is-extglob/index.js -node_modules/is-extglob/LICENSE -node_modules/is-extglob/package.json -node_modules/is-extglob/README.md -node_modules/is-fullwidth-code-point/index.js -node_modules/is-fullwidth-code-point/license -node_modules/is-fullwidth-code-point/package.json -node_modules/is-fullwidth-code-point/readme.md -node_modules/is-glob/index.js -node_modules/is-glob/LICENSE -node_modules/is-glob/package.json -node_modules/is-glob/README.md -node_modules/isexe/.npmignore -node_modules/isexe/index.js -node_modules/isexe/LICENSE -node_modules/isexe/mode.js -node_modules/isexe/package.json -node_modules/isexe/README.md -node_modules/isexe/windows.js -node_modules/isexe/test/basic.js -node_modules/js-tokens/CHANGELOG.md -node_modules/js-tokens/index.js -node_modules/js-tokens/LICENSE -node_modules/js-tokens/package.json -node_modules/js-tokens/README.md -node_modules/js-yaml/CHANGELOG.md -node_modules/js-yaml/index.js -node_modules/js-yaml/LICENSE -node_modules/js-yaml/package.json -node_modules/js-yaml/README.md -node_modules/js-yaml/bin/js-yaml.js -node_modules/js-yaml/dist/js-yaml.js -node_modules/js-yaml/dist/js-yaml.min.js -node_modules/js-yaml/lib/js-yaml.js -node_modules/js-yaml/lib/js-yaml/common.js -node_modules/js-yaml/lib/js-yaml/dumper.js -node_modules/js-yaml/lib/js-yaml/exception.js -node_modules/js-yaml/lib/js-yaml/loader.js -node_modules/js-yaml/lib/js-yaml/mark.js -node_modules/js-yaml/lib/js-yaml/schema.js -node_modules/js-yaml/lib/js-yaml/type.js -node_modules/js-yaml/lib/js-yaml/schema/core.js -node_modules/js-yaml/lib/js-yaml/schema/default_full.js -node_modules/js-yaml/lib/js-yaml/schema/default_safe.js -node_modules/js-yaml/lib/js-yaml/schema/failsafe.js -node_modules/js-yaml/lib/js-yaml/schema/json.js -node_modules/js-yaml/lib/js-yaml/type/binary.js -node_modules/js-yaml/lib/js-yaml/type/bool.js -node_modules/js-yaml/lib/js-yaml/type/float.js -node_modules/js-yaml/lib/js-yaml/type/int.js -node_modules/js-yaml/lib/js-yaml/type/map.js -node_modules/js-yaml/lib/js-yaml/type/merge.js -node_modules/js-yaml/lib/js-yaml/type/null.js -node_modules/js-yaml/lib/js-yaml/type/omap.js -node_modules/js-yaml/lib/js-yaml/type/pairs.js -node_modules/js-yaml/lib/js-yaml/type/seq.js -node_modules/js-yaml/lib/js-yaml/type/set.js -node_modules/js-yaml/lib/js-yaml/type/str.js -node_modules/js-yaml/lib/js-yaml/type/timestamp.js -node_modules/js-yaml/lib/js-yaml/type/js/function.js -node_modules/js-yaml/lib/js-yaml/type/js/regexp.js -node_modules/js-yaml/lib/js-yaml/type/js/undefined.js -node_modules/json-schema-traverse/.eslintrc.yml -node_modules/json-schema-traverse/.travis.yml -node_modules/json-schema-traverse/index.js -node_modules/json-schema-traverse/LICENSE -node_modules/json-schema-traverse/package.json -node_modules/json-schema-traverse/README.md -node_modules/json-schema-traverse/spec/.eslintrc.yml -node_modules/json-schema-traverse/spec/index.spec.js -node_modules/json-schema-traverse/spec/fixtures/schema.js -node_modules/json-stable-stringify-without-jsonify/.npmignore -node_modules/json-stable-stringify-without-jsonify/.travis.yml -node_modules/json-stable-stringify-without-jsonify/index.js -node_modules/json-stable-stringify-without-jsonify/LICENSE -node_modules/json-stable-stringify-without-jsonify/package.json -node_modules/json-stable-stringify-without-jsonify/readme.markdown -node_modules/json-stable-stringify-without-jsonify/example/key_cmp.js -node_modules/json-stable-stringify-without-jsonify/example/nested.js -node_modules/json-stable-stringify-without-jsonify/example/str.js -node_modules/json-stable-stringify-without-jsonify/example/value_cmp.js -node_modules/json-stable-stringify-without-jsonify/test/cmp.js -node_modules/json-stable-stringify-without-jsonify/test/nested.js -node_modules/json-stable-stringify-without-jsonify/test/replacer.js -node_modules/json-stable-stringify-without-jsonify/test/space.js -node_modules/json-stable-stringify-without-jsonify/test/str.js -node_modules/json-stable-stringify-without-jsonify/test/to-json.js -node_modules/levn/LICENSE -node_modules/levn/package.json -node_modules/levn/README.md -node_modules/levn/lib/cast.js -node_modules/levn/lib/index.js -node_modules/levn/lib/parse-string.js -node_modules/lodash/_apply.js -node_modules/lodash/_arrayAggregator.js -node_modules/lodash/_arrayEach.js -node_modules/lodash/_arrayEachRight.js -node_modules/lodash/_arrayEvery.js -node_modules/lodash/_arrayFilter.js -node_modules/lodash/_arrayIncludes.js -node_modules/lodash/_arrayIncludesWith.js -node_modules/lodash/_arrayLikeKeys.js -node_modules/lodash/_arrayMap.js -node_modules/lodash/_arrayPush.js -node_modules/lodash/_arrayReduce.js -node_modules/lodash/_arrayReduceRight.js -node_modules/lodash/_arraySample.js -node_modules/lodash/_arraySampleSize.js -node_modules/lodash/_arrayShuffle.js -node_modules/lodash/_arraySome.js -node_modules/lodash/_asciiSize.js -node_modules/lodash/_asciiToArray.js -node_modules/lodash/_asciiWords.js -node_modules/lodash/_assignMergeValue.js -node_modules/lodash/_assignValue.js -node_modules/lodash/_assocIndexOf.js -node_modules/lodash/_baseAggregator.js -node_modules/lodash/_baseAssign.js -node_modules/lodash/_baseAssignIn.js -node_modules/lodash/_baseAssignValue.js -node_modules/lodash/_baseAt.js -node_modules/lodash/_baseClamp.js -node_modules/lodash/_baseClone.js -node_modules/lodash/_baseConforms.js -node_modules/lodash/_baseConformsTo.js -node_modules/lodash/_baseCreate.js -node_modules/lodash/_baseDelay.js -node_modules/lodash/_baseDifference.js -node_modules/lodash/_baseEach.js -node_modules/lodash/_baseEachRight.js -node_modules/lodash/_baseEvery.js -node_modules/lodash/_baseExtremum.js -node_modules/lodash/_baseFill.js -node_modules/lodash/_baseFilter.js -node_modules/lodash/_baseFindIndex.js -node_modules/lodash/_baseFindKey.js -node_modules/lodash/_baseFlatten.js -node_modules/lodash/_baseFor.js -node_modules/lodash/_baseForOwn.js -node_modules/lodash/_baseForOwnRight.js -node_modules/lodash/_baseForRight.js -node_modules/lodash/_baseFunctions.js -node_modules/lodash/_baseGet.js -node_modules/lodash/_baseGetAllKeys.js -node_modules/lodash/_baseGetTag.js -node_modules/lodash/_baseGt.js -node_modules/lodash/_baseHas.js -node_modules/lodash/_baseHasIn.js -node_modules/lodash/_baseIndexOf.js -node_modules/lodash/_baseIndexOfWith.js -node_modules/lodash/_baseInRange.js -node_modules/lodash/_baseIntersection.js -node_modules/lodash/_baseInverter.js -node_modules/lodash/_baseInvoke.js -node_modules/lodash/_baseIsArguments.js -node_modules/lodash/_baseIsArrayBuffer.js -node_modules/lodash/_baseIsDate.js -node_modules/lodash/_baseIsEqual.js -node_modules/lodash/_baseIsEqualDeep.js -node_modules/lodash/_baseIsMap.js -node_modules/lodash/_baseIsMatch.js -node_modules/lodash/_baseIsNaN.js -node_modules/lodash/_baseIsNative.js -node_modules/lodash/_baseIsRegExp.js -node_modules/lodash/_baseIsSet.js -node_modules/lodash/_baseIsTypedArray.js -node_modules/lodash/_baseIteratee.js -node_modules/lodash/_baseKeys.js -node_modules/lodash/_baseKeysIn.js -node_modules/lodash/_baseLodash.js -node_modules/lodash/_baseLt.js -node_modules/lodash/_baseMap.js -node_modules/lodash/_baseMatches.js -node_modules/lodash/_baseMatchesProperty.js -node_modules/lodash/_baseMean.js -node_modules/lodash/_baseMerge.js -node_modules/lodash/_baseMergeDeep.js -node_modules/lodash/_baseNth.js -node_modules/lodash/_baseOrderBy.js -node_modules/lodash/_basePick.js -node_modules/lodash/_basePickBy.js -node_modules/lodash/_baseProperty.js -node_modules/lodash/_basePropertyDeep.js -node_modules/lodash/_basePropertyOf.js -node_modules/lodash/_basePullAll.js -node_modules/lodash/_basePullAt.js -node_modules/lodash/_baseRandom.js -node_modules/lodash/_baseRange.js -node_modules/lodash/_baseReduce.js -node_modules/lodash/_baseRepeat.js -node_modules/lodash/_baseRest.js -node_modules/lodash/_baseSample.js -node_modules/lodash/_baseSampleSize.js -node_modules/lodash/_baseSet.js -node_modules/lodash/_baseSetData.js -node_modules/lodash/_baseSetToString.js -node_modules/lodash/_baseShuffle.js -node_modules/lodash/_baseSlice.js -node_modules/lodash/_baseSome.js -node_modules/lodash/_baseSortBy.js -node_modules/lodash/_baseSortedIndex.js -node_modules/lodash/_baseSortedIndexBy.js -node_modules/lodash/_baseSortedUniq.js -node_modules/lodash/_baseSum.js -node_modules/lodash/_baseTimes.js -node_modules/lodash/_baseToNumber.js -node_modules/lodash/_baseToPairs.js -node_modules/lodash/_baseToString.js -node_modules/lodash/_baseUnary.js -node_modules/lodash/_baseUniq.js -node_modules/lodash/_baseUnset.js -node_modules/lodash/_baseUpdate.js -node_modules/lodash/_baseValues.js -node_modules/lodash/_baseWhile.js -node_modules/lodash/_baseWrapperValue.js -node_modules/lodash/_baseXor.js -node_modules/lodash/_baseZipObject.js -node_modules/lodash/_cacheHas.js -node_modules/lodash/_castArrayLikeObject.js -node_modules/lodash/_castFunction.js -node_modules/lodash/_castPath.js -node_modules/lodash/_castRest.js -node_modules/lodash/_castSlice.js -node_modules/lodash/_charsEndIndex.js -node_modules/lodash/_charsStartIndex.js -node_modules/lodash/_cloneArrayBuffer.js -node_modules/lodash/_cloneBuffer.js -node_modules/lodash/_cloneDataView.js -node_modules/lodash/_cloneRegExp.js -node_modules/lodash/_cloneSymbol.js -node_modules/lodash/_cloneTypedArray.js -node_modules/lodash/_compareAscending.js -node_modules/lodash/_compareMultiple.js -node_modules/lodash/_composeArgs.js -node_modules/lodash/_composeArgsRight.js -node_modules/lodash/_copyArray.js -node_modules/lodash/_copyObject.js -node_modules/lodash/_copySymbols.js -node_modules/lodash/_copySymbolsIn.js -node_modules/lodash/_coreJsData.js -node_modules/lodash/_countHolders.js -node_modules/lodash/_createAggregator.js -node_modules/lodash/_createAssigner.js -node_modules/lodash/_createBaseEach.js -node_modules/lodash/_createBaseFor.js -node_modules/lodash/_createBind.js -node_modules/lodash/_createCaseFirst.js -node_modules/lodash/_createCompounder.js -node_modules/lodash/_createCtor.js -node_modules/lodash/_createCurry.js -node_modules/lodash/_createFind.js -node_modules/lodash/_createFlow.js -node_modules/lodash/_createHybrid.js -node_modules/lodash/_createInverter.js -node_modules/lodash/_createMathOperation.js -node_modules/lodash/_createOver.js -node_modules/lodash/_createPadding.js -node_modules/lodash/_createPartial.js -node_modules/lodash/_createRange.js -node_modules/lodash/_createRecurry.js -node_modules/lodash/_createRelationalOperation.js -node_modules/lodash/_createRound.js -node_modules/lodash/_createSet.js -node_modules/lodash/_createToPairs.js -node_modules/lodash/_createWrap.js -node_modules/lodash/_customDefaultsAssignIn.js -node_modules/lodash/_customDefaultsMerge.js -node_modules/lodash/_customOmitClone.js -node_modules/lodash/_DataView.js -node_modules/lodash/_deburrLetter.js -node_modules/lodash/_defineProperty.js -node_modules/lodash/_equalArrays.js -node_modules/lodash/_equalByTag.js -node_modules/lodash/_equalObjects.js -node_modules/lodash/_escapeHtmlChar.js -node_modules/lodash/_escapeStringChar.js -node_modules/lodash/_flatRest.js -node_modules/lodash/_freeGlobal.js -node_modules/lodash/_getAllKeys.js -node_modules/lodash/_getAllKeysIn.js -node_modules/lodash/_getData.js -node_modules/lodash/_getFuncName.js -node_modules/lodash/_getHolder.js -node_modules/lodash/_getMapData.js -node_modules/lodash/_getMatchData.js -node_modules/lodash/_getNative.js -node_modules/lodash/_getPrototype.js -node_modules/lodash/_getRawTag.js -node_modules/lodash/_getSymbols.js -node_modules/lodash/_getSymbolsIn.js -node_modules/lodash/_getTag.js -node_modules/lodash/_getValue.js -node_modules/lodash/_getView.js -node_modules/lodash/_getWrapDetails.js -node_modules/lodash/_Hash.js -node_modules/lodash/_hashClear.js -node_modules/lodash/_hashDelete.js -node_modules/lodash/_hashGet.js -node_modules/lodash/_hashHas.js -node_modules/lodash/_hashSet.js -node_modules/lodash/_hasPath.js -node_modules/lodash/_hasUnicode.js -node_modules/lodash/_hasUnicodeWord.js -node_modules/lodash/_initCloneArray.js -node_modules/lodash/_initCloneByTag.js -node_modules/lodash/_initCloneObject.js -node_modules/lodash/_insertWrapDetails.js -node_modules/lodash/_isFlattenable.js -node_modules/lodash/_isIndex.js -node_modules/lodash/_isIterateeCall.js -node_modules/lodash/_isKey.js -node_modules/lodash/_isKeyable.js -node_modules/lodash/_isLaziable.js -node_modules/lodash/_isMaskable.js -node_modules/lodash/_isMasked.js -node_modules/lodash/_isPrototype.js -node_modules/lodash/_isStrictComparable.js -node_modules/lodash/_iteratorToArray.js -node_modules/lodash/_lazyClone.js -node_modules/lodash/_lazyReverse.js -node_modules/lodash/_lazyValue.js -node_modules/lodash/_LazyWrapper.js -node_modules/lodash/_ListCache.js -node_modules/lodash/_listCacheClear.js -node_modules/lodash/_listCacheDelete.js -node_modules/lodash/_listCacheGet.js -node_modules/lodash/_listCacheHas.js -node_modules/lodash/_listCacheSet.js -node_modules/lodash/_LodashWrapper.js -node_modules/lodash/_Map.js -node_modules/lodash/_MapCache.js -node_modules/lodash/_mapCacheClear.js -node_modules/lodash/_mapCacheDelete.js -node_modules/lodash/_mapCacheGet.js -node_modules/lodash/_mapCacheHas.js -node_modules/lodash/_mapCacheSet.js -node_modules/lodash/_mapToArray.js -node_modules/lodash/_matchesStrictComparable.js -node_modules/lodash/_memoizeCapped.js -node_modules/lodash/_mergeData.js -node_modules/lodash/_metaMap.js -node_modules/lodash/_nativeCreate.js -node_modules/lodash/_nativeKeys.js -node_modules/lodash/_nativeKeysIn.js -node_modules/lodash/_nodeUtil.js -node_modules/lodash/_objectToString.js -node_modules/lodash/_overArg.js -node_modules/lodash/_overRest.js -node_modules/lodash/_parent.js -node_modules/lodash/_Promise.js -node_modules/lodash/_realNames.js -node_modules/lodash/_reEscape.js -node_modules/lodash/_reEvaluate.js -node_modules/lodash/_reInterpolate.js -node_modules/lodash/_reorder.js -node_modules/lodash/_replaceHolders.js -node_modules/lodash/_root.js -node_modules/lodash/_safeGet.js -node_modules/lodash/_Set.js -node_modules/lodash/_SetCache.js -node_modules/lodash/_setCacheAdd.js -node_modules/lodash/_setCacheHas.js -node_modules/lodash/_setData.js -node_modules/lodash/_setToArray.js -node_modules/lodash/_setToPairs.js -node_modules/lodash/_setToString.js -node_modules/lodash/_setWrapToString.js -node_modules/lodash/_shortOut.js -node_modules/lodash/_shuffleSelf.js -node_modules/lodash/_Stack.js -node_modules/lodash/_stackClear.js -node_modules/lodash/_stackDelete.js -node_modules/lodash/_stackGet.js -node_modules/lodash/_stackHas.js -node_modules/lodash/_stackSet.js -node_modules/lodash/_strictIndexOf.js -node_modules/lodash/_strictLastIndexOf.js -node_modules/lodash/_stringSize.js -node_modules/lodash/_stringToArray.js -node_modules/lodash/_stringToPath.js -node_modules/lodash/_Symbol.js -node_modules/lodash/_toKey.js -node_modules/lodash/_toSource.js -node_modules/lodash/_Uint8Array.js -node_modules/lodash/_unescapeHtmlChar.js -node_modules/lodash/_unicodeSize.js -node_modules/lodash/_unicodeToArray.js -node_modules/lodash/_unicodeWords.js -node_modules/lodash/_updateWrapDetails.js -node_modules/lodash/_WeakMap.js -node_modules/lodash/_wrapperClone.js -node_modules/lodash/add.js -node_modules/lodash/after.js -node_modules/lodash/array.js -node_modules/lodash/ary.js -node_modules/lodash/assign.js -node_modules/lodash/assignIn.js -node_modules/lodash/assignInWith.js -node_modules/lodash/assignWith.js -node_modules/lodash/at.js -node_modules/lodash/attempt.js -node_modules/lodash/before.js -node_modules/lodash/bind.js -node_modules/lodash/bindAll.js -node_modules/lodash/bindKey.js -node_modules/lodash/camelCase.js -node_modules/lodash/capitalize.js -node_modules/lodash/castArray.js -node_modules/lodash/ceil.js -node_modules/lodash/chain.js -node_modules/lodash/chunk.js -node_modules/lodash/clamp.js -node_modules/lodash/clone.js -node_modules/lodash/cloneDeep.js -node_modules/lodash/cloneDeepWith.js -node_modules/lodash/cloneWith.js -node_modules/lodash/collection.js -node_modules/lodash/commit.js -node_modules/lodash/compact.js -node_modules/lodash/concat.js -node_modules/lodash/cond.js -node_modules/lodash/conforms.js -node_modules/lodash/conformsTo.js -node_modules/lodash/constant.js -node_modules/lodash/core.js -node_modules/lodash/core.min.js -node_modules/lodash/countBy.js -node_modules/lodash/create.js -node_modules/lodash/curry.js -node_modules/lodash/curryRight.js -node_modules/lodash/date.js -node_modules/lodash/debounce.js -node_modules/lodash/deburr.js -node_modules/lodash/defaults.js -node_modules/lodash/defaultsDeep.js -node_modules/lodash/defaultTo.js -node_modules/lodash/defer.js -node_modules/lodash/delay.js -node_modules/lodash/difference.js -node_modules/lodash/differenceBy.js -node_modules/lodash/differenceWith.js -node_modules/lodash/divide.js -node_modules/lodash/drop.js -node_modules/lodash/dropRight.js -node_modules/lodash/dropRightWhile.js -node_modules/lodash/dropWhile.js -node_modules/lodash/each.js -node_modules/lodash/eachRight.js -node_modules/lodash/endsWith.js -node_modules/lodash/entries.js -node_modules/lodash/entriesIn.js -node_modules/lodash/eq.js -node_modules/lodash/escape.js -node_modules/lodash/escapeRegExp.js -node_modules/lodash/every.js -node_modules/lodash/extend.js -node_modules/lodash/extendWith.js -node_modules/lodash/fill.js -node_modules/lodash/filter.js -node_modules/lodash/find.js -node_modules/lodash/findIndex.js -node_modules/lodash/findKey.js -node_modules/lodash/findLast.js -node_modules/lodash/findLastIndex.js -node_modules/lodash/findLastKey.js -node_modules/lodash/first.js -node_modules/lodash/flatMap.js -node_modules/lodash/flatMapDeep.js -node_modules/lodash/flatMapDepth.js -node_modules/lodash/flatten.js -node_modules/lodash/flattenDeep.js -node_modules/lodash/flattenDepth.js -node_modules/lodash/flip.js -node_modules/lodash/floor.js -node_modules/lodash/flow.js -node_modules/lodash/flowRight.js -node_modules/lodash/forEach.js -node_modules/lodash/forEachRight.js -node_modules/lodash/forIn.js -node_modules/lodash/forInRight.js -node_modules/lodash/forOwn.js -node_modules/lodash/forOwnRight.js -node_modules/lodash/fp.js -node_modules/lodash/fromPairs.js -node_modules/lodash/function.js -node_modules/lodash/functions.js -node_modules/lodash/functionsIn.js -node_modules/lodash/get.js -node_modules/lodash/groupBy.js -node_modules/lodash/gt.js -node_modules/lodash/gte.js -node_modules/lodash/has.js -node_modules/lodash/hasIn.js -node_modules/lodash/head.js -node_modules/lodash/identity.js -node_modules/lodash/includes.js -node_modules/lodash/index.js -node_modules/lodash/indexOf.js -node_modules/lodash/initial.js -node_modules/lodash/inRange.js -node_modules/lodash/intersection.js -node_modules/lodash/intersectionBy.js -node_modules/lodash/intersectionWith.js -node_modules/lodash/invert.js -node_modules/lodash/invertBy.js -node_modules/lodash/invoke.js -node_modules/lodash/invokeMap.js -node_modules/lodash/isArguments.js -node_modules/lodash/isArray.js -node_modules/lodash/isArrayBuffer.js -node_modules/lodash/isArrayLike.js -node_modules/lodash/isArrayLikeObject.js -node_modules/lodash/isBoolean.js -node_modules/lodash/isBuffer.js -node_modules/lodash/isDate.js -node_modules/lodash/isElement.js -node_modules/lodash/isEmpty.js -node_modules/lodash/isEqual.js -node_modules/lodash/isEqualWith.js -node_modules/lodash/isError.js -node_modules/lodash/isFinite.js -node_modules/lodash/isFunction.js -node_modules/lodash/isInteger.js -node_modules/lodash/isLength.js -node_modules/lodash/isMap.js -node_modules/lodash/isMatch.js -node_modules/lodash/isMatchWith.js -node_modules/lodash/isNaN.js -node_modules/lodash/isNative.js -node_modules/lodash/isNil.js -node_modules/lodash/isNull.js -node_modules/lodash/isNumber.js -node_modules/lodash/isObject.js -node_modules/lodash/isObjectLike.js -node_modules/lodash/isPlainObject.js -node_modules/lodash/isRegExp.js -node_modules/lodash/isSafeInteger.js -node_modules/lodash/isSet.js -node_modules/lodash/isString.js -node_modules/lodash/isSymbol.js -node_modules/lodash/isTypedArray.js -node_modules/lodash/isUndefined.js -node_modules/lodash/isWeakMap.js -node_modules/lodash/isWeakSet.js -node_modules/lodash/iteratee.js -node_modules/lodash/join.js -node_modules/lodash/kebabCase.js -node_modules/lodash/keyBy.js -node_modules/lodash/keys.js -node_modules/lodash/keysIn.js -node_modules/lodash/lang.js -node_modules/lodash/last.js -node_modules/lodash/lastIndexOf.js -node_modules/lodash/LICENSE -node_modules/lodash/lodash.js -node_modules/lodash/lodash.min.js -node_modules/lodash/lowerCase.js -node_modules/lodash/lowerFirst.js -node_modules/lodash/lt.js -node_modules/lodash/lte.js -node_modules/lodash/map.js -node_modules/lodash/mapKeys.js -node_modules/lodash/mapValues.js -node_modules/lodash/matches.js -node_modules/lodash/matchesProperty.js -node_modules/lodash/math.js -node_modules/lodash/max.js -node_modules/lodash/maxBy.js -node_modules/lodash/mean.js -node_modules/lodash/meanBy.js -node_modules/lodash/memoize.js -node_modules/lodash/merge.js -node_modules/lodash/mergeWith.js -node_modules/lodash/method.js -node_modules/lodash/methodOf.js -node_modules/lodash/min.js -node_modules/lodash/minBy.js -node_modules/lodash/mixin.js -node_modules/lodash/multiply.js -node_modules/lodash/negate.js -node_modules/lodash/next.js -node_modules/lodash/noop.js -node_modules/lodash/now.js -node_modules/lodash/nth.js -node_modules/lodash/nthArg.js -node_modules/lodash/number.js -node_modules/lodash/object.js -node_modules/lodash/omit.js -node_modules/lodash/omitBy.js -node_modules/lodash/once.js -node_modules/lodash/orderBy.js -node_modules/lodash/over.js -node_modules/lodash/overArgs.js -node_modules/lodash/overEvery.js -node_modules/lodash/overSome.js -node_modules/lodash/package.json -node_modules/lodash/pad.js -node_modules/lodash/padEnd.js -node_modules/lodash/padStart.js -node_modules/lodash/parseInt.js -node_modules/lodash/partial.js -node_modules/lodash/partialRight.js -node_modules/lodash/partition.js -node_modules/lodash/pick.js -node_modules/lodash/pickBy.js -node_modules/lodash/plant.js -node_modules/lodash/property.js -node_modules/lodash/propertyOf.js -node_modules/lodash/pull.js -node_modules/lodash/pullAll.js -node_modules/lodash/pullAllBy.js -node_modules/lodash/pullAllWith.js -node_modules/lodash/pullAt.js -node_modules/lodash/random.js -node_modules/lodash/range.js -node_modules/lodash/rangeRight.js -node_modules/lodash/README.md -node_modules/lodash/rearg.js -node_modules/lodash/reduce.js -node_modules/lodash/reduceRight.js -node_modules/lodash/reject.js -node_modules/lodash/remove.js -node_modules/lodash/repeat.js -node_modules/lodash/replace.js -node_modules/lodash/rest.js -node_modules/lodash/result.js -node_modules/lodash/reverse.js -node_modules/lodash/round.js -node_modules/lodash/sample.js -node_modules/lodash/sampleSize.js -node_modules/lodash/seq.js -node_modules/lodash/set.js -node_modules/lodash/setWith.js -node_modules/lodash/shuffle.js -node_modules/lodash/size.js -node_modules/lodash/slice.js -node_modules/lodash/snakeCase.js -node_modules/lodash/some.js -node_modules/lodash/sortBy.js -node_modules/lodash/sortedIndex.js -node_modules/lodash/sortedIndexBy.js -node_modules/lodash/sortedIndexOf.js -node_modules/lodash/sortedLastIndex.js -node_modules/lodash/sortedLastIndexBy.js -node_modules/lodash/sortedLastIndexOf.js -node_modules/lodash/sortedUniq.js -node_modules/lodash/sortedUniqBy.js -node_modules/lodash/split.js -node_modules/lodash/spread.js -node_modules/lodash/startCase.js -node_modules/lodash/startsWith.js -node_modules/lodash/string.js -node_modules/lodash/stubArray.js -node_modules/lodash/stubFalse.js -node_modules/lodash/stubObject.js -node_modules/lodash/stubString.js -node_modules/lodash/stubTrue.js -node_modules/lodash/subtract.js -node_modules/lodash/sum.js -node_modules/lodash/sumBy.js -node_modules/lodash/tail.js -node_modules/lodash/take.js -node_modules/lodash/takeRight.js -node_modules/lodash/takeRightWhile.js -node_modules/lodash/takeWhile.js -node_modules/lodash/tap.js -node_modules/lodash/template.js -node_modules/lodash/templateSettings.js -node_modules/lodash/throttle.js -node_modules/lodash/thru.js -node_modules/lodash/times.js -node_modules/lodash/toArray.js -node_modules/lodash/toFinite.js -node_modules/lodash/toInteger.js -node_modules/lodash/toIterator.js -node_modules/lodash/toJSON.js -node_modules/lodash/toLength.js -node_modules/lodash/toLower.js -node_modules/lodash/toNumber.js -node_modules/lodash/toPairs.js -node_modules/lodash/toPairsIn.js -node_modules/lodash/toPath.js -node_modules/lodash/toPlainObject.js -node_modules/lodash/toSafeInteger.js -node_modules/lodash/toString.js -node_modules/lodash/toUpper.js -node_modules/lodash/transform.js -node_modules/lodash/trim.js -node_modules/lodash/trimEnd.js -node_modules/lodash/trimStart.js -node_modules/lodash/truncate.js -node_modules/lodash/unary.js -node_modules/lodash/unescape.js -node_modules/lodash/union.js -node_modules/lodash/unionBy.js -node_modules/lodash/unionWith.js -node_modules/lodash/uniq.js -node_modules/lodash/uniqBy.js -node_modules/lodash/uniqueId.js -node_modules/lodash/uniqWith.js -node_modules/lodash/unset.js -node_modules/lodash/unzip.js -node_modules/lodash/unzipWith.js -node_modules/lodash/update.js -node_modules/lodash/updateWith.js -node_modules/lodash/upperCase.js -node_modules/lodash/upperFirst.js -node_modules/lodash/util.js -node_modules/lodash/value.js -node_modules/lodash/valueOf.js -node_modules/lodash/values.js -node_modules/lodash/valuesIn.js -node_modules/lodash/without.js -node_modules/lodash/words.js -node_modules/lodash/wrap.js -node_modules/lodash/wrapperAt.js -node_modules/lodash/wrapperChain.js -node_modules/lodash/wrapperLodash.js -node_modules/lodash/wrapperReverse.js -node_modules/lodash/wrapperValue.js -node_modules/lodash/xor.js -node_modules/lodash/xorBy.js -node_modules/lodash/xorWith.js -node_modules/lodash/zip.js -node_modules/lodash/zipObject.js -node_modules/lodash/zipObjectDeep.js -node_modules/lodash/zipWith.js -node_modules/lodash/fp/__.js -node_modules/lodash/fp/_baseConvert.js -node_modules/lodash/fp/_convertBrowser.js -node_modules/lodash/fp/_falseOptions.js -node_modules/lodash/fp/_mapping.js -node_modules/lodash/fp/_util.js -node_modules/lodash/fp/add.js -node_modules/lodash/fp/after.js -node_modules/lodash/fp/all.js -node_modules/lodash/fp/allPass.js -node_modules/lodash/fp/always.js -node_modules/lodash/fp/any.js -node_modules/lodash/fp/anyPass.js -node_modules/lodash/fp/apply.js -node_modules/lodash/fp/array.js -node_modules/lodash/fp/ary.js -node_modules/lodash/fp/assign.js -node_modules/lodash/fp/assignAll.js -node_modules/lodash/fp/assignAllWith.js -node_modules/lodash/fp/assignIn.js -node_modules/lodash/fp/assignInAll.js -node_modules/lodash/fp/assignInAllWith.js -node_modules/lodash/fp/assignInWith.js -node_modules/lodash/fp/assignWith.js -node_modules/lodash/fp/assoc.js -node_modules/lodash/fp/assocPath.js -node_modules/lodash/fp/at.js -node_modules/lodash/fp/attempt.js -node_modules/lodash/fp/before.js -node_modules/lodash/fp/bind.js -node_modules/lodash/fp/bindAll.js -node_modules/lodash/fp/bindKey.js -node_modules/lodash/fp/camelCase.js -node_modules/lodash/fp/capitalize.js -node_modules/lodash/fp/castArray.js -node_modules/lodash/fp/ceil.js -node_modules/lodash/fp/chain.js -node_modules/lodash/fp/chunk.js -node_modules/lodash/fp/clamp.js -node_modules/lodash/fp/clone.js -node_modules/lodash/fp/cloneDeep.js -node_modules/lodash/fp/cloneDeepWith.js -node_modules/lodash/fp/cloneWith.js -node_modules/lodash/fp/collection.js -node_modules/lodash/fp/commit.js -node_modules/lodash/fp/compact.js -node_modules/lodash/fp/complement.js -node_modules/lodash/fp/compose.js -node_modules/lodash/fp/concat.js -node_modules/lodash/fp/cond.js -node_modules/lodash/fp/conforms.js -node_modules/lodash/fp/conformsTo.js -node_modules/lodash/fp/constant.js -node_modules/lodash/fp/contains.js -node_modules/lodash/fp/convert.js -node_modules/lodash/fp/countBy.js -node_modules/lodash/fp/create.js -node_modules/lodash/fp/curry.js -node_modules/lodash/fp/curryN.js -node_modules/lodash/fp/curryRight.js -node_modules/lodash/fp/curryRightN.js -node_modules/lodash/fp/date.js -node_modules/lodash/fp/debounce.js -node_modules/lodash/fp/deburr.js -node_modules/lodash/fp/defaults.js -node_modules/lodash/fp/defaultsAll.js -node_modules/lodash/fp/defaultsDeep.js -node_modules/lodash/fp/defaultsDeepAll.js -node_modules/lodash/fp/defaultTo.js -node_modules/lodash/fp/defer.js -node_modules/lodash/fp/delay.js -node_modules/lodash/fp/difference.js -node_modules/lodash/fp/differenceBy.js -node_modules/lodash/fp/differenceWith.js -node_modules/lodash/fp/dissoc.js -node_modules/lodash/fp/dissocPath.js -node_modules/lodash/fp/divide.js -node_modules/lodash/fp/drop.js -node_modules/lodash/fp/dropLast.js -node_modules/lodash/fp/dropLastWhile.js -node_modules/lodash/fp/dropRight.js -node_modules/lodash/fp/dropRightWhile.js -node_modules/lodash/fp/dropWhile.js -node_modules/lodash/fp/each.js -node_modules/lodash/fp/eachRight.js -node_modules/lodash/fp/endsWith.js -node_modules/lodash/fp/entries.js -node_modules/lodash/fp/entriesIn.js -node_modules/lodash/fp/eq.js -node_modules/lodash/fp/equals.js -node_modules/lodash/fp/escape.js -node_modules/lodash/fp/escapeRegExp.js -node_modules/lodash/fp/every.js -node_modules/lodash/fp/extend.js -node_modules/lodash/fp/extendAll.js -node_modules/lodash/fp/extendAllWith.js -node_modules/lodash/fp/extendWith.js -node_modules/lodash/fp/F.js -node_modules/lodash/fp/fill.js -node_modules/lodash/fp/filter.js -node_modules/lodash/fp/find.js -node_modules/lodash/fp/findFrom.js -node_modules/lodash/fp/findIndex.js -node_modules/lodash/fp/findIndexFrom.js -node_modules/lodash/fp/findKey.js -node_modules/lodash/fp/findLast.js -node_modules/lodash/fp/findLastFrom.js -node_modules/lodash/fp/findLastIndex.js -node_modules/lodash/fp/findLastIndexFrom.js -node_modules/lodash/fp/findLastKey.js -node_modules/lodash/fp/first.js -node_modules/lodash/fp/flatMap.js -node_modules/lodash/fp/flatMapDeep.js -node_modules/lodash/fp/flatMapDepth.js -node_modules/lodash/fp/flatten.js -node_modules/lodash/fp/flattenDeep.js -node_modules/lodash/fp/flattenDepth.js -node_modules/lodash/fp/flip.js -node_modules/lodash/fp/floor.js -node_modules/lodash/fp/flow.js -node_modules/lodash/fp/flowRight.js -node_modules/lodash/fp/forEach.js -node_modules/lodash/fp/forEachRight.js -node_modules/lodash/fp/forIn.js -node_modules/lodash/fp/forInRight.js -node_modules/lodash/fp/forOwn.js -node_modules/lodash/fp/forOwnRight.js -node_modules/lodash/fp/fromPairs.js -node_modules/lodash/fp/function.js -node_modules/lodash/fp/functions.js -node_modules/lodash/fp/functionsIn.js -node_modules/lodash/fp/get.js -node_modules/lodash/fp/getOr.js -node_modules/lodash/fp/groupBy.js -node_modules/lodash/fp/gt.js -node_modules/lodash/fp/gte.js -node_modules/lodash/fp/has.js -node_modules/lodash/fp/hasIn.js -node_modules/lodash/fp/head.js -node_modules/lodash/fp/identical.js -node_modules/lodash/fp/identity.js -node_modules/lodash/fp/includes.js -node_modules/lodash/fp/includesFrom.js -node_modules/lodash/fp/indexBy.js -node_modules/lodash/fp/indexOf.js -node_modules/lodash/fp/indexOfFrom.js -node_modules/lodash/fp/init.js -node_modules/lodash/fp/initial.js -node_modules/lodash/fp/inRange.js -node_modules/lodash/fp/intersection.js -node_modules/lodash/fp/intersectionBy.js -node_modules/lodash/fp/intersectionWith.js -node_modules/lodash/fp/invert.js -node_modules/lodash/fp/invertBy.js -node_modules/lodash/fp/invertObj.js -node_modules/lodash/fp/invoke.js -node_modules/lodash/fp/invokeArgs.js -node_modules/lodash/fp/invokeArgsMap.js -node_modules/lodash/fp/invokeMap.js -node_modules/lodash/fp/isArguments.js -node_modules/lodash/fp/isArray.js -node_modules/lodash/fp/isArrayBuffer.js -node_modules/lodash/fp/isArrayLike.js -node_modules/lodash/fp/isArrayLikeObject.js -node_modules/lodash/fp/isBoolean.js -node_modules/lodash/fp/isBuffer.js -node_modules/lodash/fp/isDate.js -node_modules/lodash/fp/isElement.js -node_modules/lodash/fp/isEmpty.js -node_modules/lodash/fp/isEqual.js -node_modules/lodash/fp/isEqualWith.js -node_modules/lodash/fp/isError.js -node_modules/lodash/fp/isFinite.js -node_modules/lodash/fp/isFunction.js -node_modules/lodash/fp/isInteger.js -node_modules/lodash/fp/isLength.js -node_modules/lodash/fp/isMap.js -node_modules/lodash/fp/isMatch.js -node_modules/lodash/fp/isMatchWith.js -node_modules/lodash/fp/isNaN.js -node_modules/lodash/fp/isNative.js -node_modules/lodash/fp/isNil.js -node_modules/lodash/fp/isNull.js -node_modules/lodash/fp/isNumber.js -node_modules/lodash/fp/isObject.js -node_modules/lodash/fp/isObjectLike.js -node_modules/lodash/fp/isPlainObject.js -node_modules/lodash/fp/isRegExp.js -node_modules/lodash/fp/isSafeInteger.js -node_modules/lodash/fp/isSet.js -node_modules/lodash/fp/isString.js -node_modules/lodash/fp/isSymbol.js -node_modules/lodash/fp/isTypedArray.js -node_modules/lodash/fp/isUndefined.js -node_modules/lodash/fp/isWeakMap.js -node_modules/lodash/fp/isWeakSet.js -node_modules/lodash/fp/iteratee.js -node_modules/lodash/fp/join.js -node_modules/lodash/fp/juxt.js -node_modules/lodash/fp/kebabCase.js -node_modules/lodash/fp/keyBy.js -node_modules/lodash/fp/keys.js -node_modules/lodash/fp/keysIn.js -node_modules/lodash/fp/lang.js -node_modules/lodash/fp/last.js -node_modules/lodash/fp/lastIndexOf.js -node_modules/lodash/fp/lastIndexOfFrom.js -node_modules/lodash/fp/lowerCase.js -node_modules/lodash/fp/lowerFirst.js -node_modules/lodash/fp/lt.js -node_modules/lodash/fp/lte.js -node_modules/lodash/fp/map.js -node_modules/lodash/fp/mapKeys.js -node_modules/lodash/fp/mapValues.js -node_modules/lodash/fp/matches.js -node_modules/lodash/fp/matchesProperty.js -node_modules/lodash/fp/math.js -node_modules/lodash/fp/max.js -node_modules/lodash/fp/maxBy.js -node_modules/lodash/fp/mean.js -node_modules/lodash/fp/meanBy.js -node_modules/lodash/fp/memoize.js -node_modules/lodash/fp/merge.js -node_modules/lodash/fp/mergeAll.js -node_modules/lodash/fp/mergeAllWith.js -node_modules/lodash/fp/mergeWith.js -node_modules/lodash/fp/method.js -node_modules/lodash/fp/methodOf.js -node_modules/lodash/fp/min.js -node_modules/lodash/fp/minBy.js -node_modules/lodash/fp/mixin.js -node_modules/lodash/fp/multiply.js -node_modules/lodash/fp/nAry.js -node_modules/lodash/fp/negate.js -node_modules/lodash/fp/next.js -node_modules/lodash/fp/noop.js -node_modules/lodash/fp/now.js -node_modules/lodash/fp/nth.js -node_modules/lodash/fp/nthArg.js -node_modules/lodash/fp/number.js -node_modules/lodash/fp/object.js -node_modules/lodash/fp/omit.js -node_modules/lodash/fp/omitAll.js -node_modules/lodash/fp/omitBy.js -node_modules/lodash/fp/once.js -node_modules/lodash/fp/orderBy.js -node_modules/lodash/fp/over.js -node_modules/lodash/fp/overArgs.js -node_modules/lodash/fp/overEvery.js -node_modules/lodash/fp/overSome.js -node_modules/lodash/fp/pad.js -node_modules/lodash/fp/padChars.js -node_modules/lodash/fp/padCharsEnd.js -node_modules/lodash/fp/padCharsStart.js -node_modules/lodash/fp/padEnd.js -node_modules/lodash/fp/padStart.js -node_modules/lodash/fp/parseInt.js -node_modules/lodash/fp/partial.js -node_modules/lodash/fp/partialRight.js -node_modules/lodash/fp/partition.js -node_modules/lodash/fp/path.js -node_modules/lodash/fp/pathEq.js -node_modules/lodash/fp/pathOr.js -node_modules/lodash/fp/paths.js -node_modules/lodash/fp/pick.js -node_modules/lodash/fp/pickAll.js -node_modules/lodash/fp/pickBy.js -node_modules/lodash/fp/pipe.js -node_modules/lodash/fp/placeholder.js -node_modules/lodash/fp/plant.js -node_modules/lodash/fp/pluck.js -node_modules/lodash/fp/prop.js -node_modules/lodash/fp/propEq.js -node_modules/lodash/fp/property.js -node_modules/lodash/fp/propertyOf.js -node_modules/lodash/fp/propOr.js -node_modules/lodash/fp/props.js -node_modules/lodash/fp/pull.js -node_modules/lodash/fp/pullAll.js -node_modules/lodash/fp/pullAllBy.js -node_modules/lodash/fp/pullAllWith.js -node_modules/lodash/fp/pullAt.js -node_modules/lodash/fp/random.js -node_modules/lodash/fp/range.js -node_modules/lodash/fp/rangeRight.js -node_modules/lodash/fp/rangeStep.js -node_modules/lodash/fp/rangeStepRight.js -node_modules/lodash/fp/rearg.js -node_modules/lodash/fp/reduce.js -node_modules/lodash/fp/reduceRight.js -node_modules/lodash/fp/reject.js -node_modules/lodash/fp/remove.js -node_modules/lodash/fp/repeat.js -node_modules/lodash/fp/replace.js -node_modules/lodash/fp/rest.js -node_modules/lodash/fp/restFrom.js -node_modules/lodash/fp/result.js -node_modules/lodash/fp/reverse.js -node_modules/lodash/fp/round.js -node_modules/lodash/fp/sample.js -node_modules/lodash/fp/sampleSize.js -node_modules/lodash/fp/seq.js -node_modules/lodash/fp/set.js -node_modules/lodash/fp/setWith.js -node_modules/lodash/fp/shuffle.js -node_modules/lodash/fp/size.js -node_modules/lodash/fp/slice.js -node_modules/lodash/fp/snakeCase.js -node_modules/lodash/fp/some.js -node_modules/lodash/fp/sortBy.js -node_modules/lodash/fp/sortedIndex.js -node_modules/lodash/fp/sortedIndexBy.js -node_modules/lodash/fp/sortedIndexOf.js -node_modules/lodash/fp/sortedLastIndex.js -node_modules/lodash/fp/sortedLastIndexBy.js -node_modules/lodash/fp/sortedLastIndexOf.js -node_modules/lodash/fp/sortedUniq.js -node_modules/lodash/fp/sortedUniqBy.js -node_modules/lodash/fp/split.js -node_modules/lodash/fp/spread.js -node_modules/lodash/fp/spreadFrom.js -node_modules/lodash/fp/startCase.js -node_modules/lodash/fp/startsWith.js -node_modules/lodash/fp/string.js -node_modules/lodash/fp/stubArray.js -node_modules/lodash/fp/stubFalse.js -node_modules/lodash/fp/stubObject.js -node_modules/lodash/fp/stubString.js -node_modules/lodash/fp/stubTrue.js -node_modules/lodash/fp/subtract.js -node_modules/lodash/fp/sum.js -node_modules/lodash/fp/sumBy.js -node_modules/lodash/fp/symmetricDifference.js -node_modules/lodash/fp/symmetricDifferenceBy.js -node_modules/lodash/fp/symmetricDifferenceWith.js -node_modules/lodash/fp/T.js -node_modules/lodash/fp/tail.js -node_modules/lodash/fp/take.js -node_modules/lodash/fp/takeLast.js -node_modules/lodash/fp/takeLastWhile.js -node_modules/lodash/fp/takeRight.js -node_modules/lodash/fp/takeRightWhile.js -node_modules/lodash/fp/takeWhile.js -node_modules/lodash/fp/tap.js -node_modules/lodash/fp/template.js -node_modules/lodash/fp/templateSettings.js -node_modules/lodash/fp/throttle.js -node_modules/lodash/fp/thru.js -node_modules/lodash/fp/times.js -node_modules/lodash/fp/toArray.js -node_modules/lodash/fp/toFinite.js -node_modules/lodash/fp/toInteger.js -node_modules/lodash/fp/toIterator.js -node_modules/lodash/fp/toJSON.js -node_modules/lodash/fp/toLength.js -node_modules/lodash/fp/toLower.js -node_modules/lodash/fp/toNumber.js -node_modules/lodash/fp/toPairs.js -node_modules/lodash/fp/toPairsIn.js -node_modules/lodash/fp/toPath.js -node_modules/lodash/fp/toPlainObject.js -node_modules/lodash/fp/toSafeInteger.js -node_modules/lodash/fp/toString.js -node_modules/lodash/fp/toUpper.js -node_modules/lodash/fp/transform.js -node_modules/lodash/fp/trim.js -node_modules/lodash/fp/trimChars.js -node_modules/lodash/fp/trimCharsEnd.js -node_modules/lodash/fp/trimCharsStart.js -node_modules/lodash/fp/trimEnd.js -node_modules/lodash/fp/trimStart.js -node_modules/lodash/fp/truncate.js -node_modules/lodash/fp/unapply.js -node_modules/lodash/fp/unary.js -node_modules/lodash/fp/unescape.js -node_modules/lodash/fp/union.js -node_modules/lodash/fp/unionBy.js -node_modules/lodash/fp/unionWith.js -node_modules/lodash/fp/uniq.js -node_modules/lodash/fp/uniqBy.js -node_modules/lodash/fp/uniqueId.js -node_modules/lodash/fp/uniqWith.js -node_modules/lodash/fp/unnest.js -node_modules/lodash/fp/unset.js -node_modules/lodash/fp/unzip.js -node_modules/lodash/fp/unzipWith.js -node_modules/lodash/fp/update.js -node_modules/lodash/fp/updateWith.js -node_modules/lodash/fp/upperCase.js -node_modules/lodash/fp/upperFirst.js -node_modules/lodash/fp/useWith.js -node_modules/lodash/fp/util.js -node_modules/lodash/fp/value.js -node_modules/lodash/fp/valueOf.js -node_modules/lodash/fp/values.js -node_modules/lodash/fp/valuesIn.js -node_modules/lodash/fp/where.js -node_modules/lodash/fp/whereEq.js -node_modules/lodash/fp/without.js -node_modules/lodash/fp/words.js -node_modules/lodash/fp/wrap.js -node_modules/lodash/fp/wrapperAt.js -node_modules/lodash/fp/wrapperChain.js -node_modules/lodash/fp/wrapperLodash.js -node_modules/lodash/fp/wrapperReverse.js -node_modules/lodash/fp/wrapperValue.js -node_modules/lodash/fp/xor.js -node_modules/lodash/fp/xorBy.js -node_modules/lodash/fp/xorWith.js -node_modules/lodash/fp/zip.js -node_modules/lodash/fp/zipAll.js -node_modules/lodash/fp/zipObj.js -node_modules/lodash/fp/zipObject.js -node_modules/lodash/fp/zipObjectDeep.js -node_modules/lodash/fp/zipWith.js -node_modules/minimatch/LICENSE -node_modules/minimatch/minimatch.js -node_modules/minimatch/package.json -node_modules/minimatch/README.md -node_modules/minimist/.travis.yml -node_modules/minimist/index.js -node_modules/minimist/LICENSE -node_modules/minimist/package.json -node_modules/minimist/readme.markdown -node_modules/minimist/example/parse.js -node_modules/minimist/test/all_bool.js -node_modules/minimist/test/bool.js -node_modules/minimist/test/dash.js -node_modules/minimist/test/default_bool.js -node_modules/minimist/test/dotted.js -node_modules/minimist/test/kv_short.js -node_modules/minimist/test/long.js -node_modules/minimist/test/num.js -node_modules/minimist/test/parse_modified.js -node_modules/minimist/test/parse.js -node_modules/minimist/test/proto.js -node_modules/minimist/test/short.js -node_modules/minimist/test/stop_early.js -node_modules/minimist/test/unknown.js -node_modules/minimist/test/whitespace.js -node_modules/mkdirp/index.js -node_modules/mkdirp/LICENSE -node_modules/mkdirp/package.json -node_modules/mkdirp/readme.markdown -node_modules/mkdirp/bin/cmd.js -node_modules/mkdirp/bin/usage.txt -node_modules/ms/index.js -node_modules/ms/license.md -node_modules/ms/package.json -node_modules/ms/readme.md -node_modules/natural-compare/index.js -node_modules/natural-compare/package.json -node_modules/natural-compare/README.md -node_modules/once/LICENSE -node_modules/once/once.js -node_modules/once/package.json -node_modules/once/README.md -node_modules/optionator/CHANGELOG.md -node_modules/optionator/LICENSE -node_modules/optionator/package.json -node_modules/optionator/README.md -node_modules/optionator/lib/help.js -node_modules/optionator/lib/index.js -node_modules/optionator/lib/util.js -node_modules/parent-module/index.js -node_modules/parent-module/license -node_modules/parent-module/package.json -node_modules/parent-module/readme.md -node_modules/path-is-absolute/index.js -node_modules/path-is-absolute/license -node_modules/path-is-absolute/package.json -node_modules/path-is-absolute/readme.md -node_modules/path-key/index.d.ts -node_modules/path-key/index.js -node_modules/path-key/license -node_modules/path-key/package.json -node_modules/path-key/readme.md -node_modules/prelude-ls/CHANGELOG.md -node_modules/prelude-ls/LICENSE -node_modules/prelude-ls/package.json -node_modules/prelude-ls/README.md -node_modules/prelude-ls/lib/Func.js -node_modules/prelude-ls/lib/index.js -node_modules/prelude-ls/lib/List.js -node_modules/prelude-ls/lib/Num.js -node_modules/prelude-ls/lib/Obj.js -node_modules/prelude-ls/lib/Str.js -node_modules/progress/CHANGELOG.md -node_modules/progress/index.js -node_modules/progress/LICENSE -node_modules/progress/Makefile -node_modules/progress/package.json -node_modules/progress/Readme.md -node_modules/progress/lib/node-progress.js -node_modules/punycode/LICENSE-MIT.txt -node_modules/punycode/package.json -node_modules/punycode/punycode.es6.js -node_modules/punycode/punycode.js -node_modules/punycode/README.md -node_modules/regexpp/index.d.ts -node_modules/regexpp/index.js -node_modules/regexpp/index.js.map -node_modules/regexpp/index.mjs -node_modules/regexpp/index.mjs.map -node_modules/regexpp/LICENSE -node_modules/regexpp/package.json -node_modules/regexpp/README.md -node_modules/resolve-from/index.js -node_modules/resolve-from/license -node_modules/resolve-from/package.json -node_modules/resolve-from/readme.md -node_modules/rimraf/bin.js -node_modules/rimraf/LICENSE -node_modules/rimraf/package.json -node_modules/rimraf/README.md -node_modules/rimraf/rimraf.js -node_modules/semver/CHANGELOG.md -node_modules/semver/index.js -node_modules/semver/LICENSE -node_modules/semver/package.json -node_modules/semver/preload.js -node_modules/semver/range.bnf -node_modules/semver/README.md -node_modules/semver/bin/semver.js -node_modules/semver/classes/comparator.js -node_modules/semver/classes/index.js -node_modules/semver/classes/range.js -node_modules/semver/classes/semver.js -node_modules/semver/functions/clean.js -node_modules/semver/functions/cmp.js -node_modules/semver/functions/coerce.js -node_modules/semver/functions/compare-build.js -node_modules/semver/functions/compare-loose.js -node_modules/semver/functions/compare.js -node_modules/semver/functions/diff.js -node_modules/semver/functions/eq.js -node_modules/semver/functions/gt.js -node_modules/semver/functions/gte.js -node_modules/semver/functions/inc.js -node_modules/semver/functions/lt.js -node_modules/semver/functions/lte.js -node_modules/semver/functions/major.js -node_modules/semver/functions/minor.js -node_modules/semver/functions/neq.js -node_modules/semver/functions/parse.js -node_modules/semver/functions/patch.js -node_modules/semver/functions/prerelease.js -node_modules/semver/functions/rcompare.js -node_modules/semver/functions/rsort.js -node_modules/semver/functions/satisfies.js -node_modules/semver/functions/sort.js -node_modules/semver/functions/valid.js -node_modules/semver/internal/constants.js -node_modules/semver/internal/debug.js -node_modules/semver/internal/identifiers.js -node_modules/semver/internal/re.js -node_modules/semver/ranges/gtr.js -node_modules/semver/ranges/intersects.js -node_modules/semver/ranges/ltr.js -node_modules/semver/ranges/max-satisfying.js -node_modules/semver/ranges/min-satisfying.js -node_modules/semver/ranges/min-version.js -node_modules/semver/ranges/outside.js -node_modules/semver/ranges/simplify.js -node_modules/semver/ranges/subset.js -node_modules/semver/ranges/to-comparators.js -node_modules/semver/ranges/valid.js -node_modules/shebang-command/index.js -node_modules/shebang-command/license -node_modules/shebang-command/package.json -node_modules/shebang-command/readme.md -node_modules/shebang-regex/index.d.ts -node_modules/shebang-regex/index.js -node_modules/shebang-regex/license -node_modules/shebang-regex/package.json -node_modules/shebang-regex/readme.md -node_modules/slice-ansi/index.js -node_modules/slice-ansi/license -node_modules/slice-ansi/package.json -node_modules/slice-ansi/readme.md -node_modules/sprintf-js/.npmignore -node_modules/sprintf-js/bower.json -node_modules/sprintf-js/gruntfile.js -node_modules/sprintf-js/LICENSE -node_modules/sprintf-js/package.json -node_modules/sprintf-js/README.md -node_modules/sprintf-js/demo/angular.html -node_modules/sprintf-js/dist/angular-sprintf.min.js -node_modules/sprintf-js/dist/angular-sprintf.min.js.map -node_modules/sprintf-js/dist/angular-sprintf.min.map -node_modules/sprintf-js/dist/sprintf.min.js -node_modules/sprintf-js/dist/sprintf.min.js.map -node_modules/sprintf-js/dist/sprintf.min.map -node_modules/sprintf-js/src/angular-sprintf.js -node_modules/sprintf-js/src/sprintf.js -node_modules/sprintf-js/test/test.js -node_modules/string-width/index.js -node_modules/string-width/license -node_modules/string-width/package.json -node_modules/string-width/readme.md -node_modules/string-width/node_modules/ansi-regex/index.js -node_modules/string-width/node_modules/ansi-regex/license -node_modules/string-width/node_modules/ansi-regex/package.json -node_modules/string-width/node_modules/ansi-regex/readme.md -node_modules/string-width/node_modules/strip-ansi/index.d.ts -node_modules/string-width/node_modules/strip-ansi/index.js -node_modules/string-width/node_modules/strip-ansi/license -node_modules/string-width/node_modules/strip-ansi/package.json -node_modules/string-width/node_modules/strip-ansi/readme.md -node_modules/strip-ansi/index.d.ts -node_modules/strip-ansi/index.js -node_modules/strip-ansi/license -node_modules/strip-ansi/package.json -node_modules/strip-ansi/readme.md -node_modules/strip-json-comments/index.d.ts -node_modules/strip-json-comments/index.js -node_modules/strip-json-comments/license -node_modules/strip-json-comments/package.json -node_modules/strip-json-comments/readme.md -node_modules/supports-color/browser.js -node_modules/supports-color/index.js -node_modules/supports-color/license -node_modules/supports-color/package.json -node_modules/supports-color/readme.md -node_modules/table/LICENSE -node_modules/table/package.json -node_modules/table/README.md -node_modules/table/dist/alignString.js -node_modules/table/dist/alignString.js.flow -node_modules/table/dist/alignString.js.map -node_modules/table/dist/alignTableData.js -node_modules/table/dist/alignTableData.js.flow -node_modules/table/dist/alignTableData.js.map -node_modules/table/dist/calculateCellHeight.js -node_modules/table/dist/calculateCellHeight.js.flow -node_modules/table/dist/calculateCellHeight.js.map -node_modules/table/dist/calculateCellWidthIndex.js -node_modules/table/dist/calculateCellWidthIndex.js.flow -node_modules/table/dist/calculateCellWidthIndex.js.map -node_modules/table/dist/calculateMaximumColumnWidthIndex.js -node_modules/table/dist/calculateMaximumColumnWidthIndex.js.flow -node_modules/table/dist/calculateMaximumColumnWidthIndex.js.map -node_modules/table/dist/calculateRowHeightIndex.js -node_modules/table/dist/calculateRowHeightIndex.js.flow -node_modules/table/dist/calculateRowHeightIndex.js.map -node_modules/table/dist/createStream.js -node_modules/table/dist/createStream.js.flow -node_modules/table/dist/createStream.js.map -node_modules/table/dist/drawBorder.js -node_modules/table/dist/drawBorder.js.flow -node_modules/table/dist/drawBorder.js.map -node_modules/table/dist/drawRow.js -node_modules/table/dist/drawRow.js.flow -node_modules/table/dist/drawRow.js.map -node_modules/table/dist/drawTable.js -node_modules/table/dist/drawTable.js.flow -node_modules/table/dist/drawTable.js.map -node_modules/table/dist/getBorderCharacters.js -node_modules/table/dist/getBorderCharacters.js.flow -node_modules/table/dist/getBorderCharacters.js.map -node_modules/table/dist/index.js -node_modules/table/dist/index.js.flow -node_modules/table/dist/index.js.map -node_modules/table/dist/makeConfig.js -node_modules/table/dist/makeConfig.js.flow -node_modules/table/dist/makeConfig.js.map -node_modules/table/dist/makeStreamConfig.js -node_modules/table/dist/makeStreamConfig.js.flow -node_modules/table/dist/makeStreamConfig.js.map -node_modules/table/dist/mapDataUsingRowHeightIndex.js -node_modules/table/dist/mapDataUsingRowHeightIndex.js.flow -node_modules/table/dist/mapDataUsingRowHeightIndex.js.map -node_modules/table/dist/padTableData.js -node_modules/table/dist/padTableData.js.flow -node_modules/table/dist/padTableData.js.map -node_modules/table/dist/stringifyTableData.js -node_modules/table/dist/stringifyTableData.js.flow -node_modules/table/dist/stringifyTableData.js.map -node_modules/table/dist/table.js -node_modules/table/dist/table.js.flow -node_modules/table/dist/table.js.map -node_modules/table/dist/truncateTableData.js -node_modules/table/dist/truncateTableData.js.flow -node_modules/table/dist/truncateTableData.js.map -node_modules/table/dist/validateConfig.js -node_modules/table/dist/validateConfig.js.flow -node_modules/table/dist/validateConfig.js.map -node_modules/table/dist/validateStreamConfig.js -node_modules/table/dist/validateTableData.js -node_modules/table/dist/validateTableData.js.flow -node_modules/table/dist/validateTableData.js.map -node_modules/table/dist/wrapCell.js -node_modules/table/dist/wrapCell.js.flow -node_modules/table/dist/wrapCell.js.map -node_modules/table/dist/wrapString.js -node_modules/table/dist/wrapString.js.flow -node_modules/table/dist/wrapString.js.map -node_modules/table/dist/wrapWord.js -node_modules/table/dist/wrapWord.js.flow -node_modules/table/dist/wrapWord.js.map -node_modules/table/dist/schemas/config.json -node_modules/table/dist/schemas/streamConfig.json -node_modules/text-table/.travis.yml -node_modules/text-table/index.js -node_modules/text-table/LICENSE -node_modules/text-table/package.json -node_modules/text-table/readme.markdown -node_modules/text-table/example/align.js -node_modules/text-table/example/center.js -node_modules/text-table/example/dotalign.js -node_modules/text-table/example/doubledot.js -node_modules/text-table/example/table.js -node_modules/text-table/test/align.js -node_modules/text-table/test/ansi-colors.js -node_modules/text-table/test/center.js -node_modules/text-table/test/dotalign.js -node_modules/text-table/test/doubledot.js -node_modules/text-table/test/table.js -node_modules/type-check/LICENSE -node_modules/type-check/package.json -node_modules/type-check/README.md -node_modules/type-check/lib/check.js -node_modules/type-check/lib/index.js -node_modules/type-check/lib/parse-type.js -node_modules/type-fest/index.d.ts -node_modules/type-fest/license -node_modules/type-fest/package.json -node_modules/type-fest/readme.md -node_modules/type-fest/source/basic.d.ts -node_modules/type-fest/source/except.d.ts -node_modules/type-fest/source/literal-union.d.ts -node_modules/type-fest/source/merge-exclusive.d.ts -node_modules/type-fest/source/merge.d.ts -node_modules/type-fest/source/mutable.d.ts -node_modules/type-fest/source/opaque.d.ts -node_modules/type-fest/source/package-json.d.ts -node_modules/type-fest/source/partial-deep.d.ts -node_modules/type-fest/source/promisable.d.ts -node_modules/type-fest/source/readonly-deep.d.ts -node_modules/type-fest/source/require-at-least-one.d.ts -node_modules/type-fest/source/require-exactly-one.d.ts -node_modules/type-fest/source/set-optional.d.ts -node_modules/type-fest/source/set-required.d.ts -node_modules/uri-js/LICENSE -node_modules/uri-js/package.json -node_modules/uri-js/README.md -node_modules/uri-js/yarn.lock -node_modules/uri-js/dist/es5/uri.all.d.ts -node_modules/uri-js/dist/es5/uri.all.js -node_modules/uri-js/dist/es5/uri.all.js.map -node_modules/uri-js/dist/es5/uri.all.min.d.ts -node_modules/uri-js/dist/es5/uri.all.min.js -node_modules/uri-js/dist/es5/uri.all.min.js.map -node_modules/uri-js/dist/esnext/index.d.ts -node_modules/uri-js/dist/esnext/index.js -node_modules/uri-js/dist/esnext/index.js.map -node_modules/uri-js/dist/esnext/regexps-iri.d.ts -node_modules/uri-js/dist/esnext/regexps-iri.js -node_modules/uri-js/dist/esnext/regexps-iri.js.map -node_modules/uri-js/dist/esnext/regexps-uri.d.ts -node_modules/uri-js/dist/esnext/regexps-uri.js -node_modules/uri-js/dist/esnext/regexps-uri.js.map -node_modules/uri-js/dist/esnext/uri.d.ts -node_modules/uri-js/dist/esnext/uri.js -node_modules/uri-js/dist/esnext/uri.js.map -node_modules/uri-js/dist/esnext/util.d.ts -node_modules/uri-js/dist/esnext/util.js -node_modules/uri-js/dist/esnext/util.js.map -node_modules/uri-js/dist/esnext/schemes/http.d.ts -node_modules/uri-js/dist/esnext/schemes/http.js -node_modules/uri-js/dist/esnext/schemes/http.js.map -node_modules/uri-js/dist/esnext/schemes/https.d.ts -node_modules/uri-js/dist/esnext/schemes/https.js -node_modules/uri-js/dist/esnext/schemes/https.js.map -node_modules/uri-js/dist/esnext/schemes/mailto.d.ts -node_modules/uri-js/dist/esnext/schemes/mailto.js -node_modules/uri-js/dist/esnext/schemes/mailto.js.map -node_modules/uri-js/dist/esnext/schemes/urn-uuid.d.ts -node_modules/uri-js/dist/esnext/schemes/urn-uuid.js -node_modules/uri-js/dist/esnext/schemes/urn-uuid.js.map -node_modules/uri-js/dist/esnext/schemes/urn.d.ts -node_modules/uri-js/dist/esnext/schemes/urn.js -node_modules/uri-js/dist/esnext/schemes/urn.js.map -node_modules/uri-js/dist/esnext/schemes/ws.d.ts -node_modules/uri-js/dist/esnext/schemes/ws.js -node_modules/uri-js/dist/esnext/schemes/ws.js.map -node_modules/uri-js/dist/esnext/schemes/wss.d.ts -node_modules/uri-js/dist/esnext/schemes/wss.js -node_modules/uri-js/dist/esnext/schemes/wss.js.map -node_modules/v8-compile-cache/CHANGELOG.md -node_modules/v8-compile-cache/LICENSE -node_modules/v8-compile-cache/package.json -node_modules/v8-compile-cache/README.md -node_modules/v8-compile-cache/v8-compile-cache.js -node_modules/which/CHANGELOG.md -node_modules/which/LICENSE -node_modules/which/package.json -node_modules/which/README.md -node_modules/which/which.js -node_modules/which/bin/node-which -node_modules/word-wrap/index.d.ts -node_modules/word-wrap/index.js -node_modules/word-wrap/LICENSE -node_modules/word-wrap/package.json -node_modules/word-wrap/README.md -node_modules/wrappy/LICENSE -node_modules/wrappy/package.json -node_modules/wrappy/README.md -node_modules/wrappy/wrappy.js -node_modules/write/index.js -node_modules/write/LICENSE -node_modules/write/package.json -node_modules/write/README.md +node_modules/* diff --git a/components/driver_bt/bt_app_sink.c b/components/driver_bt/bt_app_sink.c index 211f265f..136fb5ca 100644 --- a/components/driver_bt/bt_app_sink.c +++ b/components/driver_bt/bt_app_sink.c @@ -558,7 +558,7 @@ void bt_sink_init(bt_cmd_vcb_t cmd_cb, bt_data_cb_t data_cb) cmd_handler_chain = cmd_cb; bt_app_a2d_data_cb = data_cb; - ESP_ERROR_CHECK(esp_bt_controller_mem_release(ESP_BT_MODE_BLE)); + esp_bt_controller_mem_release(ESP_BT_MODE_BLE); esp_bt_controller_config_t bt_cfg = BT_CONTROLLER_INIT_CONFIG_DEFAULT(); if ((err = esp_bt_controller_init(&bt_cfg)) != ESP_OK) { diff --git a/components/driver_bt/bt_app_source.c b/components/driver_bt/bt_app_source.c index 696f4f7a..302ea39d 100644 --- a/components/driver_bt/bt_app_source.c +++ b/components/driver_bt/bt_app_source.c @@ -189,13 +189,13 @@ static void peers_list_maintain(const char * s_peer_bdname, int32_t rssi){ free(list_json); } } - + int bt_app_source_get_a2d_state(){ - ESP_LOGW(TAG,"a2dp status: %u = %s", bt_app_source_a2d_state, APP_AV_STATE_DESC[bt_app_source_a2d_state]); + ESP_LOGD(TAG,"a2dp status: %u = %s", bt_app_source_a2d_state, APP_AV_STATE_DESC[bt_app_source_a2d_state]); return bt_app_source_a2d_state; } int bt_app_source_get_media_state(){ - ESP_LOGW(TAG,"media state : %u ", bt_app_source_media_state); + ESP_LOGD(TAG,"media state : %u ", bt_app_source_media_state); return bt_app_source_media_state; } void set_app_source_state(int new_state){ diff --git a/components/platform_console/cmd_config.c b/components/platform_console/cmd_config.c index af342144..f3834832 100644 --- a/components/platform_console/cmd_config.c +++ b/components/platform_console/cmd_config.c @@ -139,7 +139,6 @@ static struct { // " \t\t\t b = basic linear interpolation, l = 13 taps, m = 21 taps, i = interpolate filter coefficients\n" #endif struct arg_int * rate;// " -Z \t\tReport rate to server in helo as the maximum sample rate we can support\n" - struct arg_end *end; } squeezelite_args; @@ -266,7 +265,6 @@ char * strip_bt_name(char * opt_str) pch = strtok(NULL, " "); ESP_LOGV(TAG,"\n"); } - } else { diff --git a/components/services/messaging.c b/components/services/messaging.c index ff7f35d0..3a708f54 100644 --- a/components/services/messaging.c +++ b/components/services/messaging.c @@ -120,6 +120,7 @@ const char * messaging_get_class_desc(messaging_classes msg_class){ CASE_TO_STR(MESSAGING_CLASS_SYSTEM); CASE_TO_STR(MESSAGING_CLASS_STATS); CASE_TO_STR(MESSAGING_CLASS_CFGCMD); + CASE_TO_STR(MESSAGING_CLASS_BT); default: return "Unknown"; break; diff --git a/components/wifi-manager/.gitignore b/components/wifi-manager/.gitignore deleted file mode 100644 index e1a40b3c..00000000 --- a/components/wifi-manager/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/.code.js.swp diff --git a/components/wifi-manager/CMakeLists.txt b/components/wifi-manager/CMakeLists.txt index e4539b25..a6782082 100644 --- a/components/wifi-manager/CMakeLists.txt +++ b/components/wifi-manager/CMakeLists.txt @@ -1,8 +1,10 @@ -idf_component_register( SRC_DIRS . - INCLUDE_DIRS . ${IDF_PATH}/components/esp_http_server/src ${IDF_PATH}/components/esp_http_server/src/port/esp32 ${IDF_PATH}/components/esp_http_server/src/util ${IDF_PATH}/components/esp_http_server/src/ + +set( WEBPACK_DIR webapp/webpack/dist ) +idf_component_register( SRC_DIRS . webapp + INCLUDE_DIRS . webapp ${IDF_PATH}/components/esp_http_server/src ${IDF_PATH}/components/esp_http_server/src/port/esp32 ${IDF_PATH}/components/esp_http_server/src/util ${IDF_PATH}/components/esp_http_server/src/ REQUIRES squeezelite-ota json mdns PRIV_REQUIRES tools services platform_config esp_common json newlib freertos spi_flash nvs_flash mdns pthread wpa_supplicant platform_console esp_http_server console driver_bt - EMBED_FILES res/style.css.gz res/code.js.gz index.html res/bootstrap.css.gz res/yeti/bootstrap.css.gz res/jquery.js.gz res/bootstrap.js.gz res/favicon.ico - ) + +include(webapp/webapp.cmake) \ No newline at end of file diff --git a/components/wifi-manager/compress.bat b/components/wifi-manager/compress.bat deleted file mode 100644 index bff6a512..00000000 --- a/components/wifi-manager/compress.bat +++ /dev/null @@ -1,2 +0,0 @@ -gzip index.html style.css jquery.js --best --keep --force -pause \ No newline at end of file diff --git a/components/wifi-manager/connect b/components/wifi-manager/connect deleted file mode 100644 index 8c7fe211..00000000 --- a/components/wifi-manager/connect +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/components/wifi-manager/http_server_handlers.c b/components/wifi-manager/http_server_handlers.c index 203b13fa..9f932c6b 100644 --- a/components/wifi-manager/http_server_handlers.c +++ b/components/wifi-manager/http_server_handlers.c @@ -54,6 +54,7 @@ function to process requests, decode URLs, serve files, etc. etc. #include "argtable3/argtable3.h" #include "platform_console.h" #include "accessors.h" +#include "webapp/webpack.h" #define HTTP_STACK_SIZE (5*1024) const char str_na[]="N/A"; @@ -89,22 +90,7 @@ static const char redirect_payload3[]="'>here to login.

"; * @see file "component.mk" * @see https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html#embedding-binary-data */ -extern const uint8_t style_css_start[] asm("_binary_style_css_gz_start"); -extern const uint8_t style_css_end[] asm("_binary_style_css_gz_end"); -extern const uint8_t jquery_gz_start[] asm("_binary_jquery_js_gz_start"); -extern const uint8_t jquery_gz_end[] asm("_binary_jquery_js_gz_end"); -// extern const uint8_t popper_gz_start[] asm("_binary_popper_min_js_gz_start"); -// extern const uint8_t popper_gz_end[] asm("_binary_popper_min_js_gz_end"); -extern const uint8_t bootstrap_js_gz_start[] asm("_binary_bootstrap_js_gz_start"); -extern const uint8_t bootstrap_js_gz_end[] asm("_binary_bootstrap_js_gz_end"); -extern const uint8_t bootstrap_css_gz_start[] asm("_binary_bootstrap_css_gz_start"); -extern const uint8_t bootstrap_css_gz_end[] asm("_binary_bootstrap_css_gz_end"); -extern const uint8_t code_js_start[] asm("_binary_code_js_gz_start"); -extern const uint8_t code_js_end[] asm("_binary_code_js_gz_end"); -extern const uint8_t index_html_start[] asm("_binary_index_html_start"); -extern const uint8_t index_html_end[] asm("_binary_index_html_end"); -extern const uint8_t favicon_ico_start[] asm("_binary_favicon_ico_start"); -extern const uint8_t favicon_ico_end[] asm("_binary_favicon_ico_end"); + esp_err_t redirect_processor(httpd_req_t *req, httpd_err_code_t error); @@ -334,8 +320,8 @@ static esp_err_t set_content_type_from_file(httpd_req_t *req, const char *filena return httpd_resp_set_type(req, HTTPD_TYPE_TEXT); } else if (IS_FILE_EXT(filename, ".jpeg")) { return httpd_resp_set_type(req, "image/jpeg"); - } else if (IS_FILE_EXT(filename, ".ico")) { - return httpd_resp_set_type(req, "image/x-icon"); + } else if (IS_FILE_EXT(filename, ".png")) { + return httpd_resp_set_type(req, "image/png"); } else if (IS_FILE_EXT(filename, ".ico")) { return httpd_resp_set_type(req, "image/x-icon"); } else if (IS_FILE_EXT(filename, ".css")) { @@ -370,8 +356,16 @@ static esp_err_t set_content_type_from_req(httpd_req_t *req) return ESP_OK; } - +int resource_get_index(const char * fileName){ + for(int i=0;resource_lookups[i][0]!='\0';i++){ + if(strstr(resource_lookups[i], fileName)){ + return i; + } + } + return -1; +} esp_err_t root_get_handler(httpd_req_t *req){ + esp_err_t err = ESP_OK; ESP_LOGD_LOC(TAG, "serving [%s]", req->uri); httpd_resp_set_hdr(req, "Access-Control-Allow-Origin", "*"); httpd_resp_set_hdr(req, "Accept-Encoding", "identity"); @@ -379,15 +373,24 @@ esp_err_t root_get_handler(httpd_req_t *req){ if(!is_user_authenticated(req)){ // todo: send password entry page and return } - const size_t file_size = (index_html_end - index_html_start); - esp_err_t err = set_content_type_from_req(req); - if(err == ESP_OK){ - httpd_resp_send(req, (const char *)index_html_start, file_size); + int idx=-1; + if((idx=resource_get_index("index.html"))>=0){ + const size_t file_size = (resource_map_end[idx] - resource_map_start[idx]); + httpd_resp_set_hdr(req, "Content-Encoding", "gzip"); + err = set_content_type_from_req(req); + if(err == ESP_OK){ + httpd_resp_send(req, (const char *)resource_map_start[idx], file_size); + } + } + else{ + httpd_resp_send_err(req, HTTPD_500_INTERNAL_SERVER_ERROR, "index.html not found"); + return ESP_FAIL; } ESP_LOGD_LOC(TAG, "done serving [%s]", req->uri); return err; } + esp_err_t resource_filehandler(httpd_req_t *req){ char filepath[FILE_PATH_MAX]; ESP_LOGD_LOC(TAG, "serving [%s]", req->uri); @@ -407,41 +410,17 @@ esp_err_t resource_filehandler(httpd_req_t *req){ return ESP_FAIL; } - if(strstr(filename, "code.js")) { + + int idx=-1; + if((idx=resource_get_index(filename))>=0){ set_content_type_from_file(req, filename); - httpd_resp_set_hdr(req, "Content-Encoding", "gzip"); - const size_t file_size = (code_js_end - code_js_start); - httpd_resp_send(req, (const char *)code_js_start, file_size); - } else if(strstr(filename, "style.css")) { - set_content_type_from_file(req, filename); - httpd_resp_set_hdr(req, "Content-Encoding", "gzip"); - const size_t file_size = (style_css_end - style_css_start); - httpd_resp_send(req, (const char *)style_css_start, file_size); - } else if(strstr(filename, "favicon.ico")) { - set_content_type_from_file(req, filename); - const size_t file_size = (favicon_ico_end - favicon_ico_start); - httpd_resp_send(req, (const char *)favicon_ico_start, file_size); - } else if(strstr(filename, "jquery.js")) { - set_content_type_from_file(req, filename); - httpd_resp_set_hdr(req, "Content-Encoding", "gzip"); - const size_t file_size = (jquery_gz_end - jquery_gz_start); - httpd_resp_send(req, (const char *)jquery_gz_start, file_size); - // } else if(strstr(filename, "popper.js")) { - // set_content_type_from_file(req, filename); - // httpd_resp_set_hdr(req, "Content-Encoding", "gzip"); - // const size_t file_size = (popper_gz_end - popper_gz_start); - // httpd_resp_send(req, (const char *)popper_gz_start, file_size); - } else if(strstr(filename, "bootstrap.js")) { - set_content_type_from_file(req, filename); + if(strstr(resource_lookups[idx], ".gz")) { httpd_resp_set_hdr(req, "Content-Encoding", "gzip"); - const size_t file_size = (bootstrap_js_gz_end - bootstrap_js_gz_start); - httpd_resp_send(req, (const char *)bootstrap_js_gz_start, file_size); - } else if(strstr(filename, "bootstrap.css")) { - set_content_type_from_file(req, filename); - httpd_resp_set_hdr(req, "Content-Encoding", "gzip"); - const size_t file_size = (bootstrap_css_gz_end - bootstrap_css_gz_start); - httpd_resp_send(req, (const char *)bootstrap_css_gz_start, file_size); - } else { + } + const size_t file_size = (resource_map_end[idx] - resource_map_start[idx]); + httpd_resp_send(req, (const char *)resource_map_start[idx], file_size); + } + else { ESP_LOGE_LOC(TAG, "Unknown resource [%s] from path [%s] ", filename,filepath); /* Respond with 404 Not Found */ httpd_resp_send_err(req, HTTPD_404_NOT_FOUND, "File does not exist"); diff --git a/components/wifi-manager/index.development.html b/components/wifi-manager/index.development.html deleted file mode 100644 index 3d85dc8b..00000000 --- a/components/wifi-manager/index.development.html +++ /dev/null @@ -1,410 +0,0 @@ - - - - - - - - - - - - - - esp32-wifi-manager - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
-
-
-
-
-

Connected to:

-
-
-
-
-
-
-
-
-

Manual connect

-
-
ADD (HIDDEN) SSID
-
-

or choose a network... - -

-
-
-
-
-
-

Enter Details

-
-

DHCP host name

-
- -
-

Manual Connection

-
- - -
-
- - -
-
-
-
-

Connect to network

-
-

DHCP host name

-
- -
-

Password for

-
- -
-
- - -
-
-
-
-

Please wait...

-
-

Connecting to

-
-
-
-
-
-
-

You may lose wifi access while the esp32 recalibrates its radio. Please wait until your device automatically reconnects. This can take up to 30s.

-
-
-

Success!

-
-
-

Connection failed

-

Please double-check wifi password if any and make sure the access point has good signal.

-
-
-
- -
-
-
-
-
-

-
-

-
-
- -
-
-

IP Address

-
-
- IP Address: -
-
-
- Subnet Mask: -
-
-
- Default Gateway: -
-
-
-
- -
-
-
-
-

Are you sure you would like to disconnect from this wifi?

-
- - -
-
-
-
-
- -
- - -
-
-
-
-
-
-
- -
-
-

Check for firmware upgrade

-
- -
-
- - -
- - - - - - - - - - - - - -
Firmware versionRelease dateHW platformIDF versionBranchFlash this FW
-

Firmware URL:

- -
- -
-

OR

-
- -
- -
-
-
-
-
- 0% -
-
-
-
-
- - - - - - - - - -
KeyValue
-
-
-
- -
-
- - - - -
-
- -
-
-
Usage Templates
-
-
-
- Output -
- -
-
- -
-
- -
-
-
-
-
- -
- - - -
-
-
-
-
-
-
-
-
- -
-
-
Logs
-
- - - - - - - - - -
TimestampMessage
-
- -
-
-
Pin Assignments
-
- - -
DevicePin NameGPIO NumberType
-
-
Tasks
-
- - - -
#Task NameCPUStateMin StackBase PriorityCur Priority
-
- -
-
-

squeezelite-esp32, © 2020, philippe44, sle118, daduke
This software is released under the MIT License.

-

- This app would not be possible without the following libraries: -

-
    -
  • squeezelite, © 2012-2019, Adrian Smith and Ralph Irving. Licensed under the GPL License.
  • -
  • esp32-wifi-manager, © 2017-2019, Tony Pottier. Licensed under the MIT License.
  • -
  • SpinKit, © 2015, Tobias Ahlin. Licensed under the MIT License.
  • -
  • jQuery, The jQuery Foundation. Licensed under the MIT License.
  • -
  • cJSON, © 2009-2017, Dave Gamble and cJSON contributors. Licensed under the MIT License.
  • -
  • esp32-rotary-encoder, © 2011-2019, David Antliff and Ben Buxton. Licensed under the GPL License.
  • -
  • tarablessd1306, © 2017-2018, Tara Keeling. Licensed under the MIT license.
  • -
-
-

Show NVS Editor

-
- - -
-

Show Advanced Commands

-
- - -
-
- -
-
- -
-
- -
- - \ No newline at end of file diff --git a/components/wifi-manager/index.html b/components/wifi-manager/index.html deleted file mode 100644 index 98228d60..00000000 --- a/components/wifi-manager/index.html +++ /dev/null @@ -1 +0,0 @@ -esp32-wifi-manager

Connected to:

Manual connect

ADD (HIDDEN) SSID

or choose a network...

Enter Details

DHCP host name

Manual Connection

Connect to network

DHCP host name

Password for

Please wait...

Connecting to

You may lose wifi access while the esp32 recalibrates its radio. Please wait until your device automatically reconnects. This can take up to 30s.

Success!

Connection failed

Please double-check wifi password if any and make sure the access point has good signal.

IP Address

IP Address:
Subnet Mask:
Default Gateway:

Are you sure you would like to disconnect from this wifi?

Check for firmware upgrade

Firmware version Release date HW platform IDF version Branch Flash this FW

Firmware URL:

OR

0%
Key Value
Usage Templates
Output
Logs
TimestampMessage
Pin Assignments
DevicePin NameGPIO NumberType
Tasks
#Task NameCPUStateMin StackBase PriorityCur Priority

squeezelite-esp32, © 2020, philippe44, sle118, daduke
This software is released under the MIT License.

This app would not be possible without the following libraries:

  • squeezelite, © 2012-2019, Adrian Smith and Ralph Irving. Licensed under the GPL License.
  • esp32-wifi-manager, © 2017-2019, Tony Pottier. Licensed under the MIT License.
  • SpinKit, © 2015, Tobias Ahlin. Licensed under the MIT License.
  • jQuery, The jQuery Foundation. Licensed under the MIT License.
  • cJSON, © 2009-2017, Dave Gamble and cJSON contributors. Licensed under the MIT License.
  • esp32-rotary-encoder, © 2011-2019, David Antliff and Ben Buxton. Licensed under the GPL License.
  • tarablessd1306, © 2017-2018, Tara Keeling. Licensed under the MIT license.

Show NVS Editor

Show Advanced Commands


\ No newline at end of file diff --git a/components/wifi-manager/res/bootstrap.css b/components/wifi-manager/res/bootstrap.css deleted file mode 100644 index 9ab40e92..00000000 --- a/components/wifi-manager/res/bootstrap.css +++ /dev/null @@ -1,12 +0,0 @@ -/*! - * Bootswatch v4.5.2 - * Homepage: https://bootswatch.com - * Copyright 2012-2020 Thomas Park - * Licensed under MIT - * Based on Bootstrap -*//*! - * Bootstrap v4.5.2 (https://getbootstrap.com/) - * Copyright 2011-2020 The Bootstrap Authors - * Copyright 2011-2020 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400&display=swap");:root{--blue: #375a7f;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #e74c3c;--orange: #fd7e14;--yellow: #f39c12;--green: #00bc8c;--teal: #20c997;--cyan: #3498db;--white: #fff;--gray: #888;--gray-dark: #303030;--primary: #375a7f;--secondary: #444;--success: #00bc8c;--info: #3498db;--warning: #f39c12;--danger: #e74c3c;--light: #adb5bd;--dark: #303030;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{-webkit-box-sizing:border-box;box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:"Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-size:0.9375rem;font-weight:400;line-height:1.5;color:#fff;text-align:left;background-color:#222}[tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:0.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#00bc8c;text-decoration:none;background-color:transparent}a:hover{color:#007053;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:0.75rem;padding-bottom:0.75rem;color:#888;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:0.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role="button"]{cursor:pointer}select{word-wrap:normal}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{padding:0;border-style:none}input[type="radio"],input[type="checkbox"]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px;-webkit-appearance:none}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none !important}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:0.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:3rem}h2,.h2{font-size:2.5rem}h3,.h3{font-size:2rem}h4,.h4{font-size:1.40625rem}h5,.h5{font-size:1.171875rem}h6,.h6{font-size:0.9375rem}.lead{font-size:1.171875rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:0.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:0.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.171875rem}.blockquote-footer{display:block;font-size:80%;color:#888}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:0.25rem;background-color:#222;border:1px solid #dee2e6;border-radius:0.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:0.5rem;line-height:1}.figure-caption{font-size:90%;color:#888}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:0.2rem 0.4rem;font-size:87.5%;color:#fff;background-color:#222;border-radius:0.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:inherit}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-sm,.container-md,.container-lg,.container-xl{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.container,.container-sm{max-width:540px}}@media (min-width: 768px){.container,.container-sm,.container-md{max-width:720px}}@media (min-width: 992px){.container,.container-sm,.container-md,.container-lg{max-width:960px}}@media (min-width: 1200px){.container,.container-sm,.container-md,.container-lg,.container-xl{max-width:1140px}}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}@media (min-width: 576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-sm-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}}@media (min-width: 768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-md-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}}@media (min-width: 992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-lg-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}}@media (min-width: 1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xl-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}}.table{width:100%;margin-bottom:1rem;color:#fff}.table th,.table td{padding:0.75rem;vertical-align:top;border-top:1px solid #444}.table thead th{vertical-align:bottom;border-bottom:2px solid #444}.table tbody+tbody{border-top:2px solid #444}.table-sm th,.table-sm td{padding:0.3rem}.table-bordered{border:1px solid #444}.table-bordered th,.table-bordered td{border:1px solid #444}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:#303030}.table-hover tbody tr:hover{color:#fff;background-color:rgba(0,0,0,0.075)}.table-primary,.table-primary>th,.table-primary>td{background-color:#c7d1db}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#97a9bc}.table-hover .table-primary:hover{background-color:#b7c4d1}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#b7c4d1}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#cbcbcb}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#9e9e9e}.table-hover .table-secondary:hover{background-color:#bebebe}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#bebebe}.table-success,.table-success>th,.table-success>td{background-color:#b8ecdf}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#7adcc3}.table-hover .table-success:hover{background-color:#a4e7d6}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#a4e7d6}.table-info,.table-info>th,.table-info>td{background-color:#c6e2f5}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#95c9ec}.table-hover .table-info:hover{background-color:#b0d7f1}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#b0d7f1}.table-warning,.table-warning>th,.table-warning>td{background-color:#fce3bd}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#f9cc84}.table-hover .table-warning:hover{background-color:#fbd9a5}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#fbd9a5}.table-danger,.table-danger>th,.table-danger>td{background-color:#f8cdc8}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#f3a29a}.table-hover .table-danger:hover{background-color:#f5b8b1}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f5b8b1}.table-light,.table-light>th,.table-light>td{background-color:#e8eaed}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:#d4d9dd}.table-hover .table-light:hover{background-color:#dadde2}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#dadde2}.table-dark,.table-dark>th,.table-dark>td{background-color:#c5c5c5}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#939393}.table-hover .table-dark:hover{background-color:#b8b8b8}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b8b8b8}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}.table .thead-dark th{color:#fff;background-color:#303030;border-color:#434343}.table .thead-light th{color:#444;background-color:#ebebeb;border-color:#444}.table-dark{color:#fff;background-color:#303030}.table-dark th,.table-dark td,.table-dark thead th{border-color:#434343}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;font-size:0.9375rem;font-weight:400;line-height:1.5;color:#444;background-color:#fff;background-clip:padding-box;border:1px solid #222;border-radius:0.25rem;-webkit-transition:border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control{-webkit-transition:none;transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #444}.form-control:focus{color:#444;background-color:#fff;border-color:#739ac2;outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25);box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25)}.form-control::-webkit-input-placeholder{color:#888;opacity:1}.form-control::-ms-input-placeholder{color:#888;opacity:1}.form-control::placeholder{color:#888;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#ebebeb;opacity:1}input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#444;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.171875rem;line-height:1.5}.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.8203125rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:0.375rem 0;margin-bottom:0;font-size:0.9375rem;line-height:1.5;color:#fff;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + 0.5rem + 2px);padding:0.25rem 0.5rem;font-size:0.8203125rem;line-height:1.5;border-radius:0.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:0.5rem 1rem;font-size:1.171875rem;line-height:1.5;border-radius:0.3rem}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:0.25rem}.form-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*="col-"]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:0.3rem;margin-left:-1.25rem}.form-check-input[disabled] ~ .form-check-label,.form-check-input:disabled ~ .form-check-label{color:#888}.form-check-label{margin-bottom:0}.form-check-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:0.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:0.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#00bc8c}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.8203125rem;line-height:1.5;color:#fff;background-color:rgba(0,188,140,0.9);border-radius:0.25rem}.was-validated :valid ~ .valid-feedback,.was-validated :valid ~ .valid-tooltip,.is-valid ~ .valid-feedback,.is-valid ~ .valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#00bc8c;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2300bc8c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#00bc8c;-webkit-box-shadow:0 0 0 0.2rem rgba(0,188,140,0.25);box-shadow:0 0 0 0.2rem rgba(0,188,140,0.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#00bc8c;padding-right:calc(0.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23303030' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2300bc8c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#00bc8c;-webkit-box-shadow:0 0 0 0.2rem rgba(0,188,140,0.25);box-shadow:0 0 0 0.2rem rgba(0,188,140,0.25)}.was-validated .form-check-input:valid ~ .form-check-label,.form-check-input.is-valid ~ .form-check-label{color:#00bc8c}.was-validated .form-check-input:valid ~ .valid-feedback,.was-validated .form-check-input:valid ~ .valid-tooltip,.form-check-input.is-valid ~ .valid-feedback,.form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid ~ .custom-control-label,.custom-control-input.is-valid ~ .custom-control-label{color:#00bc8c}.was-validated .custom-control-input:valid ~ .custom-control-label::before,.custom-control-input.is-valid ~ .custom-control-label::before{border-color:#00bc8c}.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,.custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#00efb2;background-color:#00efb2}.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,.custom-control-input.is-valid:focus ~ .custom-control-label::before{-webkit-box-shadow:0 0 0 0.2rem rgba(0,188,140,0.25);box-shadow:0 0 0 0.2rem rgba(0,188,140,0.25)}.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#00bc8c}.was-validated .custom-file-input:valid ~ .custom-file-label,.custom-file-input.is-valid ~ .custom-file-label{border-color:#00bc8c}.was-validated .custom-file-input:valid:focus ~ .custom-file-label,.custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#00bc8c;-webkit-box-shadow:0 0 0 0.2rem rgba(0,188,140,0.25);box-shadow:0 0 0 0.2rem rgba(0,188,140,0.25)}.invalid-feedback{display:none;width:100%;margin-top:0.25rem;font-size:80%;color:#e74c3c}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:0.25rem 0.5rem;margin-top:.1rem;font-size:0.8203125rem;line-height:1.5;color:#fff;background-color:rgba(231,76,60,0.9);border-radius:0.25rem}.was-validated :invalid ~ .invalid-feedback,.was-validated :invalid ~ .invalid-tooltip,.is-invalid ~ .invalid-feedback,.is-invalid ~ .invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#e74c3c;padding-right:calc(1.5em + 0.75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e74c3c' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e74c3c' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.375em + 0.1875rem) center;background-size:calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#e74c3c;-webkit-box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25);box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + 0.75rem);background-position:top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)}.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#e74c3c;padding-right:calc(0.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23303030' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e74c3c' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e74c3c' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#e74c3c;-webkit-box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25);box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}.was-validated .form-check-input:invalid ~ .form-check-label,.form-check-input.is-invalid ~ .form-check-label{color:#e74c3c}.was-validated .form-check-input:invalid ~ .invalid-feedback,.was-validated .form-check-input:invalid ~ .invalid-tooltip,.form-check-input.is-invalid ~ .invalid-feedback,.form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid ~ .custom-control-label,.custom-control-input.is-invalid ~ .custom-control-label{color:#e74c3c}.was-validated .custom-control-input:invalid ~ .custom-control-label::before,.custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#e74c3c}.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,.custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#ed7669;background-color:#ed7669}.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,.custom-control-input.is-invalid:focus ~ .custom-control-label::before{-webkit-box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25);box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#e74c3c}.was-validated .custom-file-input:invalid ~ .custom-file-label,.custom-file-input.is-invalid ~ .custom-file-label{border-color:#e74c3c}.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,.custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#e74c3c;-webkit-box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25);box-shadow:0 0 0 0.2rem rgba(231,76,60,0.25)}.form-inline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width: 576px){.form-inline label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:0.25rem;margin-left:0}.form-inline .custom-control{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#fff;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:0.375rem 0.75rem;font-size:0.9375rem;line-height:1.5;border-radius:0.25rem;-webkit-transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.btn{-webkit-transition:none;transition:none}}.btn:hover{color:#fff;text-decoration:none}.btn:focus,.btn.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25);box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25)}.btn.disabled,.btn:disabled{opacity:0.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#375a7f;border-color:#375a7f}.btn-primary:hover{color:#fff;background-color:#2b4764;border-color:#28415b}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#2b4764;border-color:#28415b;-webkit-box-shadow:0 0 0 0.2rem rgba(85,115,146,0.5);box-shadow:0 0 0 0.2rem rgba(85,115,146,0.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#375a7f;border-color:#375a7f}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#28415b;border-color:#243a53}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(85,115,146,0.5);box-shadow:0 0 0 0.2rem rgba(85,115,146,0.5)}.btn-secondary{color:#fff;background-color:#444;border-color:#444}.btn-secondary:hover{color:#fff;background-color:#313131;border-color:#2b2a2a}.btn-secondary:focus,.btn-secondary.focus{color:#fff;background-color:#313131;border-color:#2b2a2a;-webkit-box-shadow:0 0 0 0.2rem rgba(96,96,96,0.5);box-shadow:0 0 0 0.2rem rgba(96,96,96,0.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#444;border-color:#444}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#2b2a2a;border-color:#242424}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(96,96,96,0.5);box-shadow:0 0 0 0.2rem rgba(96,96,96,0.5)}.btn-success{color:#fff;background-color:#00bc8c;border-color:#00bc8c}.btn-success:hover{color:#fff;background-color:#009670;border-color:#008966}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#009670;border-color:#008966;-webkit-box-shadow:0 0 0 0.2rem rgba(38,198,157,0.5);box-shadow:0 0 0 0.2rem rgba(38,198,157,0.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#00bc8c;border-color:#00bc8c}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#008966;border-color:#007c5d}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(38,198,157,0.5);box-shadow:0 0 0 0.2rem rgba(38,198,157,0.5)}.btn-info{color:#fff;background-color:#3498db;border-color:#3498db}.btn-info:hover{color:#fff;background-color:#2384c6;border-color:#217dbb}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#2384c6;border-color:#217dbb;-webkit-box-shadow:0 0 0 0.2rem rgba(82,167,224,0.5);box-shadow:0 0 0 0.2rem rgba(82,167,224,0.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#3498db;border-color:#3498db}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#217dbb;border-color:#1f76b0}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(82,167,224,0.5);box-shadow:0 0 0 0.2rem rgba(82,167,224,0.5)}.btn-warning{color:#fff;background-color:#f39c12;border-color:#f39c12}.btn-warning:hover{color:#fff;background-color:#d4860b;border-color:#c87f0a}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#d4860b;border-color:#c87f0a;-webkit-box-shadow:0 0 0 0.2rem rgba(245,171,54,0.5);box-shadow:0 0 0 0.2rem rgba(245,171,54,0.5)}.btn-warning.disabled,.btn-warning:disabled{color:#fff;background-color:#f39c12;border-color:#f39c12}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#fff;background-color:#c87f0a;border-color:#bc770a}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(245,171,54,0.5);box-shadow:0 0 0 0.2rem rgba(245,171,54,0.5)}.btn-danger{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.btn-danger:hover{color:#fff;background-color:#e12e1c;border-color:#d62c1a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#e12e1c;border-color:#d62c1a;-webkit-box-shadow:0 0 0 0.2rem rgba(235,103,89,0.5);box-shadow:0 0 0 0.2rem rgba(235,103,89,0.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#d62c1a;border-color:#ca2a19}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(235,103,89,0.5);box-shadow:0 0 0 0.2rem rgba(235,103,89,0.5)}.btn-light{color:#222;background-color:#adb5bd;border-color:#adb5bd}.btn-light:hover{color:#fff;background-color:#98a2ac;border-color:#919ca6}.btn-light:focus,.btn-light.focus{color:#fff;background-color:#98a2ac;border-color:#919ca6;-webkit-box-shadow:0 0 0 0.2rem rgba(152,159,166,0.5);box-shadow:0 0 0 0.2rem rgba(152,159,166,0.5)}.btn-light.disabled,.btn-light:disabled{color:#222;background-color:#adb5bd;border-color:#adb5bd}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#fff;background-color:#919ca6;border-color:#8a95a1}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(152,159,166,0.5);box-shadow:0 0 0 0.2rem rgba(152,159,166,0.5)}.btn-dark{color:#fff;background-color:#303030;border-color:#303030}.btn-dark:hover{color:#fff;background-color:#1d1d1d;border-color:#171616}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#1d1d1d;border-color:#171616;-webkit-box-shadow:0 0 0 0.2rem rgba(79,79,79,0.5);box-shadow:0 0 0 0.2rem rgba(79,79,79,0.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#303030;border-color:#303030}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#171616;border-color:#101010}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(79,79,79,0.5);box-shadow:0 0 0 0.2rem rgba(79,79,79,0.5)}.btn-outline-primary{color:#375a7f;border-color:#375a7f}.btn-outline-primary:hover{color:#fff;background-color:#375a7f;border-color:#375a7f}.btn-outline-primary:focus,.btn-outline-primary.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(55,90,127,0.5);box-shadow:0 0 0 0.2rem rgba(55,90,127,0.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#375a7f;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#375a7f;border-color:#375a7f}.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(55,90,127,0.5);box-shadow:0 0 0 0.2rem rgba(55,90,127,0.5)}.btn-outline-secondary{color:#444;border-color:#444}.btn-outline-secondary:hover{color:#fff;background-color:#444;border-color:#444}.btn-outline-secondary:focus,.btn-outline-secondary.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(68,68,68,0.5);box-shadow:0 0 0 0.2rem rgba(68,68,68,0.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#444;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#444;border-color:#444}.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(68,68,68,0.5);box-shadow:0 0 0 0.2rem rgba(68,68,68,0.5)}.btn-outline-success{color:#00bc8c;border-color:#00bc8c}.btn-outline-success:hover{color:#fff;background-color:#00bc8c;border-color:#00bc8c}.btn-outline-success:focus,.btn-outline-success.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(0,188,140,0.5);box-shadow:0 0 0 0.2rem rgba(0,188,140,0.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#00bc8c;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#00bc8c;border-color:#00bc8c}.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(0,188,140,0.5);box-shadow:0 0 0 0.2rem rgba(0,188,140,0.5)}.btn-outline-info{color:#3498db;border-color:#3498db}.btn-outline-info:hover{color:#fff;background-color:#3498db;border-color:#3498db}.btn-outline-info:focus,.btn-outline-info.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5);box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#3498db;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#3498db;border-color:#3498db}.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5);box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5)}.btn-outline-warning{color:#f39c12;border-color:#f39c12}.btn-outline-warning:hover{color:#fff;background-color:#f39c12;border-color:#f39c12}.btn-outline-warning:focus,.btn-outline-warning.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5);box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#f39c12;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,.show>.btn-outline-warning.dropdown-toggle{color:#fff;background-color:#f39c12;border-color:#f39c12}.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5);box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5)}.btn-outline-danger{color:#e74c3c;border-color:#e74c3c}.btn-outline-danger:hover{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.btn-outline-danger:focus,.btn-outline-danger.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5);box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#e74c3c;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#e74c3c;border-color:#e74c3c}.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5);box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5)}.btn-outline-light{color:#adb5bd;border-color:#adb5bd}.btn-outline-light:hover{color:#222;background-color:#adb5bd;border-color:#adb5bd}.btn-outline-light:focus,.btn-outline-light.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(173,181,189,0.5);box-shadow:0 0 0 0.2rem rgba(173,181,189,0.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#adb5bd;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,.show>.btn-outline-light.dropdown-toggle{color:#222;background-color:#adb5bd;border-color:#adb5bd}.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(173,181,189,0.5);box-shadow:0 0 0 0.2rem rgba(173,181,189,0.5)}.btn-outline-dark{color:#303030;border-color:#303030}.btn-outline-dark:hover{color:#fff;background-color:#303030;border-color:#303030}.btn-outline-dark:focus,.btn-outline-dark.focus{-webkit-box-shadow:0 0 0 0.2rem rgba(48,48,48,0.5);box-shadow:0 0 0 0.2rem rgba(48,48,48,0.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#303030;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#303030;border-color:#303030}.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 0.2rem rgba(48,48,48,0.5);box-shadow:0 0 0 0.2rem rgba(48,48,48,0.5)}.btn-link{font-weight:400;color:#00bc8c;text-decoration:none}.btn-link:hover{color:#007053;text-decoration:underline}.btn-link:focus,.btn-link.focus{text-decoration:underline}.btn-link:disabled,.btn-link.disabled{color:#888;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:0.5rem 1rem;font-size:1.171875rem;line-height:1.5;border-radius:0.3rem}.btn-sm,.btn-group-sm>.btn{padding:0.25rem 0.5rem;font-size:0.8203125rem;line-height:1.5;border-radius:0.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:0.5rem}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{-webkit-transition:opacity 0.15s linear;transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.fade{-webkit-transition:none;transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.collapsing{-webkit-transition:none;transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid;border-right:0.3em solid transparent;border-bottom:0;border-left:0.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:0.5rem 0;margin:0.125rem 0 0;font-size:0.9375rem;color:#fff;text-align:left;list-style:none;background-color:#222;background-clip:padding-box;border:1px solid #444;border-radius:0.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:0.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0;border-right:0.3em solid transparent;border-bottom:0.3em solid;border-left:0.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:0.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0;border-bottom:0.3em solid transparent;border-left:0.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:0.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:0.255em;vertical-align:0.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:0.255em;vertical-align:0.255em;content:"";border-top:0.3em solid transparent;border-right:0.3em solid;border-bottom:0.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^="top"],.dropdown-menu[x-placement^="right"],.dropdown-menu[x-placement^="bottom"],.dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:0.5rem 0;overflow:hidden;border-top:1px solid #444}.dropdown-item{display:block;width:100%;padding:0.25rem 1.5rem;clear:both;font-weight:400;color:#fff;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#fff;text-decoration:none;background-color:#375a7f}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#375a7f}.dropdown-item.disabled,.dropdown-item:disabled{color:#888;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:0.5rem 1.5rem;margin-bottom:0;font-size:0.8203125rem;color:#888;white-space:nowrap}.dropdown-item-text{display:block;padding:0.25rem 1.5rem;color:#fff}.btn-group,.btn-group-vertical{position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover{z-index:1}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:0.5625rem;padding-left:0.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:0.375rem;padding-left:0.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:0.75rem;padding-left:0.75rem}.btn-group-vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type="radio"],.btn-group-toggle>.btn input[type="checkbox"],.btn-group-toggle>.btn-group>.btn input[type="radio"],.btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-1px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:last-child),.input-group>.custom-select:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-prepend,.input-group-append{display:-webkit-box;display:-ms-flexbox;display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-append .btn:focus{z-index:3}.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0.375rem 0.75rem;margin-bottom:0;font-size:0.9375rem;font-weight:400;line-height:1.5;color:#adb5bd;text-align:center;white-space:nowrap;background-color:#444;border:1px solid #222;border-radius:0.25rem}.input-group-text input[type="radio"],.input-group-text input[type="checkbox"]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{padding:0.5rem 1rem;font-size:1.171875rem;line-height:1.5;border-radius:0.3rem}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.5em + 0.5rem + 2px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{padding:0.25rem 0.5rem;font-size:0.8203125rem;line-height:1.5;border-radius:0.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.40625rem;padding-left:1.5rem}.custom-control-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.203125rem;opacity:0}.custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#375a7f;background-color:#375a7f}.custom-control-input:focus ~ .custom-control-label::before{-webkit-box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25);box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25)}.custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#739ac2}.custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#97b3d2;border-color:#97b3d2}.custom-control-input[disabled] ~ .custom-control-label,.custom-control-input:disabled ~ .custom-control-label{color:#888}.custom-control-input[disabled] ~ .custom-control-label::before,.custom-control-input:disabled ~ .custom-control-label::before{background-color:#ebebeb}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:0.203125rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:0.203125rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50% / 50% 50%}.custom-checkbox .custom-control-label::before{border-radius:0.25rem}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#375a7f;background-color:#375a7f}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(55,90,127,0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(55,90,127,0.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(55,90,127,0.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:0.5rem}.custom-switch .custom-control-label::after{top:calc(0.203125rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:0.5rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-switch .custom-control-label::after{-webkit-transition:none;transition:none}}.custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;-webkit-transform:translateX(0.75rem);transform:translateX(0.75rem)}.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(55,90,127,0.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 1.75rem 0.375rem 0.75rem;font-size:0.9375rem;font-weight:400;line-height:1.5;color:#444;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23303030' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;border:1px solid #222;border-radius:0.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#739ac2;outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25);box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25)}.custom-select:focus::-ms-value{color:#444;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:0.75rem;background-image:none}.custom-select:disabled{color:#888;background-color:#ebebeb}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #444}.custom-select-sm{height:calc(1.5em + 0.5rem + 2px);padding-top:0.25rem;padding-bottom:0.25rem;padding-left:0.5rem;font-size:0.8203125rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:0.5rem;padding-bottom:0.5rem;padding-left:1rem;font-size:1.171875rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + 0.75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + 0.75rem + 2px);margin:0;opacity:0}.custom-file-input:focus ~ .custom-file-label{border-color:#739ac2;-webkit-box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25);box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25)}.custom-file-input[disabled] ~ .custom-file-label,.custom-file-input:disabled ~ .custom-file-label{background-color:#ebebeb}.custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;font-weight:400;line-height:1.5;color:#adb5bd;background-color:#fff;border:1px solid #222;border-radius:0.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + 0.75rem);padding:0.375rem 0.75rem;line-height:1.5;color:#adb5bd;content:"Browse";background-color:#444;border-left:inherit;border-radius:0 0.25rem 0.25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{-webkit-box-shadow:0 0 0 1px #222,0 0 0 0.2rem rgba(55,90,127,0.25);box-shadow:0 0 0 1px #222,0 0 0 0.2rem rgba(55,90,127,0.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #222,0 0 0 0.2rem rgba(55,90,127,0.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #222,0 0 0 0.2rem rgba(55,90,127,0.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#375a7f;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#97b3d2}.custom-range::-webkit-slider-runnable-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#375a7f;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-moz-range-thumb{-webkit-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#97b3d2}.custom-range::-moz-range-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:0.2rem;margin-left:0.2rem;background-color:#375a7f;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-ms-thumb{-webkit-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#97b3d2}.custom-range::-ms-track{width:100%;height:0.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:0.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{-webkit-transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-control-label::before,.custom-file-label,.custom-select{-webkit-transition:none;transition:none}}.nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:0.5rem 2rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#adb5bd;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #444}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#444 #444 transparent}.nav-tabs .nav-link.disabled{color:#adb5bd;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#fff;background-color:#222;border-color:#444 #444 transparent}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:0.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#375a7f}.nav-fill>.nav-link,.nav-fill .nav-item{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-sm,.navbar .container-md,.navbar .container-lg,.navbar .container-xl{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:0.32421875rem;padding-bottom:0.32421875rem;margin-right:1rem;font-size:1.171875rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:0.5rem;padding-bottom:0.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:0.25rem 0.75rem;font-size:1.171875rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:0.25rem}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width: 575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 576px){.navbar-expand-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 768px){.navbar-expand-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 992px){.navbar-expand-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 1200px){.navbar-expand-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:0.5rem;padding-left:0.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:#222}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:#222}.navbar-light .navbar-nav .nav-link{color:rgba(34,34,34,0.7)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:#222}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:#222}.navbar-light .navbar-toggler{color:rgba(34,34,34,0.7);border-color:rgba(34,34,34,0.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2834, 34, 34, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(34,34,34,0.7)}.navbar-light .navbar-text a{color:#222}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:#222}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,0.6)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:#fff}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,0.6);border-color:rgba(255,255,255,0.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.6%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,0.6)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#303030;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:0.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:0.75rem}.card-subtitle{margin-top:-0.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:0.75rem 1.25rem;margin-bottom:0;background-color:#444;border-bottom:1px solid rgba(0,0,0,0.125)}.card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.card-footer{padding:0.75rem 1.25rem;background-color:#444;border-top:1px solid rgba(0,0,0,0.125)}.card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}.card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(0.25rem - 1px)}.card-img,.card-img-top,.card-img-bottom{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media (min-width: 576px){.card-deck{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media (min-width: 576px){.card-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:0.75rem}@media (min-width: 576px){.card-columns{-webkit-column-count:3;column-count:3;-webkit-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#444;border-radius:0.25rem}.breadcrumb-item{display:-webkit-box;display:-ms-flexbox;display:flex}.breadcrumb-item+.breadcrumb-item{padding-left:0.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:0.5rem;color:#888;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#888}.pagination{display:-webkit-box;display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:0.25rem}.page-link{position:relative;display:block;padding:0.5rem 0.75rem;margin-left:0;line-height:1.25;color:#fff;background-color:#00bc8c;border:0 solid transparent}.page-link:hover{z-index:2;color:#fff;text-decoration:none;background-color:#00efb2;border-color:transparent}.page-link:focus{z-index:3;outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25);box-shadow:0 0 0 0.2rem rgba(55,90,127,0.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem}.page-item:last-child .page-link{border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#00efb2;border-color:transparent}.page-item.disabled .page-link{color:#fff;pointer-events:none;cursor:auto;background-color:#007053;border-color:transparent}.pagination-lg .page-link{padding:0.75rem 1.5rem;font-size:1.171875rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:0.3rem;border-bottom-left-radius:0.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:0.3rem;border-bottom-right-radius:0.3rem}.pagination-sm .page-link{padding:0.25rem 0.5rem;font-size:0.8203125rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:0.2rem;border-bottom-left-radius:0.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:0.2rem;border-bottom-right-radius:0.2rem}.badge{display:inline-block;padding:0.25em 0.4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0.25rem;-webkit-transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.badge{-webkit-transition:none;transition:none}}a.badge:hover,a.badge:focus{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:0.6em;padding-left:0.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#375a7f}a.badge-primary:hover,a.badge-primary:focus{color:#fff;background-color:#28415b}a.badge-primary:focus,a.badge-primary.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(55,90,127,0.5);box-shadow:0 0 0 0.2rem rgba(55,90,127,0.5)}.badge-secondary{color:#fff;background-color:#444}a.badge-secondary:hover,a.badge-secondary:focus{color:#fff;background-color:#2b2a2a}a.badge-secondary:focus,a.badge-secondary.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(68,68,68,0.5);box-shadow:0 0 0 0.2rem rgba(68,68,68,0.5)}.badge-success{color:#fff;background-color:#00bc8c}a.badge-success:hover,a.badge-success:focus{color:#fff;background-color:#008966}a.badge-success:focus,a.badge-success.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(0,188,140,0.5);box-shadow:0 0 0 0.2rem rgba(0,188,140,0.5)}.badge-info{color:#fff;background-color:#3498db}a.badge-info:hover,a.badge-info:focus{color:#fff;background-color:#217dbb}a.badge-info:focus,a.badge-info.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5);box-shadow:0 0 0 0.2rem rgba(52,152,219,0.5)}.badge-warning{color:#fff;background-color:#f39c12}a.badge-warning:hover,a.badge-warning:focus{color:#fff;background-color:#c87f0a}a.badge-warning:focus,a.badge-warning.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5);box-shadow:0 0 0 0.2rem rgba(243,156,18,0.5)}.badge-danger{color:#fff;background-color:#e74c3c}a.badge-danger:hover,a.badge-danger:focus{color:#fff;background-color:#d62c1a}a.badge-danger:focus,a.badge-danger.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5);box-shadow:0 0 0 0.2rem rgba(231,76,60,0.5)}.badge-light{color:#222;background-color:#adb5bd}a.badge-light:hover,a.badge-light:focus{color:#222;background-color:#919ca6}a.badge-light:focus,a.badge-light.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(173,181,189,0.5);box-shadow:0 0 0 0.2rem rgba(173,181,189,0.5)}.badge-dark{color:#fff;background-color:#303030}a.badge-dark:hover,a.badge-dark:focus{color:#fff;background-color:#171616}a.badge-dark:focus,a.badge-dark.focus{outline:0;-webkit-box-shadow:0 0 0 0.2rem rgba(48,48,48,0.5);box-shadow:0 0 0 0.2rem rgba(48,48,48,0.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#303030;border-radius:0.3rem}@media (min-width: 576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:0.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:0.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3.90625rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:0.75rem 1.25rem;color:inherit}.alert-primary{color:#1d2f42;background-color:#d7dee5;border-color:#c7d1db}.alert-primary hr{border-top-color:#b7c4d1}.alert-primary .alert-link{color:#0d161f}.alert-secondary{color:#232323;background-color:#dadada;border-color:#cbcbcb}.alert-secondary hr{border-top-color:#bebebe}.alert-secondary .alert-link{color:#0a0909}.alert-success{color:#006249;background-color:#ccf2e8;border-color:#b8ecdf}.alert-success hr{border-top-color:#a4e7d6}.alert-success .alert-link{color:#002f23}.alert-info{color:#1b4f72;background-color:#d6eaf8;border-color:#c6e2f5}.alert-info hr{border-top-color:#b0d7f1}.alert-info .alert-link{color:#113249}.alert-warning{color:#7e5109;background-color:#fdebd0;border-color:#fce3bd}.alert-warning hr{border-top-color:#fbd9a5}.alert-warning .alert-link{color:#4e3206}.alert-danger{color:#78281f;background-color:#fadbd8;border-color:#f8cdc8}.alert-danger hr{border-top-color:#f5b8b1}.alert-danger .alert-link{color:#4f1a15}.alert-light{color:#5a5e62;background-color:#eff0f2;border-color:#e8eaed}.alert-light hr{border-top-color:#dadde2}.alert-light .alert-link{color:#424547}.alert-dark{color:#191919;background-color:#d6d6d6;border-color:#c5c5c5}.alert-dark hr{border-top-color:#b8b8b8}.alert-dark .alert-link{color:black}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-webkit-box;display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:0.703125rem;background-color:#444;border-radius:0.25rem}.progress-bar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#375a7f;-webkit-transition:width 0.6s ease;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.progress-bar{-webkit-transition:none;transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion: reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.media-body{-webkit-box-flex:1;-ms-flex:1;flex:1}.list-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:0.25rem}.list-group-item-action{width:100%;color:#444;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#444;text-decoration:none;background-color:#444}.list-group-item-action:active{color:#fff;background-color:#ebebeb}.list-group-item{position:relative;display:block;padding:0.75rem 1.25rem;background-color:#303030;border:1px solid #444}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#888;pointer-events:none;background-color:#303030}.list-group-item.active{z-index:2;color:#fff;background-color:#375a7f;border-color:#375a7f}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){.list-group-horizontal-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){.list-group-horizontal-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){.list-group-horizontal-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){.list-group-horizontal-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:0.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:0.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#1d2f42;background-color:#c7d1db}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#1d2f42;background-color:#b7c4d1}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#1d2f42;border-color:#1d2f42}.list-group-item-secondary{color:#232323;background-color:#cbcbcb}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#232323;background-color:#bebebe}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#232323;border-color:#232323}.list-group-item-success{color:#006249;background-color:#b8ecdf}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#006249;background-color:#a4e7d6}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#006249;border-color:#006249}.list-group-item-info{color:#1b4f72;background-color:#c6e2f5}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#1b4f72;background-color:#b0d7f1}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#1b4f72;border-color:#1b4f72}.list-group-item-warning{color:#7e5109;background-color:#fce3bd}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#7e5109;background-color:#fbd9a5}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#7e5109;border-color:#7e5109}.list-group-item-danger{color:#78281f;background-color:#f8cdc8}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#78281f;background-color:#f5b8b1}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#78281f;border-color:#78281f}.list-group-item-light{color:#5a5e62;background-color:#e8eaed}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#5a5e62;background-color:#dadde2}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#5a5e62;border-color:#5a5e62}.list-group-item-dark{color:#191919;background-color:#c5c5c5}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#191919;background-color:#b8b8b8}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#191919;border-color:#191919}.close{float:right;font-size:1.40625rem;font-weight:700;line-height:1;color:#fff;text-shadow:none;opacity:.5}.close:hover{color:#fff;text-decoration:none}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{-ms-flex-preferred-size:350px;flex-basis:350px;max-width:350px;font-size:0.875rem;background-color:#444;background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);-webkit-box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);opacity:0;border-radius:0.25rem}.toast:not(:last-child){margin-bottom:0.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0.25rem 0.75rem;color:#888;background-color:#303030;background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05);border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.toast-body{padding:0.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:0.5rem;pointer-events:none}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform 0.3s ease-out;transition:-webkit-transform 0.3s ease-out;transition:transform 0.3s ease-out;transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out;-webkit-transform:translate(0, -50px);transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{-webkit-transition:none;transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-webkit-box;display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#303030;background-clip:padding-box;border:1px solid #444;border-radius:0.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:0.5}.modal-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #444;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:0.75rem;border-top:1px solid #444;border-bottom-right-radius:calc(0.3rem - 1px);border-bottom-left-radius:calc(0.3rem - 1px)}.modal-footer>*{margin:0.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:"Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.8203125rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:0.9}.tooltip .arrow{position:absolute;display:block;width:0.8rem;height:0.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"]{padding:0.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:0.4rem 0.4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"]{padding:0 0.4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:0.4rem;height:0.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:0.4rem 0.4rem 0.4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"]{padding:0.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 0.4rem 0.4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"]{padding:0 0.4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:0.4rem;height:0.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:0.4rem 0 0.4rem 0.4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:0.25rem 0.5rem;color:#fff;text-align:center;background-color:#000;border-radius:0.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:"Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.8203125rem;word-wrap:break-word;background-color:#303030;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:0.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:0.5rem;margin:0 0.3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^="top"]{margin-bottom:0.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:0.5rem 0.5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:0.5rem 0.5rem 0;border-top-color:#303030}.bs-popover-right,.bs-popover-auto[x-placement^="right"]{margin-left:0.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-0.5rem - 1px);width:0.5rem;height:1rem;margin:0.3rem 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:#303030}.bs-popover-bottom,.bs-popover-auto[x-placement^="bottom"]{margin-top:0.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:#303030}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #444}.bs-popover-left,.bs-popover-auto[x-placement^="left"]{margin-right:0.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-0.5rem - 1px);width:0.5rem;height:1rem;margin:0.3rem 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:#303030}.popover-header{padding:0.5rem 0.75rem;margin-bottom:0;font-size:0.9375rem;background-color:#444;border-bottom:1px solid #373737;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:0.5rem 0.75rem;color:#fff}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform 0.6s ease-in-out;transition:-webkit-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out}@media (prefers-reduced-motion: reduce){.carousel-item{-webkit-transition:none;transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right{-webkit-transform:translateX(100%);transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;-webkit-transition:opacity 0s 0.6s;transition:opacity 0s 0.6s}@media (prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{-webkit-transition:none;transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:0.5;-webkit-transition:opacity 0.15s ease;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{-webkit-transition:none;transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:0.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50% / 100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;-webkit-transition:opacity 0.6s ease;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.carousel-indicators li{-webkit-transition:none;transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:0.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:0.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.bg-primary{background-color:#375a7f !important}a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus{background-color:#28415b !important}.bg-secondary{background-color:#444 !important}a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus{background-color:#2b2a2a !important}.bg-success{background-color:#00bc8c !important}a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus{background-color:#008966 !important}.bg-info{background-color:#3498db !important}a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus{background-color:#217dbb !important}.bg-warning{background-color:#f39c12 !important}a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus{background-color:#c87f0a !important}.bg-danger{background-color:#e74c3c !important}a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus{background-color:#d62c1a !important}.bg-light{background-color:#adb5bd !important}a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus{background-color:#919ca6 !important}.bg-dark{background-color:#303030 !important}a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus{background-color:#171616 !important}.bg-white{background-color:#fff !important}.bg-transparent{background-color:transparent !important}.border{border:1px solid #dee2e6 !important}.border-top{border-top:1px solid #dee2e6 !important}.border-right{border-right:1px solid #dee2e6 !important}.border-bottom{border-bottom:1px solid #dee2e6 !important}.border-left{border-left:1px solid #dee2e6 !important}.border-0{border:0 !important}.border-top-0{border-top:0 !important}.border-right-0{border-right:0 !important}.border-bottom-0{border-bottom:0 !important}.border-left-0{border-left:0 !important}.border-primary{border-color:#375a7f !important}.border-secondary{border-color:#444 !important}.border-success{border-color:#00bc8c !important}.border-info{border-color:#3498db !important}.border-warning{border-color:#f39c12 !important}.border-danger{border-color:#e74c3c !important}.border-light{border-color:#adb5bd !important}.border-dark{border-color:#303030 !important}.border-white{border-color:#fff !important}.rounded-sm{border-radius:0.2rem !important}.rounded{border-radius:0.25rem !important}.rounded-top{border-top-left-radius:0.25rem !important;border-top-right-radius:0.25rem !important}.rounded-right{border-top-right-radius:0.25rem !important;border-bottom-right-radius:0.25rem !important}.rounded-bottom{border-bottom-right-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important}.rounded-left{border-top-left-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important}.rounded-lg{border-radius:0.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-0{border-radius:0 !important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}@media (min-width: 576px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-sm-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 768px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-md-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 992px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-lg-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 1200px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-xl-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media print{.d-print-none{display:none !important}.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-print-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.8571428571%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}@media (min-width: 576px){.flex-sm-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-sm-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-sm-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-sm-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-sm-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-sm-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-sm-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-sm-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-sm-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-sm-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-sm-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-sm-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-sm-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-sm-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-sm-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-sm-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-sm-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-sm-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-sm-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-sm-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-sm-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-sm-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-sm-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-sm-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-sm-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-sm-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-sm-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-sm-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-sm-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-sm-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-sm-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-sm-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-sm-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 768px){.flex-md-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-md-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-md-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-md-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-md-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-md-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-md-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-md-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-md-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-md-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-md-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-md-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-md-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-md-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-md-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-md-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-md-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-md-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-md-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-md-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-md-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-md-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-md-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-md-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-md-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-md-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-md-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-md-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-md-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-md-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-md-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-md-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-md-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 992px){.flex-lg-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-lg-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-lg-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-lg-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-lg-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-lg-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-lg-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-lg-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-lg-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-lg-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-lg-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-lg-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-lg-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-lg-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-lg-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-lg-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-lg-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-lg-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-lg-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-lg-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-lg-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-lg-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-lg-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-lg-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-lg-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-lg-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-lg-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-lg-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-lg-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-lg-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-lg-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-lg-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-lg-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 1200px){.flex-xl-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-xl-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-xl-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-xl-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-xl-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-xl-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-xl-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-xl-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-xl-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-xl-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-xl-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-xl-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-xl-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-xl-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-xl-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-xl-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-xl-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-xl-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-xl-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-xl-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-xl-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-xl-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-xl-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-xl-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-xl-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-xl-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-xl-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-xl-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-xl-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-xl-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-xl-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-xl-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-xl-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}.float-left{float:left !important}.float-right{float:right !important}.float-none{float:none !important}@media (min-width: 576px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}@media (min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}@media (min-width: 992px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media (min-width: 1200px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-none{float:none !important}}.user-select-all{-webkit-user-select:all !important;-moz-user-select:all !important;-ms-user-select:all !important;user-select:all !important}.user-select-auto{-webkit-user-select:auto !important;-moz-user-select:auto !important;-ms-user-select:auto !important;user-select:auto !important}.user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;user-select:none !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:-webkit-sticky !important;position:sticky !important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position: -webkit-sticky) or (position: sticky){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{-webkit-box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.shadow{-webkit-box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important;box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.shadow-lg{-webkit-box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important;box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important}.shadow-none{-webkit-box-shadow:none !important;box-shadow:none !important}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mw-100{max-width:100% !important}.mh-100{max-height:100% !important}.min-vw-100{min-width:100vw !important}.min-vh-100{min-height:100vh !important}.vw-100{width:100vw !important}.vh-100{height:100vh !important}.m-0{margin:0 !important}.mt-0,.my-0{margin-top:0 !important}.mr-0,.mx-0{margin-right:0 !important}.mb-0,.my-0{margin-bottom:0 !important}.ml-0,.mx-0{margin-left:0 !important}.m-1{margin:0.25rem !important}.mt-1,.my-1{margin-top:0.25rem !important}.mr-1,.mx-1{margin-right:0.25rem !important}.mb-1,.my-1{margin-bottom:0.25rem !important}.ml-1,.mx-1{margin-left:0.25rem !important}.m-2{margin:0.5rem !important}.mt-2,.my-2{margin-top:0.5rem !important}.mr-2,.mx-2{margin-right:0.5rem !important}.mb-2,.my-2{margin-bottom:0.5rem !important}.ml-2,.mx-2{margin-left:0.5rem !important}.m-3{margin:1rem !important}.mt-3,.my-3{margin-top:1rem !important}.mr-3,.mx-3{margin-right:1rem !important}.mb-3,.my-3{margin-bottom:1rem !important}.ml-3,.mx-3{margin-left:1rem !important}.m-4{margin:1.5rem !important}.mt-4,.my-4{margin-top:1.5rem !important}.mr-4,.mx-4{margin-right:1.5rem !important}.mb-4,.my-4{margin-bottom:1.5rem !important}.ml-4,.mx-4{margin-left:1.5rem !important}.m-5{margin:3rem !important}.mt-5,.my-5{margin-top:3rem !important}.mr-5,.mx-5{margin-right:3rem !important}.mb-5,.my-5{margin-bottom:3rem !important}.ml-5,.mx-5{margin-left:3rem !important}.p-0{padding:0 !important}.pt-0,.py-0{padding-top:0 !important}.pr-0,.px-0{padding-right:0 !important}.pb-0,.py-0{padding-bottom:0 !important}.pl-0,.px-0{padding-left:0 !important}.p-1{padding:0.25rem !important}.pt-1,.py-1{padding-top:0.25rem !important}.pr-1,.px-1{padding-right:0.25rem !important}.pb-1,.py-1{padding-bottom:0.25rem !important}.pl-1,.px-1{padding-left:0.25rem !important}.p-2{padding:0.5rem !important}.pt-2,.py-2{padding-top:0.5rem !important}.pr-2,.px-2{padding-right:0.5rem !important}.pb-2,.py-2{padding-bottom:0.5rem !important}.pl-2,.px-2{padding-left:0.5rem !important}.p-3{padding:1rem !important}.pt-3,.py-3{padding-top:1rem !important}.pr-3,.px-3{padding-right:1rem !important}.pb-3,.py-3{padding-bottom:1rem !important}.pl-3,.px-3{padding-left:1rem !important}.p-4{padding:1.5rem !important}.pt-4,.py-4{padding-top:1.5rem !important}.pr-4,.px-4{padding-right:1.5rem !important}.pb-4,.py-4{padding-bottom:1.5rem !important}.pl-4,.px-4{padding-left:1.5rem !important}.p-5{padding:3rem !important}.pt-5,.py-5{padding-top:3rem !important}.pr-5,.px-5{padding-right:3rem !important}.pb-5,.py-5{padding-bottom:3rem !important}.pl-5,.px-5{padding-left:3rem !important}.m-n1{margin:-0.25rem !important}.mt-n1,.my-n1{margin-top:-0.25rem !important}.mr-n1,.mx-n1{margin-right:-0.25rem !important}.mb-n1,.my-n1{margin-bottom:-0.25rem !important}.ml-n1,.mx-n1{margin-left:-0.25rem !important}.m-n2{margin:-0.5rem !important}.mt-n2,.my-n2{margin-top:-0.5rem !important}.mr-n2,.mx-n2{margin-right:-0.5rem !important}.mb-n2,.my-n2{margin-bottom:-0.5rem !important}.ml-n2,.mx-n2{margin-left:-0.5rem !important}.m-n3{margin:-1rem !important}.mt-n3,.my-n3{margin-top:-1rem !important}.mr-n3,.mx-n3{margin-right:-1rem !important}.mb-n3,.my-n3{margin-bottom:-1rem !important}.ml-n3,.mx-n3{margin-left:-1rem !important}.m-n4{margin:-1.5rem !important}.mt-n4,.my-n4{margin-top:-1.5rem !important}.mr-n4,.mx-n4{margin-right:-1.5rem !important}.mb-n4,.my-n4{margin-bottom:-1.5rem !important}.ml-n4,.mx-n4{margin-left:-1.5rem !important}.m-n5{margin:-3rem !important}.mt-n5,.my-n5{margin-top:-3rem !important}.mr-n5,.mx-n5{margin-right:-3rem !important}.mb-n5,.my-n5{margin-bottom:-3rem !important}.ml-n5,.mx-n5{margin-left:-3rem !important}.m-auto{margin:auto !important}.mt-auto,.my-auto{margin-top:auto !important}.mr-auto,.mx-auto{margin-right:auto !important}.mb-auto,.my-auto{margin-bottom:auto !important}.ml-auto,.mx-auto{margin-left:auto !important}@media (min-width: 576px){.m-sm-0{margin:0 !important}.mt-sm-0,.my-sm-0{margin-top:0 !important}.mr-sm-0,.mx-sm-0{margin-right:0 !important}.mb-sm-0,.my-sm-0{margin-bottom:0 !important}.ml-sm-0,.mx-sm-0{margin-left:0 !important}.m-sm-1{margin:0.25rem !important}.mt-sm-1,.my-sm-1{margin-top:0.25rem !important}.mr-sm-1,.mx-sm-1{margin-right:0.25rem !important}.mb-sm-1,.my-sm-1{margin-bottom:0.25rem !important}.ml-sm-1,.mx-sm-1{margin-left:0.25rem !important}.m-sm-2{margin:0.5rem !important}.mt-sm-2,.my-sm-2{margin-top:0.5rem !important}.mr-sm-2,.mx-sm-2{margin-right:0.5rem !important}.mb-sm-2,.my-sm-2{margin-bottom:0.5rem !important}.ml-sm-2,.mx-sm-2{margin-left:0.5rem !important}.m-sm-3{margin:1rem !important}.mt-sm-3,.my-sm-3{margin-top:1rem !important}.mr-sm-3,.mx-sm-3{margin-right:1rem !important}.mb-sm-3,.my-sm-3{margin-bottom:1rem !important}.ml-sm-3,.mx-sm-3{margin-left:1rem !important}.m-sm-4{margin:1.5rem !important}.mt-sm-4,.my-sm-4{margin-top:1.5rem !important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem !important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem !important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem !important}.m-sm-5{margin:3rem !important}.mt-sm-5,.my-sm-5{margin-top:3rem !important}.mr-sm-5,.mx-sm-5{margin-right:3rem !important}.mb-sm-5,.my-sm-5{margin-bottom:3rem !important}.ml-sm-5,.mx-sm-5{margin-left:3rem !important}.p-sm-0{padding:0 !important}.pt-sm-0,.py-sm-0{padding-top:0 !important}.pr-sm-0,.px-sm-0{padding-right:0 !important}.pb-sm-0,.py-sm-0{padding-bottom:0 !important}.pl-sm-0,.px-sm-0{padding-left:0 !important}.p-sm-1{padding:0.25rem !important}.pt-sm-1,.py-sm-1{padding-top:0.25rem !important}.pr-sm-1,.px-sm-1{padding-right:0.25rem !important}.pb-sm-1,.py-sm-1{padding-bottom:0.25rem !important}.pl-sm-1,.px-sm-1{padding-left:0.25rem !important}.p-sm-2{padding:0.5rem !important}.pt-sm-2,.py-sm-2{padding-top:0.5rem !important}.pr-sm-2,.px-sm-2{padding-right:0.5rem !important}.pb-sm-2,.py-sm-2{padding-bottom:0.5rem !important}.pl-sm-2,.px-sm-2{padding-left:0.5rem !important}.p-sm-3{padding:1rem !important}.pt-sm-3,.py-sm-3{padding-top:1rem !important}.pr-sm-3,.px-sm-3{padding-right:1rem !important}.pb-sm-3,.py-sm-3{padding-bottom:1rem !important}.pl-sm-3,.px-sm-3{padding-left:1rem !important}.p-sm-4{padding:1.5rem !important}.pt-sm-4,.py-sm-4{padding-top:1.5rem !important}.pr-sm-4,.px-sm-4{padding-right:1.5rem !important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem !important}.pl-sm-4,.px-sm-4{padding-left:1.5rem !important}.p-sm-5{padding:3rem !important}.pt-sm-5,.py-sm-5{padding-top:3rem !important}.pr-sm-5,.px-sm-5{padding-right:3rem !important}.pb-sm-5,.py-sm-5{padding-bottom:3rem !important}.pl-sm-5,.px-sm-5{padding-left:3rem !important}.m-sm-n1{margin:-0.25rem !important}.mt-sm-n1,.my-sm-n1{margin-top:-0.25rem !important}.mr-sm-n1,.mx-sm-n1{margin-right:-0.25rem !important}.mb-sm-n1,.my-sm-n1{margin-bottom:-0.25rem !important}.ml-sm-n1,.mx-sm-n1{margin-left:-0.25rem !important}.m-sm-n2{margin:-0.5rem !important}.mt-sm-n2,.my-sm-n2{margin-top:-0.5rem !important}.mr-sm-n2,.mx-sm-n2{margin-right:-0.5rem !important}.mb-sm-n2,.my-sm-n2{margin-bottom:-0.5rem !important}.ml-sm-n2,.mx-sm-n2{margin-left:-0.5rem !important}.m-sm-n3{margin:-1rem !important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem !important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem !important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem !important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem !important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem !important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem !important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem !important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem !important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem !important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem !important}.m-sm-auto{margin:auto !important}.mt-sm-auto,.my-sm-auto{margin-top:auto !important}.mr-sm-auto,.mx-sm-auto{margin-right:auto !important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto !important}.ml-sm-auto,.mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0,.my-md-0{margin-top:0 !important}.mr-md-0,.mx-md-0{margin-right:0 !important}.mb-md-0,.my-md-0{margin-bottom:0 !important}.ml-md-0,.mx-md-0{margin-left:0 !important}.m-md-1{margin:0.25rem !important}.mt-md-1,.my-md-1{margin-top:0.25rem !important}.mr-md-1,.mx-md-1{margin-right:0.25rem !important}.mb-md-1,.my-md-1{margin-bottom:0.25rem !important}.ml-md-1,.mx-md-1{margin-left:0.25rem !important}.m-md-2{margin:0.5rem !important}.mt-md-2,.my-md-2{margin-top:0.5rem !important}.mr-md-2,.mx-md-2{margin-right:0.5rem !important}.mb-md-2,.my-md-2{margin-bottom:0.5rem !important}.ml-md-2,.mx-md-2{margin-left:0.5rem !important}.m-md-3{margin:1rem !important}.mt-md-3,.my-md-3{margin-top:1rem !important}.mr-md-3,.mx-md-3{margin-right:1rem !important}.mb-md-3,.my-md-3{margin-bottom:1rem !important}.ml-md-3,.mx-md-3{margin-left:1rem !important}.m-md-4{margin:1.5rem !important}.mt-md-4,.my-md-4{margin-top:1.5rem !important}.mr-md-4,.mx-md-4{margin-right:1.5rem !important}.mb-md-4,.my-md-4{margin-bottom:1.5rem !important}.ml-md-4,.mx-md-4{margin-left:1.5rem !important}.m-md-5{margin:3rem !important}.mt-md-5,.my-md-5{margin-top:3rem !important}.mr-md-5,.mx-md-5{margin-right:3rem !important}.mb-md-5,.my-md-5{margin-bottom:3rem !important}.ml-md-5,.mx-md-5{margin-left:3rem !important}.p-md-0{padding:0 !important}.pt-md-0,.py-md-0{padding-top:0 !important}.pr-md-0,.px-md-0{padding-right:0 !important}.pb-md-0,.py-md-0{padding-bottom:0 !important}.pl-md-0,.px-md-0{padding-left:0 !important}.p-md-1{padding:0.25rem !important}.pt-md-1,.py-md-1{padding-top:0.25rem !important}.pr-md-1,.px-md-1{padding-right:0.25rem !important}.pb-md-1,.py-md-1{padding-bottom:0.25rem !important}.pl-md-1,.px-md-1{padding-left:0.25rem !important}.p-md-2{padding:0.5rem !important}.pt-md-2,.py-md-2{padding-top:0.5rem !important}.pr-md-2,.px-md-2{padding-right:0.5rem !important}.pb-md-2,.py-md-2{padding-bottom:0.5rem !important}.pl-md-2,.px-md-2{padding-left:0.5rem !important}.p-md-3{padding:1rem !important}.pt-md-3,.py-md-3{padding-top:1rem !important}.pr-md-3,.px-md-3{padding-right:1rem !important}.pb-md-3,.py-md-3{padding-bottom:1rem !important}.pl-md-3,.px-md-3{padding-left:1rem !important}.p-md-4{padding:1.5rem !important}.pt-md-4,.py-md-4{padding-top:1.5rem !important}.pr-md-4,.px-md-4{padding-right:1.5rem !important}.pb-md-4,.py-md-4{padding-bottom:1.5rem !important}.pl-md-4,.px-md-4{padding-left:1.5rem !important}.p-md-5{padding:3rem !important}.pt-md-5,.py-md-5{padding-top:3rem !important}.pr-md-5,.px-md-5{padding-right:3rem !important}.pb-md-5,.py-md-5{padding-bottom:3rem !important}.pl-md-5,.px-md-5{padding-left:3rem !important}.m-md-n1{margin:-0.25rem !important}.mt-md-n1,.my-md-n1{margin-top:-0.25rem !important}.mr-md-n1,.mx-md-n1{margin-right:-0.25rem !important}.mb-md-n1,.my-md-n1{margin-bottom:-0.25rem !important}.ml-md-n1,.mx-md-n1{margin-left:-0.25rem !important}.m-md-n2{margin:-0.5rem !important}.mt-md-n2,.my-md-n2{margin-top:-0.5rem !important}.mr-md-n2,.mx-md-n2{margin-right:-0.5rem !important}.mb-md-n2,.my-md-n2{margin-bottom:-0.5rem !important}.ml-md-n2,.mx-md-n2{margin-left:-0.5rem !important}.m-md-n3{margin:-1rem !important}.mt-md-n3,.my-md-n3{margin-top:-1rem !important}.mr-md-n3,.mx-md-n3{margin-right:-1rem !important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem !important}.ml-md-n3,.mx-md-n3{margin-left:-1rem !important}.m-md-n4{margin:-1.5rem !important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem !important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem !important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem !important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mt-md-n5,.my-md-n5{margin-top:-3rem !important}.mr-md-n5,.mx-md-n5{margin-right:-3rem !important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem !important}.ml-md-n5,.mx-md-n5{margin-left:-3rem !important}.m-md-auto{margin:auto !important}.mt-md-auto,.my-md-auto{margin-top:auto !important}.mr-md-auto,.mx-md-auto{margin-right:auto !important}.mb-md-auto,.my-md-auto{margin-bottom:auto !important}.ml-md-auto,.mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.m-lg-0{margin:0 !important}.mt-lg-0,.my-lg-0{margin-top:0 !important}.mr-lg-0,.mx-lg-0{margin-right:0 !important}.mb-lg-0,.my-lg-0{margin-bottom:0 !important}.ml-lg-0,.mx-lg-0{margin-left:0 !important}.m-lg-1{margin:0.25rem !important}.mt-lg-1,.my-lg-1{margin-top:0.25rem !important}.mr-lg-1,.mx-lg-1{margin-right:0.25rem !important}.mb-lg-1,.my-lg-1{margin-bottom:0.25rem !important}.ml-lg-1,.mx-lg-1{margin-left:0.25rem !important}.m-lg-2{margin:0.5rem !important}.mt-lg-2,.my-lg-2{margin-top:0.5rem !important}.mr-lg-2,.mx-lg-2{margin-right:0.5rem !important}.mb-lg-2,.my-lg-2{margin-bottom:0.5rem !important}.ml-lg-2,.mx-lg-2{margin-left:0.5rem !important}.m-lg-3{margin:1rem !important}.mt-lg-3,.my-lg-3{margin-top:1rem !important}.mr-lg-3,.mx-lg-3{margin-right:1rem !important}.mb-lg-3,.my-lg-3{margin-bottom:1rem !important}.ml-lg-3,.mx-lg-3{margin-left:1rem !important}.m-lg-4{margin:1.5rem !important}.mt-lg-4,.my-lg-4{margin-top:1.5rem !important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem !important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem !important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem !important}.m-lg-5{margin:3rem !important}.mt-lg-5,.my-lg-5{margin-top:3rem !important}.mr-lg-5,.mx-lg-5{margin-right:3rem !important}.mb-lg-5,.my-lg-5{margin-bottom:3rem !important}.ml-lg-5,.mx-lg-5{margin-left:3rem !important}.p-lg-0{padding:0 !important}.pt-lg-0,.py-lg-0{padding-top:0 !important}.pr-lg-0,.px-lg-0{padding-right:0 !important}.pb-lg-0,.py-lg-0{padding-bottom:0 !important}.pl-lg-0,.px-lg-0{padding-left:0 !important}.p-lg-1{padding:0.25rem !important}.pt-lg-1,.py-lg-1{padding-top:0.25rem !important}.pr-lg-1,.px-lg-1{padding-right:0.25rem !important}.pb-lg-1,.py-lg-1{padding-bottom:0.25rem !important}.pl-lg-1,.px-lg-1{padding-left:0.25rem !important}.p-lg-2{padding:0.5rem !important}.pt-lg-2,.py-lg-2{padding-top:0.5rem !important}.pr-lg-2,.px-lg-2{padding-right:0.5rem !important}.pb-lg-2,.py-lg-2{padding-bottom:0.5rem !important}.pl-lg-2,.px-lg-2{padding-left:0.5rem !important}.p-lg-3{padding:1rem !important}.pt-lg-3,.py-lg-3{padding-top:1rem !important}.pr-lg-3,.px-lg-3{padding-right:1rem !important}.pb-lg-3,.py-lg-3{padding-bottom:1rem !important}.pl-lg-3,.px-lg-3{padding-left:1rem !important}.p-lg-4{padding:1.5rem !important}.pt-lg-4,.py-lg-4{padding-top:1.5rem !important}.pr-lg-4,.px-lg-4{padding-right:1.5rem !important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem !important}.pl-lg-4,.px-lg-4{padding-left:1.5rem !important}.p-lg-5{padding:3rem !important}.pt-lg-5,.py-lg-5{padding-top:3rem !important}.pr-lg-5,.px-lg-5{padding-right:3rem !important}.pb-lg-5,.py-lg-5{padding-bottom:3rem !important}.pl-lg-5,.px-lg-5{padding-left:3rem !important}.m-lg-n1{margin:-0.25rem !important}.mt-lg-n1,.my-lg-n1{margin-top:-0.25rem !important}.mr-lg-n1,.mx-lg-n1{margin-right:-0.25rem !important}.mb-lg-n1,.my-lg-n1{margin-bottom:-0.25rem !important}.ml-lg-n1,.mx-lg-n1{margin-left:-0.25rem !important}.m-lg-n2{margin:-0.5rem !important}.mt-lg-n2,.my-lg-n2{margin-top:-0.5rem !important}.mr-lg-n2,.mx-lg-n2{margin-right:-0.5rem !important}.mb-lg-n2,.my-lg-n2{margin-bottom:-0.5rem !important}.ml-lg-n2,.mx-lg-n2{margin-left:-0.5rem !important}.m-lg-n3{margin:-1rem !important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem !important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem !important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem !important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem !important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem !important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem !important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem !important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem !important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem !important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem !important}.m-lg-auto{margin:auto !important}.mt-lg-auto,.my-lg-auto{margin-top:auto !important}.mr-lg-auto,.mx-lg-auto{margin-right:auto !important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto !important}.ml-lg-auto,.mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.m-xl-0{margin:0 !important}.mt-xl-0,.my-xl-0{margin-top:0 !important}.mr-xl-0,.mx-xl-0{margin-right:0 !important}.mb-xl-0,.my-xl-0{margin-bottom:0 !important}.ml-xl-0,.mx-xl-0{margin-left:0 !important}.m-xl-1{margin:0.25rem !important}.mt-xl-1,.my-xl-1{margin-top:0.25rem !important}.mr-xl-1,.mx-xl-1{margin-right:0.25rem !important}.mb-xl-1,.my-xl-1{margin-bottom:0.25rem !important}.ml-xl-1,.mx-xl-1{margin-left:0.25rem !important}.m-xl-2{margin:0.5rem !important}.mt-xl-2,.my-xl-2{margin-top:0.5rem !important}.mr-xl-2,.mx-xl-2{margin-right:0.5rem !important}.mb-xl-2,.my-xl-2{margin-bottom:0.5rem !important}.ml-xl-2,.mx-xl-2{margin-left:0.5rem !important}.m-xl-3{margin:1rem !important}.mt-xl-3,.my-xl-3{margin-top:1rem !important}.mr-xl-3,.mx-xl-3{margin-right:1rem !important}.mb-xl-3,.my-xl-3{margin-bottom:1rem !important}.ml-xl-3,.mx-xl-3{margin-left:1rem !important}.m-xl-4{margin:1.5rem !important}.mt-xl-4,.my-xl-4{margin-top:1.5rem !important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem !important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem !important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem !important}.m-xl-5{margin:3rem !important}.mt-xl-5,.my-xl-5{margin-top:3rem !important}.mr-xl-5,.mx-xl-5{margin-right:3rem !important}.mb-xl-5,.my-xl-5{margin-bottom:3rem !important}.ml-xl-5,.mx-xl-5{margin-left:3rem !important}.p-xl-0{padding:0 !important}.pt-xl-0,.py-xl-0{padding-top:0 !important}.pr-xl-0,.px-xl-0{padding-right:0 !important}.pb-xl-0,.py-xl-0{padding-bottom:0 !important}.pl-xl-0,.px-xl-0{padding-left:0 !important}.p-xl-1{padding:0.25rem !important}.pt-xl-1,.py-xl-1{padding-top:0.25rem !important}.pr-xl-1,.px-xl-1{padding-right:0.25rem !important}.pb-xl-1,.py-xl-1{padding-bottom:0.25rem !important}.pl-xl-1,.px-xl-1{padding-left:0.25rem !important}.p-xl-2{padding:0.5rem !important}.pt-xl-2,.py-xl-2{padding-top:0.5rem !important}.pr-xl-2,.px-xl-2{padding-right:0.5rem !important}.pb-xl-2,.py-xl-2{padding-bottom:0.5rem !important}.pl-xl-2,.px-xl-2{padding-left:0.5rem !important}.p-xl-3{padding:1rem !important}.pt-xl-3,.py-xl-3{padding-top:1rem !important}.pr-xl-3,.px-xl-3{padding-right:1rem !important}.pb-xl-3,.py-xl-3{padding-bottom:1rem !important}.pl-xl-3,.px-xl-3{padding-left:1rem !important}.p-xl-4{padding:1.5rem !important}.pt-xl-4,.py-xl-4{padding-top:1.5rem !important}.pr-xl-4,.px-xl-4{padding-right:1.5rem !important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem !important}.pl-xl-4,.px-xl-4{padding-left:1.5rem !important}.p-xl-5{padding:3rem !important}.pt-xl-5,.py-xl-5{padding-top:3rem !important}.pr-xl-5,.px-xl-5{padding-right:3rem !important}.pb-xl-5,.py-xl-5{padding-bottom:3rem !important}.pl-xl-5,.px-xl-5{padding-left:3rem !important}.m-xl-n1{margin:-0.25rem !important}.mt-xl-n1,.my-xl-n1{margin-top:-0.25rem !important}.mr-xl-n1,.mx-xl-n1{margin-right:-0.25rem !important}.mb-xl-n1,.my-xl-n1{margin-bottom:-0.25rem !important}.ml-xl-n1,.mx-xl-n1{margin-left:-0.25rem !important}.m-xl-n2{margin:-0.5rem !important}.mt-xl-n2,.my-xl-n2{margin-top:-0.5rem !important}.mr-xl-n2,.mx-xl-n2{margin-right:-0.5rem !important}.mb-xl-n2,.my-xl-n2{margin-bottom:-0.5rem !important}.ml-xl-n2,.mx-xl-n2{margin-left:-0.5rem !important}.m-xl-n3{margin:-1rem !important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem !important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem !important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem !important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem !important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem !important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem !important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem !important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem !important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem !important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem !important}.m-xl-auto{margin:auto !important}.mt-xl-auto,.my-xl-auto{margin-top:auto !important}.mr-xl-auto,.mx-xl-auto{margin-right:auto !important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto !important}.ml-xl-auto,.mx-xl-auto{margin-left:auto !important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important}.text-justify{text-align:justify !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}@media (min-width: 576px){.text-sm-left{text-align:left !important}.text-sm-right{text-align:right !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.text-md-left{text-align:left !important}.text-md-right{text-align:right !important}.text-md-center{text-align:center !important}}@media (min-width: 992px){.text-lg-left{text-align:left !important}.text-lg-right{text-align:right !important}.text-lg-center{text-align:center !important}}@media (min-width: 1200px){.text-xl-left{text-align:left !important}.text-xl-right{text-align:right !important}.text-xl-center{text-align:center !important}}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.font-weight-light{font-weight:300 !important}.font-weight-lighter{font-weight:lighter !important}.font-weight-normal{font-weight:400 !important}.font-weight-bold{font-weight:700 !important}.font-weight-bolder{font-weight:bolder !important}.font-italic{font-style:italic !important}.text-white{color:#fff !important}.text-primary{color:#375a7f !important}a.text-primary:hover,a.text-primary:focus{color:#20344a !important}.text-secondary{color:#444 !important}a.text-secondary:hover,a.text-secondary:focus{color:#1e1e1e !important}.text-success{color:#00bc8c !important}a.text-success:hover,a.text-success:focus{color:#007053 !important}.text-info{color:#3498db !important}a.text-info:hover,a.text-info:focus{color:#1d6fa5 !important}.text-warning{color:#f39c12 !important}a.text-warning:hover,a.text-warning:focus{color:#b06f09 !important}.text-danger{color:#e74c3c !important}a.text-danger:hover,a.text-danger:focus{color:#bf2718 !important}.text-light{color:#adb5bd !important}a.text-light:hover,a.text-light:focus{color:#838f9b !important}.text-dark{color:#303030 !important}a.text-dark:hover,a.text-dark:focus{color:#0a0a0a !important}.text-body{color:#fff !important}.text-muted{color:#888 !important}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-white-50{color:rgba(255,255,255,0.5) !important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none !important}.text-break{word-break:break-word !important;overflow-wrap:break-word !important}.text-reset{color:inherit !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}@media print{*,*::before,*::after{text-shadow:none !important;-webkit-box-shadow:none !important;box-shadow:none !important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap !important}pre,blockquote{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6 !important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#444}.table .thead-dark th{color:inherit;border-color:#444}}.blockquote-footer{color:#888}.table-primary,.table-primary>th,.table-primary>td{background-color:#375a7f}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#444}.table-light,.table-light>th,.table-light>td{background-color:#adb5bd}.table-dark,.table-dark>th,.table-dark>td{background-color:#303030}.table-success,.table-success>th,.table-success>td{background-color:#00bc8c}.table-info,.table-info>th,.table-info>td{background-color:#3498db}.table-danger,.table-danger>th,.table-danger>td{background-color:#e74c3c}.table-warning,.table-warning>th,.table-warning>td{background-color:#f39c12}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,0.075)}.table-hover .table-primary:hover,.table-hover .table-primary:hover>th,.table-hover .table-primary:hover>td{background-color:#2f4d6d}.table-hover .table-secondary:hover,.table-hover .table-secondary:hover>th,.table-hover .table-secondary:hover>td{background-color:#373737}.table-hover .table-light:hover,.table-hover .table-light:hover>th,.table-hover .table-light:hover>td{background-color:#9fa8b2}.table-hover .table-dark:hover,.table-hover .table-dark:hover>th,.table-hover .table-dark:hover>td{background-color:#232323}.table-hover .table-success:hover,.table-hover .table-success:hover>th,.table-hover .table-success:hover>td{background-color:#00a379}.table-hover .table-info:hover,.table-hover .table-info:hover>th,.table-hover .table-info:hover>td{background-color:#258cd1}.table-hover .table-danger:hover,.table-hover .table-danger:hover>th,.table-hover .table-danger:hover>td{background-color:#e43725}.table-hover .table-warning:hover,.table-hover .table-warning:hover>th,.table-hover .table-warning:hover>td{background-color:#e08e0b}.table-hover .table-active:hover,.table-hover .table-active:hover>th,.table-hover .table-active:hover>td{background-color:rgba(0,0,0,0.075)}.input-group-addon{color:#fff}.nav-tabs .nav-link,.nav-tabs .nav-link.active,.nav-tabs .nav-link.active:focus,.nav-tabs .nav-link.active:hover,.nav-tabs .nav-item.open .nav-link,.nav-tabs .nav-item.open .nav-link:focus,.nav-tabs .nav-item.open .nav-link:hover,.nav-pills .nav-link,.nav-pills .nav-link.active,.nav-pills .nav-link.active:focus,.nav-pills .nav-link.active:hover,.nav-pills .nav-item.open .nav-link,.nav-pills .nav-item.open .nav-link:focus,.nav-pills .nav-item.open .nav-link:hover{color:#fff}.breadcrumb a{color:#fff}.pagination a:hover{text-decoration:none}.close{opacity:0.4}.close:hover,.close:focus{opacity:1}.alert{border:none;color:#fff}.alert a,.alert .alert-link{color:#fff;text-decoration:underline}.alert-primary{background-color:#375a7f}.alert-secondary{background-color:#444}.alert-success{background-color:#00bc8c}.alert-info{background-color:#3498db}.alert-warning{background-color:#f39c12}.alert-danger{background-color:#e74c3c}.alert-light{background-color:#adb5bd}.alert-dark{background-color:#303030}.list-group-item-action{color:#fff}.list-group-item-action:hover,.list-group-item-action:focus{background-color:#444;color:#fff}.list-group-item-action .list-group-item-heading{color:#fff} diff --git a/components/wifi-manager/res/bootstrap.css.gz b/components/wifi-manager/res/bootstrap.css.gz deleted file mode 100644 index ed2be85a0f2d7a33b6a7f4279d94ab840c419bab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 25478 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 @7HYRkTYV3Ya>pN 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 uUE4SC&M` elements.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n @include font-size($font-size-base);\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: left; // 3\n background-color: $body-bg; // 2\n}\n\n// Future-proof rule: in browsers that support :focus-visible, suppress the focus outline\n// on elements that programmatically receive focus but wouldn't normally show a visible\n// focus outline. In general, this would mean that the outline is only applied if the\n// interaction that led to the element receiving programmatic focus was a keyboard interaction,\n// or the browser has somehow determined that the user is primarily a keyboard user and/or\n// wants focus outlines to always be presented.\n//\n// See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible\n// and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/\n[tabindex=\"-1\"]:focus:not(:focus-visible) {\n outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n box-sizing: content-box; // 1\n height: 0; // 1\n overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n// stylelint-disable-next-line selector-list-comma-newline-after\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: $headings-margin-bottom;\n}\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Remove the bottom border in Firefox 39-.\n// 5. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-original-title] { // 1\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 4\n text-decoration-skip-ink: none; // 5\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: $font-weight-bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n\nsmall {\n @include font-size(80%); // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n @include font-size(75%);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n\n @include hover() {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n color: inherit;\n text-decoration: none;\n\n @include hover() {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n//\n// Code\n//\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-monospace;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n}\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // Disable auto-hiding scrollbar in IE & legacy Edge to avoid overlap,\n // making it impossible to interact with the content\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg {\n // Workaround for the SVG overflow bug in IE10/11 is still required.\n // See https://github.com/twbs/bootstrap/issues/26878\n overflow: hidden;\n vertical-align: middle;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $table-caption-color;\n text-align: left;\n caption-side: bottom;\n}\n\nth {\n // Matches default `` alignment by inheriting from the ``, or the\n // closest parent with a set `text-align`.\n text-align: inherit;\n}\n\n\n//\n// Forms\n//\n\nlabel {\n // Allow labels to use `margin` for spacing.\n display: inline-block;\n margin-bottom: $label-margin-bottom;\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24093\nbutton {\n // stylelint-disable-next-line property-blacklist\n border-radius: 0;\n}\n\n// Work around a Firefox/IE bug where the transparent `button` background\n// results in a loss of the default `button` focus styles.\n//\n// Credit: https://github.com/suitcss/base/\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // Remove the margin in Firefox and Safari\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// Set the cursor for non-`

' - if (isConfig) { - innerhtml += ''; - innerhtml += ''; - } else { - innerhtml += ''; - } - innerhtml+= ''; - if (isConfig) { - $(targetDiv).append(innerhtml); - } else { - $("#commands-list").append(innerhtml); - } - } - }); - - data.commands.forEach(function(command) { - $('[cmdname='+command.name+']:input').val(''); - $('[cmdname='+command.name+']:checkbox').prop('checked',false); - if (command.hasOwnProperty("argtable")) { - command.argtable.forEach(function(arg) { - ctrlselector = '#' + command.name + '-' + arg.longopts; - ctrlValue = data.values?.[command.name]?.[arg.longopts]; - if (arg.checkbox) { - $(ctrlselector)[0].checked = ctrlValue; - } else { - if(ctrlValue!=undefined) $(ctrlselector).val( ctrlValue ).change(); - if ($(ctrlselector)[0].value.length == 0 && (arg?.datatype || '').includes('|')) { - $(ctrlselector)[0].value = '--'; - } - } - }); - } - }); - - }) - .fail(function(xhr, ajaxOptions, thrownError) { - handleExceptionResponse(xhr, ajaxOptions, thrownError); - $("#commands-list").empty(); - blockAjax = false; - }); -} - -function getConfig() { - $.getJSON("/config.json", function(entries) { - $("#nvsTable tr").remove(); - data = entries.hasOwnProperty('config') ? entries.config : entries; - Object.keys(data).sort().forEach(function(key, i) { - if (data.hasOwnProperty(key)) { - val = data[key].value; - if (key == 'autoexec') { - if (data["autoexec"].value === "0") { - $("#disable-squeezelite")[0].checked = true; - } else { - $("#disable-squeezelite")[0].checked = false; - } - } else if (key == 'autoexec1') { - var re = /-o\s?(["][^"]*["]|[^-]+)/g; - var m = re.exec(val); - if (m[1].toUpperCase().startsWith('I2S')) { - handleTemplateTypeRadio('i2s'); - } else if (m[1].toUpperCase().startsWith('SPDIF')) { - handleTemplateTypeRadio('spdif'); - } else if (m[1].toUpperCase().startsWith('"BT')) { - handleTemplateTypeRadio('bt'); - } - } else if (key == 'host_name') { - val = val.replaceAll('"', ''); - $("input#dhcp-name1").val(val); - $("input#dhcp-name2").val(val); - $("#player").val(val); - document.title=val; - } - - $("tbody#nvsTable").append( - "" + - "" + key + "" + - "" + - "" + - "" + - "" - ); - $("input#" + key).val(data[key].value); - } - }); - $("tbody#nvsTable").append(""); - if (entries.hasOwnProperty('gpio')) { - $("tbody#gpiotable tr").remove(); - entries.gpio.forEach(function(gpio_entry) { - cl = gpio_entry.fixed ? "table-secondary" : "table-primary"; - $("tbody#gpiotable").append('' + gpio_entry.group + '' + gpio_entry.name + '' + gpio_entry.gpio + '' + (gpio_entry.fixed ? 'Fixed':'Configuration') + ''); - }); - } - }) - .fail(function(xhr, ajaxOptions, thrownError) { - handleExceptionResponse(xhr, ajaxOptions, thrownError); - blockAjax = false; - }); -} -function showLocalMessage(message,severity, age = 0){ - msg={ - 'type':'Local', - 'message':message, - 'type' : severity - } - showMessage(msg,severity,age); -} - -function showMessage(msg, msg_time,age = 0) { - color='table-success'; - - if (msg['type'] == 'MESSAGING_WARNING') { - color='table-warning'; - if(messageseverity=='MESSAGING_INFO'){ - messageseverity = 'MESSAGING_WARNING'; - } - } else if (msg['type'] == 'MESSAGING_ERROR') { - if(messageseverity=='MESSAGING_INFO' || messageseverity=='MESSAGING_WARNING'){ - messageseverity = 'MESSAGING_ERROR'; - } - color ='table-danger'; - } - if(++messagecount>0){ - $('#msgcnt').removeClass('badge-success'); - $('#msgcnt').removeClass('badge-warning'); - $('#msgcnt').removeClass('badge-danger'); - $('#msgcnt').addClass(pillcolors[messageseverity]); - $('#msgcnt').text(messagecount); - } - - $("#syslogTable").append( - "" + - "" + msg_time.toLocaleString() + "" + - "" + escapeHTML(msg["message"]).replace(/\n/g, '
') + "" + - "" - ); -} - -function inRange(x, min, max) { - return ((x - min) * (x - max) <= 0); -} - -function sleep(ms) { - return new Promise(resolve => setTimeout(resolve, ms)); -} \ No newline at end of file diff --git a/components/wifi-manager/res/code.js.gz b/components/wifi-manager/res/code.js.gz deleted file mode 100644 index d7bdfdd28b9c358092d0129fb5f56369e842c149..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12741 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 L+dkVR7PtTaFh+{L diff --git a/components/wifi-manager/res/favicon.ico.gz b/components/wifi-manager/res/favicon.ico.gz deleted file mode 100644 index b9d46bff018e11fb6198c415121a0bf1244ca660..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2275 zcmV<92psnxiwFoV!Zu$317=}%X=870E@@+L0KJ$AOqA&v$7cfGsBCTBb`L9v2io0k zO%t`Ysk@tYW4Gz1$tJsNlXkW0y0RXC2v(3A4+J@c;XVf$E=3d(1i9y)VNPx@+%;+% zAU1Ym({KKLo^Ko+4y)NF9rJg-?|q-=`Mt;UzRsgWBBejemrM9>iNaeVSt^l8){v-4 zvPI%-f6=G(oI+|bn?CKe+gb+t`$lgJ4GOnz-VjFa+!k)%x+x3|4hVg{cEM&b3#J~U zVASgby;dV=)hbc^Y%&@ItJx$_3}LXpPq;BWB>Hj;iZ|M4w>6u4jGye^zDw%PRx6cW z)ZS>fS}-)w54+7Q==CaSHQmstyP#6GqpPb`lv3FSwYmdZZ5Q-AlfLY>FWyX9NqMACO@C zK`C|wO0n~h6nny?2nd(rK$H}LaZ&^)ND*>Eio++J;^#xu78K{S35am|urJ5pSRC_I z>VAR7Ezn${)2JH){`#d+^2 zv@WT#5MgJKCs<#E%)(bkXCW|p7D7+VLPYXxM5WC}Y{qQF%Sc&HB|Meuo%>=lXCsL+pN&2l+DB+@9VV+yMiRx9Xtnn4$r~<@Hq&Hn~U(%a}kp^ z4+*k)IFU`tc}ZnEeb|>{gv8IqfrvTyl43K1S$4ZwApR)v9Tu|zdk)RR-ox{8Fk(K! z;ujz?*$W97UO1Jr5Q(|pP3+4tq9|5a!U6#jlYlTY}i+@8L+?E5!1i%(oa28npxigFSfiltk{`YPm=`Jm$BhiGm;fU=q`;(H~%tMt*L z%Fk~_O4gf5NO~O>%QL=>_=%~@Aj|tBELIgU?&IOZhr}HaH8k9V!gIbTDDy={O&Gn~ z#Qp~l9-zO!M|@W66ez1+j}B!h4CW-L^>HY#*@U9<)o5wo2c08K``$DI`hTc9cipy6$)k@@*tRUO9^t}q1d5gvQo2(a6 zdu1!Gwe5n%o<+(;Yv(~I&Tqhl`j619If5?LVe(mxluX}g{PZkhm##*sVhu_wo{FB; zng&>H%4cm;lwJ4=_%nR76;0RwO!Geovo#%k1H~}XI@H$x7FD&IiG2v2s$i5={t9Qa z{b04a@offV=Fr^A{HcHKGgYibxAHROMd##pH{}&A75O)Bx1+r)09r!~tTgwb;R@J# zvrvEa52(7Zf%^8LqkBIpYuFQq;_}Z6}>u% zuQNo$V#~n5ket5HqQ3DXRA1PL){fnzFDQSuAZrGGX7*~D|8)Myh!vw_U;h`rbN)AI z{hM3=f=*>1jHX19t)ZN+yYd05Ykz^3w(ZovoqRSzmNSJ<`+qiT6$(rJzcYVuxCNIR zeou_gq18u0ql*xEHMIBV>)u6E%QiGNe}*FYI%H%`=ci_@LVmHo$ehX_8~f(D{DR_T zBENs|8qISPasGt1&OJ2W9U@y%{Zm}J@*x_oeT<9szax8pq!DXs{wJrdM0P&qbott8 ze1}887~T0}0XW|&jE8jsuiNBcRJoo50pK1U8MMNz}Y=SS6QvB#HdbSTG=Qh(ChTzh3 zR9An96i7V(8S|54a4f!Gk|@XGj{AzNsr>NBEPApEoP7Ak_W$w^)DB zc@SdaHaT22yce7goRfSm_-yk1!0W;B`K~T`Dt_iR?#m$?K4YBcoNK(_?(FEejgB7U zME&vUHLa#be0J52d|$L$u{Q;d8-flkW$Q5cjl3GnC)T(x>BU?qORc+MP z0g3~oK?zfjn$EILyia=QS+C=om3*lFR8j4zqIy+J?_&LFpQt~tc6GFQx!1sr*RD#b zZyVLf*Qs_Mr`p*;wX@^y$Q{QW`W_w{bWol+sQz})SRE9@K{dC7&kyCXgVxhQ^*5a* xvx8zdD2Bs520c@qWp5$h&*X~AiTb-uBJqgg|04K5f0)Va{{RK|j}g8Q001A`op1mE diff --git a/components/wifi-manager/res/jquery.js b/components/wifi-manager/res/jquery.js deleted file mode 100644 index b0614034..00000000 --- a/components/wifi-manager/res/jquery.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! jQuery v3.5.1 | (c) JS Foundation and other contributors | jquery.org/license */ -!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="
",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 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 RG@ATB{~v{m9X*6y0RTudzXAXN diff --git a/components/wifi-manager/res/style.css.gz b/components/wifi-manager/res/style.css.gz deleted file mode 100644 index 1269f37cea2e41a84af5628e852320d9bbd3f133..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4825 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 - Bootstrap v4 - SASS - JQuery - WebPack
+ +

+ Webpack + Webpack + node-sass + jquery + jquery + popper.js + eslint + Font Awesome + Line Awesome +

+ +![webpack logo](https://abload.de/img/webpack1tkeb.png) +![bootstrap logo](https://abload.de/img/bootstrap-logo-vector78khf.png) +![babel logo](https://abload.de/img/2000px-babel_logo.svgrzkxw.png) +![sass logo](https://abload.de/img/1280px-sass_logo_colo0bjb4.png) + + +

+ + SASS + · Babel + · Bootstrap + · JQuery + · PopperJS + · Font Awesome + +

+ +This Webpack4-Sass Boilerplate contains the following features: + +- Webpack4 & Dev-Server +- TypeScript 3.7.5 +- Babel ES6 Compiler +- Bootstrap v4 - with Theme Support +- Font Awesome v5.7 +- Animate.css Library v3.7.2 +- JQuery v3.3.1 +- PopperJS v2 +- _lodash +- concentrate and minify JavaScript. +- Compile, minify, Autoprefix SASS. +- Optimize and Cache Images +- Preconfigured BootsWatch Template (YETI & Slate) +- Linting for your TS, JS and SASS + +## Features + +### Webpack Loaders & Plugins + +This project contains the following loaders & plugins: + +- `node-sass` for compiling sass (SCSS) +- `babel-loader` for compiling ES6 code +- `babel-eslint && eslint-loader` for Linting your .js +- `tslint` for Linting your .ts +- `lodash-webpack-plugin` create smaller Lodash builds by replacing feature sets of modules with noop, identity, or simpler alternatives. +- `webpack-dev-server` for serving & Hot-Reloading +- `css-loader` for compressing css +- `sass-loader` for compressing and loading scss & sass +- `url- & file-loader` for loading and optimizing images +- `xml and csv loader` for loading data files +- `html-loader` for loading & optimizing html files +- `clean-webpack-plugin` for keeping your dist folder clean +- `favicons-webpack-plugin` generate favicons form your "logo.png" + + +## Getting Started + +### Dependencies + +Make sure these are installed first. + +- [Node.js](http://nodejs.org) +- [Webpack](https://webpack.js.org/guides/installation/) + + `npm install --g webpack` + +
+ +### Quick Start + +1. Clone the repo : + `git clone https://github.com/AndyKorek/webpack-boilerplate-sass-ts-bootstrap4-fontawesome.git` +2. In bash/terminal/command line, `cd ` into project directory. +3. Run `npm i` to install required dependencies. + +4. Run the Dev Server with (with Hot Reloading) `npm run dev` + +
+ +### Build the Production Folder +`npm run build` + +This will: + +- Bundle and Minify SASS(scss) to css & Hash and Cash it +- generate GZip and Brodli Compressed Assets +- Bundle and Minify JS +- Optimize Images +- Optimize HTML +- generate Favicons + +
+ +## Documentation + +### Workflow structure + +`src` - > source directory + +`dist` -> build directory + + +``` + +├── src +│ ├── assets +│ │ └── images +│ ├── fonts +│ ├── sass +│ │ ├── layout +| | | └── _features.scss +│ │ ├── setup +| | | └── _normalize.scss +│ │ ├── themes +| | | ├── _slate.scss +| | | └── _yeti.scss +│ │ ├── utils +| | | ├── _mixins.scss +| | | └── _variables.scss +│ │ ├── _globals.scss +│ │ ├── _headings.scss +│ │ ├── _typography.scss +│ │ ├── _vendor.scss +│ │ └── main.scss +│ ├── ts +│ │ ├── custom.ts +│ │ ├── line-awesome.ts +│ │ ├── vendor.ts +│ |── .htaccess +│ |── 404.html +│ |── index.html +│ └── index.ts + + + +├── dist +│ ├── assets +│ │ ├── images +│ │ └── +│ ├── css +│ │ ├── vendors.[contenthash].css +│ │ └── main.contenthash].css +│ ├── js +│ │ ├── main.[contenthash].js +│ │ ├── runtime.[contenthash].js +│ │ └── vendors.[contenthash].js +│ │ +│ └── index.html + +``` +### Loading the Features you need + +in `src/js/vendor/_boostrap.js` uncomment all Features you need + +put your custom js to `src/js/_custom.js` + + +
+ +### Instructions + +- Add `sass`(.scss) files to `src/_scss` folder. + + - Make sure you import the scss file in `main.scss` + ``` + @import "filename"; + ``` +- Add your assets to `src/assets/` + +- Add `images` to `src/assets/images` + +## TODO list + +- [x] Bootstrap 4 +- [x] Webpack 4 +- [x] Jquery +- [x] PopperJS v2 +- [x] Include ES-Lint +- [x] Font-Awesome +- [x] Assets Loader +- [x] Separated location for Bundled Files +- [x] Adding EsLint +- [ ] Code Optimising +- [x] Uglify and Minify JS with Terser + +## Licence + +Code released under the [MIT License](https://github.com/AndyKorek/webpack4_boilerplate/blob/master/LICENSE). + +* with* :heart: *from Germany* diff --git a/components/wifi-manager/webapp/config/.stylelintrc b/components/wifi-manager/webapp/config/.stylelintrc new file mode 100644 index 00000000..10b61b94 --- /dev/null +++ b/components/wifi-manager/webapp/config/.stylelintrc @@ -0,0 +1,24 @@ +{ + "extends": "stylelint-config-standard", + "rules": { + "no-duplicate-selectors": true, + "indentation": null, + "color-hex-case": "lower", + "color-hex-length": "long", + "selector-combinator-space-after": "never", + "declaration-block-trailing-semicolon": "always", + "declaration-colon-space-before": "never", + "declaration-colon-newline-after": null, + "comment-whitespace-inside": "always", + "comment-empty-line-before": null, + "selector-pseudo-class-parentheses-space-inside": "always", + "selector-list-comma-newline-after": null, + "media-feature-range-operator-space-before": "always", + "media-feature-range-operator-space-after": "always", + "media-feature-parentheses-space-inside": "always", + "media-feature-colon-space-before": "always", + "media-feature-colon-space-after": "always", + "no-eol-whitespace": null, + "no-missing-end-of-source-newline": null, + "number-leading-zero": "never" } +} diff --git a/components/wifi-manager/webapp/debug.log b/components/wifi-manager/webapp/debug.log new file mode 100644 index 00000000..8f268507 --- /dev/null +++ b/components/wifi-manager/webapp/debug.log @@ -0,0 +1,3 @@ +[1211/165128.604:ERROR:directory_reader_win.cc(43)] FindFirstFile: Le chemin d’accès spécifié est introuvable. (0x3) +[1212/063417.746:ERROR:directory_reader_win.cc(43)] FindFirstFile: Le chemin d’accès spécifié est introuvable. (0x3) +[1213/063413.475:ERROR:directory_reader_win.cc(43)] FindFirstFile: Le chemin d’accès spécifié est introuvable. (0x3) diff --git a/components/wifi-manager/ap.json b/components/wifi-manager/webapp/mock/ap.json similarity index 82% rename from components/wifi-manager/ap.json rename to components/wifi-manager/webapp/mock/ap.json index de61f86a..cf27ca60 100644 --- a/components/wifi-manager/ap.json +++ b/components/wifi-manager/webapp/mock/ap.json @@ -8,5 +8,6 @@ {"ssid":"The Shah 5GHz-2","chan":1,"rssi":-90,"auth":3}, {"ssid":"SINGTEL-1D28 (2G)","chan":11,"rssi":-91,"auth":3}, {"ssid":"dlink-F864","chan":1,"rssi":-92,"auth":4}, -{"ssid":"dlink-74F0","chan":1,"rssi":-93,"auth":4} +{"ssid":"dlink-74F0","chan":1,"rssi":-93,"auth":4}, +{"ssid":"MyTestSSID","chan":2,"rssi":-53,"auth":4} ] \ No newline at end of file diff --git a/components/wifi-manager/commands.json b/components/wifi-manager/webapp/mock/commands.json similarity index 71% rename from components/wifi-manager/commands.json rename to components/wifi-manager/webapp/mock/commands.json index 12f5c116..b34e51a4 100644 --- a/components/wifi-manager/commands.json +++ b/components/wifi-manager/webapp/mock/commands.json @@ -1,117 +1,125 @@ { "commands": [{ - "help": "Squeezelite Options", + "help": "WiFi", "hascb": true, "argtable": [{ - "datatype": "[:]", - "glossary": "Connect to specified server, otherwise uses autodiscovery to find server", - "longopts": "server", - "shortopts": "s", + "datatype": "Fast|Comprehensive", + "glossary": "Sets the WiFi Scan Mode. Use Comprehensive where more than one AP has the same name on different channels. This will ensure that the AP with the strongest signal is chosen.", + "longopts": "scanmode", "checkbox": false, "hasvalue": true, "mincount": 0, "maxcount": 1 + }], + "hint": " [--scanmode=Fast|Comprehensive]", + "name": "cfg-syst-wifi" + }, { + "help": "Get the current size of free heap memory", + "hascb": false, + "name": "free" + }, { + "help": "Services", + "hascb": true, + "argtable": [{ + "glossary": "Bluetooth Speaker", + "longopts": "BT_Speaker", + "checkbox": true, + "hasvalue": false, + "mincount": 0, + "maxcount": 1 }, { - "datatype": ":", - "glossary": "Internal Stream and Output buffer sizes in Kbytes", - "longopts": "buffers", - "shortopts": "b", + "glossary": "AirPlay", + "longopts": "AirPlay", + "checkbox": true, + "hasvalue": false, + "mincount": 0, + "maxcount": 1 + }, { + "datatype": "Disabled|Telnet Only|Telnet and Serial", + "glossary": "Telnet server. Use only for troubleshooting", + "longopts": "telnet", + "shortopts": "t", "checkbox": false, "hasvalue": true, "mincount": 0, "maxcount": 1 - }, { - "datatype": ",", - "glossary": "Restrict codecs to those specified, otherwise load all available codecs; known codecs", - "longopts": "codecs", - "shortopts": "c", - "checkbox": false, - "hasvalue": true, - "mincount": 0, - "maxcount": 20 - }, { - "datatype": "", - "glossary": "Close output device when idle after timeout seconds, default is to keep it open while player is 'on", - "longopts": "timeout", - "shortopts": "C", - "checkbox": false, - "hasvalue": true, - "mincount": 0, - "maxcount": 1 - }, { - "datatype": "log=level", - "glossary": "Set logging level, logs: all|slimproto|stream|decode|output|ir, level: info|debug|sdebug", - "longopts": "loglevel", - "shortopts": "d", - "checkbox": false, - "hasvalue": true, - "mincount": 0, - "maxcount": 1 - }, { - "datatype": "", - "glossary": "Output device", - "longopts": "output_device", - "shortopts": "o", - "checkbox": false, - "hasvalue": true, - "mincount": 0, - "maxcount": 1 - }, { - "datatype": "", - "glossary": "Mac address, format: ab:cd:ef:12:34:56", - "longopts": "mac_addr", - "shortopts": "m", - "checkbox": false, - "hasvalue": true, - "mincount": 0, - "maxcount": 1 - }, { - "datatype": "", - "glossary": "Squeezelite player model name sent to the server", - "longopts": "modelname", - "shortopts": "M", - "checkbox": false, - "hasvalue": true, - "mincount": 0, - "maxcount": 1 - }, { - "datatype": "", - "glossary": "Player name", + }], + "hint": " [--BT_Speaker] [--AirPlay] [-t Disabled|Telnet Only|Telnet and Serial]", + "name": "cfg-syst-services" + }, { + "help": "Get minimum size of free heap memory found during execution", + "hascb": false, + "name": "heap" + }, { + "help": "Device Name", + "hascb": true, + "argtable": [{ + "datatype": "Bureau-OLED", + "glossary": "New Name", "longopts": "name", "shortopts": "n", "checkbox": false, "hasvalue": true, "mincount": 0, "maxcount": 1 - }, { - "glossary": "Read wave and aiff format from header, ignore server parameters", - "longopts": "header_format", - "shortopts": "W", - "checkbox": true, - "hasvalue": false, - "mincount": 0, - "maxcount": 1 - }, { - "datatype": "[:]", - "glossary": "Sample rates supported, allows output to be off when squeezelite is started; rates = |-|,,; delay = optional delay switching rates in ms\n", - "longopts": "rates", - "shortopts": "r", - "checkbox": false, - "hasvalue": true, - "mincount": 0, - "maxcount": 1 - }, { - "datatype": "", - "glossary": "Report rate to server in helo as the maximum sample rate we can support", - "longopts": "max_rate", - "shortopts": "Z", + }], + "hint": " [-n Bureau-OLED]", + "name": "cfg-syst-name" + }, { + "help": "Get version of chip and SDK", + "hascb": false, + "name": "version" + }, { + "help": "Reboot system", + "hascb": false, + "name": "restart" + }, { + "help": "Reboot system to Recovery", + "hascb": false, + "name": "recovery" + }, { + "help": "Reboot system to Squeezelite", + "hascb": false, + "name": "restart_ota" + }, { + "help": "General Audio Options", + "hascb": true, + "argtable": [{ + "datatype": "Headphones|Subwoofer", + "glossary": "On supported DAC, determines the audio jack behavior. Selecting headphones will cause the external amp to be muted on insert, while selecting Subwoofer will keep the amp active all the time.", + "longopts": "jack_behavior", + "shortopts": "j", "checkbox": false, "hasvalue": true, "mincount": 0, "maxcount": 1 }], - "hint": " [-W] [-s [:]] [-b :] [-c ,]... [-C ] [-d log=level] [-o ] [-m ] [-M ] [-n ] [-r [:]] [-Z ]", - "name": "cfg-syst-squeezelite" + "hint": " [-j Headphones|Subwoofer]", + "name": "cfg-audio-general" + }, { + "help": "Bluetooth Audio Output Options", + "hascb": true, + "argtable": [{ + "datatype": "name", + "glossary": "Bluetooth audio device name. This applies when output mode is Bluetooth", + "longopts": "sink_name", + "shortopts": "n", + "checkbox": false, + "hasvalue": true, + "mincount": 1, + "maxcount": 1 + }, { + "datatype": "pin", + "glossary": "Bluetooth security/pin code. Usually 0000. This applies when output mode is Bluetooth", + "longopts": "pin_code", + "shortopts": "p", + "checkbox": false, + "hasvalue": true, + "mincount": 1, + "maxcount": 1 + }], + "hint": " -n name -p pin", + "name": "cfg-audio-bt_source" }, { "help": "DAC Options", "hascb": true, @@ -156,7 +164,7 @@ "mincount": 0, "maxcount": 1 }, { - "glossary": "Mute active GPIO level", + "glossary": "Mute GPIO level. Checked=HIGH, Unchecked=LOW", "longopts": "mute_level", "checkbox": true, "hasvalue": false, @@ -197,80 +205,42 @@ "hint": " --model_name=TAS57xx|TAS5713|AC101|I2S --clock= --wordselect= --data= [--mute_gpio=] [--mute_level] [--dac_sda=] [--dac_scl=] [--dac_i2c=] [--clear]", "name": "cfg-hw-dac" }, { - "help": "Get the current size of free heap memory", - "hascb": false, - "name": "free" - }, { - "help": "Services", + "help": "SPDIF Options", "hascb": true, "argtable": [{ - "glossary": "Bluetooth Speaker", - "longopts": "BT_Speaker", - "checkbox": true, - "hasvalue": false, - "mincount": 0, - "maxcount": 1 - }, { - "glossary": "AirPlay", - "longopts": "AirPlay", - "checkbox": true, - "hasvalue": false, - "mincount": 0, - "maxcount": 1 - }, { - "datatype": "Disabled|Telnet Only|Telnet and Serial", - "glossary": "Telnet server. Use only for troubleshooting", - "longopts": "telnet", - "shortopts": "t", + "datatype": "", + "glossary": "Clock GPIO. e.g. 33", + "longopts": "clock", "checkbox": false, "hasvalue": true, - "mincount": 0, + "mincount": 1, "maxcount": 1 }, { - "glossary": "System Statistics. Use only for troubleshooting", - "longopts": "stats", + "datatype": "", + "glossary": "Word Select GPIO. e.g. 25", + "longopts": "wordselect", + "checkbox": false, + "hasvalue": true, + "mincount": 1, + "maxcount": 1 + }, { + "datatype": "", + "glossary": "Data GPIO. e.g. 32", + "longopts": "data", + "checkbox": false, + "hasvalue": true, + "mincount": 1, + "maxcount": 1 + }, { + "glossary": "Clear configuration", + "longopts": "clear", "checkbox": true, "hasvalue": false, "mincount": 0, "maxcount": 1 }], - "hint": " [--BT_Speaker] [--AirPlay] [-t Disabled|Telnet Only|Telnet and Serial] [--stats]", - "name": "cfg-syst-services" - }, { - "help": "Get minimum size of free heap memory found during execution", - "hascb": false, - "name": "heap" - }, { - "help": "Device Name", - "hascb": true, - "argtable": [{ - "datatype": "\"squeezelite-test3\"", - "glossary": "New Name", - "longopts": "name", - "shortopts": "n", - "checkbox": false, - "hasvalue": true, - "mincount": 0, - "maxcount": 1 - }], - "hint": " [-n \"squeezelite-test3\"]", - "name": "cfg-syst-name" - }, { - "help": "Get version of chip and SDK", - "hascb": false, - "name": "version" - }, { - "help": "Software reset of the chip", - "hascb": false, - "name": "restart" - }, { - "help": "Resets and boot to recovery (if available)", - "hascb": false, - "name": "recovery" - }, { - "help": "Selects the ota app partition to boot from and performa a software reset of the chip", - "hascb": false, - "name": "restart_ota" + "hint": " --clock= --wordselect= --data= [--clear]", + "name": "cfg-hw-spdif" }, { "help": "I2C Bus Parameters", "hascb": true, @@ -310,14 +280,6 @@ "hasvalue": true, "mincount": 0, "maxcount": 1 - }, { - "glossary": "Load Existing Configuration", - "longopts": "load", - "shortopts": "l", - "checkbox": true, - "hasvalue": false, - "mincount": 0, - "maxcount": 1 }, { "glossary": "Clear configuration", "longopts": "clear", @@ -326,7 +288,7 @@ "mincount": 0, "maxcount": 1 }], - "hint": " [-l] [-p 0|1] [-f int] [-d ] [-c ] [--clear]", + "hint": " [-p 0|1] [-f int] [-d ] [-c ] [--clear]", "name": "cfg-hw-i2c" }, { "help": "SPI Bus Parameters", @@ -359,7 +321,7 @@ "mincount": 0, "maxcount": 1 }, { - "datatype": "int", + "datatype": "1|2", "glossary": "SPI Host Number", "longopts": "host", "shortopts": "h", @@ -375,7 +337,7 @@ "mincount": 0, "maxcount": 1 }], - "hint": " [-d ] [-k ] [-c ] [-h int] [--clear]", + "hint": " [-d ] [-k ] [-c ] [-h 1|2] [--clear]", "name": "cfg-hw-spi" }, { "help": "Scan I2C bus for devices", @@ -491,14 +453,23 @@ "mincount": 0, "maxcount": 1 }, { - "datatype": "", - "glossary": "Driver (default SSD1306)", + "datatype": "", + "glossary": "Driver", "longopts": "driver", "shortopts": "d", "checkbox": false, "hasvalue": true, "mincount": 0, "maxcount": 1 + }, { + "datatype": "1|4", + "glossary": "Bit Depth (only for SSD1326 displays)", + "longopts": "depth", + "shortopts": "p", + "checkbox": false, + "hasvalue": true, + "mincount": 0, + "maxcount": 1 }, { "datatype": "", "glossary": "I2C address (default 60)", @@ -515,7 +486,7 @@ "shortopts": "w", "checkbox": false, "hasvalue": true, - "mincount": 0, + "mincount": 1, "maxcount": 1 }, { "datatype": "", @@ -524,7 +495,7 @@ "shortopts": "h", "checkbox": false, "hasvalue": true, - "mincount": 0, + "mincount": 1, "maxcount": 1 }, { "glossary": "Rotate 180 degrees", @@ -550,13 +521,22 @@ "maxcount": 1 }, { "datatype": "", - "glossary": "Bus Speed (Default 8000000 for SPI, 250000 for I2C). SPI interface can work up to 26MHz~40MHz", + "glossary": "SPI Only. Bus Speed (Default 8000000). SPI interface can work up to 26MHz~40MHz", "longopts": "speed", "shortopts": "s", "checkbox": false, "hasvalue": true, "mincount": 0, "maxcount": 1 + }, { + "datatype": "", + "glossary": "SPI Only. CS GPIO (for SPI displays)", + "longopts": "cs", + "shortopts": "b", + "checkbox": false, + "hasvalue": true, + "mincount": 0, + "maxcount": 1 }, { "datatype": "", "glossary": "Backlight GPIO (if applicable)", @@ -566,6 +546,14 @@ "hasvalue": true, "mincount": 0, "maxcount": 1 + }, { + "datatype": "", + "glossary": "Reset GPIO", + "longopts": "reset", + "checkbox": false, + "hasvalue": true, + "mincount": 0, + "maxcount": 1 }, { "glossary": "clear configuration and return", "longopts": "clear", @@ -574,77 +562,56 @@ "mincount": 0, "maxcount": 1 }], - "hint": " [-r] [-t ] [-d ] [-a ] [-w ] [-h ] [--hf] [--vf] [-s ] [-b ] [--clear]", + "hint": " [-r] [-t ] [-d ] [-p 1|4] [-a ] -w -h [--hf] [--vf] [-s ] [-b ] [-b ] [--reset=] [--clear]", "name": "cfg-hw-display" - }, { - "help": "Shows display options and global i2c configuration", - "hascb": false, - "name": "getdisplay" - }, { - "help": "Stop the I2C bus", - "hascb": false, - "argtable": [{ - "datatype": "<0|1>", - "glossary": "I2C bus port number", - "longopts": "port", - "shortopts": "p", - "checkbox": false, - "hasvalue": true, - "mincount": 0, - "maxcount": 1 - }], - "hint": " [-p <0|1>]", - "name": "i2cstop" - }, { - "help": "Check if the I2C bus is installed", - "hascb": false, - "argtable": [{ - "datatype": "<0|1>", - "glossary": "Set the I2C bus port number", - "longopts": "port", - "shortopts": "p", - "checkbox": false, - "hasvalue": true, - "mincount": 0, - "maxcount": 1 - }], - "hint": " [-p <0|1>]", - "name": "i2ccheck" }], "values": { - "cfg-syst-squeezelite": { - "buffers": "500:2000", - "header_format": true, - "loglevel": "all=info", - "output_device": "I2S", - "name": "squeezelite", - "timeout": 30 - }, - "cfg-hw-dac": { - "model_name": "i2s" + "cfg-syst-wifi": { + "scanmode": "Fast" }, "cfg-syst-services": { - "BT_Speaker": false, - "AirPlay": false, - "telnet": "Telnet and Serial", - "stats": true + "BT_Speaker": true, + "AirPlay": true, + "telnet": "Telnet Only" }, "cfg-syst-name": { - "name": "\"squeezelite-test3\"" + "name": "Bureau-OLED" + }, + "cfg-audio-general": { + "jack_behavior": "Subwoofer" + }, + "cfg-audio-bt_source": { + "sink_name": "SMSL BT4.2", + "pin_code": "0000" + }, + "cfg-hw-dac": { + "clock": 33, + "wordselect": 25, + "data": 32, + "model_name": "I2S" + }, + "cfg-hw-spdif": { }, "cfg-hw-i2c": { - "freq": 400000 + "speed": 400000 }, "cfg-hw-spi": { + "data": 4, + "clk": 5, + "dc": 18, + "host": 1 }, "cfg-hw-display": { - "address": 0, - "width": 0, - "height": 0, - "driver": "SSD1306", + "width": 256, + "height": 64, + "reset": 21, + "driver": "SSD1322", + "cs": 19, + "speed": 16000000, + "type": "SPI", + "rotate": false, "hf": false, - "vf": false, - "rotate": false + "vf": false } } } \ No newline at end of file diff --git a/components/wifi-manager/config.json b/components/wifi-manager/webapp/mock/config.json similarity index 100% rename from components/wifi-manager/config.json rename to components/wifi-manager/webapp/mock/config.json diff --git a/components/wifi-manager/messages.json b/components/wifi-manager/webapp/mock/messages.json similarity index 96% rename from components/wifi-manager/messages.json rename to components/wifi-manager/webapp/mock/messages.json index 7817adfc..b9244b49 100644 --- a/components/wifi-manager/messages.json +++ b/components/wifi-manager/webapp/mock/messages.json @@ -52,5 +52,27 @@ "class": "MESSAGING_CLASS_STATS", "sent_time": 141256, "current_time": 147319 + }, + { + "message": "Wifi connected", + "type": "MESSAGING_INFO", + "class": "MESSAGING_CLASS_SYSTEM", + "sent_time": 141256, + "current_time": 147319 + }, + { + "message": "[{\n\t\t\"name\":\t\"SMSL BT4.2\",\n\t\t\"rssi\":\t-64\n\t}]", + "type": "MESSAGING_INFO", + "class": "MESSAGING_CLASS_BT", + "sent_time": 6245, + "current_time": 6364 + }, { + "message": "[{\n\t\t\"name\":\t\"SMSL BT4.2\",\n\t\t\"rssi\":\t-129\n\t}]", + "type": "MESSAGING_INFO", + "class": "MESSAGING_CLASS_BT", + "sent_time": 6259, + "current_time": 6364 } + + ] \ No newline at end of file diff --git a/components/wifi-manager/messages_testing.json b/components/wifi-manager/webapp/mock/messages_testing.json similarity index 100% rename from components/wifi-manager/messages_testing.json rename to components/wifi-manager/webapp/mock/messages_testing.json diff --git a/components/wifi-manager/scan.json b/components/wifi-manager/webapp/mock/scan.json similarity index 100% rename from components/wifi-manager/scan.json rename to components/wifi-manager/webapp/mock/scan.json diff --git a/components/wifi-manager/status-messages.json b/components/wifi-manager/webapp/mock/status-messages.json similarity index 100% rename from components/wifi-manager/status-messages.json rename to components/wifi-manager/webapp/mock/status-messages.json diff --git a/components/wifi-manager/status.json b/components/wifi-manager/webapp/mock/status.json similarity index 73% rename from components/wifi-manager/status.json rename to components/wifi-manager/webapp/mock/status.json index 94865919..df501808 100644 --- a/components/wifi-manager/status.json +++ b/components/wifi-manager/webapp/mock/status.json @@ -1,6 +1,6 @@ { - "project_name": "recovery", - "version": "custom.build", + "project_name": "dev-server", + "version": "webpack", "recovery": 1, "Jack": "1", "Voltage": 0, @@ -9,6 +9,8 @@ "is_i2c_locked": false, "urc": 0, "bt_status": 0, + "bt_sub_status": 0, + "rssi": -59, "ssid": "MyTestSSID", "ip": "192.168.10.225", "netmask": "255.255.255.0", diff --git a/components/wifi-manager/webapp/mock/statusdefinition.json b/components/wifi-manager/webapp/mock/statusdefinition.json new file mode 100644 index 00000000..300ec98e --- /dev/null +++ b/components/wifi-manager/webapp/mock/statusdefinition.json @@ -0,0 +1,24 @@ +{ + "urc": { + "Wifi Connection OK": 0, + "Wifi Failed Connect Attempt": 1, + "WiFi User Disconnect": 2, + "WiFi Lost Connection": 3 + }, + "bt_status": { + "Idle": 0, + "Discovering": 1, + "Discovered": 2, + "Unconnected": 3, + "Connecting": 4, + "Connected": 5, + "Disconnecting": 6 + }, + "bt_sub_status": { + "Default": 0, + "Connected - Starting": 1, + "Connected - Started": 2, + "Connected - Pause": 3, + "Connected - Stop": 4 + } +} \ No newline at end of file diff --git a/components/wifi-manager/webapp/package.json b/components/wifi-manager/webapp/package.json new file mode 100644 index 00000000..2506ff78 --- /dev/null +++ b/components/wifi-manager/webapp/package.json @@ -0,0 +1,133 @@ +{ + "name": "squeezelite-esp32", + "version": "0.5.0", + "main": "src/index.html", + "repository": "git@github.com:sle118/squeezelite-esp32.git", + "author": "Andy K., Sebastien", + "license": "MIT", + "scripts": { + "dev": "webpack-dev-server --open --config webpack/webpack.dev.js", + "build": "webpack --config webpack/webpack.prod.js", + "prod": "webpack-dev-server --open --config webpack/webpack.prod.js" + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + }, + "dependencies": { + "@popperjs/core": "^2.0.6", + "@types/bootstrap": "^4.3.1", + "animate.css": "^3.7.2", + "bootstrap": "^4.5.3", + "bootswatch": "^4.4.1", + "commander": "^6.2.0", + "expose-loader": "^1.0.3", + "hamburgers": "^1.1.3", + "jquery": "^3.3.1", + "line-awesome": "^1.3.0", + "lodash": "^4.17.15", + "perfect-scrollbar": "^1.5.0", + "popper": "^1.0.1", + "react": "^17.0.1", + "remixicon": "^2.5.0", + "stylelint-config-standard": "^20.0.0", + "svgo": "^1.3.2", + "webpack-icons-installer": "^2.0.0" + }, + "devDependencies": { + "@babel/core": "^7.12.10", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", + "@babel/plugin-proposal-optional-chaining": "^7.12.7", + "@babel/plugin-transform-runtime": "^7.12.10", + "@babel/preset-env": "^7.12.10", + "@babel/preset-typescript": "^7.8.3", + "@fullhuman/postcss-purgecss": "^1.3.0", + "@types/lodash": "^4.14.149", + "autoprefixer": "^9.7.4", + "babel-eslint": "^10.0.3", + "babel-loader": "^8.2.2", + "babel-preset-minify": "^0.5.1", + "body-parser": "^1.19.0", + "browser-sync": "^2.26.7", + "browser-sync-webpack-plugin": "^2.2.2", + "browserlist": "^1.0.1", + "clean-webpack-plugin": "^2.0.0", + "compression-webpack-plugin": "^2.0.0", + "cross-env": "^5.2.1", + "css-loader": "^0.28.11", + "cssnano": "^4.1.10", + "eslint": "^7.0.0", + "eslint-config-google": "^0.9.1", + "eslint-webpack-plugin": "^2.4.1", + "extract-text-webpack-plugin": "^4.0.0-beta.0", + "favicons-webpack-plugin": "0.0.9", + "file-loader": "^1.1.11", + "glob": "^7.1.6", + "glob-all": "^3.2.1", + "html-loader": "^0.5.5", + "html-webpack-plugin": "^3.0.7", + "image-webpack-loader": "^7.0.1", + "imagemin-mozjpeg": "^8.0.0", + "imagemin-webpack-plugin": "^2.4.2", + "img-loader": "^3.0.1", + "install": "^0.10.4", + "less": "^3.13.0", + "lodash-webpack-plugin": "^0.11.5", + "mini-css-extract-plugin": "^0.5.0", + "miragejs": "^0.1.41", + "node-sass": "^4.13.1", + "offline-plugin": "^5.0.7", + "on-build-webpack": "^0.1.0", + "optimize-css-assets-webpack-plugin": "^5.0.3", + "postcss-loader": "^3.0.0", + "preload-webpack-plugin": "^2.3.0", + "purgecss-webpack-plugin": "^3.1.3", + "purify-css": "^1.2.5", + "purifycss-webpack": "^0.7.0", + "raw-loader": "^2.0.0", + "resolve-url-loader": "^3.1.1", + "sass-loader": "^6.0.7", + "script-ext-html-webpack-plugin": "^2.1.4", + "source-map-loader": "^0.2.4", + "style-loader": "^0.20.3", + "stylelint": "^13.2.0", + "stylelint-config-recommended": "^3.0.0", + "stylelint-webpack-plugin": "^1.2.3", + "svg-sprite-loader": "^5.2.1", + "svg-transform-loader": "^2.0.13", + "svgo-loader": "^2.2.1", + "terser-webpack-plugin": "^1.4.3", + "ts-loader": "^6.2.1", + "tslint": "^5.20.1", + "tslint-webpack-plugin": "^2.1.0", + "typescript": "^3.7.5", + "url-loader": "^1.1.2", + "webpack": "^4.44.2", + "webpack-bundle-analyzer": "^4.3.0", + "webpack-cli": "^3.3.11", + "webpack-dev-server": "^3.10.3", + "webpack-merge": "^4.2.2", + "xml-loader": "^1.2.1" + }, + "keywords": [ + "webppack4", + "sass", + "bootstrap4", + "jquery", + "popperjs", + "livereload", + "dev-server", + "font-awesome", + "es-lint", + "typescript", + "line-awesome" + ] +} diff --git a/components/wifi-manager/webapp/postcss.config.js b/components/wifi-manager/webapp/postcss.config.js new file mode 100644 index 00000000..f4d62530 --- /dev/null +++ b/components/wifi-manager/webapp/postcss.config.js @@ -0,0 +1,3 @@ +module.exports = { + +}; diff --git a/components/wifi-manager/webapp/src/.htaccess b/components/wifi-manager/webapp/src/.htaccess new file mode 100644 index 00000000..49e752ba --- /dev/null +++ b/components/wifi-manager/webapp/src/.htaccess @@ -0,0 +1,37 @@ + + ExpiresActive On + ExpiresDefault "access plus 1 days" + ExpiresByType text/html "access plus 5 minutes" + ExpiresByType text/xml "access plus 6 hours" + ExpiresByType text/css "access plus 1 weeks" + ExpiresByType text/javascript "access plus 1 weeks" + ExpiresByType application/javascript "access plus 1 weeks" + ExpiresByType application/x-javascript "access plus 1 weeks" + ExpiresByType text/ecmascript "access plus 1 weeks" + ExpiresByType image/gif "access plus 1 years" + ExpiresByType image/png "access plus 1 years" + ExpiresByType image/jpeg "access plus 1 years" + ExpiresByType image/ico "access plus 1 years" + ExpiresByType image/icon "access plus 1 years" + ExpiresByType image/x-icon "access plus 1 years" + ExpiresByType video/x-flv "access plus 1 years" + ExpiresByType video/quicktime "access plus 1 years" + ExpiresByType application/x-shockwave-flash "access plus 1 years" + ExpiresByType application/pdf "access plus 1 years" + + + # gzip Compression if availiable +AddEncoding gzip .gzip + + AddOutputFilterByType DEFLATE text/plain + AddOutputFilterByType DEFLATE text/html + AddOutputFilterByType DEFLATE text/xml + AddOutputFilterByType DEFLATE text/css + AddOutputFilterByType DEFLATE text/javascript + AddOutputFilterByType DEFLATE application/xml + AddOutputFilterByType DEFLATE application/xhtml+xml + AddOutputFilterByType DEFLATE application/rss+xml + AddOutputFilterByType DEFLATE application/javascript + AddOutputFilterByType DEFLATE application/x-javascript + AddOutputFilterByType DEFLATE application/x-shockwave-flash + diff --git a/components/wifi-manager/webapp/src/assets/images/200px-ControllerAppIcon.png b/components/wifi-manager/webapp/src/assets/images/200px-ControllerAppIcon.png new file mode 100644 index 0000000000000000000000000000000000000000..f0fc205acc38bae1bf4241608247be8ee4fbf1c9 GIT binary patch literal 32492 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 Uw$Wh>#sB~S07*qoM6N<$f@Qcmr~m)} literal 0 HcmV?d00001 diff --git a/components/wifi-manager/res/favicon.ico b/components/wifi-manager/webapp/src/assets/images/favicon.ico similarity index 100% rename from components/wifi-manager/res/favicon.ico rename to components/wifi-manager/webapp/src/assets/images/favicon.ico diff --git a/components/wifi-manager/webapp/src/index.ejs b/components/wifi-manager/webapp/src/index.ejs new file mode 100644 index 00000000..917406be --- /dev/null +++ b/components/wifi-manager/webapp/src/index.ejs @@ -0,0 +1,439 @@ + + + + + + + + SqueezeESP32 + + + + +
+ <% if (htmlWebpackPlugin.files.sprites) { %> + <% for (var spriteFileName in htmlWebpackPlugin.files.sprites) { %> + <%= htmlWebpackPlugin.files.sprites[spriteFileName] %> + <% } %> + <% } %> +
+
+
+
+
+
+
+
+
+
+
+ +
+
+

Check for firmware upgrade

+
+ +
+
+ + +
+ + + + + + + + + + + + + +
Firmware versionRelease date/timeHW platformIDF versionBranchFlash this FW
+

Firmware URL:

+ +
+ +
+
+

OR

+
+ +
+ +
+
+
+
+
+
+ 0% +
+
+
+
+
+ + + + + + + + + +
KeyValue
+
+
+
+ +
+
+ + + + +
+
+ +
+
+
Usage Templates
+
+
+
+ Output +
+ +
+
+ +
+
+ +
+
+
+
+
+
+ +
+
+ + + +
+
+
+
+
+
+
WiFi Status
+
+ + + + + + + + + + +
JoinedNameSignalSecurity
+ + +
+ + + +
+
+
+
+
+ +
+
+
Logs
+
+ + + + + + + + + +
TimestampMessage
+
+ +
+
+
+
+
Pin Assignments
+
+ + + + + + + + + + +
DevicePin NameGPIO NumberType
+
+
+
+
Tasks
+
+ + + + + + + + + + + + + + +
#Task NameCPUStateMin StackBase PriorityCur Priority
+
+
+
+ +
+
+
Credits
+
+

squeezelite-esp32
© + 2020, philippe44, sle118, daduke
This + software is released under the MIT License.

+

+ This app would not be possible without the following libraries: +

+
    +
  • squeezelite, © 2012-2019, Adrian Smith and Ralph Irving. Licensed under the GPL + License.
  • +
  • esp32-wifi-manager, © 2017-2019, Tony Pottier. Licensed under the MIT License.
  • +
  • SpinKit, © 2015, Tobias Ahlin. Licensed under the MIT License.
  • +
  • jQuery, The jQuery Foundation. Licensed under the MIT License.
  • +
  • cJSON, © 2009-2017, Dave Gamble and cJSON contributors. Licensed under the MIT + License. +
  • +
  • esp32-rotary-encoder, © 2011-2019, David Antliff and Ben Buxton. Licensed under the + GPL + License.
  • +
  • tarablessd1306, © 2017-2018, Tara Keeling. Licensed under the MIT license.
  • +
+
+
+
+
Extras/Overrides
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+ +
+ +
+
+ +
+ +
+ + + + \ No newline at end of file diff --git a/components/wifi-manager/webapp/src/index.ts b/components/wifi-manager/webapp/src/index.ts new file mode 100644 index 00000000..af4e48e7 --- /dev/null +++ b/components/wifi-manager/webapp/src/index.ts @@ -0,0 +1,24 @@ +//import $ from "jquery"; +import 'bootstrap'; +import '../src/sass/main.scss'; +import '../node_modules/remixicon/icons/Device/signal-wifi-fill.svg'; +import '../node_modules/remixicon/icons/Device/signal-wifi-3-fill.svg'; +import '../node_modules/remixicon/icons/Device/signal-wifi-2-fill.svg'; +import '../node_modules/remixicon/icons/Device/signal-wifi-1-fill.svg'; +import '../node_modules/remixicon/icons/Device/signal-wifi-line.svg'; +import '../node_modules/remixicon/icons/Device/battery-line.svg'; +import '../node_modules/remixicon/icons/Device/battery-low-line.svg'; +import '../node_modules/remixicon/icons/Device/battery-fill.svg'; + +import '../node_modules/remixicon/icons/Media/headphone-fill.svg'; +import '../node_modules/remixicon/icons/Device/device-recover-fill.svg'; +import '../node_modules/remixicon/icons/Device/bluetooth-fill.svg'; +import '../node_modules/remixicon/icons/Device/bluetooth-connect-fill.svg'; +import '../node_modules/remixicon/icons/Media/stop-circle-fill.svg'; +import '../node_modules/remixicon/icons/Media/play-circle-fill.svg'; +import '../node_modules/remixicon/icons/Media/pause-circle-fill.svg'; +import '../node_modules/remixicon/icons/System/lock-fill.svg'; +import '../node_modules/remixicon/icons/System/lock-unlock-fill.svg'; + +import './js/custom.js'; +// <%= `` %> \ No newline at end of file diff --git a/components/wifi-manager/webapp/src/js/custom.js b/components/wifi-manager/webapp/src/js/custom.js new file mode 100644 index 00000000..27185c2f --- /dev/null +++ b/components/wifi-manager/webapp/src/js/custom.js @@ -0,0 +1,1702 @@ +import he from 'he'; +import { Promise } from 'es6-promise'; + +if (!String.prototype.format) { + Object.assign(String.prototype, { + format() { + const args = arguments; + return this.replace(/{(\d+)}/g, function(match, number) { + return typeof args[number] !== 'undefined' ? args[number] : match; + }); + }, + }); +} +if (!String.prototype.encodeHTML) { + Object.assign(String.prototype, { + encodeHTML() { + return he.encode(this).replace(/\n/g, '
') + }, + }); +} +Object.assign(Date.prototype, { + toLocalShort() { + const opt = { dateStyle: 'short', timeStyle: 'short' }; + return this.toLocaleString(undefined, opt); + }, +}); + +const nvsTypes = { + NVS_TYPE_U8: 0x01, + + /*! < Type uint8_t */ + NVS_TYPE_I8: 0x11, + + /*! < Type int8_t */ + NVS_TYPE_U16: 0x02, + + /*! < Type uint16_t */ + NVS_TYPE_I16: 0x12, + + /*! < Type int16_t */ + NVS_TYPE_U32: 0x04, + + /*! < Type uint32_t */ + NVS_TYPE_I32: 0x14, + + /*! < Type int32_t */ + NVS_TYPE_U64: 0x08, + + /*! < Type uint64_t */ + NVS_TYPE_I64: 0x18, + + /*! < Type int64_t */ + NVS_TYPE_STR: 0x21, + + /*! < Type string */ + NVS_TYPE_BLOB: 0x42, + + /*! < Type blob */ + NVS_TYPE_ANY: 0xff /*! < Must be last */, +}; +const btIcons = { + bt_playing: 'play-circle-fill', + bt_disconnected: 'bluetooth-fill', + bt_neutral: '', + bt_connected: 'bluetooth-connect-fill', + bt_disabled: '', + play_arrow: 'play-circle-fill', + pause: 'pause-circle-fill', + stop: 'stop-circle-fill', + '': '', +}; + +const btStateIcons = [ + { desc: 'Idle', sub: ['bt_neutral'] }, + { desc: 'Discovering', sub: ['bt_disconnected'] }, + { desc: 'Discovered', sub: ['bt_disconnected'] }, + { desc: 'Unconnected', sub: ['bt_disconnected'] }, + { desc: 'Connecting', sub: ['bt_disconnected'] }, + { + desc: 'Connected', + sub: ['bt_connected', 'play_arrow', 'bt_playing', 'pause', 'stop'], + }, + { desc: 'Disconnecting', sub: ['bt_disconnected'] }, +]; + +const pillcolors = { + MESSAGING_INFO: 'badge-success', + MESSAGING_WARNING: 'badge-warning', + MESSAGING_ERROR: 'badge-danger', +}; +const connectReturnCode = { + UPDATE_CONNECTION_OK : 0, + UPDATE_FAILED_ATTEMPT : 1, + UPDATE_USER_DISCONNECT : 2, + UPDATE_LOST_CONNECTION : 3, + UPDATE_FAILED_ATTEMPT_AND_RESTORE : 4 +} +const taskStates = { + 0: 'eRunning', + + /*! < A task is querying the state of itself, so must be running. */ + 1: 'eReady', + + /*! < The task being queried is in a read or pending ready list. */ + 2: 'eBlocked', + + /*! < The task being queried is in the Blocked state. */ + 3: 'eSuspended', + + /*! < The task being queried is in the Suspended state, or is in the Blocked state with an infinite time out. */ + 4: 'eDeleted', +}; + +window.hideSurrounding = function(obj){ + $(obj).parent().parent().hide() +} + +window.handleReboot = function(ota){ + if(ota){ + $('#reboot_ota_nav').removeClass('active'); delayReboot(500,'', true); + } + else { + $('#reboot_nav').removeClass('active'); delayReboot(500,'', false); + } +} + +function handlebtstate(data) { + let icon = ''; + let tt = ''; + if (data.bt_status !== undefined && data.bt_sub_status !== undefined) { + const iconsvg = btStateIcons[data.bt_status].sub[data.bt_sub_status]; + if (iconsvg) { + icon = `#${btIcons[iconsvg]}`; + tt = btStateIcons[data.bt_status].desc; + } else { + icon = `#${btIcons.bt_connected}`; + tt = 'Output status'; + } + } + $('#o_type').title = tt; + $('#o_bt').attr('xlink:href',icon); + + +} +function handleTemplateTypeRadio(outtype) { + if (outtype === 'bt') { + $('#bt').prop('checked', true); + $('#o_bt').attr('display', 'inline'); + $('#o_spdif').attr('display', 'none'); + $('#o_i2s').attr('display', 'none'); + output = 'bt'; + } else if (outtype === 'spdif') { + $('#spdif').prop('checked', true); + $('#o_bt').attr('display', 'none'); + $('#o_spdif').attr('display', 'inline'); + $('#o_i2s').attr('display', 'none'); + output = 'spdif'; + } else { + $('#i2s').prop('checked', true); + $('#o_bt').attr('display', 'none'); + $('#o_spdif').attr('display', 'none'); + $('#o_i2s').attr('display', 'inline'); + output = 'i2s'; + } +} + +function handleExceptionResponse(xhr, _ajaxOptions, thrownError) { + console.log(xhr.status); + console.log(thrownError); + enableStatusTimer = true; + if (thrownError !== '') { + showLocalMessage(thrownError, 'MESSAGING_ERROR'); + } +} +function HideCmdMessage(cmdname) { + $('#toast_' + cmdname).css('display', 'none'); + $('#toast_' + cmdname) + .removeClass('table-success') + .removeClass('table-warning') + .removeClass('table-danger') + .addClass('table-success'); + $('#msg_' + cmdname).html(''); +} +function showCmdMessage(cmdname, msgtype, msgtext, append = false) { + let color = 'table-success'; + if (msgtype === 'MESSAGING_WARNING') { + color = 'table-warning'; + } else if (msgtype === 'MESSAGING_ERROR') { + color = 'table-danger'; + } + $('#toast_' + cmdname).css('display', 'block'); + $('#toast_' + cmdname) + .removeClass('table-success') + .removeClass('table-warning') + .removeClass('table-danger') + .addClass(color); + let escapedtext = msgtext + .substring(0, msgtext.length - 1) + .encodeHTML() + .replace(/\n/g, '
'); + escapedtext = + ($('#msg_' + cmdname).html().length > 0 && append + ? $('#msg_' + cmdname).html() + '
' + : '') + escapedtext; + $('#msg_' + cmdname).html(escapedtext); +} + +const releaseURL = + 'https://api.github.com/repos/sle118/squeezelite-esp32/releases'; +let recovery = false; +var enableStatusTimer = true; +const commandHeader = 'squeezelite -b 500:2000 -d all=info -C 30 -W'; +let otapct, otadsc; +let blockAjax = false; +let blockFlashButton = false; +let apList = null; +//let selectedSSID = ''; +//let checkStatusInterval = null; +let messagecount = 0; +let messageseverity = 'MESSAGING_INFO'; +let StatusIntervalActive = false; +let LastRecoveryState = null; +let SystemConfig={}; +let LastCommandsState = null; +var output = ''; +let hostName = ''; +let versionName='SqueezeESP32'; +let appTitle=versionName; +let ConnectedToSSID={}; +let ConnectingToSSID={}; +const ConnectingToActions = { + 'CONN' : 0,'MAN' : 1,'STS' : 2, +} + +Promise.prototype.delay = function(duration) { + return this.then( + function(value) { + return new Promise(function(resolve) { + setTimeout(function() { + resolve(value); + }, duration); + }); + }, + function(reason) { + return new Promise(function(_resolve, reject) { + setTimeout(function() { + reject(reason); + }, duration); + }); + } + ); +}; +// function stopCheckStatusInterval() { +// if (checkStatusInterval != null) { +// clearTimeout(checkStatusInterval); +// checkStatusInterval = null; +// } +// StatusIntervalActive = false; +// } + + +function startCheckStatusInterval() { + StatusIntervalActive = true; + setTimeout(checkStatus, 3000); +} + + +function RepeatCheckStatusInterval() { + if (StatusIntervalActive) { + startCheckStatusInterval(); + } +} + +function getConfigJson(slimMode) { + const config = {}; + $('input.nvs').each(function(_index, entry) { + if (!slimMode) { + const nvsType = parseInt(entry.attributes.nvs_type.value, 10); + if (entry.id !== '') { + config[entry.id] = {}; + if ( + nvsType === nvsTypes.NVS_TYPE_U8 || + nvsType === nvsTypes.NVS_TYPE_I8 || + nvsType === nvsTypes.NVS_TYPE_U16 || + nvsType === nvsTypes.NVS_TYPE_I16 || + nvsType === nvsTypes.NVS_TYPE_U32 || + nvsType === nvsTypes.NVS_TYPE_I32 || + nvsType === nvsTypes.NVS_TYPE_U64 || + nvsType === nvsTypes.NVS_TYPE_I64 + ) { + config[entry.id].value = parseInt(entry.value); + } else { + config[entry.id].value = entry.value; + } + config[entry.id].type = nvsType; + } + } else { + config[entry.id] = entry.value; + } + }); + const key = $('#nvs-new-key').val(); + const val = $('#nvs-new-value').val(); + if (key !== '') { + if (!slimMode) { + config[key] = {}; + config[key].value = val; + config[key].type = 33; + } else { + config[key] = val; + } + } + return config; +} + +// eslint-disable-next-line no-unused-vars +function onFileLoad(elementId, event) { + let data = {}; + try { + data = JSON.parse(elementId.srcElement.result); + } catch (e) { + alert('Parsing failed!\r\n ' + e); + } + $('input.nvs').each(function(_index, entry) { + if (data[entry.id]) { + if (data[entry.id] !== entry.value) { + console.log( + 'Changed ' + entry.id + ' ' + entry.value + '==>' + data[entry.id] + ); + $(this).val(data[entry.id]); + } + } + }); +} + +// eslint-disable-next-line no-unused-vars +function onChooseFile(event, onLoadFileHandler) { + if (typeof window.FileReader !== 'function') { + throw "The file API isn't supported on this browser."; + } + const input = event.target; + if (!input) { + throw 'The browser does not properly implement the event object'; + } + if (!input.files) { + throw 'This browser does not support the `files` property of the file input.'; + } + if (!input.files[0]) { + return undefined; + } + const file = input.files[0]; + let fr = new FileReader(); + fr.onload = onLoadFileHandler; + fr.readAsText(file); + input.value = ''; +} +function delayReboot(duration, cmdname, ota = false) { + const url = ota ? '/reboot_ota.json' : '/reboot.json'; + $('tbody#tasks').empty(); + enableStatusTimer = false; + $('#tasks_sect').css('visibility', 'collapse'); + Promise.resolve({ cmdname: cmdname, url: url }) + .delay(duration) + .then(function(data) { + if (data.cmdname.length > 0) { + showCmdMessage( + data.cmdname, + 'MESSAGING_WARNING', + 'System is rebooting.\n', + true + ); + } else { + showLocalMessage('System is rebooting.\n', 'MESSAGING_WARNING'); + } + console.log('now triggering reboot'); + $.ajax({ + url: data.url, + dataType: 'text', + method: 'POST', + cache: false, + contentType: 'application/json; charset=utf-8', + data: JSON.stringify({ + timestamp: Date.now(), + }), + error: handleExceptionResponse, + complete: function() { + console.log('reboot call completed'); + enableStatusTimer = true; + Promise.resolve(data) + .delay(6000) + .then(function(rdata) { + if (rdata.cmdname.length > 0) { + HideCmdMessage(rdata.cmdname); + } + getCommands(); + getConfig(); + }); + }, + }); + }); +} +// eslint-disable-next-line no-unused-vars +window.saveAutoexec1 = function(apply) { + showCmdMessage('cfg-audio-tmpl', 'MESSAGING_INFO', 'Saving.\n', false); + let commandLine = commandHeader + ' -n "' + $('#player').val() + '"'; + if (output === 'bt') { + commandLine += ' -o "BT" -R -Z 192000'; + showCmdMessage( + 'cfg-audio-tmpl', + 'MESSAGING_INFO', + 'Remember to configure the Bluetooth audio device name.\n', + true + ); + } else if (output === 'spdif') { + commandLine += ' -o SPDIF -Z 192000'; + } else { + commandLine += ' -o I2S'; + } + if ($('#optional').val() !== '') { + commandLine += ' ' + $('#optional').val(); + } + const data = { + timestamp: Date.now(), + }; + data.config = { + autoexec1: { value: commandLine, type: 33 }, + autoexec: { + value: $('#disable-squeezelite').prop('checked') ? '0' : '1', + type: 33, + }, + }; + + $.ajax({ + url: '/config.json', + dataType: 'text', + method: 'POST', + cache: false, + contentType: 'application/json; charset=utf-8', + data: JSON.stringify(data), + error: handleExceptionResponse, + complete: function(response) { + if ( + response.responseText.result && + JSON.parse(response.responseText).result === 'OK' + ) { + showCmdMessage('cfg-audio-tmpl', 'MESSAGING_INFO', 'Done.\n', true); + if (apply) { + delayReboot(1500, 'cfg-audio-tmpl'); + } + } else if (response.responseText.result) { + showCmdMessage( + 'cfg-audio-tmpl', + 'MESSAGING_WARNING', + JSON.parse(response.responseText).Result + '\n', + true + ); + } else { + showCmdMessage( + 'cfg-audio-tmpl', + 'MESSAGING_ERROR', + response.statusText + '\n' + ); + } + console.log(response.responseText); + }, + }); + console.log('sent data:', JSON.stringify(data)); +} +window.handleDisconnect = function(){ + $.ajax({ + url: '/connect.json', + dataType: 'text', + method: 'DELETE', + cache: false, + contentType: 'application/json; charset=utf-8', + data: JSON.stringify({ + timestamp: Date.now(), + }), + }); +} + +window.handleConnect = function(){ + ConnectingToSSID.ssid = $('#manual_ssid').val(); + ConnectingToSSID.pwd = $('#manual_pwd').val(); + ConnectingToSSID.dhcpname = $('#dhcp-name2').val(); + $("*[class*='connecting']").hide(); + $('#ssid-wait').text(ConnectingToSSID.ssid); + $('.connecting').show(); + + $.ajax({ + url: '/connect.json', + dataType: 'text', + method: 'POST', + cache: false, + contentType: 'application/json; charset=utf-8', + data: JSON.stringify({ + timestamp: Date.now(), + ssid: ConnectingToSSID.ssid, + pwd: ConnectingToSSID.pwd + }), + error: handleExceptionResponse, + }); + + // now we can re-set the intervals regardless of result + startCheckStatusInterval(); + +} +$(document).ready(function() { + setTimeout(refreshAP,1500); + $('#WifiConnectDialog').on('shown.bs.modal', function () { + $("*[class*='connecting']").hide(); + if(ConnectingToSSID.Action!==ConnectingToActions.STS){ + $('.connecting-init').show(); + $('#manual_ssid').trigger('focus'); + } + else { + handleWifiDialog(); + } + }) + $('#WifiConnectDialog').on('hidden.bs.modal', function () { + $('#WifiConnectDialog input').val(''); + }) + + + $('input#show-commands')[0].checked = LastCommandsState === 1; + $('a[href^="#tab-commands"]').hide(); + $('#load-nvs').on('click', function() { + $('#nvsfilename').trigger('click'); + }); + $('#clear-syslog').on('click', function() { + messagecount = 0; + messageseverity = 'MESSAGING_INFO'; + $('#msgcnt').text(''); + $('#syslogTable').html(''); + }); + + $('#wifiTable').on('click','tr', function() { + ConnectingToSSID.Action=ConnectingToActions.CONN; + if($(this).children('td:eq(1)').text() == ConnectedToSSID.ssid){ + ConnectingToSSID.Action=ConnectingToActions.STS; + return; + } + if(!$(this).is(':last-child')){ + ConnectingToSSID.ssid=$(this).children('td:eq(1)').text(); + $('#manual_ssid').val(ConnectingToSSID.ssid); + } + else { + ConnectingToSSID.Action=ConnectingToActions.MAN; + ConnectingToSSID.ssid=''; + $('#manual_ssid').val(ConnectingToSSID.ssid); + } + }); + + // $('#cancel').on('click', function() { + // selectedSSID = ''; + // $('#connect').slideUp('fast', function() {}); + // $('#connect_manual').slideUp('fast', function() {}); + // $('#wifi').slideDown('fast', function() {}); + // }); + + // $('#manual_cancel').on('click', function() { + // selectedSSID = ''; + // $('#connect').slideUp('fast', function() {}); + // $('#connect_manual').slideUp('fast', function() {}); + // $('#wifi').slideDown('fast', function() {}); + // }); + + // $('#ok-details').on('click', function() { + // $('#connect-details').slideUp('fast', function() {}); + // $('#wifi').slideDown('fast', function() {}); + // }); + + $('#ok-credits').on('click', function() { + $('#credits').slideUp('fast', function() {}); + $('#app').slideDown('fast', function() {}); + }); + + $('#acredits').on('click', function(event) { + event.preventDefault(); + $('#app').slideUp('fast', function() {}); + $('#credits').slideDown('fast', function() {}); + }); + + // $('#disconnect').on('click', function() { + // $('#connect-details-wrap').addClass('blur'); + // $('#diag-disconnect').slideDown('fast', function() {}); + // }); + + // $('#no-disconnect').on('click', function() { + // $('#diag-disconnect').slideUp('fast', function() {}); + // $('#connect-details-wrap').removeClass('blur'); + // }); + + // $('#yes-disconnect').on('click', function() { + // stopCheckStatusInterval(); + // selectedSSID = ''; + + // $('#diag-disconnect').slideUp('fast', function() {}); + // $('#connect-details-wrap').removeClass('blur'); + + // $.ajax({ + // url: '/connect.json', + // dataType: 'text', + // method: 'DELETE', + // cache: false, + // contentType: 'application/json; charset=utf-8', + // data: JSON.stringify({ + // timestamp: Date.now(), + // }), + // }); + + // startCheckStatusInterval(); + + // $('#connect-details').slideUp('fast', function() {}); + // $('#wifi').slideDown('fast', function() {}); + // }); + $('input#show-commands').on('click', function() { + this.checked = this.checked ? 1 : 0; + if (this.checked) { + $('a[href^="#tab-commands"]').show(); + LastCommandsState = 1; + } else { + LastCommandsState = 0; + $('a[href^="#tab-commands"]').hide(); + } + }); + + $('input#show-nvs').on('click', function() { + this.checked = this.checked ? 1 : 0; + if (this.checked) { + $('*[href*="-nvs"]').show(); + } else { + $('*[href*="-nvs"]').hide(); + } + }); + + $('#save-as-nvs').on('click', function() { + const config = getConfigJson(true); + const a = document.createElement('a'); + a.href = URL.createObjectURL( + new Blob([JSON.stringify(config, null, 2)], { + type: 'text/plain', + }) + ); + a.setAttribute( + 'download', + 'nvs_config_' + hostName + '_' + Date.now() + 'json' + ); + document.body.appendChild(a); + a.click(); + document.body.removeChild(a); + }); + + $('#save-nvs').on('click', function() { + const headers = {}; + const data = { + timestamp: Date.now(), + }; + const config = getConfigJson(false); + data.config = config; + $.ajax({ + url: '/config.json', + dataType: 'text', + method: 'POST', + cache: false, + headers: headers, + contentType: 'application/json; charset=utf-8', + data: JSON.stringify(data), + error: handleExceptionResponse, + }); + console.log('sent config JSON with headers:', JSON.stringify(headers)); + console.log('sent config JSON with data:', JSON.stringify(data)); + }); + $('#fwUpload').on('click', function() { + const uploadPath = '/flash.json'; + + if (!recovery) { + $('#flash-status').text('Rebooting to recovery. Please try again'); + window.handleReboot(false); + } + + const fileInput = document.getElementById('flashfilename').files; + if (fileInput.length === 0) { + alert('No file selected!'); + } else { + const file = fileInput[0]; + const xhttp = new XMLHttpRequest(); + xhttp.onreadystatechange = function() { + if (xhttp.readyState === 4) { + if (xhttp.status === 200) { + showLocalMessage(xhttp.responseText, 'MESSAGING_INFO'); + } else if (xhttp.status === 0) { + showLocalMessage( + 'Upload connection was closed abruptly!', + 'MESSAGING_ERROR' + ); + } else { + showLocalMessage( + xhttp.status + ' Error!\n' + xhttp.responseText, + 'MESSAGING_ERROR' + ); + } + } + }; + xhttp.open('POST', uploadPath, true); + xhttp.send(file); + } + enableStatusTimer = true; + }); + $('#flash').on('click', function() { + const data = { + timestamp: Date.now(), + }; + if (blockFlashButton) { + return; + } + blockFlashButton = true; + const url = $('#fwurl').val(); + data.config = { + fwurl: { + value: url, + type: 33, + }, + }; + + $.ajax({ + url: '/config.json', + dataType: 'text', + method: 'POST', + cache: false, + contentType: 'application/json; charset=utf-8', + data: JSON.stringify(data), + error: handleExceptionResponse, + }); + enableStatusTimer = true; + }); + + $('[name=output-tmpl]').on('click', function() { + handleTemplateTypeRadio(this.id); + }); + + $('#fwcheck').on('click', function() { + $('#releaseTable').html(''); + $('#fwbranch').empty(); + $.getJSON(releaseURL, function(data) { + let i = 0; + const branches = []; + data.forEach(function(release) { + const namecomponents = release.name.split('#'); + const branch = namecomponents[3]; + if (!branches.includes(branch)) { + branches.push(branch); + } + }); + let fwb; + branches.forEach(function(branch) { + fwb += ''; + }); + $('#fwbranch').append(fwb); + + data.forEach(function(release) { + let url = ''; + release.assets.forEach(function(asset) { + if (asset.name.match(/\.bin$/)) { + url = asset.browser_download_url; + } + }); + const namecomponents = release.name.split('#'); + const ver = namecomponents[0]; + const idf = namecomponents[1]; + const cfg = namecomponents[2]; + const branch = namecomponents[3]; + + let body = release.body; + body = body.replace(/'/gi, '"'); + body = body.replace( + /[\s\S]+(### Revision Log[\s\S]+)### ESP-IDF Version Used[\s\S]+/, + '$1' + ); + body = body.replace(/- \(.+?\) /g, '- '); + const trclass = i++ > 6 ? ' hide' : ''; + $('#releaseTable').append( + "" + + "" + + ver + + '' + + '' + + new Date(release.created_at).toLocalShort() + + '' + + '' + + cfg + + '' + + '' + + idf + + '' + + '' + + branch + + '' + + "" + + '' + ); + }); + if (i > 7) { + $('#releaseTable').append( + "" + + "" + + "" + + '' + + '' + ); + $('#showallbutton').on('click', function() { + $('tr.hide').removeClass('hide'); + $('tr#showall').addClass('hide'); + }); + } + $('#searchfw').css('display', 'inline'); + }).fail(function() { + alert('failed to fetch release history!'); + }); + }); + + $('input#searchinput').on('input', function() { + const s = $('input#searchinput').val(); + const re = new RegExp(s, 'gi'); + if (s.length === 0) { + $('tr.release').removeClass('hide'); + } else if (s.length < 3) { + $('tr.release').addClass('hide'); + } else { + $('tr.release').addClass('hide'); + $('tr.release').each(function() { + $(this) + .find('td') + .each(function() { + if ( + $(this) + .html() + .match(re) + ) { + $(this) + .parent() + .removeClass('hide'); + } + }); + }); + } + }); + + $('#fwbranch').on('change', function() { + const branch = this.value; + const re = new RegExp('^' + branch + '$', 'gi'); + $('tr.release').addClass('hide'); + $('tr.release').each(function() { + $(this) + .find('td') + .each(function() { + console.log($(this).html()); + if ( + $(this) + .html() + .match(re) + ) { + $(this) + .parent() + .removeClass('hide'); + } + }); + }); + }); + + $('#boot-button').on('click', function() { + enableStatusTimer = true; + }); + $('#reboot-button').on('click', function() { + enableStatusTimer = true; + }); + + $('#updateAP').on('click', function() { + refreshAP(); + console.log('refresh AP'); + }); + + // first time the page loads: attempt to get the connection status and start the wifi scan + getConfig(); + getCommands(); + + // start timers + startCheckStatusInterval(); +}); + +// eslint-disable-next-line no-unused-vars +window.setURL = function(button) { + const url = button.dataset.url; + $('#fwurl').val(url); + + $('[data-url^="http"]') + .addClass('btn-success') + .removeClass('btn-danger'); + $('[data-url="' + url + '"]') + .addClass('btn-danger') + .removeClass('btn-success'); +} + +// function performConnect(conntype) { +// // stop the status refresh. This prevents a race condition where a status +// // request would be refreshed with wrong ip info from a previous connection +// // and the request would automatically shows as succesful. +// stopCheckStatusInterval(); + +// // stop refreshing wifi list + +// let pwd; +// let dhcpname; +// if (conntype === 'manual') { +// // Grab the manual SSID and PWD +// selectedSSID = $('#manual_ssid').val(); +// pwd = $('#manual_pwd').val(); +// dhcpname = $('#dhcp-name2').val(); +// } else { +// pwd = $('#pwd').val(); +// dhcpname = $('#dhcp-name1').val(); +// } + +// // reset connection +// $('#connect-success').hide(); +// $('#connect-fail').hide(); + +// $('#ok-connect').prop('disabled', true); +// $('#ssid-wait').text(selectedSSID); +// $('#connect').slideUp('fast', function() {}); +// $('#connect_manual').slideUp('fast', function() {}); + +// $.ajax({ +// url: '/connect.json', +// dataType: 'text', +// method: 'POST', +// cache: false, + +// // headers: { 'X-Custom-ssid': selectedSSID, 'X-Custom-pwd': pwd, 'X-Custom-host_name': dhcpname }, +// contentType: 'application/json; charset=utf-8', +// data: JSON.stringify({ +// timestamp: Date.now(), +// ssid: selectedSSID, +// pwd: pwd, +// host_name: dhcpname, +// }), +// error: handleExceptionResponse, +// }); + +// // now we can re-set the intervals regardless of result +// startCheckStatusInterval(); +// } + +function rssiToIcon(rssi) { + if (rssi >= -55) { + return `#signal-wifi-fill`; + } else if (rssi >= -60) { + return `#signal-wifi-3-fill`; + } else if (rssi >= -65) { + return `#signal-wifi-2-fill`; + } else if (rssi >= -70) { + return `#signal-wifi-1-fill`; + } else { + return `#signal-wifi-line`; + } +} + +function refreshAP() { + $.getJSON('/scan.json', async function() { + await sleep(2000); + $.getJSON('/ap.json', function(data) { + if (data.length > 0) { + // sort by signal strength + data.sort(function(a, b) { + const x = a.rssi; + const y = b.rssi; + // eslint-disable-next-line no-nested-ternary + return x < y ? 1 : x > y ? -1 : 0; + }); + apList = data; + refreshAPHTML2(apList); + + } + }); + }); +} +function formatAP(ssid, rssi, auth){ + return `${ssid} + + + + + + + + + + + `; +} +function refreshAPHTML2(data) { + let h = ''; + $('#wifiTable tr td:first-of-type').text(''); + $('#wifiTable tr').removeClass('table-success table-warning'); + if(data){ + data.forEach(function(e) { + h+=formatAP(e.ssid, e.rssi, e.auth); + }); + $('#wifiTable').html(h); + } + if($('.manual_add').length == 0){ + $('#wifiTable').append(formatAP('Manual add', 0,0)); + $('#wifiTable tr:last').addClass('table-light text-dark').addClass('manual_add'); + } + if(ConnectedToSSID.ssid && ( ConnectedToSSID.urc === connectReturnCode.UPDATE_CONNECTION_OK || ConnectedToSSID.urc === connectReturnCode.UPDATE_FAILED_ATTEMPT_AND_RESTORE )){ + const wifiSelector=`#wifiTable td:contains("${ConnectedToSSID.ssid}")`; + if($(wifiSelector).filter(function() {return $(this).text() === ConnectedToSSID.ssid; }).length==0){ + $('#wifiTable').prepend(`${formatAP(ConnectedToSSID.ssid, ConnectedToSSID.rssi ?? 0, 0)}`); + } + $(wifiSelector).filter(function() {return $(this).text() === ConnectedToSSID.ssid; }).siblings().first().html('✓').parent().addClass((ConnectedToSSID.urc === connectReturnCode.UPDATE_CONNECTION_OK?'table-success':'table-warning')); + $('span#foot-wifi').html(`, SSID: ${ConnectedToSSID.ssid}, IP: ${ConnectedToSSID.ip}`); + $('#wifiStsIcon').attr('xlink:href',rssiToIcon(ConnectedToSSID.rssi)); + } + else { + $('span#foot-wifi').html(''); + } + +} +function showTask(task) { + console.debug( + this.toLocaleString() + + '\t' + + task.nme + + '\t' + + task.cpu + + '\t' + + taskStates[task.st] + + '\t' + + task.minstk + + '\t' + + task.bprio + + '\t' + + task.cprio + + '\t' + + task.num + ); + $('tbody#tasks').append( + '' + + task.num + + '' + + task.nme + + '' + + task.cpu + + '' + + taskStates[task.st] + + '' + + task.minstk + + '' + + task.bprio + + '' + + task.cprio + + '' + ); +} +function getMessages() { + $.getJSON('/messages.json?1', async function(data) { + for (const msg of data) { + const msgAge = msg.current_time - msg.sent_time; + var msgTime = new Date(); + msgTime.setTime(msgTime.getTime() - msgAge); + switch (msg.class) { + case 'MESSAGING_CLASS_OTA': + // message: "{"ota_dsc":"Erasing flash complete","ota_pct":0}" + var otaData = JSON.parse(msg.message); + if ((otaData.ota_pct ?? 0) !== 0) { + otapct = otaData.ota_pct; + $('.progress-bar') + .css('width', otapct + '%') + .attr('aria-valuenow', otapct); + $('.progress-bar').html(otapct + '%'); + } + if ((otaData.ota_dsc ??'') !== '') { + otadsc = otaData.ota_dsc; + $('span#flash-status').html(otadsc); + if (msg.type === 'MESSAGING_ERROR' || otapct > 95) { + blockFlashButton = false; + enableStatusTimer = true; + } + } + break; + case 'MESSAGING_CLASS_STATS': + // for task states, check structure : task_state_t + var statsData = JSON.parse(msg.message); + console.debug( + msgTime.toLocalShort() + + ' - Number of running tasks: ' + + statsData.ntasks + ); + console.debug( + msgTime.toLocalShort() + + '\tname' + + '\tcpu' + + '\tstate' + + '\tminstk' + + '\tbprio' + + '\tcprio' + + '\tnum' + ); + if (statsData.tasks) { + if ($('#tasks_sect').css('visibility') === 'collapse') { + $('#tasks_sect').css('visibility', 'visible'); + } + $('tbody#tasks').html(''); + statsData.tasks + .sort(function(a, b) { + return b.cpu - a.cpu; + }) + .forEach(showTask, msgTime); + } else if ($('#tasks_sect').css('visibility') === 'visible') { + $('tbody#tasks').empty(); + $('#tasks_sect').css('visibility', 'collapse'); + } + break; + case 'MESSAGING_CLASS_SYSTEM': + showMessage(msg, msgTime); + break; + case 'MESSAGING_CLASS_CFGCMD': + var msgparts = msg.message.split(/([^\n]*)\n(.*)/gs); + showCmdMessage(msgparts[1], msg.type, msgparts[2], true); + break; + case 'MESSAGING_CLASS_BT': + JSON.parse(msg.message).forEach(function(btEntry) { + showMessage({ type:msg.type, message:`BT Audio device found: ${btEntry.name} RSSI: ${btEntry.rssi} `}, msgTime); + }); + break; + default: + break; + } + } + }).fail(handleExceptionResponse); + + /* + Minstk is minimum stack space left +Bprio is base priority +cprio is current priority +nme is name +st is task state. I provided a "typedef" that you can use to convert to text +cpu is cpu percent used +*/ +} +function handleRecoveryMode(data) { + const locRecovery= data.recovery ??0; + if (LastRecoveryState !== locRecovery) { + LastRecoveryState = locRecovery; + $('input#show-nvs')[0].checked = LastRecoveryState === 1; + } + if ($('input#show-nvs')[0].checked) { + $('*[href*="-nvs"]').show(); + + } else { + $('*[href*="-nvs"]').hide(); + } + enableStatusTimer = true; + if (locRecovery === 1) { + recovery = true; + $('.recovery_element').show(); + $('.ota_element').hide(); + $('#boot-button').html('Reboot'); + $('#boot-form').attr('action', '/reboot_ota.json'); + } else { + recovery = false; + $('.recovery_element').hide(); + $('.ota_element').show(); + $('#boot-button').html('Recovery'); + $('#boot-form').attr('action', '/recovery.json'); + } +} +function hasConnectionChanged(data){ +// gw: "192.168.10.1" +// ip: "192.168.10.225" +// netmask: "255.255.255.0" +// ssid: "MyTestSSID" + + return (data.urc !== ConnectedToSSID.urc || + data.ssid !== ConnectedToSSID.ssid || + data.gw !== ConnectedToSSID.gw || + data.netmask !== ConnectedToSSID.netmask || + data.ip !== ConnectedToSSID.ip || data.rssi !== ConnectedToSSID.rssi ) +} +function handleWifiDialog(data){ + if($('#WifiConnectDialog').is(':visible')){ + if(ConnectedToSSID.ip) { + $('#ipAddress').text(ConnectedToSSID.ip); + } + if(ConnectedToSSID.ssid) { + $('#connectedToSSID' ).text(ConnectedToSSID.ssid); + } + if(ConnectedToSSID.gw) { + $('#gateway' ).text(ConnectedToSSID.gw); + } + if(ConnectedToSSID.netmask) { + $('#netmask' ).text(ConnectedToSSID.netmask); + } + if(ConnectingToSSID.Action===undefined || (ConnectingToSSID.Action && ConnectingToSSID.Action == ConnectingToActions.STS)) { + $("*[class*='connecting']").hide(); + $('.connecting-status').show(); + } + if(SystemConfig.ap_ssid){ + $('#apName').text(SystemConfig.ap_ssid); + } + if(SystemConfig.ap_pwd){ + $('#apPass').text(SystemConfig.ap_pwd); + } + if(!data) + { + return; + } + else { + switch (data.urc) { + case connectReturnCode.UPDATE_CONNECTION_OK: + if(data.ssid && data.ssid===ConnectingToSSID.ssid){ + $("*[class*='connecting']").hide(); + $('.connecting-success').show(); + ConnectingToSSID.Action = ConnectingToActions.STS; + } + break; + case connectReturnCode.UPDATE_FAILED_ATTEMPT: + // + if(ConnectingToSSID.Action !=ConnectingToActions.STS && ConnectingToSSID.ssid == data.ssid ){ + $("*[class*='connecting']").hide(); + $('.connecting-fail').show(); + } + break; + case connectReturnCode.UPDATE_LOST_CONNECTION: + + break; + case connectReturnCode.UPDATE_FAILED_ATTEMPT_AND_RESTORE: + if(ConnectingToSSID.Action !=ConnectingToActions.STS && ConnectingToSSID.ssid != data.ssid ){ + $("*[class*='connecting']").hide(); + $('.connecting-fail').show(); + } + break; + case connectReturnCode.UPDATE_USER_DISCONNECT: + // that's a manual disconnect + // if ($('#wifi-status').is(':visible')) { + // $('#wifi-status').slideUp('fast', function() {}); + // $('span#foot-wifi').html(''); + + // } + break; + default: + break; + } + } + + } +} +function handleWifiStatus(data) { + if(hasConnectionChanged(data)){ + ConnectedToSSID=data; + refreshAPHTML2(); + } + handleWifiDialog(data); +} + +function batteryToIcon(voltage) { + /* Assuming Li-ion 18650s as a power source, 3.9V per cell, or above is treated + as full charge (>75% of capacity). 3.4V is empty. The gauge is loosely + following the graph here: + https://learn.adafruit.com/li-ion-and-lipoly-batteries/voltages + using the 0.2C discharge profile for the rest of the values. + */ + if (voltage > 0) { + if (inRange(voltage, 5.8, 6.8) || inRange(voltage, 8.8, 10.2)) { + return `battery-low-line`; + } else if (inRange(voltage, 6.8, 7.4) || inRange(voltage, 10.2, 11.1)) { + return `battery-low-line`; + } else if ( + inRange(voltage, 7.4, 7.5) || + inRange(voltage, 11.1, 11.25) + ) { + return `battery-low-line`; + } else if ( + inRange(voltage, 7.5, 7.8) || + inRange(voltage, 11.25, 11.7) + ) { + return `battery-fill`; + } else { + return `battery-line`; + } + } +} +function checkStatus() { + RepeatCheckStatusInterval(); + if (!enableStatusTimer) { + return; + } + if (blockAjax) { + return; + } + blockAjax = true; + getMessages(); + $.getJSON('/status.json', function(data) { + handleRecoveryMode(data); + handleWifiStatus(data); + handlebtstate(data); + let pname = ''; + if (data.project_name && data.project_name !== '') { + pname = data.project_name; + } + if (data.version && data.version !== '') { + versionName=data.version; + appTitle= (versionName.toLowerCase().includes('squeezeamp')?"SqueezeAmp":"SqueezeESP32"); + $("#navtitle").text= `${appTitle}`; + $('span#foot-fw').html(`fw: ${versionName}, mode: ${pname}`); + } else { + $('span#flash-status').html(''); + } + if (data.Voltage) { + $('#battery').attr('xlink:href', `#${batteryToIcon(data.Voltage)}`); + $('#battery').show(); + } else { + $('#battery').hide(); + } + + $('#o_jack').attr('display', Number(data.Jack) ? 'inline' : 'none'); + blockAjax = false; + }).fail(function(xhr, ajaxOptions, thrownError) { + handleExceptionResponse(xhr, ajaxOptions, thrownError); + blockAjax = false; + }); +} +// eslint-disable-next-line no-unused-vars +window.runCommand = function(button, reboot) { + let cmdstring = button.attributes.cmdname.value; + showCmdMessage( + button.attributes.cmdname.value, + 'MESSAGING_INFO', + 'Executing.', + false + ); + const fields = document.getElementById('flds-' + cmdstring); + cmdstring += ' '; + if (fields) { + const allfields = fields.querySelectorAll('select,input'); + for (var i = 0; i < allfields.length; i++) { + const attr = allfields[i].attributes; + let qts = ''; + let opt = ''; + let isSelect = allfields[i].attributes.class.value === 'custom-select'; + if ((isSelect && allfields[i].selectedIndex !== 0) || !isSelect) { + if (attr.longopts.value !== 'undefined') { + opt += '--' + attr.longopts.value; + } else if (attr.shortopts.value !== 'undefined') { + opt = '-' + attr.shortopts.value; + } + + if (attr.hasvalue.value === 'true') { + if (allfields[i].value !== '') { + qts = /\s/.test(allfields[i].value) ? '"' : ''; + cmdstring += opt + ' ' + qts + allfields[i].value + qts + ' '; + } + } else { + // this is a checkbox + if (allfields[i].checked) { + cmdstring += opt + ' '; + } + } + } + } + } + console.log(cmdstring); + + const data = { + timestamp: Date.now(), + }; + data.command = cmdstring; + + $.ajax({ + url: '/commands.json', + dataType: 'text', + method: 'POST', + cache: false, + contentType: 'application/json; charset=utf-8', + data: JSON.stringify(data), + error: handleExceptionResponse, + complete: function(response) { + // var returnedResponse = JSON.parse(response.responseText); + console.log(response.responseText); + if ( + response.responseText && + JSON.parse(response.responseText).Result === 'Success' && + reboot + ) { + delayReboot(2500, button.attributes.cmdname.value); + } + }, + }); + enableStatusTimer = true; +} +function getLongOps(data, name, longopts){ + return data.values[name]!==undefined?data.values[name][longopts]:""; +} +function getCommands() { + $.getJSON('/commands.json', function(data) { + console.log(data); + data.commands.forEach(function(command) { + if ($('#flds-' + command.name).length === 0) { + const cmdParts = command.name.split('-'); + const isConfig = cmdParts[0] === 'cfg'; + const targetDiv = '#tab-' + cmdParts[0] + '-' + cmdParts[1]; + let innerhtml = ''; + + // innerhtml+=''+(isConfig?'

':''); + innerhtml += + '
' + + command.help.encodeHTML().replace(/\n/g, '
') + + '
'; + innerhtml += '
'; + if (command.argtable) { + command.argtable.forEach(function(arg) { + let placeholder = arg.datatype || ''; + const ctrlname = command.name + '-' + arg.longopts; + const curvalue = getLongOps(data,command.name,arg.longopts); + + let attributes = 'hasvalue=' + arg.hasvalue + ' '; + + // attributes +='datatype="'+arg.datatype+'" '; + attributes += 'longopts="' + arg.longopts + '" '; + attributes += 'shortopts="' + arg.shortopts + '" '; + attributes += 'checkbox=' + arg.checkbox + ' '; + attributes += 'cmdname="' + command.name + '" '; + attributes += + 'id="' + + ctrlname + + '" name="' + + ctrlname + + '" hasvalue="' + + arg.hasvalue + + '" '; + let extraclass = arg.mincount > 0 ? 'bg-success' : ''; + if (arg.glossary === 'hidden') { + attributes += ' style="visibility: hidden;"'; + } + if (arg.checkbox) { + innerhtml += + '
'; + } else { + innerhtml += + '
'; + if (placeholder.includes('|')) { + extraclass = placeholder.startsWith('+') ? ' multiple ' : ''; + placeholder = placeholder + .replace('<', '') + .replace('=', '') + .replace('>', ''); + innerhtml += `'; + } else { + innerhtml += + ''; + } + innerhtml += + 'Previous value: ' + + (curvalue || '') + + ''; + } + innerhtml += '
'; + }); + } + innerhtml += '
'; + innerhtml += + ''; + if (isConfig) { + innerhtml += + ''; + innerhtml += + ''; + } else { + innerhtml += + ''; + } + innerhtml += '
'; + if (isConfig) { + $(targetDiv).append(innerhtml); + } else { + $('#commands-list').append(innerhtml); + } + } + }); + + data.commands.forEach(function(command) { + $('[cmdname=' + command.name + ']:input').val(''); + $('[cmdname=' + command.name + ']:checkbox').prop('checked', false); + if (command.argtable) { + command.argtable.forEach(function(arg) { + const ctrlselector = '#' + command.name + '-' + arg.longopts; + const ctrlValue = getLongOps(data,command.name,arg.longopts); + if (arg.checkbox) { + $(ctrlselector)[0].checked = ctrlValue; + } else { + if (ctrlValue !== undefined) { + $(ctrlselector) + .val(ctrlValue) + .trigger('change'); + } + if ( + $(ctrlselector)[0].value.length === 0 && + (arg.datatype || '').includes('|') + ) { + $(ctrlselector)[0].value = '--'; + } + } + }); + } + }); + }).fail(function(xhr, ajaxOptions, thrownError) { + handleExceptionResponse(xhr, ajaxOptions, thrownError); + $('#commands-list').empty(); + blockAjax = false; + }); +} + +function getConfig() { + $.getJSON('/config.json', function(entries) { + $('#nvsTable tr').remove(); + const data = (entries.config? entries.config : entries); + SystemConfig = data; + Object.keys(data) + .sort() + .forEach(function(key) { + let val = data[key].value; + if (key === 'autoexec') { + if (data.autoexec.value === '0') { + $('#disable-squeezelite')[0].checked = true; + } else { + $('#disable-squeezelite')[0].checked = false; + } + } else if (key === 'autoexec1') { + const re = /-o\s?(["][^"]*["]|[^-]+)/g; + const m = re.exec(val); + if (m[1].toUpperCase().startsWith('I2S')) { + handleTemplateTypeRadio('i2s'); + } else if (m[1].toUpperCase().startsWith('SPDIF')) { + handleTemplateTypeRadio('spdif'); + } else if (m[1].toUpperCase().startsWith('"BT')) { + handleTemplateTypeRadio('bt'); + } + } else if (key === 'host_name') { + val = val.replaceAll('"', ''); + $('input#dhcp-name1').val(val); + $('input#dhcp-name2').val(val); + $('#player').val(val); + document.title = val; + hostName = val; + } + $('tbody#nvsTable').append( + '' + + '' + + key + + '' + + "" + + "" + ); + if (entries.gpio) { + $('tbody#gpiotable tr').remove(); + entries.gpio.forEach(function(gpioEntry) { + $('tbody#gpiotable').append( + '' + + gpioEntry.group + + '' + + gpioEntry.name + + '' + + gpioEntry.gpio + + '' + + (gpioEntry.fixed ? 'Fixed' : 'Configuration') + + '' + ); + }); + } + }).fail(function(xhr, ajaxOptions, thrownError) { + handleExceptionResponse(xhr, ajaxOptions, thrownError); + blockAjax = false; + }); +} +function showLocalMessage(message, severity) { + const msg = { + message: message, + type: severity, + }; + showMessage(msg, new Date()); +} + +function showMessage(msg, msgTime) { + let color = 'table-success'; + + if (msg.type === 'MESSAGING_WARNING') { + color = 'table-warning'; + if (messageseverity === 'MESSAGING_INFO') { + messageseverity = 'MESSAGING_WARNING'; + } + } else if (msg.type === 'MESSAGING_ERROR') { + if ( + messageseverity === 'MESSAGING_INFO' || + messageseverity === 'MESSAGING_WARNING' + ) { + messageseverity = 'MESSAGING_ERROR'; + } + color = 'table-danger'; + } + if (++messagecount > 0) { + $('#msgcnt').removeClass('badge-success'); + $('#msgcnt').removeClass('badge-warning'); + $('#msgcnt').removeClass('badge-danger'); + $('#msgcnt').addClass(pillcolors[messageseverity]); + $('#msgcnt').text(messagecount); + } + + $('#syslogTable').append( + "" + + '' + + msgTime.toLocalShort() + + '' + + '' + + msg.message.encodeHTML() + + '' + + '' + ); +} + +function inRange(x, min, max) { + return (x - min) * (x - max) <= 0; +} + +function sleep(ms) { + return new Promise(resolve => setTimeout(resolve, ms)); +} + diff --git a/components/wifi-manager/webapp/src/js/test.js b/components/wifi-manager/webapp/src/js/test.js new file mode 100644 index 00000000..214df1cd --- /dev/null +++ b/components/wifi-manager/webapp/src/js/test.js @@ -0,0 +1,135 @@ +let sd = {}; +let rf=false; +function getStatus() { + const config = {}; + window.$(`#valuesTable input:text, #valuesTable input:checked`).each(function(_index, entry) { + switch (entry.attributes.dtype.value) { + case 'string': + config[entry.name] = entry.value; + break; + case 'number': + config[entry.name] = Number(entry.value); + break; + case 'boolean': + config[entry.name] = entry.value=='true'; + break; + default: + break; + } + + }); + return config; + } + + // function getOptions(entry) { + // let output=''; + // for (const property in entry) { + // output+=``; + // } + // return output; + // } + function getRadioButton(entry){ + let output=''; + for (const property in sd[entry]) { + output+=` +
+ + +
+ `; + } + return output; + + } + + window.refreshStatus = function() { + if(Object.keys(sd).length>0){ + if(rf) return; + rf=true; + window.$.getJSON('/status.json', function(data) { + for (const property in data) { + const val = data[property]; + let input = $(`#val_${property}, #valuesTable input[name="${property}"]`) ; + if(input.length>0){ + if(input.is(':radio') ){ + $(`#${property}_${val ?? 0}`).prop('checked',true); + } + else { + if(input.val() !==val && !input.is(":focus")){ + input.val(val); + } + } + + } + else { + + if(sd[property]){ + window.$('#valuesTable').append( + `${property} + + ${getRadioButton(property)} + `); + $(`#${property}_${val ?? 0}`).prop('checked',true); + } + else { + window.$('#valuesTable').append(`${property}`); + window.$(`#val_${property}`).val(val); + } + + + } + + } + }) + .fail(function() { + + }) + .done(function(){ + rf=false; + }); + + } + else { + window.$.getJSON('/statusdefinition.json', function(data) { + sd=data; + }) + .fail(function() { + + }) + .done(function(){ + }); + } + + } + function pushStatus(){ + const data = { + timestamp: Date.now(), + status: getStatus() + }; + window.$.ajax({ + url: '/status.json', + dataType: 'text', + method: 'POST', + cache: false, + contentType: 'application/json; charset=utf-8', + data: JSON.stringify(data), + }); + console.log('sent config JSON with data:', JSON.stringify(data)); + } + + window.$(document).ready(function() { + window.$('#save_status').on('click', function() { + pushStatus(); + }); + window.$( "#valuesTable" ).change(function() { + pushStatus(); + }); + + setInterval(window.refreshStatus, 1000); + $('svg >> symbol').each(function() { + $('#allIcons').append( ` + + `); + }); + + }) ; diff --git a/components/wifi-manager/webapp/src/sass/layout/_features.scss b/components/wifi-manager/webapp/src/sass/layout/_features.scss new file mode 100644 index 00000000..bec35c4a --- /dev/null +++ b/components/wifi-manager/webapp/src/sass/layout/_features.scss @@ -0,0 +1,34 @@ +.features:hover { + cursor: pointer; + animation: jello-horizontal 1.2s; +} + +@keyframes jello-horizontal { + 0% { + transform: scale3d(1, 1, 1); + } + + 30% { + transform: scale3d(1.25, .75, 1); + } + + 40% { + transform: scale3d(.75, 1.25, 1); + } + + 50% { + transform: scale3d(1.15, .85, 1); + } + + 65% { + transform: scale3d(.95, 1.05, 1); + } + + 75% { + transform: scale3d(1.05, .95, 1); + } + + 100% { + transform: scale3d(1, 1, 1); + } +} diff --git a/components/wifi-manager/webapp/src/sass/main.scss b/components/wifi-manager/webapp/src/sass/main.scss new file mode 100644 index 00000000..a8c52a45 --- /dev/null +++ b/components/wifi-manager/webapp/src/sass/main.scss @@ -0,0 +1,5 @@ +@import 'themes/darkly'; +@import "utils/style"; +@import "utils/mixins"; +@import "setup/normalize"; +@import "layout/features"; diff --git a/components/wifi-manager/webapp/src/sass/setup/_normalize.scss b/components/wifi-manager/webapp/src/sass/setup/_normalize.scss new file mode 100644 index 00000000..e6e73053 --- /dev/null +++ b/components/wifi-manager/webapp/src/sass/setup/_normalize.scss @@ -0,0 +1,348 @@ +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ + +/* Document + ========================================================================== */ + +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ + +html { + line-height: 1.15; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/* Sections + ========================================================================== */ + +/** + * Remove the margin in all browsers. + */ + +body { + margin: 0; +} + +/** + * Render the `main` element consistently in IE. + */ + +main { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + +h1 { + font-size: 2em; + margin: .67em 0; +} + +/* Grouping content + ========================================================================== */ + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + +hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +pre { + font-family: monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Remove the gray background on active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + +abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +code, +kbd, +samp { + font-family: monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** + * Add the correct font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -.25em; +} + +sup { + top: -.5em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove the border on images inside links in IE 10. + */ + +img { + border-style: none; +} + +/* Forms + ========================================================================== */ + +/** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + +button, +input { /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + +button, +select { /* 1 */ + text-transform: none; +} + +/** + * Correct the inability to style clickable types in iOS and Safari. + */ + +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +/** + * Remove the inner border and padding in Firefox. + */ + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ + +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ + +fieldset { + padding: .35em .75em .625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + +legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +progress { + vertical-align: baseline; +} + +/** + * Remove the default vertical scrollbar in IE 10+. + */ + +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ + +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + +[type="search"] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/** + * Remove the inner padding in Chrome and Safari on macOS. + */ + +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* Interactive + ========================================================================== */ + +/* + * Add the correct display in Edge, IE 10+, and Firefox. + */ + +details { + display: block; +} + +/* + * Add the correct display in all browsers. + */ + +summary { + display: list-item; +} + +/* Misc + ========================================================================== */ + +/** + * Add the correct display in IE 10+. + */ + +template { + display: none; +} + +/** + * Add the correct display in IE 10. + */ + +[hidden] { + display: none; +} diff --git a/components/wifi-manager/webapp/src/sass/themes/_darkly.scss b/components/wifi-manager/webapp/src/sass/themes/_darkly.scss new file mode 100644 index 00000000..15cb8b25 --- /dev/null +++ b/components/wifi-manager/webapp/src/sass/themes/_darkly.scss @@ -0,0 +1,3 @@ +@import "~bootswatch/dist/darkly/variables"; +@import "~bootstrap/scss/bootstrap"; +@import "~bootswatch/dist/darkly/bootswatch"; diff --git a/components/wifi-manager/webapp/src/sass/utils/_mixins.scss b/components/wifi-manager/webapp/src/sass/utils/_mixins.scss new file mode 100644 index 00000000..583b8295 --- /dev/null +++ b/components/wifi-manager/webapp/src/sass/utils/_mixins.scss @@ -0,0 +1,24 @@ + +/* Device = Most of the Smartphones Mobiles (Portrait) */ +$screen-xxs-min: 320px; +$screen-xxs-max: 480px; + +/* Device = Low Resolution Tablets, Mobiles (Landscape) */ +$screen-xs-min: 481px; +$screen-xs-max: 767px; + +/* Device = Tablets, Ipads (portrait) */ +$screen-sm-min: 768px; +$screen-sm-max: 1024px; + +/* Device = Laptops, Desktops */ +$screen-md-min: 1025px; +$screen-md-max: 1280px; + +/* Device = Desktops */ +$screen-lg-min: 1281px; +$screen-lg-max: 1440px; + +/* Higher Resolution Screens */ +$screen-xlg-min: 1441px; +$screen-xlg-max: 2560px; diff --git a/components/wifi-manager/res/style.css b/components/wifi-manager/webapp/src/sass/utils/_style.css similarity index 89% rename from components/wifi-manager/res/style.css rename to components/wifi-manager/webapp/src/sass/utils/_style.css index b6b6686d..687897b1 100644 --- a/components/wifi-manager/res/style.css +++ b/components/wifi-manager/webapp/src/sass/utils/_style.css @@ -14,6 +14,9 @@ a:hover { color: #99f; text-decoration: none } +.glyphicon { + font-size: 18px; +} input:focus, select:focus, textarea:focus, @@ -133,43 +136,36 @@ h3 { float: right; margin-right: 20px; } -.w0 { - background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTJDBGvsAAABzUlEQVRIS+WUTShEURTH3zyRhjQ+8hWxmCJMoSzEwsbCgi1LZRYW9pONptiwka9iI81CWFpYaEqNMkVKmpWN1IhYKN9ZDL/z3p3mxZh5g9X4168799xz/vPefedeLeuVC+3gdTgc07CsmCQ2DI2gg21Jci30wSpGt/CeghickTsHPVACDkgqp67rPgpO4E0ZZMIj7OHhxSvPtEyomcVDeFXJv+EZNvEsNa01rZfAuSUhThR2wU+ObJkbyhRNMMDaDIThBqy1MdZ3wAPawqfFC2Lj0Ab5kpBGxdAJs9TeW72ITUhCPZMjFYwwbwXpnkwlDzOIx50yXwP5c0MeggHGanNqSDqqBqQ7/Kxvg2zHAfMN8IE8uZhYO6eBnBXGKnOakLWfaQZ9jMRjSPXhZUuC5A9JjVFpKkeNSVVA0Tq8KJN0yFl4gilqbW2tm+SQKoybXIG8jcT34RSsh1Byt6iVg2ZLlRCg6JpROqEDpFheXZ5S9rcLFsl5YJwHad+MVA5y13w5lRY5oRsKjdm/Vz/7LR86zG+5wr+9NX+iOowjEO+aELEic+lv1ILppeUPosRst6QduTANgnE2mC+BnYswI1VwfYzCCL9dZij7pWkf6UeSTYAuE/QAAAAASUVORK5CYII=') no-repeat right top; +/* .w0 { + background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTJDBGvsAAABzUlEQVRIS+WUTShEURTH3zyRhjQ+8hWxmCJMoSzEwsbCgi1LZRYW9pONptiwka9iI81CWFpYaEqNMkVKmpWN1IhYKN9ZDL/z3p3mxZh5g9X4168799xz/vPefedeLeuVC+3gdTgc07CsmCQ2DI2gg21Jci30wSpGt/CeghickTsHPVACDkgqp67rPgpO4E0ZZMIj7OHhxSvPtEyomcVDeFXJv+EZNvEsNa01rZfAuSUhThR2wU+ObJkbyhRNMMDaDIThBqy1MdZ3wAPawqfFC2Lj0Ab5kpBGxdAJs9TeW72ITUhCPZMjFYwwbwXpnkwlDzOIx50yXwP5c0MeggHGanNqSDqqBqQ7/Kxvg2zHAfMN8IE8uZhYO6eBnBXGKnOakLWfaQZ9jMRjSPXhZUuC5A9JjVFpKkeNSVVA0Tq8KJN0yFl4gilqbW2tm+SQKoybXIG8jcT34RSsh1Byt6iVg2ZLlRCg6JpROqEDpFheXZ5S9rcLFsl5YJwHad+MVA5y13w5lRY5oRsKjdm/Vz/7LR86zG+5wr+9NX+iOowjEO+aELEic+lv1ILppeUPosRst6QduTANgnE2mC+BnYswI1VwfYzCCL9dZij7pWkf6UeSTYAuE/QAAAAASUVORK5CYII=') no-repeat left top; height: 24px; - margin-right: 20px; } .w1 { - background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALEQAACxEBf2RfkQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAAHiSURBVEhL5dRPKINxHMfxPVskpA35F3FYEVasHBYHFwcHrhyVZ8vBfblIceEi/4qLtINwdHCQUpQVKcnJRYqIg/J3OYz399nv0YPNtuzEt149+31/v+/n4fGYLVHpup4Rnyregd+K27TIghe63+8fx7wySqsPdbAj3qzha0MOV6ETiwTd4u0HUZxydgrtKISGj0xreG4gEAgycIRXFZCOR2yTQZSebeaa4Q1s7iOiDv/GM1bJLDJv0EHjzHLAdIFNjHBGHpkbxUo9utmbQBg3sM5G2d+AR24w82XznN4QmpGjXrCExRkXfJhk9t6aRW9YDtSwOFDNE9ZNyFLzKRczOegh406FL8ElG8JDM8S1Qtaq7KhEO0Y0TVtHGHusVxCEDy5oMLNqyVrgWm5kqaYw3mdVdmqQsENE8JbAPbY43yszMqiyHOr66QayL5XH0DJeVEgyUTxhjNmPR/vtBpZyc3hHDZohV5DfRvq7OMYtrDdZY7YwFpG8yhBi6JrrMFogww7IT1mOVsxy5oHrNIqRVpWgDtnGKn7log35xurfVxfPW/7QYT57Ybz7mapqgk9gvjU79ApiW5mpRkIvLTe4oJfyK5lKOQndgvG/wXoOSb8I061Svj4G0M9nZ6z198tmeweYtIrMYP17VAAAAABJRU5ErkJggg==') no-repeat right top; + background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALEQAACxEBf2RfkQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAAHiSURBVEhL5dRPKINxHMfxPVskpA35F3FYEVasHBYHFwcHrhyVZ8vBfblIceEi/4qLtINwdHCQUpQVKcnJRYqIg/J3OYz399nv0YPNtuzEt149+31/v+/n4fGYLVHpup4Rnyregd+K27TIghe63+8fx7wySqsPdbAj3qzha0MOV6ETiwTd4u0HUZxydgrtKISGj0xreG4gEAgycIRXFZCOR2yTQZSebeaa4Q1s7iOiDv/GM1bJLDJv0EHjzHLAdIFNjHBGHpkbxUo9utmbQBg3sM5G2d+AR24w82XznN4QmpGjXrCExRkXfJhk9t6aRW9YDtSwOFDNE9ZNyFLzKRczOegh406FL8ElG8JDM8S1Qtaq7KhEO0Y0TVtHGHusVxCEDy5oMLNqyVrgWm5kqaYw3mdVdmqQsENE8JbAPbY43yszMqiyHOr66QayL5XH0DJeVEgyUTxhjNmPR/vtBpZyc3hHDZohV5DfRvq7OMYtrDdZY7YwFpG8yhBi6JrrMFogww7IT1mOVsxy5oHrNIqRVpWgDtnGKn7log35xurfVxfPW/7QYT57Ybz7mapqgk9gvjU79ApiW5mpRkIvLTe4oJfyK5lKOQndgvG/wXoOSb8I061Svj4G0M9nZ6z198tmeweYtIrMYP17VAAAAABJRU5ErkJggg==') no-repeat left top; height: 24px; - margin-right: 20px; } .w2 { - background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALEQAACxEBf2RfkQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAAHkSURBVEhL3dRLKERRGMDxuSPSkLzyilgo8iiUhVjYWFiwZancmSzsZSPFho28io1kISwtLKQURZGSrGykiFgo7yyG/zdzznRm5iK5Sk79uvd85/u++5hzx2Pb9q9yDLrJMWhIRB1sv98/ghlliFAXyuGFU21IbECSi9CKORrd4O0TQZyQO45mZMJCpKfZ3BcIBPooOMSravAdD9ikB63sJN1XN69kcQ8vKvknnrBMzyx9gRYCp0aCdo51DJIjr6wU2UoF2lkbxS6uYdYGWV9DtVxgMmbxjFg/apEM/ZQfyUADxqi9M3sRG5CEEib7KnjMvAaye2IbfUVupoMet6r5PDL0YjXBBY4Fai5kRxVCdscg66uQ17HDfAl9kDuXJzB3Thk5sxzzZa6DumHknN3QS+IBPvvh5ZVskN8ZU5+gz3XAlELRIp5Vk6/It/CIYWrjXm3URCkleUsV6iaXkKeR+DaOYH6EkrtCrXxoUf2iJoY8LFB0xXEA9ZBieXS5S3m/jZgi557jBGT7xvWKCxhyIP81ka/SgQ9NSDViURyDbvpTo82yrAPscl4HKxR1aRTT+BhvyhaxtPCSO6OKphfGBc6JZYaX3BnpNN1AUC7AfBrJoRUXR67X6+1BN+fp4dD/Hx7PO4o9VGuAapKIAAAAAElFTkSuQmCC') no-repeat right top; + background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAALEQAACxEBf2RfkQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAAHkSURBVEhL3dRLKERRGMDxuSPSkLzyilgo8iiUhVjYWFiwZancmSzsZSPFho28io1kISwtLKQURZGSrGykiFgo7yyG/zdzznRm5iK5Sk79uvd85/u++5hzx2Pb9q9yDLrJMWhIRB1sv98/ghlliFAXyuGFU21IbECSi9CKORrd4O0TQZyQO45mZMJCpKfZ3BcIBPooOMSravAdD9ikB63sJN1XN69kcQ8vKvknnrBMzyx9gRYCp0aCdo51DJIjr6wU2UoF2lkbxS6uYdYGWV9DtVxgMmbxjFg/apEM/ZQfyUADxqi9M3sRG5CEEib7KnjMvAaye2IbfUVupoMet6r5PDL0YjXBBY4Fai5kRxVCdscg66uQ17HDfAl9kDuXJzB3Thk5sxzzZa6DumHknN3QS+IBPvvh5ZVskN8ZU5+gz3XAlELRIp5Vk6/It/CIYWrjXm3URCkleUsV6iaXkKeR+DaOYH6EkrtCrXxoUf2iJoY8LFB0xXEA9ZBieXS5S3m/jZgi557jBGT7xvWKCxhyIP81ka/SgQ9NSDViURyDbvpTo82yrAPscl4HKxR1aRTT+BhvyhaxtPCSO6OKphfGBc6JZYaX3BnpNN1AUC7AfBrJoRUXR67X6+1BN+fp4dD/Hx7PO4o9VGuAapKIAAAAAElFTkSuQmCC') no-repeat left top; height: 24px; - margin-right: 20px; } .w3 { - background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAACAElEQVRIS7XUP0gbYRjH8VSpiBZJWvEflXYQKtqACg6ig4uDg651LPQSHLpLlyDoUhdpVdBFxEG0YwcHCQgRFJSCFKcuUohY6iC0VYtD9PuE9w3vXZ74h16HD3fv733e53KX9y7ied5/pYZhUkPHQ3TBSyQS7zFvTBC9RivKoK3NCwZS3IxBLNLoBFc3yOEbtR/Qj8d4gEJPt3lVMpkcY8E+Lk2D+/iDTXrQyquwfW3zdiZ38dcU/4tzrNHzib3AAMGhU2BlsYFxauSRtaDWaMMwc1PYwU+4a3PMryMuF5gJTH4ne4dOVMLeZSkx9GCatb/cXmQpKXjOYM+EB4w7ILsn2Og28mNe0ePUNF9CzE7GCZc5NpmxkB31FLI7xpn/DHkc24xXMQb55XIH7s55Qc0Cx0YZ29A2LJyzG95S+AU3/fHySNLUjwTWl9tzG7iqWbSCC9PkNvIunGGStUWP1jcwWijOmIW2yTHkbiTfwle4L6HUfmKtvGi+fr6BowHLLPrBMYVuyGK5dfmV8nx7MUvNb44fIdu3qFdR4KiDfGsKb6WiCn145GQ+ahgmNQyTGpYwxPOWP3qHc/mE+76apaih4hmND2B3TYasJlCjUkPFS5oeORfIkhVtSY0aKqI0TSP/bjCew10+hPf6D+r5fIziDefRwFxJahgmNQyPF7kGEsc1es+A2E4AAAAASUVORK5CYII=') no-repeat right top; + background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAACAElEQVRIS7XUP0gbYRjH8VSpiBZJWvEflXYQKtqACg6ig4uDg651LPQSHLpLlyDoUhdpVdBFxEG0YwcHCQgRFJSCFKcuUohY6iC0VYtD9PuE9w3vXZ74h16HD3fv733e53KX9y7ied5/pYZhUkPHQ3TBSyQS7zFvTBC9RivKoK3NCwZS3IxBLNLoBFc3yOEbtR/Qj8d4gEJPt3lVMpkcY8E+Lk2D+/iDTXrQyquwfW3zdiZ38dcU/4tzrNHzib3AAMGhU2BlsYFxauSRtaDWaMMwc1PYwU+4a3PMryMuF5gJTH4ne4dOVMLeZSkx9GCatb/cXmQpKXjOYM+EB4w7ILsn2Og28mNe0ePUNF9CzE7GCZc5NpmxkB31FLI7xpn/DHkc24xXMQb55XIH7s55Qc0Cx0YZ29A2LJyzG95S+AU3/fHySNLUjwTWl9tzG7iqWbSCC9PkNvIunGGStUWP1jcwWijOmIW2yTHkbiTfwle4L6HUfmKtvGi+fr6BowHLLPrBMYVuyGK5dfmV8nx7MUvNb44fIdu3qFdR4KiDfGsKb6WiCn145GQ+ahgmNQyTGpYwxPOWP3qHc/mE+76apaih4hmND2B3TYasJlCjUkPFS5oeORfIkhVtSY0aKqI0TSP/bjCew10+hPf6D+r5fIziDefRwFxJahgmNQyPF7kGEsc1es+A2E4AAAAASUVORK5CYII=') no-repeat left top; height: 24px; - margin-right: 20px; -} -.pw { - background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTJDBGvsAAABIUlEQVRIS+3VsU7CUBTGcYhBJCwqwcmEJ2DkCQgzb8ADmLgYWXTzMVjcGNjYGEAXgoSRhTg5OroYIyFY/h+hWGwvtzQ0LpzkF8i5l/uRQ2kTjuPEKrC5T79vzHWJO4wxwzeGuMY5AitsQBFvmEObvNQboQBfhQk4gQ5wD+zgBrcYrHrSwzE2KkxAHVrQWB6QgiqJLB7xA+2pYaNsAWm8QAsa0Sn+1gU+oT1NHGFdtoAcJtBCSw1DuaPqQiNdly0gj1doQaMwleavPc+IJUDffKeADO7Rxxe08A4dEOQD2qPXJ1xh+VuYAirQVaNGFFPov2MM0OXm/UAUZRwCtjoEWP1vQBXuLTgKPYRKMAacoY0oIboDNLB8+PgC4hLY3B8nsQCQEf56jLJoQAAAAABJRU5ErkJggg==') no-repeat right top; +} */ +/* .pw { + background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTJDBGvsAAABIUlEQVRIS+3VsU7CUBTGcYhBJCwqwcmEJ2DkCQgzb8ADmLgYWXTzMVjcGNjYGEAXgoSRhTg5OroYIyFY/h+hWGwvtzQ0LpzkF8i5l/uRQ2kTjuPEKrC5T79vzHWJO4wxwzeGuMY5AitsQBFvmEObvNQboQBfhQk4gQ5wD+zgBrcYrHrSwzE2KkxAHVrQWB6QgiqJLB7xA+2pYaNsAWm8QAsa0Sn+1gU+oT1NHGFdtoAcJtBCSw1DuaPqQiNdly0gj1doQaMwleavPc+IJUDffKeADO7Rxxe08A4dEOQD2qPXJ1xh+VuYAirQVaNGFFPov2MM0OXm/UAUZRwCtjoEWP1vQBXuLTgKPYRKMAacoY0oIboDNLB8+PgC4hLY3B8nsQCQEf56jLJoQAAAAABJRU5ErkJggg==') no-repeat left top; height: 24px; - margin-right: 20px; - height: 24px; - margin-right: 30px; -} +} */ /* SpinKit is licensed under the MIT License. Copyright (c) 2015 Tobias Ahlin */ - .spinner { width: 40px; height: 40px; + position: relative; margin: 100px auto; -} -.double-bounce1, -.double-bounce2 { + } + + .double-bounce1, .double-bounce2 { width: 100%; height: 100%; border-radius: 50%; @@ -178,35 +174,34 @@ h3 { position: absolute; top: 0; left: 0; - -webkit-animation: sk-bounce 2.0s infinite ease-in-out; - animation: sk-bounce 2.0s infinite ease-in-out; -} -.double-bounce2 { + + -webkit-animation: bounce 2.0s infinite ease-in-out; + animation: bounce 2.0s infinite ease-in-out; + } + + .double-bounce2 { -webkit-animation-delay: -1.0s; animation-delay: -1.0s; -} -@-webkit-keyframes sk-bounce { - 0%, 100% { - -webkit-transform: scale(0.0) + } + + @-webkit-keyframes bounce { + 0%, 100% { -webkit-transform: scale(0.0) } + 50% { -webkit-transform: scale(1.0) } + } + + @keyframes bounce { + 0%, 100% { + transform: scale(0.0); + -webkit-transform: scale(0.0); + } 50% { + transform: scale(1.0); + -webkit-transform: scale(1.0); } - 50% { - -webkit-transform: scale(1.0) - } -} -@keyframes sk-bounce { - 0%, 100% { - transform: scale(0.0); - -webkit-transform: scale(0.0); - } - 50% { - transform: scale(1.0); - -webkit-transform: scale(1.0); - } -} + } /* end of SpinKit */ /* daduke stuff */ -input[type='text'], input[type='password'], textarea { +input[type='text'], input[type='password'], textarea, select, option { background: #999; border: 0; padding: 4px; @@ -259,8 +254,8 @@ input[type='text'], input[type='password'], textarea { .custom-switch .custom-control-input:checked ~ .custom-control-label::after { background-color: #fff; - -webkit-transform: translateX(1.5rem); //translateX(0.75rem); - transform: translateX(1.5rem); //translateX(0.75rem); + -webkit-transform: translateX(1.5rem); + transform: translateX(1.5rem); } textarea#autoexec1, textarea#fwurl, div#upload { @@ -314,12 +309,13 @@ span#flash-status { font-size: 120%; } -#info { +/* #info { padding-top: 7px; float: right; -} + display: grid; +} */ -svg#battery { +/* svg#battery { fill: #ddd; } @@ -331,15 +327,20 @@ svg#output { svg#jack { fill: #ddd; padding-right: 4px; -} - +} */ +/* ul#navbar { border-bottom: 0px; } +.navbar-nav { + float: left; + margin: 0; + padding-top: 1rem; +} #content { border-top: 1px solid black; -} +} */ .footer { position: fixed; @@ -365,12 +366,6 @@ td.value { #boot-div { float: right; } - -iframe#dummyframe { - float: right; - border: none; -} - div#message { display: none; color: #000; diff --git a/components/wifi-manager/webapp/src/test.ejs b/components/wifi-manager/webapp/src/test.ejs new file mode 100644 index 00000000..890b1f60 --- /dev/null +++ b/components/wifi-manager/webapp/src/test.ejs @@ -0,0 +1,122 @@ + + + + + esp32-wifi-manager testing + + + + + + +
+ <% if (htmlWebpackPlugin.files.sprites) { %> + <% for (var spriteFileName in htmlWebpackPlugin.files.sprites) { %> + <%= htmlWebpackPlugin.files.sprites[spriteFileName] %> + <% } %> + <% } %> +
+
+
+
Status Variables
+
+ + + + + + + + + +
VariableValue
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#BT StateSub state #Sub state
0Idle0bt_neutral
1Discovering0bt_searching
2Discovered0bt_searching
3Unconnected0bt_disabled
4Connecting0bt_disabled
5Connected0bt_connected
1play_circle_outline
2bt_playing
3pause
4stop
6Disconnecting0bt_neutral
+
+ + + \ No newline at end of file diff --git a/components/wifi-manager/webapp/src/test.ts b/components/wifi-manager/webapp/src/test.ts new file mode 100644 index 00000000..03c27ef7 --- /dev/null +++ b/components/wifi-manager/webapp/src/test.ts @@ -0,0 +1,23 @@ +import 'bootstrap'; +import '../src/sass/main.scss'; +import './js/test.js'; +import '../node_modules/remixicon/icons/Device/signal-wifi-fill.svg'; +import '../node_modules/remixicon/icons/Device/signal-wifi-3-fill.svg'; +import '../node_modules/remixicon/icons/Device/signal-wifi-2-fill.svg'; +import '../node_modules/remixicon/icons/Device/signal-wifi-1-fill.svg'; +import '../node_modules/remixicon/icons/Device/signal-wifi-line.svg'; +import '../node_modules/remixicon/icons/Device/battery-line.svg'; +import '../node_modules/remixicon/icons/Device/battery-low-line.svg'; +import '../node_modules/remixicon/icons/Device/battery-fill.svg'; + +import '../node_modules/remixicon/icons/Media/headphone-fill.svg'; +import '../node_modules/remixicon/icons/Device/device-recover-fill.svg'; +import '../node_modules/remixicon/icons/Device/bluetooth-fill.svg'; +import '../node_modules/remixicon/icons/Device/bluetooth-connect-fill.svg'; +import '../node_modules/remixicon/icons/Media/stop-circle-fill.svg'; +import '../node_modules/remixicon/icons/Media/stop-circle-line.svg'; +import '../node_modules/remixicon/icons/Logos/google-play-fill.svg'; +import '../node_modules/remixicon/icons/Media/pause-fill.svg'; +import '../node_modules/remixicon/icons/Media/stop-fill.svg'; +import '../node_modules/remixicon/icons/System/lock-fill.svg'; +import '../node_modules/remixicon/icons/System/lock-unlock-fill.svg'; diff --git a/components/wifi-manager/webapp/test.js b/components/wifi-manager/webapp/test.js new file mode 100644 index 00000000..f294cef9 --- /dev/null +++ b/components/wifi-manager/webapp/test.js @@ -0,0 +1,55 @@ +const stats=''; +// Merges webpack.common config with this production config +const fs = require('fs'); +const glob = require('glob'); +var getDirectories = function (src, callback) { +glob(src + '/**/*.gz', callback); +}; +getDirectories('./webpack/', function (err, list) { +if (err) { + console.log('Error', err); +} else { + const regex = /^(.*\/)([^\/]*)$/ + const relativeRegex = /(\w+\/[^\/]*)$/ + const makePathRegex = /([^\.].*)$/ + let exportDefHead= + '/***********************************\n'+ + 'webpack_headers\n'+ + stats+'\n'+ + '***********************************/\n'+ + '#pragma once\n'+ + '#include \n'+ + 'extern const char * resource_lookups[];\n'+ + 'extern const uint8_t * resource_map_start[];\n'+ + 'extern const uint8_t * resource_map_end[];\n'; + let exportDef= '// Automatically generated. Do not edit manually!.\n'+ + '#include \n'; + let lookupDef='const char * resource_lookups[] = {\n'; + let lookupMapStart='const uint8_t * resource_map_start[] = {\n'; + let lookupMapEnd='const uint8_t * resource_map_end[] = {\n'; + let cMake=''; + list.forEach(fileName=>{ + console.log(fileName); + let exportName=fileName.match(regex)[2].replace(/[\. \-]/gm,'_'); + let relativeName=fileName.match(relativeRegex)[1]; + exportDef+= 'extern const uint8_t '+exportName+'_start[] asm("_binary_'+exportName+'_start");\n'+ + 'extern const uint8_t '+exportName+'_end[] asm("_binary_'+exportName+'_end");\n'; + lookupDef+='\t"/'+relativeName+'",\n'; + lookupMapStart+='\t'+ exportName+'_start,\n'; + lookupMapEnd+= '\t'+ exportName+'_end,\n'; + cMake+='target_add_binary_data( __idf_wifi-manager ./webapp'+fileName.match(makePathRegex)[1]+' BINARY)\n'; + + }); + lookupDef+='""\n};\n'; + lookupMapStart=lookupMapStart.substring(0,lookupMapStart.length-2)+'\n};\n'; + lookupMapEnd=lookupMapEnd.substring(0,lookupMapEnd.length-2)+'\n};\n'; + try { + fs.writeFileSync('webapp.cmake', cMake); + fs.writeFileSync('webpack.c', exportDef+lookupDef+lookupMapStart+lookupMapEnd); + fs.writeFileSync('webpack.h', exportDefHead); + //file written successfully + } catch (err) { + console.error(err); + } +} +}); diff --git a/components/wifi-manager/webapp/test.txt b/components/wifi-manager/webapp/test.txt new file mode 100644 index 00000000..e2e7bf40 --- /dev/null +++ b/components/wifi-manager/webapp/test.txt @@ -0,0 +1 @@ +Some content! \ No newline at end of file diff --git a/components/wifi-manager/webapp/test/test.js b/components/wifi-manager/webapp/test/test.js new file mode 100644 index 00000000..8ee4f8ed --- /dev/null +++ b/components/wifi-manager/webapp/test/test.js @@ -0,0 +1,8 @@ +var assert = require('assert'); +describe('Array', function() { + describe('#indexOf()', function() { + it('should return -1 when the value is not present', function() { + assert.equal([1, 2, 3].indexOf(4), -1); + }); + }); +}); \ No newline at end of file diff --git a/components/wifi-manager/webapp/tsconfig.json b/components/wifi-manager/webapp/tsconfig.json new file mode 100644 index 00000000..4cafcb7c --- /dev/null +++ b/components/wifi-manager/webapp/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "baseUrl": "./", + "paths": { "*": ["types/*"] }, + "outDir": "./dist/", + "noImplicitAny": true, + "sourceMap": true, + "module": "es6", + "target": "es2018", + "composite": true, +// "jsx": "react", + "allowJs": true + }, + "exclude": [ + "./node_modules" + ] +} diff --git a/components/wifi-manager/webapp/tslint.json b/components/wifi-manager/webapp/tslint.json new file mode 100644 index 00000000..8de125c2 --- /dev/null +++ b/components/wifi-manager/webapp/tslint.json @@ -0,0 +1,22 @@ +{ + "defaultSeverity": "error", + "extends": [ + "tslint:recommended" + ], + "jsRules": {}, + "rules": { + "eofline": false, + "no-trailing-whitespace": false, + "comment-format": false, + "quotemark": false, + "no-console": false, + "one-line": false, + "no-consecutive-blank-lines": false, + "curly": false, + "ordered-imports": [false], + "object-literal-sort-keys": [false], + "only-arrow-functions": false, + "indent": false + }, + "rulesDirectory": [] +} diff --git a/components/wifi-manager/webapp/webapp.cmake b/components/wifi-manager/webapp/webapp.cmake new file mode 100644 index 00000000..369e8368 --- /dev/null +++ b/components/wifi-manager/webapp/webapp.cmake @@ -0,0 +1,5 @@ +target_add_binary_data( __idf_wifi-manager ./webapp/webpack/dist/favicon-32x32.png BINARY) +target_add_binary_data( __idf_wifi-manager ./webapp/webpack/dist/index.html.gz BINARY) +target_add_binary_data( __idf_wifi-manager ./webapp/webpack/dist/js/index.e644c0.bundle.js.gz BINARY) +target_add_binary_data( __idf_wifi-manager ./webapp/webpack/dist/js/node-modules.e644c0.bundle.js.gz BINARY) +target_add_binary_data( __idf_wifi-manager ./webapp/webpack/dist/js/runtime.e644c0.bundle.js.gz BINARY) diff --git a/components/wifi-manager/webapp/webpack.c b/components/wifi-manager/webapp/webpack.c new file mode 100644 index 00000000..056f3a9d --- /dev/null +++ b/components/wifi-manager/webapp/webpack.c @@ -0,0 +1,34 @@ +// Automatically generated. Do not edit manually!. +#include +extern const uint8_t _favicon_32x32_png_start[] asm("_binary_favicon_32x32_png_start"); +extern const uint8_t _favicon_32x32_png_end[] asm("_binary_favicon_32x32_png_end"); +extern const uint8_t _index_html_gz_start[] asm("_binary_index_html_gz_start"); +extern const uint8_t _index_html_gz_end[] asm("_binary_index_html_gz_end"); +extern const uint8_t _index_e644c0_bundle_js_gz_start[] asm("_binary_index_e644c0_bundle_js_gz_start"); +extern const uint8_t _index_e644c0_bundle_js_gz_end[] asm("_binary_index_e644c0_bundle_js_gz_end"); +extern const uint8_t _node_modules_e644c0_bundle_js_gz_start[] asm("_binary_node_modules_e644c0_bundle_js_gz_start"); +extern const uint8_t _node_modules_e644c0_bundle_js_gz_end[] asm("_binary_node_modules_e644c0_bundle_js_gz_end"); +extern const uint8_t _runtime_e644c0_bundle_js_gz_start[] asm("_binary_runtime_e644c0_bundle_js_gz_start"); +extern const uint8_t _runtime_e644c0_bundle_js_gz_end[] asm("_binary_runtime_e644c0_bundle_js_gz_end"); +const char * resource_lookups[] = { + "/dist/favicon-32x32.png", + "/dist/index.html.gz", + "/js/index.e644c0.bundle.js.gz", + "/js/node-modules.e644c0.bundle.js.gz", + "/js/runtime.e644c0.bundle.js.gz", +"" +}; +const uint8_t * resource_map_start[] = { + _favicon_32x32_png_start, + _index_html_gz_start, + _index_e644c0_bundle_js_gz_start, + _node_modules_e644c0_bundle_js_gz_start, + _runtime_e644c0_bundle_js_gz_start +}; +const uint8_t * resource_map_end[] = { + _favicon_32x32_png_end, + _index_html_gz_end, + _index_e644c0_bundle_js_gz_end, + _node_modules_e644c0_bundle_js_gz_end, + _runtime_e644c0_bundle_js_gz_end +}; diff --git a/components/wifi-manager/webapp/webpack.h b/components/wifi-manager/webapp/webpack.h new file mode 100644 index 00000000..6f63d91b --- /dev/null +++ b/components/wifi-manager/webapp/webpack.h @@ -0,0 +1,72 @@ +/*********************************** +webpack_headers +Hash: e644c04d107606ae748d +Version: webpack 4.44.2 +Time: 6267ms +Built at: 2020-12-21 10 h 59 min 46 s + Asset Size Chunks Chunk Names + ./js/index.e644c0.bundle.js 230 KiB 0 [emitted] [immutable] index + ./js/index.e644c0.bundle.js.br 31.3 KiB [emitted] + ./js/index.e644c0.bundle.js.gz 40.9 KiB [emitted] + ./js/node-modules.e644c0.bundle.js 265 KiB 1 [emitted] [immutable] [big] node-modules +./js/node-modules.e644c0.bundle.js.br 76.2 KiB [emitted] +./js/node-modules.e644c0.bundle.js.gz 88.6 KiB [emitted] + ./js/runtime.e644c0.bundle.js 1.46 KiB 2 [emitted] [immutable] runtime + ./js/runtime.e644c0.bundle.js.br 644 bytes [emitted] + ./js/runtime.e644c0.bundle.js.gz 722 bytes [emitted] + favicon-32x32.png 578 bytes [emitted] + index.html 19.5 KiB [emitted] + index.html.br 4.48 KiB [emitted] + index.html.gz 5.46 KiB [emitted] + sprite.svg 4.4 KiB [emitted] + sprite.svg.br 912 bytes [emitted] +Entrypoint index [big] = ./js/runtime.e644c0.bundle.js ./js/node-modules.e644c0.bundle.js ./js/index.e644c0.bundle.js + [6] ./node_modules/bootstrap/dist/js/bootstrap-exposed.js 437 bytes {1} [built] +[11] ./src/sass/main.scss 1.55 KiB {0} [built] +[16] ./node_modules/remixicon/icons/Device/signal-wifi-fill.svg 340 bytes {1} [built] +[17] ./node_modules/remixicon/icons/Device/signal-wifi-3-fill.svg 344 bytes {1} [built] +[18] ./node_modules/remixicon/icons/Device/signal-wifi-2-fill.svg 344 bytes {1} [built] +[19] ./node_modules/remixicon/icons/Device/signal-wifi-1-fill.svg 344 bytes {1} [built] +[20] ./node_modules/remixicon/icons/Device/signal-wifi-line.svg 340 bytes {1} [built] +[21] ./node_modules/remixicon/icons/Device/battery-line.svg 332 bytes {1} [built] +[22] ./node_modules/remixicon/icons/Device/battery-low-line.svg 340 bytes {1} [built] +[23] ./node_modules/remixicon/icons/Device/battery-fill.svg 332 bytes {1} [built] +[24] ./node_modules/remixicon/icons/Media/headphone-fill.svg 335 bytes {1} [built] +[25] ./node_modules/remixicon/icons/Device/device-recover-fill.svg 346 bytes {1} [built] +[26] ./node_modules/remixicon/icons/Device/bluetooth-fill.svg 336 bytes {1} [built] +[27] ./node_modules/remixicon/icons/Device/bluetooth-connect-fill.svg 352 bytes {1} [built] +[37] ./src/index.ts + 1 modules 52.6 KiB {0} [built] + | ./src/index.ts 1.36 KiB [built] + | ./src/js/custom.js 51.2 KiB [built] + + 23 hidden modules + +WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB). +This can impact web performance. +Assets: + ./js/node-modules.e644c0.bundle.js (265 KiB) + +WARNING in entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance. +Entrypoints: + index (497 KiB) + ./js/runtime.e644c0.bundle.js + ./js/node-modules.e644c0.bundle.js + ./js/index.e644c0.bundle.js + + +WARNING in webpack performance recommendations: +You can limit the size of your bundles by using import() or require.ensure to lazy load some parts of your application. +For more info visit https://webpack.js.org/guides/code-splitting/ +Child html-webpack-plugin for "index.html": + Asset Size Chunks Chunk Names + index.html 556 KiB 0 + Entrypoint undefined = index.html + [0] ./node_modules/html-webpack-plugin/lib/loader.js!./src/index.ejs 21.1 KiB {0} [built] + [1] ./node_modules/lodash/lodash.js 530 KiB {0} [built] + [2] (webpack)/buildin/global.js 472 bytes {0} [built] + [3] (webpack)/buildin/module.js 497 bytes {0} [built] +***********************************/ +#pragma once +#include +extern const char * resource_lookups[]; +extern const uint8_t * resource_map_start[]; +extern const uint8_t * resource_map_end[]; diff --git a/components/wifi-manager/webapp/webpack/cmdline.js b/components/wifi-manager/webapp/webpack/cmdline.js new file mode 100644 index 00000000..e69de29b diff --git a/components/wifi-manager/webapp/webpack/postcss.config.js b/components/wifi-manager/webapp/webpack/postcss.config.js new file mode 100644 index 00000000..434504de --- /dev/null +++ b/components/wifi-manager/webapp/webpack/postcss.config.js @@ -0,0 +1,9 @@ +module.exports = { + parser: 'sugarss', + // syntax: 'postcss-scss', + plugins: { + 'postcss-import': {}, + 'postcss-cssnext': {}, + cssnano: {} + } + } \ No newline at end of file diff --git a/components/wifi-manager/webapp/webpack/webpack.common.js b/components/wifi-manager/webapp/webpack/webpack.common.js new file mode 100644 index 00000000..11c6d832 --- /dev/null +++ b/components/wifi-manager/webapp/webpack/webpack.common.js @@ -0,0 +1,231 @@ +/* eslint-disable */ +// Common Config is used in Development and Production Mode. +const path = require('path'); +const CleanWebpackPlugin = require('clean-webpack-plugin'); +const webpack = require('webpack'); +const HtmlWebPackPlugin = require('html-webpack-plugin'); +const LodashModuleReplacementPlugin = require('lodash-webpack-plugin'); +const ScriptExtHtmlWebpackPlugin = require('script-ext-html-webpack-plugin'); +const StylelintPlugin = require('stylelint-webpack-plugin'); +const ESLintPlugin = require('eslint-webpack-plugin'); +const SpriteLoaderPlugin = require('svg-sprite-loader/plugin'); +// Linting +const TSLintPlugin = require('tslint-webpack-plugin'); + + +module.exports = { + entry: { + index: './src/index.ts' + }, + output: { + path: path.resolve(__dirname, 'dist'), + filename: './js/[name].[hash:6].bundle.js' + }, + module: { + rules: [ + // Raw Loader + { + test: /\.txt$/, + use: 'raw-loader' + }, + // HTML Loader + { + test: /\.html$/, + use: [ + { + loader: 'html-loader', + options: {minimize: true} + } + ] + }, + // CSS/SCSS Loader & Minimizer + { + test: /\.(sa|sc|c)ss$/, + use: [ + "style-loader", + "css-loader", + { + loader: 'postcss-loader', + options: { + postcssOptions: { + parser: "sugarss", + }, + }, + }, + { + loader: 'resolve-url-loader', + options: {} + }, + { + loader: 'sass-loader', + options: { + sourceMap: true, + sourceMapContents: false + + } + } + ], + + }, + { + test: /\.svg$/, + use: [ + { + loader: 'svg-sprite-loader', + options: { + extract: true, + } }, + 'svg-transform-loader', + { + loader: 'svgo-loader', + options: { + plugins: [ + {removeTitle: true}, + {convertColors: {shorthex: false}}, + {convertPathData: false}, + {convertPathData:true} + ] + } + } + ] + }, + // Image Loader + { + test: /\.(png|jpeg|jpg|webp|gif|ico)/i, + use: [ + { + loader: 'url-loader', + options: { + // publicPath: '../', + name: './assets/images/' + '[name].[ext]', + limit: 10000, + publicPath: '../' + } + + }, + ] + }, + // Babel Loader + { + test: /\.ts(x?)$/, + exclude: /node_modules/, + loader: 'babel-loader' + }, + { + test: /\.m?js$/, + exclude: /(node_modules|bower_components)/, + use: { + loader: 'babel-loader', + options: { + presets: ['@babel/preset-env'], + plugins: [ + '@babel/plugin-proposal-object-rest-spread', + '@babel/plugin-proposal-nullish-coalescing-operator', + '@babel/plugin-proposal-optional-chaining', + '@babel/plugin-proposal-class-properties' + ] + } + }, + }, + // XML Loader + { + test: /\.xml$/, + use: [ + 'xml-loader' + ] + }, + { + test: require.resolve("bootstrap"), + loader: "expose-loader", + options: { + exposes: ["bootstrap"], + }, + }, + { + test: require.resolve("jquery"), + loader: "expose-loader", + options: { + exposes: ["$", "jQuery"], + }, + }, + { + test: require.resolve("underscore"), + loader: "expose-loader", + options: { + exposes: [ + "_.map|map", + { + globalName: "_.reduce", + moduleLocalName: "reduce", + }, + { + globalName: ["_", "filter"], + moduleLocalName: "filter", + }, + ], + }, + }, + + ] + }, + resolve: { + extensions: ['.js', '.jsx', '.tsx', '.ts', '.json'], + alias: { + riSvg: 'remixicon/icons/' + } + }, + + plugins: [ + new CleanWebpackPlugin(), + new ESLintPlugin({ + cache: true, + ignore: true, + useEslintrc: true, + }), + new HtmlWebPackPlugin({ + title: 'SqueezeESP32', + template: './src/index.ejs', + filename: 'index.html', + inject: 'body', + minify: { + html5 : true, + collapseWhitespace : true, + minifyCSS : true, + minifyJS : true, + minifyURLs : false, + removeAttributeQuotes : true, + removeComments : true, // false for Vue SSR to find app placeholder + removeEmptyAttributes : true, + removeOptionalTags : true, + removeRedundantAttributes : true, + removeScriptTypeAttributes : true, + removeStyleLinkTypeAttributese : true, + useShortDoctype : true + }, + favicon: "./src/assets/images/favicon-32x32.png", + excludeChunks: ['test'], + }), + + new ScriptExtHtmlWebpackPlugin({ + defaultAttribute: 'defer' + }), + + // // Load Lodash Features Separately https://www.npmjs.com/package/lodash-webpack-plugin + new LodashModuleReplacementPlugin({ + 'collections': true, + 'paths': true, + }), + new TSLintPlugin({ + files: ['./src/ts/*.ts'] + }), + new StylelintPlugin( { + files: ['./src/sass/*.s?(a|c)ss'], + configFile: './config/.stylelintrc', + emitError: true, + emitWarning: true, + failOnError: false, + fix: true + }), + new SpriteLoaderPlugin({plainSprite: true}) + ], +}; diff --git a/components/wifi-manager/webapp/webpack/webpack.dev.js b/components/wifi-manager/webapp/webpack/webpack.dev.js new file mode 100644 index 00000000..59f3e4a1 --- /dev/null +++ b/components/wifi-manager/webapp/webpack/webpack.dev.js @@ -0,0 +1,235 @@ +/* eslint-disable */ +var path = require('path'); +const merge = require('webpack-merge'); +const common = require('./webpack.common.js'); +const bodyParser = require('body-parser') +const MiniCssExtractPlugin = require('mini-css-extract-plugin'); +const { config } = require('process'); +const HtmlWebPackPlugin = require('html-webpack-plugin'); +const SpriteLoaderPlugin = require('svg-sprite-loader/plugin'); +const { Command } = require('commander'); +let cmdLines= { }; +const data = { + messages: require("../mock/messages.json"), + messagequeue: require("../mock/messages.json"), + commands: require("../mock/commands.json"), + scan: require("../mock/scan.json"), + ap: require("../mock/ap.json"), + config: require("../mock/config.json"), + statusdefinition: require("../mock/statusdefinition.json"), + status: require("../mock/status.json") +}; +const messagingTypes= { + MESSAGING_INFO : 'MESSAGING_INFO', + MESSAGING_WARNING : 'MESSAGING_WARNING', + MESSAGING_ERROR : 'MESSAGING_ERROR' +}; +const messagingClass= { + MESSAGING_CLASS_OTA : 'MESSAGING_CLASS_OTA', + MESSAGING_CLASS_SYSTEM : 'MESSAGING_CLASS_SYSTEM', + MESSAGING_CLASS_STATS : 'MESSAGING_CLASS_STATS', + MESSAGING_CLASS_CFGCMD: 'MESSAGING_CLASS_CFGCMD', + MESSAGING_CLASS_BT: 'MESSAGING_CLASS_BT' +} ; +function requeueMessages(){ + data.messagequeue.push(...data.messages); + console.log(`Re-queued ${data.messages.length} messages. Total queue length is: ${data.messagequeue.length}`); +} +function sendMessaging(cmdname,msgtype,msgClass,msg){ + let message_txt=`${cmdname}\n${msg}`; + var d = new Date(); + var n = d.getMilliseconds(); + data.messagequeue.push({ + message: message_txt, + type: msgtype, + class: msgClass, + sent_time: n, + current_time: n}); + console.log(`Queued message ~${data.messagequeue.length} type ${msgtype}, class ${msgClass}: ${message_txt}`); +} +Array.prototype.filter = function(fun /*, thisp*/) { + var len = this.length >>> 0; + if (typeof fun != "function") + throw new TypeError(); + + var res = []; + var thisp = arguments[1]; + for (var i = 0; i < len; i++) { + if (i in this) { + var val = this[i]; + if (fun.call(thisp, val, i, this)) + res.push(val); + } + } + return res; + }; +for(const cmdIdx in data.commands.commands){ + const cmd = data.commands.commands[cmdIdx]; + //console.log(`Creating command structure for ${cmd.name}`); + cmdLines[cmd.name] = { + cmd: new Command(), + }; + cmdLines[cmd.name].cmd + .storeOptionsAsProperties(false) + .name(cmd.name) + .exitOverride(); + for(const argIdx in cmd.argtable){ + const arg=cmd.argtable[argIdx]; + const optstr=((arg.shortopts?'-'+arg.shortopts:'')+ + (arg.shortopts && arg.longopts?', ':'')+ + (arg.longopts?'--'+arg.longopts:'') + + (arg.hasvalue?`${(arg.shortopts || arg.longopts?' ':'')}<${arg.datatype.replace(/[<>]/gm,'')}>`:'')); + //console.log(` Option: ${optstr}, Glossary: ${arg.glossary}`); + if(arg.mincount>0){ + cmdLines[cmd.name].cmd.requiredOption( optstr,arg.glossary); + } + else { + cmdLines[cmd.name].cmd.option( optstr,arg.glossary); + } + } +} +const connectReturnCode = { + UPDATE_CONNECTION_OK : 0, + UPDATE_FAILED_ATTEMPT : 1, + UPDATE_USER_DISCONNECT : 2, + UPDATE_LOST_CONNECTION : 3, + UPDATE_FAILED_ATTEMPT_AND_RESTORE : 4 + } +module.exports = merge(common, { + mode: 'development', + devtool: 'inline-source-map', + entry: { + test: './src/test.ts' + }, + devServer: { + contentBase: path.join(__dirname, 'dist'), + publicPath: '/', + port: 9100, + host: 'desktop-n8u8515',//your ip address + disableHostCheck: true, + overlay: true, + + before: function(app) { + app.use(bodyParser.json()) // for parsing application/json + app.use(bodyParser.urlencoded({ extended: true })) // for parsing application/x-www-form-urlencoded + app.get('/ap.json', function(req, res) { res.json( data.ap ); }); + app.get('/scan.json', function(req, res) { res.json( data.scan ); }); + app.get('/config.json', function(req, res) { res.json( data.config ); }); + app.get('/status.json', function(req, res) { res.json( data.status ); }); + app.get('/messages.json', function(req, res) { + res.json( data.messagequeue ) ; + data.messagequeue=[]; + }); + + app.get('/statusdefinition.json', function(req, res) { res.json( data.statusdefinition ); }); + app.get('/commands.json', function(req, res) { res.json( data.commands ); }); + app.post('/commands.json', function(req, res) { + console.log(req.body.command); + try { + const cmdName=req.body.command.split(" ")[0]; + const args=('node '+req.body.command).split(" "); + let cmd=cmdLines[cmdName].cmd; + if(cmd){ + cmd.parse(args); + const msg=`Received Options: ${JSON.stringify(cmd.opts())}\n`; + console.log('Options: ', cmd.opts()); + console.log('Remaining arguments: ', cmd.args); + sendMessaging(cmdName,messagingTypes.MESSAGING_INFO,messagingClass.MESSAGING_CLASS_CFGCMD,msg); + } + } catch (error) { + console.error(error); + } + res.json( { 'Result' : 'Success' } ); + }); + app.post('/config.json', function(req, res) { + console.log(req.body); + console.log(data.config); + for (const property in req.body.config) { + console.log(`${property}: ${req.body.config[property].value}`); + if(data.config[property]=== undefined){ + console.log(`Added config value ${property} [${req.body.config[property].value}]`); + data.config[property] = {value: req.body.config[property].value}; + } + else if (data.config[property].value!=req.body.config[property].value){ + console.log(`Updated config value ${property}\nFrom: ${data.config[property].value}\nTo: ${req.body.config[property].value}]`); + data.config[property].value=req.body.config[property].value; + } + } + res.json( {} ); + }); + app.post('/status.json', function(req, res) { + + for (const property in req.body.status) { + if(data.status[property]=== undefined){ + console.log(`Added status value ${property} [${req.body.status[property]}]`); + data.status[property] = {value: req.body.status[property]}; + } + else if (data.status[property]!==req.body.status[property]){ + console.log(`Updated status value ${property}\nFrom: ${data.status[property]}\nTo: ${req.body.status[property]}`); + data.status[property]=req.body.status[property]; + } + } + res.json( {} ); + }); + app.post('/connect.json', function(req, res) { + setTimeout(function(r){ + if(r.body.ssid.search('fail')>=0){ + if(data.status.ssid){ + // in this case, the same ssid will be reused - the ESP32 would restore its previous state on failure + data.status.urc=connectReturnCode.UPDATE_FAILED_ATTEMPT_AND_RESTORE; + } + else { + data.status.urc=connectReturnCode.UPDATE_FAILED_ATTEMPT; + } + } + else { + data.status.ssid=r.body.ssid; + data.status.urc=connectReturnCode.UPDATE_CONNECTION_OK; + } + }, 1000, req); + res.json( {} ); + }); + app.post('/reboot_ota.json', function(req, res) { + data.status.recovery=0; + requeueMessages(); + res.json( {} ); + }); + app.post('/reboot.json', function(req, res) { + res.json( {} ); + requeueMessages(); + }); + app.post('/recovery.json', function(req, res) { + data.status.recovery=1; + requeueMessages(); + res.json( { } ); + }); + app.post('/flash.json', function(req, res) { + if(data.status.recovery>0){ + res.json({}); + } + else { + res.status(404).end(); + } + }); + app.delete('/connect.json', function(req, res) { + data.status.ssid=''; + res.json( {} ); }); + app.get('/reboot', function(req, res) { res.json( {} ); }); + }, + }, + plugins: [ + new MiniCssExtractPlugin({ + filename: 'css/[name].css', + chunkFilename: 'css/[id].css' , + }), + new HtmlWebPackPlugin({ + title: 'SqueezeESP32-test', + template: './src/test.ejs', + filename: 'test', + minify: false, + excludeChunks: ['index'], + }), + new SpriteLoaderPlugin({plainSprite: true}) + + ], +}); diff --git a/components/wifi-manager/webapp/webpack/webpack.prod.js b/components/wifi-manager/webapp/webpack/webpack.prod.js new file mode 100644 index 00000000..9e741cd6 --- /dev/null +++ b/components/wifi-manager/webapp/webpack/webpack.prod.js @@ -0,0 +1,182 @@ +/* eslint-disable */ +// Merges webpack.common config with this production config +const merge = require('webpack-merge'); +const common = require('./webpack.common.js'); + +const webpack = require('webpack'); +const CleanWebpackPlugin = require('clean-webpack-plugin'); + +// Optimisations and Compression +const MiniCssExtractPlugin = require('mini-css-extract-plugin'); +const TerserPlugin = require('terser-webpack-plugin'); +const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin'); +const CompressionPlugin = require('compression-webpack-plugin'); +const ImageminPlugin = require('imagemin-webpack-plugin').default; +const imageminMozjpeg = require('imagemin-mozjpeg'); +const fs = require('fs'); +const glob = require('glob'); +var WebpackOnBuildPlugin = require('on-build-webpack'); +const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin; +const path = require('path') +const ExtractTextPlugin = require('extract-text-webpack-plugin') +const PurgecssPlugin = require('purgecss-webpack-plugin') + +// Optional +const FaviconsWebpackPlugin = require('favicons-webpack-plugin'); +const PATHS = { + src: path.join(__dirname, 'src') + } +module.exports = merge(common, { + mode: 'production', + stats: 'errors-only', + optimization: { + minimizer: [ + new TerserPlugin({ + test: /\.js(\?.*)?$/i, + exclude: /node_modules/, + cache: true, + parallel: 4, + sourceMap: true, + }), + new OptimizeCSSAssetsPlugin({}) + ], + runtimeChunk: 'single', + splitChunks: { + chunks: 'all', + // maxInitialRequests: Infinity, + // minSize: 0, + cacheGroups: { + vendor: { + test: /node_modules/, // you may add "vendor.js" here if you want to + name: "node-modules", + chunks: "initial", + enforce: true + }, + } + }, + }, + plugins: [ + new MiniCssExtractPlugin({ + filename: 'css/[name].[hash:6].css', + chunkFilename: 'css/[name].[contenthash].css', + + }), + new ExtractTextPlugin('[name].css?[hash]'), + new PurgecssPlugin({ + paths: glob.sync(`${PATHS.src}/*`), + whitelist: ['whitelisted'] + }), + new CleanWebpackPlugin(), + new CompressionPlugin({ + test: /\.(js|css|html|svg)$/, + filename: '[path].br[query]', + algorithm: 'brotliCompress', + compressionOptions: { level: 11 }, + threshold: 100, + minRatio: 0.8, + deleteOriginalAssets: false + }), + new CompressionPlugin({ + filename: '[path].gz[query]', + algorithm: 'gzip', + test: /\.js$|\.css$|\.html$/, + threshold: 100, + minRatio: 0.8, + }), + new ImageminPlugin({ + test: /\.(jpe?g|png|gif|svg)$/i, + // lossLess gif compressor + gifsicle: { + optimizationLevel: 9 + }, + // lossy png compressor, remove for default lossLess + pngquant: ({ + quality: '75' + }), + // lossy jpg compressor + plugins: [imageminMozjpeg({ + quality: '75' + })] + }), + // new FaviconsWebpackPlugin({ + // // Your source logo + // logo: './src/assets/images/200px-ControllerAppIcon.png', + // // // The prefix for all image files (might be a folder or a name) + // //prefix: 'assets/icons_[hash:6]/', + // prefix: 'icons_[hash:6]/', + // // // Emit all stats of the generated icons + // //emitStats: false, + // // // The name of the json containing all favicon information + // // statsFilename: 'iconstats-[hash].json', + // // // Generate a cache file with control hashes and + // // // don't rebuild the favicons until those hashes change + // persistentCache: true, + // // // Inject the html into the html-webpack-plugin + // inject: true, + // // // favicon background color (see https://github.com/haydenbleasel/favicons#usage) + // background: '#fff', + // // // which icons should be generated (see https://github.com/haydenbleasel/favicons#usage) + // icons: { + // // android: false, + // // appleIcon: false, + // favicons: true + // // firefox: true, + // // windows: false + // } + // }), + new WebpackOnBuildPlugin(function(stats) { + var getDirectories = function (src, callback) { + glob(`${src}/**/*(*.gz|favicon-32x32.png)`, callback); + }; + getDirectories('./webpack/dist', function (err, list) { + if (err) { + console.log('Error', err); + } else { + const regex = /^(.*\/)([^\/]*)$/ + const relativeRegex = /(\w+\/[^\/]*)$/ + const makePathRegex = /([^\.].*)$/ + let exportDefHead= + '/***********************************\n'+ + 'webpack_headers\n'+ + stats+'\n'+ + '***********************************/\n'+ + '#pragma once\n'+ + '#include \n'+ + 'extern const char * resource_lookups[];\n'+ + 'extern const uint8_t * resource_map_start[];\n'+ + 'extern const uint8_t * resource_map_end[];\n'; + let exportDef= '// Automatically generated. Do not edit manually!.\n'+ + '#include \n'; + let lookupDef='const char * resource_lookups[] = {\n'; + let lookupMapStart='const uint8_t * resource_map_start[] = {\n'; + let lookupMapEnd='const uint8_t * resource_map_end[] = {\n'; + let cMake=''; + list.forEach(fileName=>{ + let exportName=fileName.match(regex)[2].replace(/[\. \-]/gm,'_'); + let relativeName=fileName.match(relativeRegex)[1]; + exportDef+= 'extern const uint8_t _'+exportName+'_start[] asm("_binary_'+exportName+'_start");\n'+ + 'extern const uint8_t _'+exportName+'_end[] asm("_binary_'+exportName+'_end");\n'; + lookupDef+='\t"/'+relativeName+'",\n'; + lookupMapStart+='\t_'+ exportName+'_start,\n'; + lookupMapEnd+= '\t_'+ exportName+'_end,\n'; + cMake+='target_add_binary_data( __idf_wifi-manager ./webapp'+fileName.match(makePathRegex)[1]+' BINARY)\n'; + }); + + lookupDef+='""\n};\n'; + lookupMapStart=lookupMapStart.substring(0,lookupMapStart.length-2)+'\n};\n'; + lookupMapEnd=lookupMapEnd.substring(0,lookupMapEnd.length-2)+'\n};\n'; + try { + fs.writeFileSync('webapp.cmake', cMake); + fs.writeFileSync('webpack.c', exportDef+lookupDef+lookupMapStart+lookupMapEnd); + fs.writeFileSync('webpack.h', exportDefHead); + //file written successfully + } catch (e) { + console.error(e); + } + } + }); + }), + new BundleAnalyzerPlugin() + ] +}); + diff --git a/components/wifi-manager/wifi_manager.c b/components/wifi-manager/wifi_manager.c index fa1ea895..343b0430 100644 --- a/components/wifi-manager/wifi_manager.c +++ b/components/wifi-manager/wifi_manager.c @@ -153,6 +153,9 @@ const int WIFI_MANAGER_SCAN_BIT = BIT7; /* @brief When set, means user requested for a disconnect */ const int WIFI_MANAGER_REQUEST_DISCONNECT_BIT = BIT8; +/* @brief When set, means user requested connecting to a new network and it failed */ +const int WIFI_MANAGER_REQUEST_STA_CONNECT_FAILED_BIT = BIT9; + char * get_disconnect_code_desc(uint8_t reason){ switch (reason) { @@ -539,8 +542,9 @@ void wifi_manager_generate_ip_info_json(update_reason_code_t update_reason_code) cJSON_AddNumberToObject(ip_info_cjson, "urc", update_reason_code); if(config){ - cJSON_AddItemToObject(ip_info_cjson, "ssid", cJSON_CreateString((char *)config->sta.ssid)); - + if(update_reason_code == UPDATE_CONNECTION_OK || update_reason_code == UPDATE_LOST_CONNECTION || update_reason_code == UPDATE_FAILED_ATTEMPT){ + cJSON_AddItemToObject(ip_info_cjson, "ssid", cJSON_CreateString((char *)config->sta.ssid)); + } if(update_reason_code == UPDATE_CONNECTION_OK){ /* rest of the information is copied after the ssid */ tcpip_adapter_ip_info_t ip_info; @@ -548,8 +552,12 @@ void wifi_manager_generate_ip_info_json(update_reason_code_t update_reason_code) cJSON_AddItemToObject(ip_info_cjson, "ip", cJSON_CreateString(ip4addr_ntoa((ip4_addr_t *)&ip_info.ip))); cJSON_AddItemToObject(ip_info_cjson, "netmask", cJSON_CreateString(ip4addr_ntoa((ip4_addr_t *)&ip_info.netmask))); cJSON_AddItemToObject(ip_info_cjson, "gw", cJSON_CreateString(ip4addr_ntoa((ip4_addr_t *)&ip_info.gw))); + wifi_ap_record_t ap; + esp_wifi_sta_get_ap_info(&ap); + cJSON_AddItemToObject(ip_info_cjson, "rssi", cJSON_CreateNumber(ap.rssi)); } } + ESP_LOGV(TAG, "wifi_manager_generate_ip_info_json done"); } #define LOCAL_MAC_SIZE 20 @@ -1273,6 +1281,7 @@ void wifi_manager( void * pvParameters ){ if((BaseType_t)msg.param == CONNECTION_REQUEST_USER) { ESP_LOGD(TAG, "MESSAGE: ORDER_CONNECT_STA - Connection request with no nvs connection saved yet"); xEventGroupSetBits(wifi_manager_event_group, WIFI_MANAGER_REQUEST_STA_CONNECT_BIT); + xEventGroupClearBits(wifi_manager_event_group,WIFI_MANAGER_REQUEST_STA_CONNECT_FAILED_BIT); } else if((BaseType_t)msg.param == CONNECTION_REQUEST_RESTORE_CONNECTION) { ESP_LOGD(TAG, "MESSAGE: ORDER_CONNECT_STA - Connection request after restoring the AP configuration"); @@ -1296,12 +1305,12 @@ void wifi_manager( void * pvParameters ){ /* start DHCP client if not started*/ tcpip_adapter_dhcp_status_t status; ESP_LOGD(TAG, "wifi_manager: Checking if DHCP client for STA interface is running"); - ESP_ERROR_CHECK(tcpip_adapter_dhcpc_get_status(TCPIP_ADAPTER_IF_STA, &status)); + ESP_ERROR_CHECK_WITHOUT_ABORT(tcpip_adapter_dhcpc_get_status(TCPIP_ADAPTER_IF_STA, &status)); if (status!=TCPIP_ADAPTER_DHCP_STARTED) { ESP_LOGD(TAG, "wifi_manager: Start DHCP client for STA interface"); - ESP_ERROR_CHECK(tcpip_adapter_dhcpc_start(TCPIP_ADAPTER_IF_STA)); -// } - } + ESP_ERROR_CHECK_WITHOUT_ABORT(tcpip_adapter_dhcpc_start(TCPIP_ADAPTER_IF_STA)); + } + //} } uxBits = xEventGroupGetBits(wifi_manager_event_group); @@ -1420,26 +1429,32 @@ void wifi_manager( void * pvParameters ){ uxBits = xEventGroupGetBits(wifi_manager_event_group); if( uxBits & WIFI_MANAGER_REQUEST_STA_CONNECT_BIT ){ + xEventGroupClearBits(wifi_manager_event_group, WIFI_MANAGER_REQUEST_STA_CONNECT_BIT); ESP_LOGW(TAG, "WiFi Disconnected while processing user connect request. Wrong password?"); /* there are no retries when it's a user requested connection by design. This avoids a user hanging too much * in case they typed a wrong password for instance. Here we simply clear the request bit and move on */ - xEventGroupClearBits(wifi_manager_event_group, WIFI_MANAGER_REQUEST_STA_CONNECT_BIT); + if(wifi_manager_lock_json_buffer( portMAX_DELAY )){ wifi_manager_generate_ip_info_json( UPDATE_FAILED_ATTEMPT ); wifi_manager_unlock_json_buffer(); } - + wifi_mode_t mode; + esp_wifi_get_mode(&mode); + if( WIFI_MODE_STA ==mode ){ + xEventGroupSetBits(wifi_manager_event_group,WIFI_MANAGER_REQUEST_STA_CONNECT_FAILED_BIT); + // if wifi was STA, attempt to reload the previous network connection + ESP_LOGW(TAG,"Attempting to restore previous network"); + wifi_manager_send_message(ORDER_LOAD_AND_RESTORE_STA, NULL); + } } else if (uxBits & WIFI_MANAGER_REQUEST_DISCONNECT_BIT){ ESP_LOGD(TAG, "WiFi disconnected by user"); /* user manually requested a disconnect so the lost connection is a normal event. Clear the flag and restart the AP */ xEventGroupClearBits(wifi_manager_event_group, WIFI_MANAGER_REQUEST_DISCONNECT_BIT); - if(wifi_manager_lock_json_buffer( portMAX_DELAY )){ wifi_manager_generate_ip_info_json( UPDATE_USER_DISCONNECT ); wifi_manager_unlock_json_buffer(); } - /* erase configuration */ if(wifi_manager_config_sta){ ESP_LOGI(TAG, "Erasing WiFi Configuration."); @@ -1521,7 +1536,7 @@ void wifi_manager( void * pvParameters ){ /* refresh JSON with the new IP */ if(wifi_manager_lock_json_buffer( portMAX_DELAY )){ /* generate the connection info with success */ - wifi_manager_generate_ip_info_json( UPDATE_CONNECTION_OK ); + wifi_manager_generate_ip_info_json( uxBits & WIFI_MANAGER_REQUEST_STA_CONNECT_FAILED_BIT?UPDATE_FAILED_ATTEMPT_AND_RESTORE:UPDATE_CONNECTION_OK ); wifi_manager_unlock_json_buffer(); } else { diff --git a/components/wifi-manager/wifi_manager.h b/components/wifi-manager/wifi_manager.h index 98f3ca12..6fb16617 100644 --- a/components/wifi-manager/wifi_manager.h +++ b/components/wifi-manager/wifi_manager.h @@ -215,7 +215,9 @@ typedef enum update_reason_code_t { UPDATE_CONNECTION_OK = 0, UPDATE_FAILED_ATTEMPT = 1, UPDATE_USER_DISCONNECT = 2, - UPDATE_LOST_CONNECTION = 3 + UPDATE_LOST_CONNECTION = 3, + UPDATE_FAILED_ATTEMPT_AND_RESTORE = 4, + }update_reason_code_t; typedef enum connection_request_made_by_code_t{ diff --git a/components/wifi-manager/wifi_manager_http_server.c b/components/wifi-manager/wifi_manager_http_server.c index dfbfd13e..1bd54802 100644 --- a/components/wifi-manager/wifi_manager_http_server.c +++ b/components/wifi-manager/wifi_manager_http_server.c @@ -38,8 +38,12 @@ rest_server_context_t *rest_context = NULL; RingbufHandle_t messaging=NULL; void register_common_handlers(httpd_handle_t server){ - httpd_uri_t res_get = { .uri = "/res/*", .method = HTTP_GET, .handler = resource_filehandler, .user_ctx = rest_context }; - httpd_register_uri_handler(server, &res_get); + httpd_uri_t css_get = { .uri = "/css/*", .method = HTTP_GET, .handler = resource_filehandler, .user_ctx = rest_context }; + httpd_register_uri_handler(server, &css_get); + httpd_uri_t js_get = { .uri = "/js/*", .method = HTTP_GET, .handler = resource_filehandler, .user_ctx = rest_context }; + httpd_register_uri_handler(server, &js_get); + httpd_uri_t icon_get = { .uri = "/icons*", .method = HTTP_GET, .handler = resource_filehandler, .user_ctx = rest_context }; + httpd_register_uri_handler(server, &icon_get); } void register_regular_handlers(httpd_handle_t server){ diff --git a/main/esp_app_main.c b/main/esp_app_main.c index ba030882..2fe15639 100644 --- a/main/esp_app_main.c +++ b/main/esp_app_main.c @@ -45,6 +45,7 @@ #include "gds_font.h" #include "display.h" #include "accessors.h" +#include "cmd_system.h" static const char certs_namespace[] = "certificates"; static const char certs_key[] = "blob"; static const char certs_version[] = "version"; @@ -59,6 +60,7 @@ const int CONNECTED_BIT = BIT0; static const char TAG[] = "esp_app_main"; #define DEFAULT_HOST_NAME "squeezelite" char * fwurl = NULL; +RTC_NOINIT_ATTR uint32_t RebootCounter ; static bool bWifiConnected=false; extern const uint8_t server_cert_pem_start[] asm("_binary_github_pem_start"); @@ -384,10 +386,30 @@ void register_default_nvs(){ ESP_LOGD(TAG,"Done setting default values in nvs."); } +uint32_t halSTORAGE_RebootCounterRead(void) { return RebootCounter ; } +uint32_t halSTORAGE_RebootCounterUpdate(int32_t xValue) { return (RebootCounter = (xValue != 0) ? (RebootCounter + xValue) : 0) ; } + +void handle_ap_connect(){ + start_telnet(NULL); + halSTORAGE_RebootCounterUpdate(0); +} void app_main() { const esp_partition_t *running = esp_ota_get_running_partition(); is_recovery_running = (running->subtype == ESP_PARTITION_SUBTYPE_APP_FACTORY); + esp_reset_reason_t xReason = esp_reset_reason(); + ESP_LOGI(TAG,"Reset reason is: %u", xReason); + if(!is_recovery_running && xReason != ESP_RST_SW && xReason != ESP_RST_POWERON ) { + /* unscheduled restart (HW, Watchdog or similar) thus increment dynamic + * counter then log current boot statistics as a warning */ + uint32_t Counter = halSTORAGE_RebootCounterUpdate(1) ; // increment counter + ESP_LOGI(TAG,"Reboot counter=%u\n", Counter) ; + if (Counter == 5) { + // before we change the partition, update the info for current running partition. + halSTORAGE_RebootCounterUpdate(0); + guided_factory(); + } + } char * fwurl = NULL; ESP_LOGI(TAG,"Starting app_main"); @@ -464,8 +486,8 @@ void app_main() wifi_manager_set_callback(EVENT_STA_DISCONNECTED, &cb_connection_sta_disconnected); /* Start the telnet service after we are certain that the network stack has been properly initialized. * This can be either after we're started the AP mode, or after we've started the STA mode */ - wifi_manager_set_callback(ORDER_START_AP, &start_telnet); - wifi_manager_set_callback(ORDER_CONNECT_STA, &start_telnet); + wifi_manager_set_callback(ORDER_START_AP, &handle_ap_connect); + wifi_manager_set_callback(ORDER_CONNECT_STA, &handle_ap_connect); } console_start(); if(fwurl && strlen(fwurl)>0){ diff --git a/sdkconfig b/sdkconfig index 5697f149..a8f982d4 100644 --- a/sdkconfig +++ b/sdkconfig @@ -75,14 +75,24 @@ CONFIG_LOGGING_SLIMPROTO="info" CONFIG_LOGGING_STREAM="info" CONFIG_LOGGING_DECODE="info" CONFIG_LOGGING_OUTPUT="info" +CONFIG_MUTE_GPIO_LEVEL=0 +CONFIG_DAC_CONFIG="" +CONFIG_SPDIF_CONFIG="" +CONFIG_SPI_CONFIG="" +CONFIG_DISPLAY_CONFIG="" +CONFIG_DAC_CONTROLSET="" # CONFIG_SQUEEZEAMP is not set # CONFIG_A1S is not set +# CONFIG_TWATCH2020 is not set CONFIG_BASIC_I2C_BT=y CONFIG_I2S_NUM=0 -CONFIG_I2S_BCK_IO=33 -CONFIG_I2S_WS_IO=25 -CONFIG_I2S_DO_IO=32 +CONFIG_I2S_BCK_IO=-1 +CONFIG_I2S_WS_IO=-1 +CONFIG_I2S_DO_IO=-1 CONFIG_I2S_DI_IO=-1 +CONFIG_I2C_SDA=-1 +CONFIG_I2C_SCL=-1 +CONFIG_MUTE_GPIO=-1 CONFIG_SDIF_NUM=0 CONFIG_SPDIF_BCK_IO=-1 CONFIG_SPDIF_WS_IO=-1 @@ -97,9 +107,7 @@ CONFIG_BT_SINK_PIN=1234 CONFIG_AIRPLAY_SINK=y CONFIG_AIRPLAY_NAME="ESP32-AirPlay" CONFIG_AIRPLAY_PORT="5000" -CONFIG_DISPLAY_CONFIG="" CONFIG_I2C_CONFIG="" -CONFIG_SPI_CONFIG="" CONFIG_SET_GPIO="" CONFIG_ROTARY_ENCODER="" CONFIG_LED_GREEN_GPIO=-1 @@ -117,7 +125,7 @@ CONFIG_DEFAULT_AP_GATEWAY="192.168.4.1" CONFIG_DEFAULT_AP_NETMASK="255.255.255.0" CONFIG_DEFAULT_AP_MAX_CONNECTIONS=4 CONFIG_DEFAULT_AP_BEACON_INTERVAL=100 -CONFIG_DEFAULT_COMMAND_LINE="squeezelite -o I2S -b 500:2000 -d all=info -C 30" +CONFIG_DEFAULT_COMMAND_LINE="squeezelite -o I2S -b 500:2000 -d all=info -C 30 -W" # CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG is not set CONFIG_COMPILER_OPTIMIZATION_LEVEL_RELEASE=y CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE=y @@ -174,7 +182,175 @@ CONFIG_BT_A2DP_ENABLE=y # CONFIG_BT_HFP_ENABLE is not set CONFIG_BT_SSP_ENABLED=y # CONFIG_BT_BLE_ENABLED is not set -CONFIG_BT_STACK_NO_LOG=y +# CONFIG_BT_STACK_NO_LOG is not set +# CONFIG_BT_LOG_HCI_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_HCI_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_HCI_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_HCI_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_HCI_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_HCI_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_HCI_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_HCI_TRACE_LEVEL=2 +# CONFIG_BT_LOG_BTM_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_BTM_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_BTM_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_BTM_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_BTM_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_BTM_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_BTM_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_BTM_TRACE_LEVEL=2 +# CONFIG_BT_LOG_L2CAP_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_L2CAP_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_L2CAP_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_L2CAP_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_L2CAP_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_L2CAP_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_L2CAP_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_L2CAP_TRACE_LEVEL=2 +# CONFIG_BT_LOG_RFCOMM_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_RFCOMM_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_RFCOMM_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_RFCOMM_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_RFCOMM_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_RFCOMM_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_RFCOMM_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_RFCOMM_TRACE_LEVEL=2 +# CONFIG_BT_LOG_SDP_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_SDP_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_SDP_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_SDP_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_SDP_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_SDP_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_SDP_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_SDP_TRACE_LEVEL=2 +# CONFIG_BT_LOG_GAP_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_GAP_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_GAP_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_GAP_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_GAP_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_GAP_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_GAP_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_GAP_TRACE_LEVEL=2 +# CONFIG_BT_LOG_BNEP_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_BNEP_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_BNEP_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_BNEP_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_BNEP_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_BNEP_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_BNEP_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_BNEP_TRACE_LEVEL=2 +# CONFIG_BT_LOG_PAN_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_PAN_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_PAN_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_PAN_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_PAN_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_PAN_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_PAN_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_PAN_TRACE_LEVEL=2 +# CONFIG_BT_LOG_A2D_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_A2D_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_A2D_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_A2D_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_A2D_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_A2D_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_A2D_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_A2D_TRACE_LEVEL=2 +# CONFIG_BT_LOG_AVDT_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_AVDT_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_AVDT_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_AVDT_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_AVDT_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_AVDT_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_AVDT_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_AVDT_TRACE_LEVEL=2 +# CONFIG_BT_LOG_AVCT_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_AVCT_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_AVCT_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_AVCT_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_AVCT_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_AVCT_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_AVCT_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_AVCT_TRACE_LEVEL=2 +# CONFIG_BT_LOG_AVRC_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_AVRC_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_AVRC_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_AVRC_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_AVRC_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_AVRC_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_AVRC_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_AVRC_TRACE_LEVEL=2 +# CONFIG_BT_LOG_MCA_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_MCA_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_MCA_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_MCA_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_MCA_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_MCA_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_MCA_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_MCA_TRACE_LEVEL=2 +# CONFIG_BT_LOG_HID_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_HID_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_HID_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_HID_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_HID_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_HID_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_HID_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_HID_TRACE_LEVEL=2 +# CONFIG_BT_LOG_APPL_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_APPL_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_APPL_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_APPL_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_APPL_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_APPL_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_APPL_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_APPL_TRACE_LEVEL=2 +# CONFIG_BT_LOG_GATT_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_GATT_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_GATT_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_GATT_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_GATT_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_GATT_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_GATT_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_GATT_TRACE_LEVEL=2 +# CONFIG_BT_LOG_SMP_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_SMP_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_SMP_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_SMP_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_SMP_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_SMP_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_SMP_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_SMP_TRACE_LEVEL=2 +# CONFIG_BT_LOG_BTIF_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_BTIF_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_BTIF_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_BTIF_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_BTIF_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_BTIF_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_BTIF_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_BTIF_TRACE_LEVEL=2 +# CONFIG_BT_LOG_BTC_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_BTC_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_BTC_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_BTC_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_BTC_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_BTC_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_BTC_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_BTC_TRACE_LEVEL=2 +# CONFIG_BT_LOG_OSI_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_OSI_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_OSI_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_OSI_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_OSI_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_OSI_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_OSI_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_OSI_TRACE_LEVEL=2 +# CONFIG_BT_LOG_BLUFI_TRACE_LEVEL_NONE is not set +# CONFIG_BT_LOG_BLUFI_TRACE_LEVEL_ERROR is not set +CONFIG_BT_LOG_BLUFI_TRACE_LEVEL_WARNING=y +# CONFIG_BT_LOG_BLUFI_TRACE_LEVEL_API is not set +# CONFIG_BT_LOG_BLUFI_TRACE_LEVEL_EVENT is not set +# CONFIG_BT_LOG_BLUFI_TRACE_LEVEL_DEBUG is not set +# CONFIG_BT_LOG_BLUFI_TRACE_LEVEL_VERBOSE is not set +CONFIG_BT_LOG_BLUFI_TRACE_LEVEL=2 CONFIG_BT_ACL_CONNECTIONS=4 CONFIG_BT_ALLOCATION_FROM_SPIRAM_FIRST=y CONFIG_BT_BLE_DYNAMIC_ENV_MEMORY=y @@ -416,12 +592,8 @@ CONFIG_FREERTOS_TIMER_TASK_PRIORITY=1 CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH=2432 CONFIG_FREERTOS_TIMER_QUEUE_LENGTH=10 CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE=0 -CONFIG_FREERTOS_USE_TRACE_FACILITY=y -CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS=y -CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID=y -CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS=y -CONFIG_FREERTOS_RUN_TIME_STATS_USING_ESP_TIMER=y -# CONFIG_FREERTOS_RUN_TIME_STATS_USING_CPU_CLK is not set +# CONFIG_FREERTOS_USE_TRACE_FACILITY is not set +# CONFIG_FREERTOS_GENERATE_RUN_TIME_STATS is not set # CONFIG_FREERTOS_DEBUG_INTERNALS is not set CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER=y # CONFIG_FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE is not set @@ -434,11 +606,11 @@ CONFIG_HEAP_TRACING_OFF=y # CONFIG_HEAP_TRACING is not set # CONFIG_LOG_DEFAULT_LEVEL_NONE is not set # CONFIG_LOG_DEFAULT_LEVEL_ERROR is not set -CONFIG_LOG_DEFAULT_LEVEL_WARN=y -# CONFIG_LOG_DEFAULT_LEVEL_INFO is not set +# CONFIG_LOG_DEFAULT_LEVEL_WARN is not set +CONFIG_LOG_DEFAULT_LEVEL_INFO=y # CONFIG_LOG_DEFAULT_LEVEL_DEBUG is not set # CONFIG_LOG_DEFAULT_LEVEL_VERBOSE is not set -CONFIG_LOG_DEFAULT_LEVEL=2 +CONFIG_LOG_DEFAULT_LEVEL=3 CONFIG_LOG_COLORS=y CONFIG_LWIP_LOCAL_HOSTNAME="squeezelite-esp32" # CONFIG_LWIP_L2_TO_L3_COPY is not set @@ -707,6 +879,167 @@ CONFIG_BTU_TASK_STACK_SIZE=4096 CONFIG_CLASSIC_BT_ENABLED=y CONFIG_A2DP_ENABLE=y # CONFIG_HFP_ENABLE is not set +# CONFIG_HCI_TRACE_LEVEL_NONE is not set +# CONFIG_HCI_TRACE_LEVEL_ERROR is not set +CONFIG_HCI_TRACE_LEVEL_WARNING=y +# CONFIG_HCI_TRACE_LEVEL_API is not set +# CONFIG_HCI_TRACE_LEVEL_EVENT is not set +# CONFIG_HCI_TRACE_LEVEL_DEBUG is not set +# CONFIG_HCI_TRACE_LEVEL_VERBOSE is not set +CONFIG_HCI_INITIAL_TRACE_LEVEL=2 +# CONFIG_BTM_TRACE_LEVEL_NONE is not set +# CONFIG_BTM_TRACE_LEVEL_ERROR is not set +CONFIG_BTM_TRACE_LEVEL_WARNING=y +# CONFIG_BTM_TRACE_LEVEL_API is not set +# CONFIG_BTM_TRACE_LEVEL_EVENT is not set +# CONFIG_BTM_TRACE_LEVEL_DEBUG is not set +# CONFIG_BTM_TRACE_LEVEL_VERBOSE is not set +CONFIG_BTM_INITIAL_TRACE_LEVEL=2 +# CONFIG_L2CAP_TRACE_LEVEL_NONE is not set +# CONFIG_L2CAP_TRACE_LEVEL_ERROR is not set +CONFIG_L2CAP_TRACE_LEVEL_WARNING=y +# CONFIG_L2CAP_TRACE_LEVEL_API is not set +# CONFIG_L2CAP_TRACE_LEVEL_EVENT is not set +# CONFIG_L2CAP_TRACE_LEVEL_DEBUG is not set +# CONFIG_L2CAP_TRACE_LEVEL_VERBOSE is not set +CONFIG_L2CAP_INITIAL_TRACE_LEVEL=2 +# CONFIG_RFCOMM_TRACE_LEVEL_NONE is not set +# CONFIG_RFCOMM_TRACE_LEVEL_ERROR is not set +CONFIG_RFCOMM_TRACE_LEVEL_WARNING=y +# CONFIG_RFCOMM_TRACE_LEVEL_API is not set +# CONFIG_RFCOMM_TRACE_LEVEL_EVENT is not set +# CONFIG_RFCOMM_TRACE_LEVEL_DEBUG is not set +# CONFIG_RFCOMM_TRACE_LEVEL_VERBOSE is not set +CONFIG_RFCOMM_INITIAL_TRACE_LEVEL=2 +# CONFIG_SDP_TRACE_LEVEL_NONE is not set +# CONFIG_SDP_TRACE_LEVEL_ERROR is not set +CONFIG_SDP_TRACE_LEVEL_WARNING=y +# CONFIG_SDP_TRACE_LEVEL_API is not set +# CONFIG_SDP_TRACE_LEVEL_EVENT is not set +# CONFIG_SDP_TRACE_LEVEL_DEBUG is not set +# CONFIG_SDP_TRACE_LEVEL_VERBOSE is not set +CONFIG_BTH_LOG_SDP_INITIAL_TRACE_LEVEL=2 +# CONFIG_GAP_TRACE_LEVEL_NONE is not set +# CONFIG_GAP_TRACE_LEVEL_ERROR is not set +CONFIG_GAP_TRACE_LEVEL_WARNING=y +# CONFIG_GAP_TRACE_LEVEL_API is not set +# CONFIG_GAP_TRACE_LEVEL_EVENT is not set +# CONFIG_GAP_TRACE_LEVEL_DEBUG is not set +# CONFIG_GAP_TRACE_LEVEL_VERBOSE is not set +CONFIG_GAP_INITIAL_TRACE_LEVEL=2 +CONFIG_BNEP_INITIAL_TRACE_LEVEL=2 +# CONFIG_PAN_TRACE_LEVEL_NONE is not set +# CONFIG_PAN_TRACE_LEVEL_ERROR is not set +CONFIG_PAN_TRACE_LEVEL_WARNING=y +# CONFIG_PAN_TRACE_LEVEL_API is not set +# CONFIG_PAN_TRACE_LEVEL_EVENT is not set +# CONFIG_PAN_TRACE_LEVEL_DEBUG is not set +# CONFIG_PAN_TRACE_LEVEL_VERBOSE is not set +CONFIG_PAN_INITIAL_TRACE_LEVEL=2 +# CONFIG_A2D_TRACE_LEVEL_NONE is not set +# CONFIG_A2D_TRACE_LEVEL_ERROR is not set +CONFIG_A2D_TRACE_LEVEL_WARNING=y +# CONFIG_A2D_TRACE_LEVEL_API is not set +# CONFIG_A2D_TRACE_LEVEL_EVENT is not set +# CONFIG_A2D_TRACE_LEVEL_DEBUG is not set +# CONFIG_A2D_TRACE_LEVEL_VERBOSE is not set +CONFIG_A2D_INITIAL_TRACE_LEVEL=2 +# CONFIG_AVDT_TRACE_LEVEL_NONE is not set +# CONFIG_AVDT_TRACE_LEVEL_ERROR is not set +CONFIG_AVDT_TRACE_LEVEL_WARNING=y +# CONFIG_AVDT_TRACE_LEVEL_API is not set +# CONFIG_AVDT_TRACE_LEVEL_EVENT is not set +# CONFIG_AVDT_TRACE_LEVEL_DEBUG is not set +# CONFIG_AVDT_TRACE_LEVEL_VERBOSE is not set +CONFIG_AVDT_INITIAL_TRACE_LEVEL=2 +# CONFIG_AVCT_TRACE_LEVEL_NONE is not set +# CONFIG_AVCT_TRACE_LEVEL_ERROR is not set +CONFIG_AVCT_TRACE_LEVEL_WARNING=y +# CONFIG_AVCT_TRACE_LEVEL_API is not set +# CONFIG_AVCT_TRACE_LEVEL_EVENT is not set +# CONFIG_AVCT_TRACE_LEVEL_DEBUG is not set +# CONFIG_AVCT_TRACE_LEVEL_VERBOSE is not set +CONFIG_AVCT_INITIAL_TRACE_LEVEL=2 +# CONFIG_AVRC_TRACE_LEVEL_NONE is not set +# CONFIG_AVRC_TRACE_LEVEL_ERROR is not set +CONFIG_AVRC_TRACE_LEVEL_WARNING=y +# CONFIG_AVRC_TRACE_LEVEL_API is not set +# CONFIG_AVRC_TRACE_LEVEL_EVENT is not set +# CONFIG_AVRC_TRACE_LEVEL_DEBUG is not set +# CONFIG_AVRC_TRACE_LEVEL_VERBOSE is not set +CONFIG_AVRC_INITIAL_TRACE_LEVEL=2 +# CONFIG_MCA_TRACE_LEVEL_NONE is not set +# CONFIG_MCA_TRACE_LEVEL_ERROR is not set +CONFIG_MCA_TRACE_LEVEL_WARNING=y +# CONFIG_MCA_TRACE_LEVEL_API is not set +# CONFIG_MCA_TRACE_LEVEL_EVENT is not set +# CONFIG_MCA_TRACE_LEVEL_DEBUG is not set +# CONFIG_MCA_TRACE_LEVEL_VERBOSE is not set +CONFIG_MCA_INITIAL_TRACE_LEVEL=2 +# CONFIG_HID_TRACE_LEVEL_NONE is not set +# CONFIG_HID_TRACE_LEVEL_ERROR is not set +CONFIG_HID_TRACE_LEVEL_WARNING=y +# CONFIG_HID_TRACE_LEVEL_API is not set +# CONFIG_HID_TRACE_LEVEL_EVENT is not set +# CONFIG_HID_TRACE_LEVEL_DEBUG is not set +# CONFIG_HID_TRACE_LEVEL_VERBOSE is not set +CONFIG_HID_INITIAL_TRACE_LEVEL=2 +# CONFIG_APPL_TRACE_LEVEL_NONE is not set +# CONFIG_APPL_TRACE_LEVEL_ERROR is not set +CONFIG_APPL_TRACE_LEVEL_WARNING=y +# CONFIG_APPL_TRACE_LEVEL_API is not set +# CONFIG_APPL_TRACE_LEVEL_EVENT is not set +# CONFIG_APPL_TRACE_LEVEL_DEBUG is not set +# CONFIG_APPL_TRACE_LEVEL_VERBOSE is not set +CONFIG_APPL_INITIAL_TRACE_LEVEL=2 +# CONFIG_GATT_TRACE_LEVEL_NONE is not set +# CONFIG_GATT_TRACE_LEVEL_ERROR is not set +CONFIG_GATT_TRACE_LEVEL_WARNING=y +# CONFIG_GATT_TRACE_LEVEL_API is not set +# CONFIG_GATT_TRACE_LEVEL_EVENT is not set +# CONFIG_GATT_TRACE_LEVEL_DEBUG is not set +# CONFIG_GATT_TRACE_LEVEL_VERBOSE is not set +CONFIG_GATT_INITIAL_TRACE_LEVEL=2 +# CONFIG_SMP_TRACE_LEVEL_NONE is not set +# CONFIG_SMP_TRACE_LEVEL_ERROR is not set +CONFIG_SMP_TRACE_LEVEL_WARNING=y +# CONFIG_SMP_TRACE_LEVEL_API is not set +# CONFIG_SMP_TRACE_LEVEL_EVENT is not set +# CONFIG_SMP_TRACE_LEVEL_DEBUG is not set +# CONFIG_SMP_TRACE_LEVEL_VERBOSE is not set +CONFIG_SMP_INITIAL_TRACE_LEVEL=2 +# CONFIG_BTIF_TRACE_LEVEL_NONE is not set +# CONFIG_BTIF_TRACE_LEVEL_ERROR is not set +CONFIG_BTIF_TRACE_LEVEL_WARNING=y +# CONFIG_BTIF_TRACE_LEVEL_API is not set +# CONFIG_BTIF_TRACE_LEVEL_EVENT is not set +# CONFIG_BTIF_TRACE_LEVEL_DEBUG is not set +# CONFIG_BTIF_TRACE_LEVEL_VERBOSE is not set +CONFIG_BTIF_INITIAL_TRACE_LEVEL=2 +# CONFIG_BTC_TRACE_LEVEL_NONE is not set +# CONFIG_BTC_TRACE_LEVEL_ERROR is not set +CONFIG_BTC_TRACE_LEVEL_WARNING=y +# CONFIG_BTC_TRACE_LEVEL_API is not set +# CONFIG_BTC_TRACE_LEVEL_EVENT is not set +# CONFIG_BTC_TRACE_LEVEL_DEBUG is not set +# CONFIG_BTC_TRACE_LEVEL_VERBOSE is not set +CONFIG_BTC_INITIAL_TRACE_LEVEL=2 +# CONFIG_OSI_TRACE_LEVEL_NONE is not set +# CONFIG_OSI_TRACE_LEVEL_ERROR is not set +CONFIG_OSI_TRACE_LEVEL_WARNING=y +# CONFIG_OSI_TRACE_LEVEL_API is not set +# CONFIG_OSI_TRACE_LEVEL_EVENT is not set +# CONFIG_OSI_TRACE_LEVEL_DEBUG is not set +# CONFIG_OSI_TRACE_LEVEL_VERBOSE is not set +CONFIG_OSI_INITIAL_TRACE_LEVEL=2 +# CONFIG_BLUFI_TRACE_LEVEL_NONE is not set +# CONFIG_BLUFI_TRACE_LEVEL_ERROR is not set +CONFIG_BLUFI_TRACE_LEVEL_WARNING=y +# CONFIG_BLUFI_TRACE_LEVEL_API is not set +# CONFIG_BLUFI_TRACE_LEVEL_EVENT is not set +# CONFIG_BLUFI_TRACE_LEVEL_DEBUG is not set +# CONFIG_BLUFI_TRACE_LEVEL_VERBOSE is not set +CONFIG_BLUFI_INITIAL_TRACE_LEVEL=2 # CONFIG_BLE_HOST_QUEUE_CONGESTION_CHECK is not set CONFIG_SMP_ENABLE=y CONFIG_BLE_ESTABLISH_LINK_CONNECTION_TIMEOUT=30