├── .all-contributorsrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── actions │ └── wf-setup │ │ └── action.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── core-api.yml │ ├── core-baseStation.yml │ ├── coreLib.yml │ ├── deployMainRepos.yml │ ├── deployTestRepos.yml │ ├── driverLib.yml │ ├── driverServer.yml │ ├── pages.yml │ ├── plugin-alertMessenger.yml │ ├── plugin-demoQuarkus.yml │ ├── plugin-extItemSearch.yml │ ├── readme.md │ ├── stationCaptain.yml │ ├── wf-gradleBuild.yaml │ ├── wf-gradleQuarkusIntTest.yaml │ └── wf-gradleUnitTest.yaml ├── .gitignore ├── .idea └── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── deployment ├── Compose │ └── README.md ├── Kubernetes │ ├── .idea │ │ └── .gitignore │ ├── README.md │ ├── argocd │ │ ├── README.md │ │ ├── docs │ │ │ ├── README.md │ │ │ └── devSetup.md │ │ └── standard │ │ │ ├── core-depot-deployment.yaml │ │ │ └── core-depot-service.yaml │ ├── docs │ │ └── development.md │ ├── helm │ │ ├── README.md │ │ └── oqm-core │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── core-depot-deployment.yaml │ │ │ ├── core-depot-service.yaml │ │ │ └── infra-mongodb-crd.yaml │ │ │ └── values.yaml │ ├── operator │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ │ └── main │ │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ │ └── resources │ │ │ └── application.properties │ └── yaml │ │ ├── build-all.sh │ │ ├── openshift │ │ ├── deployments.yml │ │ ├── install.sh │ │ ├── routes.yml │ │ ├── secrets.yml │ │ └── services.yml │ │ └── service_mesh │ │ ├── AuthorizationPolicy.yml │ │ ├── VirtualService.yml │ │ ├── gateway.yml │ │ ├── install.sh │ │ ├── networkpolicy.yml │ │ ├── requestauthentication.yml │ │ ├── serviceentry.yml │ │ └── vs-external.yml ├── README.md └── Single Host │ ├── .gitignore │ ├── Infrastructure │ ├── .gitignore │ ├── README.md │ ├── homepage │ │ ├── 10-homepage.json │ │ ├── README.md │ │ ├── config │ │ │ ├── bookmarks.yaml.j2 │ │ │ ├── services.yaml.j2 │ │ │ ├── settings.yaml.j2 │ │ │ └── widgets.yaml.j2 │ │ ├── infra-homepage-proxy-config.json │ │ ├── oqm-homepage.desktop │ │ ├── oqm-infra-homepage-config_watch.service │ │ ├── oqm-infra-homepage.service │ │ ├── properties.json │ │ └── setup-homepage-config.py │ ├── kafka-red-panda │ │ ├── 10-kafka-red-panda.json │ │ ├── oqm-infra-kafka_red_panda.service │ │ ├── properties.json │ │ └── readme.md │ ├── keycloak │ │ ├── 10-keycloak.json │ │ ├── README.md │ │ ├── clientFileExplainer.md │ │ ├── infra-keycloak-proxy-config.json │ │ ├── kc-realm-manager.py │ │ ├── kc.svg │ │ ├── oqm-infra-keycloak-client_watch.service │ │ ├── oqm-infra-keycloak.service │ │ ├── oqm-realm.json │ │ ├── oqm-realm_OLD_.json │ │ ├── properties.json │ │ └── uiEntry.json │ ├── makeInstallers.sh │ ├── mongo │ │ ├── 10-mongo.json │ │ ├── README.md │ │ ├── mongo-assert-account.sh │ │ ├── mongo-snapshot-restore.sh │ │ ├── oqm-infra-mongodb.service │ │ └── properties.json │ ├── postgres │ │ ├── 10-postgres.json │ │ ├── README.md │ │ ├── oqm-infra-postgres.service │ │ ├── postgres-assert-account.sh │ │ ├── postgres-snapshot-restore.sh │ │ └── properties.json │ ├── properties.json │ └── traefik │ │ ├── 10-traefik.json │ │ ├── README.md │ │ ├── oqm-infra-traefik-proxy_config_watch.service │ │ ├── oqm-infra-traefik.service │ │ ├── properties.json │ │ ├── setup-proxy-config.py │ │ ├── traefik-dynamic-config-template.yaml.j2 │ │ ├── traefik-snapshot-restore.sh │ │ └── traefik-static-config-template.yaml.j2 │ ├── README.md │ ├── Station-Captain │ ├── .gitignore │ ├── .idea │ │ ├── Station-Captain.iml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations │ │ │ └── Unittests.xml │ │ └── vcs.xml │ ├── README.md │ ├── docs │ │ ├── Admin Guide.md │ │ ├── Features.adoc │ │ ├── README.md │ │ ├── User Guide.adoc │ │ └── certs.md │ ├── makeInstallers.sh │ ├── properties.json │ ├── src │ │ ├── account-assure-base.sh │ │ ├── certsReadme.md │ │ ├── integration │ │ │ ├── oqm-captain-user-guide.desktop │ │ │ ├── oqm-captain.desktop │ │ │ ├── oqm-icon.svg │ │ │ ├── oqm-sc-guide-icon.svg │ │ │ └── oqm-sc-icon.svg │ │ ├── lib │ │ │ ├── CertsUtils.py │ │ │ ├── ConfigManager.py │ │ │ ├── ContainerUtils.py │ │ │ ├── CronUtils.py │ │ │ ├── DataUtils.py │ │ │ ├── EmailUtils.py │ │ │ ├── InputValidators.py │ │ │ ├── LogManagement.py │ │ │ ├── LogUtils.py │ │ │ ├── OtherUtils.py │ │ │ ├── PackageManagement.py │ │ │ ├── ScriptInfos.py │ │ │ ├── ServiceUtils.py │ │ │ ├── SnapshotBackupUtils.py │ │ │ ├── SnapshotShared.py │ │ │ ├── SnapshotUtils.py │ │ │ └── UserInteraction.py │ │ ├── mainConfig.json │ │ ├── oqm-captain.py │ │ ├── oqm-config.py │ │ ├── oqm-station-captain-help.txt │ │ └── snapshot-restore-base.sh │ ├── stationCaptainTest │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── compiler.xml │ │ │ ├── encodings.xml │ │ │ ├── jarRepositories.xml │ │ │ ├── misc.xml │ │ │ ├── uiDesigner.xml │ │ │ └── vcs.xml │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ └── maven-wrapper.properties │ │ ├── docs │ │ │ ├── README.md │ │ │ └── tags.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── stationCaptainTest │ │ │ │ ├── RunCucumberTest.java │ │ │ │ ├── constants │ │ │ │ ├── ContainerConstants.java │ │ │ │ └── FileLocationConstants.java │ │ │ │ ├── lifecycle │ │ │ │ └── LifecycleEvents.java │ │ │ │ ├── scenarioUtils │ │ │ │ └── AttachUtils.java │ │ │ │ ├── stepDefinitions │ │ │ │ ├── ExampleStepDefinitions.java │ │ │ │ ├── features │ │ │ │ │ ├── ConfigUtilitySteps.java │ │ │ │ │ └── InstallerSteps.java │ │ │ │ └── shared │ │ │ │ │ ├── ContainerDefinitions.java │ │ │ │ │ ├── ScInstallDefinitions.java │ │ │ │ │ └── ShellCommandDefinitions.java │ │ │ │ └── testResources │ │ │ │ ├── BaseStepDefinitions.java │ │ │ │ ├── TestContext.java │ │ │ │ ├── containerUtils │ │ │ │ └── ContainerUtils.java │ │ │ │ └── shellUtils │ │ │ │ └── ShellProcessResults.java │ │ │ └── resources │ │ │ ├── cucumber.properties │ │ │ ├── features │ │ │ ├── 1 - Installing │ │ │ │ └── 1.1-Installers.feature │ │ │ ├── 3 - Configuration Management │ │ │ │ └── 3.1 - Config utility │ │ │ │ │ └── 3.1-Config Utility.feature │ │ │ └── example.feature │ │ │ ├── junit-platform.properties │ │ │ ├── log4j2.yaml │ │ │ └── res │ │ │ └── config-util │ │ │ ├── 99-test-values.json │ │ │ ├── configTemplate.list │ │ │ └── configTemplate2.list │ └── unitTests │ │ ├── .gitignore │ │ ├── testConfigManager.py │ │ ├── testOtherUtils.py │ │ └── utils.py │ ├── aws-ami-builder │ ├── build-oqm.pkr.hcl │ ├── get-metadata.sh │ ├── oqm.pkr.hcl │ ├── variables.auto.pkrvars.hcl │ └── variables.pkr.hcl │ ├── docs │ ├── Architecture Overview.md │ ├── Certs.md │ ├── Quickstart Guide.md │ ├── README.md │ ├── System Requirements.md │ ├── config.md │ ├── guides │ │ ├── Kiosk Mode.md │ │ └── OS Installer Creation.md │ ├── networking.md │ └── tgf.md │ ├── metrics │ ├── README.md │ ├── grafana │ │ ├── 10-grafana.json │ │ ├── oqm-infra-grafana.service │ │ └── properties.json │ ├── jaeger │ │ ├── 10-jaeger.json │ │ ├── infra-jaeger-proxy-config.json │ │ ├── jaeger-icon.svg │ │ ├── oqm-infra-jaeger.service │ │ ├── oqm-jaeger.desktop │ │ ├── properties.json │ │ ├── readme.md │ │ └── uiEntry.json │ ├── otel │ │ ├── 10-otel.json │ │ ├── collector-config.yaml │ │ ├── oqm-infra-otel.service │ │ └── properties.json │ └── prometheus │ │ ├── 10-prometheus.json │ │ ├── config.yaml │ │ ├── oqm-infra-prometheus.service │ │ └── properties.json │ └── tests │ ├── .gitignore │ ├── .idea │ └── runConfigurations │ │ └── singleNodeTest__clean_verify_.xml │ ├── .mvn │ └── wrapper │ │ └── maven-wrapper.properties │ ├── docs │ ├── README.md │ └── tags.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── readme.md │ └── src │ └── test │ ├── java │ └── stationCaptainTest │ │ ├── RunCucumberTest.java │ │ ├── constants │ │ ├── ContainerConstants.java │ │ └── FileLocationConstants.java │ │ ├── lifecycle │ │ └── LifecycleEvents.java │ │ ├── scenarioUtils │ │ └── AttachUtils.java │ │ ├── stepDefinitions │ │ ├── ExampleStepDefinitions.java │ │ ├── features │ │ │ └── InstallerSteps.java │ │ └── shared │ │ │ └── ShellCommandDefinitions.java │ │ └── testResources │ │ ├── BaseStepDefinitions.java │ │ ├── TestContext.java │ │ ├── config │ │ ├── ConfigReader.java │ │ ├── TestRunConfig.java │ │ └── snhSetup │ │ │ ├── ContainerSnhSetupConfig.java │ │ │ ├── ExistingSnhSetupConfig.java │ │ │ ├── SnhSetupConfig.java │ │ │ ├── SnhType.java │ │ │ └── installType │ │ │ ├── FilesInstallTypeConfig.java │ │ │ ├── InstallType.java │ │ │ ├── InstallTypeConfig.java │ │ │ ├── InstallerType.java │ │ │ └── RepoInstallTypeConfig.java │ │ ├── shellUtils │ │ └── ShellProcessResults.java │ │ └── snhConnector │ │ ├── CommandResult.java │ │ ├── ContainerSnhConnector.java │ │ ├── ExistingSnhConnector.java │ │ └── SnhConnector.java │ └── resources │ ├── cucumber.properties │ ├── features │ ├── 1 - Installing │ │ ├── 1.1-Installers.feature │ │ └── 1.1-Installing.feature │ └── example.feature │ ├── junit-platform.properties │ ├── log4j2.yaml │ └── res │ └── config-util │ ├── 99-test-values.json │ ├── configTemplate.list │ └── configTemplate2.list ├── devfile.yaml ├── docs └── development │ ├── Versioning_Releases.md │ ├── developmentFlow.md │ └── gettingStarted.md ├── hardware └── mss │ ├── .gitignore │ ├── README.md │ ├── jsonSchemas │ ├── .idea │ │ └── .gitignore │ ├── BlockLightSetting.json │ ├── BlockState.json │ ├── ClearHighlightCommand.json │ ├── Command.json │ ├── CommandResponse.json │ ├── GetModuleInfoCommand.json │ ├── GetModuleStateCommand.json │ ├── HighlightBlocksCommand.json │ ├── ModuleInfo.json │ ├── ModuleState.json │ ├── README.md │ ├── ResetBlockLightsCommand.json │ └── SetBlockStateCommand.json │ ├── ledTests │ ├── .idea │ │ └── .gitignore │ └── ledTests.ino │ ├── mss │ ├── .idea │ │ └── .gitignore │ ├── AddToJson.h │ ├── BlockLightSetting.h │ ├── BlockState.h │ ├── ColorUtils.h │ ├── HighlightBlocksCommand.h │ ├── MssCommand.h │ ├── MssCommandResponse.h │ ├── MssConnector.h │ ├── MssEngine.h │ ├── MssErringCommand.h │ ├── MssModCapabilities.h │ ├── MssModInfo.h │ ├── MssSerialConnector.h │ └── mss.ino │ └── schematics │ ├── Arduino Uno Hat │ ├── .gitignore │ ├── Arduino Uno Hat.kicad_pcb │ ├── Arduino Uno Hat.kicad_prl │ ├── Arduino Uno Hat.kicad_pro │ ├── Arduino Uno Hat.kicad_sch │ ├── Arduino_MountingHole.pretty │ │ ├── MountingHole_1.2mm.kicad_mod │ │ └── MountingHole_3.2mm.kicad_mod │ ├── README.md │ └── outputs │ │ ├── OQM MSS Arduino Hat BOM.csv │ │ └── OQM MSS Arduino Uno Hat.jpg │ ├── MSS_Uno.fzz │ ├── MSS_Uno_bb.svg │ └── MSS_Uno_schem.svg ├── media ├── diagrams │ ├── Simple OQM Diagram.drawio │ └── Simple OQM Diagram.drawio.svg └── logo │ ├── Quarter Master Black Logo.svg │ ├── Quarter Master Inverted Color.svg │ ├── Quarter Master Logo Symbol.svg │ ├── Quarter Master Main Logo Outlined.svg │ ├── Quarter Master Main Logo.svg │ ├── Quarter Master White logo.png │ ├── Quarter Master White logo.svg │ └── favicon_logoai │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ └── site.webmanifest ├── pagesSource ├── helm │ ├── index.yaml │ └── oqm-core-0.1.0.tgz ├── index.html └── repos │ ├── main │ └── deb │ │ ├── InRelease │ │ ├── KEY.gpg │ │ ├── Packages │ │ ├── Packages.gz │ │ ├── README.md │ │ ├── Release │ │ ├── Release.gpg │ │ ├── deb_list_file.list │ │ ├── oqm-core-api_1.0.0_all.deb │ │ ├── oqm-core-api_1.1.0_all.deb │ │ ├── oqm-core-api_1.2.0_all.deb │ │ ├── oqm-core-api_1.2.1_all.deb │ │ ├── oqm-core-api_2.0.0_all.deb │ │ ├── oqm-core-api_2.1.0_all.deb │ │ ├── oqm-core-api_2.1.1_all.deb │ │ ├── oqm-core-api_2.1.2_all.deb │ │ ├── oqm-core-api_2.1.3_all.deb │ │ ├── oqm-core-api_2.1.4_all.deb │ │ ├── oqm-core-api_2.1.5_all.deb │ │ ├── oqm-core-api_2.1.6_all.deb │ │ ├── oqm-core-api_2.1.7_all.deb │ │ ├── oqm-core-api_2.1.8_all.deb │ │ ├── oqm-core-api_3.0.0_all.deb │ │ ├── oqm-core-api_3.0.1_all.deb │ │ ├── oqm-core-api_3.0.2_all.deb │ │ ├── oqm-core-api_3.1.0_all.deb │ │ ├── oqm-core-api_3.2.0_all.deb │ │ ├── oqm-core-api_3.2.1_all.deb │ │ ├── oqm-core-api_3.2.2_all.deb │ │ ├── oqm-core-api_4.0.0_all.deb │ │ ├── oqm-core-api_4.1.0_all.deb │ │ ├── oqm-core-base+station_1.0.40_all.deb │ │ ├── oqm-core-base+station_1.1.0_all.deb │ │ ├── oqm-core-base+station_1.1.1_all.deb │ │ ├── oqm-core-base+station_1.1.2_all.deb │ │ ├── oqm-core-base+station_1.2.0_all.deb │ │ ├── oqm-core-base+station_1.3.0_all.deb │ │ ├── oqm-core-base+station_1.3.1_all.deb │ │ ├── oqm-core-base+station_1.4.0_all.deb │ │ ├── oqm-core-base+station_1.4.1_all.deb │ │ ├── oqm-core-base+station_1.4.2_all.deb │ │ ├── oqm-core-base+station_1.4.3_all.deb │ │ ├── oqm-core-base+station_1.4.4_all.deb │ │ ├── oqm-core-base+station_1.4.5_all.deb │ │ ├── oqm-core-base+station_1.5.0_all.deb │ │ ├── oqm-core-base+station_1.5.1_all.deb │ │ ├── oqm-core-base+station_1.5.2_all.deb │ │ ├── oqm-core-base+station_1.6.0_all.deb │ │ ├── oqm-core-base+station_1.6.1_all.deb │ │ ├── oqm-core-base+station_1.6.2_all.deb │ │ ├── oqm-core-base+station_1.6.3_all.deb │ │ ├── oqm-core-base+station_1.6.4_all.deb │ │ ├── oqm-core-base+station_1.7.0_all.deb │ │ ├── oqm-core-base+station_1.8.0_all.deb │ │ ├── oqm-core-base+station_1.8.1_all.deb │ │ ├── oqm-core-base+station_1.9.0_all.deb │ │ ├── oqm-core-base+station_1.9.1_all.deb │ │ ├── oqm-core-base+station_1.9.2_all.deb │ │ ├── oqm-core-depot_1.0.0_all.deb │ │ ├── oqm-core-depot_1.1.1_all.deb │ │ ├── oqm-core-depot_1.1.2_all.deb │ │ ├── oqm-core-depot_1.1.3_all.deb │ │ ├── oqm-core-depot_1.2.0_all.deb │ │ ├── oqm-core-depot_1.2.1_all.deb │ │ ├── oqm-infra-homepage_1.0.0_all.deb │ │ ├── oqm-infra-homepage_1.0.1_all.deb │ │ ├── oqm-infra-homepage_1.0.2_all.deb │ │ ├── oqm-infra-homepage_1.0.3_all.deb │ │ ├── oqm-infra-jaeger_1.1.1_all.deb │ │ ├── oqm-infra-jaeger_1.1.2_all.deb │ │ ├── oqm-infra-jaeger_1.2.0_all.deb │ │ ├── oqm-infra-jaeger_1.2.1_all.deb │ │ ├── oqm-infra-kafka+red+panda_1.0.0_all.deb │ │ ├── oqm-infra-kafka+red+panda_1.0.1_all.deb │ │ ├── oqm-infra-kafka+red+panda_1.0.2_all.deb │ │ ├── oqm-infra-kafka+red+panda_1.0.3_all.deb │ │ ├── oqm-infra-keycloak_1.1.4_all.deb │ │ ├── oqm-infra-keycloak_1.2.0_all.deb │ │ ├── oqm-infra-keycloak_1.2.1_all.deb │ │ ├── oqm-infra-keycloak_1.2.2_all.deb │ │ ├── oqm-infra-keycloak_1.2.3_all.deb │ │ ├── oqm-infra-keycloak_1.2.4_all.deb │ │ ├── oqm-infra-keycloak_1.2.5_all.deb │ │ ├── oqm-infra-keycloak_1.2.6_all.deb │ │ ├── oqm-infra-keycloak_1.2.7_all.deb │ │ ├── oqm-infra-keycloak_1.2.8_all.deb │ │ ├── oqm-infra-mongodb_1.1.3_all.deb │ │ ├── oqm-infra-mongodb_1.2.0_all.deb │ │ ├── oqm-infra-mongodb_1.2.1_all.deb │ │ ├── oqm-infra-mongodb_1.2.2_all.deb │ │ ├── oqm-infra-mongodb_1.2.3_all.deb │ │ ├── oqm-infra-mongodb_1.2.4_all.deb │ │ ├── oqm-infra-postgres_1.1.3_all.deb │ │ ├── oqm-infra-postgres_1.2.0_all.deb │ │ ├── oqm-infra-postgres_1.2.1_all.deb │ │ ├── oqm-infra-postgres_1.2.2_all.deb │ │ ├── oqm-infra-postgres_1.2.3_all.deb │ │ ├── oqm-infra-postgres_1.2.4_all.deb │ │ ├── oqm-infra-traefik_1.0.0_all.deb │ │ ├── oqm-infra-traefik_1.0.1_all.deb │ │ ├── oqm-infra-traefik_1.0.2_all.deb │ │ ├── oqm-infra-traefik_1.0.3_all.deb │ │ ├── oqm-infra-traefik_1.0.4_all.deb │ │ ├── oqm-infra-traefik_1.0.5_all.deb │ │ ├── oqm-infra-traefik_1.0.6_all.deb │ │ ├── oqm-manager-station+captain_2.0.10_all.deb │ │ ├── oqm-manager-station+captain_2.0.11_all.deb │ │ ├── oqm-manager-station+captain_2.0.12_all.deb │ │ ├── oqm-manager-station+captain_2.0.13_all.deb │ │ ├── oqm-manager-station+captain_2.1.0_all.deb │ │ ├── oqm-manager-station+captain_2.1.1_all.deb │ │ ├── oqm-manager-station+captain_2.2.0_all.deb │ │ ├── oqm-manager-station+captain_2.2.1_all.deb │ │ ├── oqm-manager-station+captain_2.2.2_all.deb │ │ ├── oqm-manager-station+captain_2.3.0_all.deb │ │ ├── oqm-manager-station+captain_2.4.0_all.deb │ │ ├── oqm-manager-station+captain_2.4.1_all.deb │ │ ├── oqm-manager-station+captain_2.4.2_all.deb │ │ ├── oqm-manager-station+captain_2.4.3_all.deb │ │ ├── oqm-manager-station+captain_2.5.0_all.deb │ │ ├── oqm-manager-station+captain_2.6.0_all.deb │ │ ├── oqm-manager-station+captain_2.6.1_all.deb │ │ ├── oqm-manager-station+captain_2.7.0_all.deb │ │ ├── oqm-manager-station+captain_2.8.0_all.deb │ │ ├── oqm-manager-station+captain_2.9.0_all.deb │ │ ├── oqm-manager-station+captain_2.9.1_all.deb │ │ ├── oqm-plugin-ext+item+search_1.0.0_all.deb │ │ ├── oqm-plugin-ext+item+search_1.0.1_all.deb │ │ ├── oqm-plugin-ext+item+search_1.0.2_all.deb │ │ ├── oqm-plugin-ext+item+search_1.0.3_all.deb │ │ ├── oqm-plugin-ext+item+search_1.0.4_all.deb │ │ ├── oqm-plugin-ext+item+search_1.0.5_all.deb │ │ └── setup-repo.sh │ ├── test-dev │ └── deb │ │ ├── InRelease │ │ ├── KEY.gpg │ │ ├── Packages │ │ ├── Packages.gz │ │ ├── Release │ │ ├── Release.gpg │ │ ├── deb_list_file.list │ │ ├── oqm-core-api_1.0.0_all.deb │ │ ├── oqm-core-base+station_1.1.0_all.deb │ │ ├── oqm-core-depot_1.0.0_all.deb │ │ ├── oqm-infra-jaeger_1.1.1_all.deb │ │ ├── oqm-infra-keycloak_1.1.4_all.deb │ │ ├── oqm-infra-mongodb_1.1.3_all.deb │ │ ├── oqm-infra-postgres_1.1.3_all.deb │ │ ├── oqm-manager-station+captain_2.0.11_all.deb │ │ └── setup-repo.sh │ └── test-main │ └── deb │ ├── InRelease │ ├── KEY.gpg │ ├── Packages │ ├── Packages.gz │ ├── Release │ ├── Release.gpg │ ├── deb_list_file.list │ ├── oqm-core-api_1.0.0_all.deb │ ├── oqm-core-base+station_1.1.0_all.deb │ ├── oqm-core-depot_1.0.0_all.deb │ ├── oqm-infra-jaeger_1.1.1_all.deb │ ├── oqm-infra-keycloak_1.1.4_all.deb │ ├── oqm-infra-mongodb_1.1.3_all.deb │ ├── oqm-infra-postgres_1.1.3_all.deb │ ├── oqm-manager-station+captain_2.0.12_all.deb │ └── setup-repo.sh ├── software ├── README.md ├── core │ ├── README.md │ ├── oqm-core-api │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.gradle │ │ ├── dev │ │ │ ├── README.md │ │ │ ├── devTest-cert-cert.pem │ │ │ ├── devTest-cert-key.pem │ │ │ ├── developers.jpeg │ │ │ └── oqm-realm.json │ │ ├── docs │ │ │ ├── AdminGuide.md │ │ │ ├── DataModel.md │ │ │ ├── Features.adoc │ │ │ ├── README.md │ │ │ ├── UsersAndAuth.md │ │ │ ├── customUnits.md │ │ │ ├── database.md │ │ │ ├── development │ │ │ │ ├── BuildingAndDeployment.adoc │ │ │ │ ├── ClientGeneration.md │ │ │ │ ├── DevelopmentGettingStarted.md │ │ │ │ ├── Devnotes.md │ │ │ │ └── Releasing.md │ │ │ ├── messaging.md │ │ │ └── metricsAndObservability.md │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── helm │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── core-api-config-basic.yaml │ │ │ │ ├── core-api-mongodb.yaml │ │ │ │ ├── core-depot-deployment.yaml │ │ │ │ ├── core-depot-ingress.yaml │ │ │ │ └── core-depot-service.yaml │ │ │ └── values.yaml │ │ ├── installerSrc │ │ │ ├── 20-coreApi.json │ │ │ ├── core-api-config.list │ │ │ ├── core-api-proxy-config.json │ │ │ ├── core-api.svg │ │ │ ├── installerProperties.json │ │ │ ├── oqm-core-api.service │ │ │ └── uiEntry.json │ │ ├── lombok.config │ │ ├── makeInstallers.sh │ │ ├── oqm-core-api-chart │ │ │ └── templates │ │ │ │ ├── core-api-deployment.yaml │ │ │ │ └── core-api-service.yaml │ │ ├── settings.gradle │ │ └── src │ │ │ ├── integrationTest │ │ │ ├── java │ │ │ │ └── tech │ │ │ │ │ └── ebp │ │ │ │ │ └── oqm │ │ │ │ │ └── core │ │ │ │ │ └── api │ │ │ │ │ └── interfaces │ │ │ │ │ ├── endpoints │ │ │ │ │ ├── info │ │ │ │ │ │ └── GeneralInfoTestIT.java │ │ │ │ │ └── inventory │ │ │ │ │ │ └── UnitsEndpointsTestIT.java │ │ │ │ │ └── ui │ │ │ │ │ └── UiGetTestIT.java │ │ │ └── resources │ │ │ │ └── application.yaml │ │ │ ├── main │ │ │ ├── docker │ │ │ │ ├── Dockerfile.jvm │ │ │ │ ├── Dockerfile.legacy-jar │ │ │ │ ├── Dockerfile.native │ │ │ │ └── Dockerfile.native-micro │ │ │ ├── java │ │ │ │ └── tech │ │ │ │ │ └── ebp │ │ │ │ │ └── oqm │ │ │ │ │ └── core │ │ │ │ │ └── api │ │ │ │ │ ├── config │ │ │ │ │ ├── CoreApiInteractingEntity.java │ │ │ │ │ ├── ExtServicesConfig.java │ │ │ │ │ ├── ImageResizeConfig.java │ │ │ │ │ └── ReflectionConfiguration.java │ │ │ │ │ ├── exception │ │ │ │ │ ├── ClassUpgraderNotFoundException.java │ │ │ │ │ ├── DataExportException.java │ │ │ │ │ ├── DataImportException.java │ │ │ │ │ ├── InvalidConfigException.java │ │ │ │ │ ├── MutexWaitTimeoutException.java │ │ │ │ │ ├── UpgradeFailedException.java │ │ │ │ │ └── VersionBumperListIncontiguousException.java │ │ │ │ │ ├── filters │ │ │ │ │ ├── ExceptionObjectNormalizer.java │ │ │ │ │ ├── InheritenceOpenapiFilter.java │ │ │ │ │ ├── LoggingFilter.java │ │ │ │ │ └── TraceIdHeaderAdder.java │ │ │ │ │ ├── health │ │ │ │ │ ├── ConfigHealthCheck.java │ │ │ │ │ └── SchemaUpgradeHealthCheck.java │ │ │ │ │ ├── interfaces │ │ │ │ │ ├── RestInterface.java │ │ │ │ │ ├── endpoints │ │ │ │ │ │ ├── EndpointProvider.java │ │ │ │ │ │ ├── MainFileObjectProvider.java │ │ │ │ │ │ ├── MainObjectProvider.java │ │ │ │ │ │ ├── ObjectProvider.java │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ └── DocumentGettingEndpoints.java │ │ │ │ │ │ ├── identifiers │ │ │ │ │ │ │ ├── GeneralIdentifierEndpoints.java │ │ │ │ │ │ │ └── IdGeneratorCrud.java │ │ │ │ │ │ ├── info │ │ │ │ │ │ │ ├── GeneralInfo.java │ │ │ │ │ │ │ ├── RunByUtils.java │ │ │ │ │ │ │ └── Test.java │ │ │ │ │ │ ├── interactingEntity │ │ │ │ │ │ │ └── InteractingEntityEndpoints.java │ │ │ │ │ │ ├── inventory │ │ │ │ │ │ │ ├── ItemCategoriesCrud.java │ │ │ │ │ │ │ ├── ItemCheckoutCrud.java │ │ │ │ │ │ │ ├── ItemListCrud.java │ │ │ │ │ │ │ ├── UnitsEndpoints.java │ │ │ │ │ │ │ ├── items │ │ │ │ │ │ │ │ ├── InBlockEndpoints.java │ │ │ │ │ │ │ │ ├── InventoryItemsCrud.java │ │ │ │ │ │ │ │ ├── StoredEndpoints.java │ │ │ │ │ │ │ │ ├── StoredInItemEndpoints.java │ │ │ │ │ │ │ │ └── TransactionEndpoints.java │ │ │ │ │ │ │ ├── management │ │ │ │ │ │ │ │ └── InventoryManagement.java │ │ │ │ │ │ │ └── storage │ │ │ │ │ │ │ │ └── StorageCrud.java │ │ │ │ │ │ └── media │ │ │ │ │ │ │ ├── FileGet.java │ │ │ │ │ │ │ ├── ImageCrud.java │ │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ └── FileAttachmentCrud.java │ │ │ │ │ │ │ └── identifiers │ │ │ │ │ │ │ ├── GeneralIdImageEndpoints.java │ │ │ │ │ │ │ └── UniqueIdImageEndpoints.java │ │ │ │ │ └── ui │ │ │ │ │ │ └── IndexUi.java │ │ │ │ │ ├── model │ │ │ │ │ ├── InstanceMutex.java │ │ │ │ │ ├── collectionStats │ │ │ │ │ │ ├── CollectionStats.java │ │ │ │ │ │ ├── HistoryCollectionStats.java │ │ │ │ │ │ └── InvItemCollectionStats.java │ │ │ │ │ ├── jackson │ │ │ │ │ │ ├── ColorModule.java │ │ │ │ │ │ ├── MongoObjectIdModule.java │ │ │ │ │ │ ├── QuantityJsonDeserializer.java │ │ │ │ │ │ ├── TempQuantityJacksonModule.java │ │ │ │ │ │ ├── TestableModule.java │ │ │ │ │ │ └── UnitModule.java │ │ │ │ │ ├── object │ │ │ │ │ │ ├── AttKeywordContaining.java │ │ │ │ │ │ ├── AttKeywordMainObject.java │ │ │ │ │ │ ├── FileAttachmentContaining.java │ │ │ │ │ │ ├── FileMainObject.java │ │ │ │ │ │ ├── HasParent.java │ │ │ │ │ │ ├── ImagedMainObject.java │ │ │ │ │ │ ├── MainObject.java │ │ │ │ │ │ ├── ObjectUtils.java │ │ │ │ │ │ ├── Versionable.java │ │ │ │ │ │ ├── history │ │ │ │ │ │ │ ├── EventType.java │ │ │ │ │ │ │ ├── ObjectHistoryEvent.java │ │ │ │ │ │ │ ├── details │ │ │ │ │ │ │ │ ├── FieldsAffectedHistoryDetail.java │ │ │ │ │ │ │ │ ├── FromSchemaUpgradeDetail.java │ │ │ │ │ │ │ │ ├── HistoryDetail.java │ │ │ │ │ │ │ │ ├── HistoryDetailType.java │ │ │ │ │ │ │ │ ├── ItemTransactionDetail.java │ │ │ │ │ │ │ │ └── NoteHistoryDetail.java │ │ │ │ │ │ │ └── events │ │ │ │ │ │ │ │ ├── CreateEvent.java │ │ │ │ │ │ │ │ ├── DeleteEvent.java │ │ │ │ │ │ │ │ ├── ReCreateEvent.java │ │ │ │ │ │ │ │ ├── SchemaUpgradeEvent.java │ │ │ │ │ │ │ │ ├── UpdateEvent.java │ │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ └── NewFileVersionEvent.java │ │ │ │ │ │ │ │ ├── item │ │ │ │ │ │ │ │ ├── ItemExpiryLowStockEvent.java │ │ │ │ │ │ │ │ ├── ItemLowStockEvent.java │ │ │ │ │ │ │ │ └── expiry │ │ │ │ │ │ │ │ │ ├── ItemExpiredEvent.java │ │ │ │ │ │ │ │ │ ├── ItemExpiryEvent.java │ │ │ │ │ │ │ │ │ └── ItemExpiryWarningEvent.java │ │ │ │ │ │ │ │ └── itemList │ │ │ │ │ │ │ │ ├── ItemListActionAddEvent.java │ │ │ │ │ │ │ │ ├── ItemListActionDeleteEvent.java │ │ │ │ │ │ │ │ ├── ItemListActionUpdateEvent.java │ │ │ │ │ │ │ │ └── ItemListApplyEvent.java │ │ │ │ │ │ ├── interactingEntity │ │ │ │ │ │ │ ├── InteractingEntity.java │ │ │ │ │ │ │ ├── InteractingEntityReference.java │ │ │ │ │ │ │ ├── InteractingEntityType.java │ │ │ │ │ │ │ ├── externalService │ │ │ │ │ │ │ │ ├── ExternalService.java │ │ │ │ │ │ │ │ ├── GeneralService.java │ │ │ │ │ │ │ │ ├── ServiceType.java │ │ │ │ │ │ │ │ ├── plugin │ │ │ │ │ │ │ │ │ ├── Plugin.java │ │ │ │ │ │ │ │ │ ├── PluginService.java │ │ │ │ │ │ │ │ │ ├── PluginType.java │ │ │ │ │ │ │ │ │ ├── PluginTypeType.java │ │ │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ │ │ │ └── nav │ │ │ │ │ │ │ │ │ │ ├── NavItem.java │ │ │ │ │ │ │ │ │ │ └── NavSubMenu.java │ │ │ │ │ │ │ │ └── roles │ │ │ │ │ │ │ │ │ └── RequestedRole.java │ │ │ │ │ │ │ └── user │ │ │ │ │ │ │ │ ├── NotificationSettings.java │ │ │ │ │ │ │ │ └── User.java │ │ │ │ │ │ ├── itemList │ │ │ │ │ │ │ ├── ItemList.java │ │ │ │ │ │ │ ├── ItemListAction.java │ │ │ │ │ │ │ └── ItemListActionMode.java │ │ │ │ │ │ ├── media │ │ │ │ │ │ │ ├── FileHashes.java │ │ │ │ │ │ │ ├── FileMetadata.java │ │ │ │ │ │ │ ├── Image.java │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ │ └── FileAttachment.java │ │ │ │ │ │ ├── storage │ │ │ │ │ │ │ ├── ItemCategory.java │ │ │ │ │ │ │ ├── checkout │ │ │ │ │ │ │ │ ├── CheckInType.java │ │ │ │ │ │ │ │ ├── CheckoutDetails.java │ │ │ │ │ │ │ │ ├── CheckoutNotificationStatus.java │ │ │ │ │ │ │ │ ├── CheckoutType.java │ │ │ │ │ │ │ │ ├── ItemAmountCheckout.java │ │ │ │ │ │ │ │ ├── ItemCheckout.java │ │ │ │ │ │ │ │ ├── ItemWholeCheckout.java │ │ │ │ │ │ │ │ ├── checkinDetails │ │ │ │ │ │ │ │ │ ├── CheckInDetails.java │ │ │ │ │ │ │ │ │ ├── LossCheckinDetails.java │ │ │ │ │ │ │ │ │ ├── ReturnFullCheckinDetails.java │ │ │ │ │ │ │ │ │ ├── ReturnPartCheckinDetails.java │ │ │ │ │ │ │ │ │ └── checkedInBy │ │ │ │ │ │ │ │ │ │ ├── CheckedInBy.java │ │ │ │ │ │ │ │ │ │ ├── CheckedInByExtUser.java │ │ │ │ │ │ │ │ │ │ ├── CheckedInByOqmEntity.java │ │ │ │ │ │ │ │ │ │ └── CheckedInByType.java │ │ │ │ │ │ │ │ └── checkoutFor │ │ │ │ │ │ │ │ │ ├── CheckoutFor.java │ │ │ │ │ │ │ │ │ ├── CheckoutForExtUser.java │ │ │ │ │ │ │ │ │ ├── CheckoutForOqmEntity.java │ │ │ │ │ │ │ │ │ └── CheckoutForType.java │ │ │ │ │ │ │ ├── items │ │ │ │ │ │ │ │ ├── InventoryItem.java │ │ │ │ │ │ │ │ ├── StorageType.java │ │ │ │ │ │ │ │ ├── exception │ │ │ │ │ │ │ │ │ ├── AlreadyStoredException.java │ │ │ │ │ │ │ │ │ ├── NoCheckoutDetailException.java │ │ │ │ │ │ │ │ │ ├── NoStorageBlockException.java │ │ │ │ │ │ │ │ │ ├── NotEnoughStoredException.java │ │ │ │ │ │ │ │ │ ├── StoredNotFoundException.java │ │ │ │ │ │ │ │ │ └── UnsupportedStoredOperationException.java │ │ │ │ │ │ │ │ ├── identifiers │ │ │ │ │ │ │ │ │ ├── Generated.java │ │ │ │ │ │ │ │ │ ├── Identifier.java │ │ │ │ │ │ │ │ │ ├── general │ │ │ │ │ │ │ │ │ │ ├── GeneralGeneratedId.java │ │ │ │ │ │ │ │ │ │ ├── GeneralId.java │ │ │ │ │ │ │ │ │ │ ├── GeneralIdType.java │ │ │ │ │ │ │ │ │ │ ├── Generic.java │ │ │ │ │ │ │ │ │ │ ├── ToGenerateGeneralId.java │ │ │ │ │ │ │ │ │ │ ├── ean │ │ │ │ │ │ │ │ │ │ │ ├── EAN_13.java │ │ │ │ │ │ │ │ │ │ │ └── EAN_8.java │ │ │ │ │ │ │ │ │ │ ├── gtin │ │ │ │ │ │ │ │ │ │ │ └── GTIN_14.java │ │ │ │ │ │ │ │ │ │ ├── isbn │ │ │ │ │ │ │ │ │ │ │ ├── ISBN_10.java │ │ │ │ │ │ │ │ │ │ │ └── ISBN_13.java │ │ │ │ │ │ │ │ │ │ └── upc │ │ │ │ │ │ │ │ │ │ │ ├── UPC_A.java │ │ │ │ │ │ │ │ │ │ │ └── UPC_E.java │ │ │ │ │ │ │ │ │ ├── generation │ │ │ │ │ │ │ │ │ │ ├── Generates.java │ │ │ │ │ │ │ │ │ │ ├── GeneratorFor.java │ │ │ │ │ │ │ │ │ │ ├── IdGenResult.java │ │ │ │ │ │ │ │ │ │ ├── IdentifierGenerator.java │ │ │ │ │ │ │ │ │ │ └── ToGenerate.java │ │ │ │ │ │ │ │ │ └── unique │ │ │ │ │ │ │ │ │ │ ├── GeneratedUniqueId.java │ │ │ │ │ │ │ │ │ │ ├── ProvidedUniqueId.java │ │ │ │ │ │ │ │ │ │ ├── ToGenerateUniqueId.java │ │ │ │ │ │ │ │ │ │ ├── UniqueId.java │ │ │ │ │ │ │ │ │ │ └── UniqueIdType.java │ │ │ │ │ │ │ │ ├── notification │ │ │ │ │ │ │ │ │ ├── ItemNotificationStatus.java │ │ │ │ │ │ │ │ │ ├── StoredNotificationStatus.java │ │ │ │ │ │ │ │ │ └── processing │ │ │ │ │ │ │ │ │ │ ├── ExpiryLowStockItemProcessResults.java │ │ │ │ │ │ │ │ │ │ ├── ItemExpiryLowStockItemProcessResults.java │ │ │ │ │ │ │ │ │ │ ├── ItemPostTransactionProcessResults.java │ │ │ │ │ │ │ │ │ │ ├── ItemProcessResults.java │ │ │ │ │ │ │ │ │ │ └── StoredExpiryLowStockProcessResult.java │ │ │ │ │ │ │ │ ├── stored │ │ │ │ │ │ │ │ │ ├── AmountStored.java │ │ │ │ │ │ │ │ │ ├── Stored.java │ │ │ │ │ │ │ │ │ ├── StoredType.java │ │ │ │ │ │ │ │ │ ├── UniqueStored.java │ │ │ │ │ │ │ │ │ └── stats │ │ │ │ │ │ │ │ │ │ ├── BasicStatsContaining.java │ │ │ │ │ │ │ │ │ │ ├── ItemStoredStats.java │ │ │ │ │ │ │ │ │ │ ├── StatsWithTotalContaining.java │ │ │ │ │ │ │ │ │ │ ├── StoredInBlockStats.java │ │ │ │ │ │ │ │ │ │ └── StoredStats.java │ │ │ │ │ │ │ │ ├── transactions │ │ │ │ │ │ │ │ │ ├── AppliedTransaction.java │ │ │ │ │ │ │ │ │ ├── ItemStoredTransaction.java │ │ │ │ │ │ │ │ │ ├── TransactionType.java │ │ │ │ │ │ │ │ │ └── transactions │ │ │ │ │ │ │ │ │ │ ├── add │ │ │ │ │ │ │ │ │ │ ├── AddAmountTransaction.java │ │ │ │ │ │ │ │ │ │ ├── AddTransaction.java │ │ │ │ │ │ │ │ │ │ └── AddWholeTransaction.java │ │ │ │ │ │ │ │ │ │ ├── checkin │ │ │ │ │ │ │ │ │ │ ├── CheckinFullTransaction.java │ │ │ │ │ │ │ │ │ │ ├── CheckinLossTransaction.java │ │ │ │ │ │ │ │ │ │ ├── CheckinPartTransaction.java │ │ │ │ │ │ │ │ │ │ └── CheckinTransaction.java │ │ │ │ │ │ │ │ │ │ ├── checkout │ │ │ │ │ │ │ │ │ │ ├── CheckoutAmountTransaction.java │ │ │ │ │ │ │ │ │ │ ├── CheckoutTransaction.java │ │ │ │ │ │ │ │ │ │ └── CheckoutWholeTransaction.java │ │ │ │ │ │ │ │ │ │ ├── set │ │ │ │ │ │ │ │ │ │ ├── SetAmountTransaction.java │ │ │ │ │ │ │ │ │ │ └── SetTransaction.java │ │ │ │ │ │ │ │ │ │ ├── subtract │ │ │ │ │ │ │ │ │ │ ├── SubAmountTransaction.java │ │ │ │ │ │ │ │ │ │ ├── SubWholeTransaction.java │ │ │ │ │ │ │ │ │ │ └── SubtractTransaction.java │ │ │ │ │ │ │ │ │ │ └── transfer │ │ │ │ │ │ │ │ │ │ ├── TransferAmountTransaction.java │ │ │ │ │ │ │ │ │ │ ├── TransferTransaction.java │ │ │ │ │ │ │ │ │ │ └── TransferWholeTransaction.java │ │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ │ ├── BigDecimalSumHelper.java │ │ │ │ │ │ │ │ │ ├── QuantitySumHelper.java │ │ │ │ │ │ │ │ │ └── SumHelper.java │ │ │ │ │ │ │ └── storageBlock │ │ │ │ │ │ │ │ └── StorageBlock.java │ │ │ │ │ │ └── upgrade │ │ │ │ │ │ │ ├── CollectionUpgradeResult.java │ │ │ │ │ │ │ ├── HistoriedCollectionUpgradeResult.java │ │ │ │ │ │ │ ├── ObjectUpgradeResult.java │ │ │ │ │ │ │ ├── OqmDbUpgradeResult.java │ │ │ │ │ │ │ ├── SingleUpgradeResult.java │ │ │ │ │ │ │ ├── TotalUpgradeResult.java │ │ │ │ │ │ │ ├── UpgradeCreatedObjectsResults.java │ │ │ │ │ │ │ ├── UpgradeOverallCreatedObjectsResults.java │ │ │ │ │ │ │ └── WasUpgraded.java │ │ │ │ │ ├── quantities │ │ │ │ │ │ └── QuantitiesUtils.java │ │ │ │ │ ├── rest │ │ │ │ │ │ ├── ErrorMessage.java │ │ │ │ │ │ ├── auth │ │ │ │ │ │ │ ├── TokenCheckResponse.java │ │ │ │ │ │ │ ├── externalService │ │ │ │ │ │ │ │ ├── ExternalServiceLoginRequest.java │ │ │ │ │ │ │ │ └── ExternalServiceLoginResponse.java │ │ │ │ │ │ │ ├── roles │ │ │ │ │ │ │ │ ├── Roles.java │ │ │ │ │ │ │ │ ├── ServiceRoles.java │ │ │ │ │ │ │ │ └── UserRoles.java │ │ │ │ │ │ │ └── user │ │ │ │ │ │ │ │ ├── UserLoginRequest.java │ │ │ │ │ │ │ │ └── UserLoginResponse.java │ │ │ │ │ │ ├── dataImportExport │ │ │ │ │ │ │ ├── DataImportResult.java │ │ │ │ │ │ │ ├── DbExportQuery.java │ │ │ │ │ │ │ ├── DbImportResult.java │ │ │ │ │ │ │ ├── EntityImportResult.java │ │ │ │ │ │ │ └── ImportBundleFileBody.java │ │ │ │ │ │ ├── externalItemLookup │ │ │ │ │ │ │ ├── ExtItemLookupProviderInfo.java │ │ │ │ │ │ │ ├── ExtItemLookupResult.java │ │ │ │ │ │ │ └── ExtItemLookupResults.java │ │ │ │ │ │ ├── management │ │ │ │ │ │ │ ├── CollectionClearResult.java │ │ │ │ │ │ │ ├── DbClearResult.java │ │ │ │ │ │ │ └── HistoriedCollectionClearResult.java │ │ │ │ │ │ ├── media │ │ │ │ │ │ │ ├── CodeImageType.java │ │ │ │ │ │ │ ├── ImageCreateRequest.java │ │ │ │ │ │ │ ├── ImageGet.java │ │ │ │ │ │ │ ├── ObjectCodeContentType.java │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ │ ├── FileAttachmentGet.java │ │ │ │ │ │ │ │ └── FileUploadBody.java │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ ├── AppliedTransactionSearch.java │ │ │ │ │ │ │ ├── CustomUnitSearch.java │ │ │ │ │ │ │ ├── ExternalServiceSearch.java │ │ │ │ │ │ │ ├── FileAttachmentSearch.java │ │ │ │ │ │ │ ├── FileSearchObject.java │ │ │ │ │ │ │ ├── HistorySearch.java │ │ │ │ │ │ │ ├── IdGeneratorSearch.java │ │ │ │ │ │ │ ├── ImageSearch.java │ │ │ │ │ │ │ ├── InstanceMutexSearch.java │ │ │ │ │ │ │ ├── InteractingEntitySearch.java │ │ │ │ │ │ │ ├── InventoryItemSearch.java │ │ │ │ │ │ │ ├── ItemCategorySearch.java │ │ │ │ │ │ │ ├── ItemCheckoutSearch.java │ │ │ │ │ │ │ ├── ItemListSearch.java │ │ │ │ │ │ │ ├── OqmMongoDbSearch.java │ │ │ │ │ │ │ ├── SearchKeyAttObject.java │ │ │ │ │ │ │ ├── SearchObject.java │ │ │ │ │ │ │ ├── StorageBlockSearch.java │ │ │ │ │ │ │ └── StoredSearch.java │ │ │ │ │ │ ├── storage │ │ │ │ │ │ │ └── IMAGED_OBJ_TYPE_NAME.java │ │ │ │ │ │ ├── tree │ │ │ │ │ │ │ ├── ParentedMainObjectTree.java │ │ │ │ │ │ │ ├── ParentedMainObjectTreeNode.java │ │ │ │ │ │ │ ├── TextInBox.java │ │ │ │ │ │ │ ├── itemCategory │ │ │ │ │ │ │ │ ├── ItemCategoryTree.java │ │ │ │ │ │ │ │ └── ItemCategoryTreeNode.java │ │ │ │ │ │ │ └── storageBlock │ │ │ │ │ │ │ │ ├── StorageBlockTree.java │ │ │ │ │ │ │ │ └── StorageBlockTreeNode.java │ │ │ │ │ │ └── unit │ │ │ │ │ │ │ ├── UnitListEntry.java │ │ │ │ │ │ │ ├── UnitListResponse.java │ │ │ │ │ │ │ └── custom │ │ │ │ │ │ │ ├── NewBaseCustomUnitRequest.java │ │ │ │ │ │ │ ├── NewCustomUnitRequest.java │ │ │ │ │ │ │ └── NewDerivedCustomUnitRequest.java │ │ │ │ │ ├── units │ │ │ │ │ │ ├── ConvertRequest.java │ │ │ │ │ │ ├── CustomUnitEntry.java │ │ │ │ │ │ ├── LibUnits.java │ │ │ │ │ │ ├── OqmProvidedUnits.java │ │ │ │ │ │ ├── UnitCategory.java │ │ │ │ │ │ ├── UnitTools.java │ │ │ │ │ │ ├── UnitUtils.java │ │ │ │ │ │ └── ValidUnitDimension.java │ │ │ │ │ └── validation │ │ │ │ │ │ ├── annotations │ │ │ │ │ │ ├── ValidBase64.java │ │ │ │ │ │ ├── ValidHeldStoredUnits.java │ │ │ │ │ │ ├── ValidInteractingEntityReference.java │ │ │ │ │ │ ├── ValidItemUnit.java │ │ │ │ │ │ ├── ValidQuantity.java │ │ │ │ │ │ ├── ValidQuantityOfUnit.java │ │ │ │ │ │ ├── ValidServiceRole.java │ │ │ │ │ │ ├── ValidUnit.java │ │ │ │ │ │ ├── ValidUserRole.java │ │ │ │ │ │ └── identifiers │ │ │ │ │ │ │ ├── ValidEAN13.java │ │ │ │ │ │ │ ├── ValidEAN8.java │ │ │ │ │ │ │ ├── ValidGTIN14.java │ │ │ │ │ │ │ ├── ValidISBN10.java │ │ │ │ │ │ │ ├── ValidISBN13.java │ │ │ │ │ │ │ ├── ValidUPCA.java │ │ │ │ │ │ │ └── ValidUPCE.java │ │ │ │ │ │ └── validators │ │ │ │ │ │ ├── Base64Validator.java │ │ │ │ │ │ ├── InteractingEntityReferenceValidator.java │ │ │ │ │ │ ├── ItemUnitValidator.java │ │ │ │ │ │ ├── QuantityOfUnitValidator.java │ │ │ │ │ │ ├── QuantityValidator.java │ │ │ │ │ │ ├── ServiceRoleValidator.java │ │ │ │ │ │ ├── UnitValidator.java │ │ │ │ │ │ ├── UserRoleValidator.java │ │ │ │ │ │ ├── ValidStoredUnitsValidator.java │ │ │ │ │ │ ├── Validator.java │ │ │ │ │ │ └── identifiers │ │ │ │ │ │ ├── EAN13Validator.java │ │ │ │ │ │ ├── EAN8Validator.java │ │ │ │ │ │ ├── GTIN14Validator.java │ │ │ │ │ │ ├── ISBN10Validator.java │ │ │ │ │ │ ├── ISBN13Validator.java │ │ │ │ │ │ ├── UPCAValidator.java │ │ │ │ │ │ └── UPCEValidator.java │ │ │ │ │ ├── scheduled │ │ │ │ │ ├── ExpiryProcessor.java │ │ │ │ │ └── LifecycleBean.java │ │ │ │ │ ├── service │ │ │ │ │ ├── ItemStatsService.java │ │ │ │ │ ├── JwtUtils.java │ │ │ │ │ ├── TempFileService.java │ │ │ │ │ ├── identifiers │ │ │ │ │ │ ├── IdBarcodeService.java │ │ │ │ │ │ ├── general │ │ │ │ │ │ │ ├── GeneralIdBarcodeService.java │ │ │ │ │ │ │ ├── GeneralIdUtils.java │ │ │ │ │ │ │ ├── GenericIdUtils.java │ │ │ │ │ │ │ └── upc │ │ │ │ │ │ │ │ ├── EANCodeUtilities.java │ │ │ │ │ │ │ │ ├── GTINCodeUtilities.java │ │ │ │ │ │ │ │ ├── ISBNCodeUtilities.java │ │ │ │ │ │ │ │ └── UpcCodeUtilities.java │ │ │ │ │ │ └── unique │ │ │ │ │ │ │ └── UniqueIdBarcodeService.java │ │ │ │ │ ├── importExport │ │ │ │ │ │ ├── ImportExportConstants.java │ │ │ │ │ │ ├── exporting │ │ │ │ │ │ │ ├── DataExportOptions.java │ │ │ │ │ │ │ ├── DataImportExportUtils.java │ │ │ │ │ │ │ ├── DatabaseExportService.java │ │ │ │ │ │ │ └── dbSelect │ │ │ │ │ │ │ │ ├── DatabaseSelection.java │ │ │ │ │ │ │ │ ├── DatabaseSelectionType.java │ │ │ │ │ │ │ │ ├── ExcludeDatabaseSelection.java │ │ │ │ │ │ │ │ ├── IncludeDatabaseSelection.java │ │ │ │ │ │ │ │ ├── ListBasedDatabaseSelection.java │ │ │ │ │ │ │ │ ├── SelectAllDatabases.java │ │ │ │ │ │ │ │ └── SelectNoDatabases.java │ │ │ │ │ │ └── importing │ │ │ │ │ │ │ ├── DataImportService.java │ │ │ │ │ │ │ ├── importer │ │ │ │ │ │ │ ├── FileImporter.java │ │ │ │ │ │ │ ├── GenericFileImporter.java │ │ │ │ │ │ │ ├── GenericImporter.java │ │ │ │ │ │ │ ├── GenericImporterHistoried.java │ │ │ │ │ │ │ ├── HasParentImporterHistoried.java │ │ │ │ │ │ │ ├── Importer.java │ │ │ │ │ │ │ ├── InteractingEntityImporter.java │ │ │ │ │ │ │ ├── ObjectImporter.java │ │ │ │ │ │ │ ├── TopLevelImporter.java │ │ │ │ │ │ │ └── UnitImporter.java │ │ │ │ │ │ │ └── options │ │ │ │ │ │ │ ├── DataImportOptions.java │ │ │ │ │ │ │ ├── DbImportMergeStrategy.java │ │ │ │ │ │ │ └── InteractingEntityMapStrategy.java │ │ │ │ │ ├── mongo │ │ │ │ │ │ ├── CustomUnitService.java │ │ │ │ │ │ ├── DatabaseManagementService.java │ │ │ │ │ │ ├── ExternalServiceService.java │ │ │ │ │ │ ├── HasParentObjService.java │ │ │ │ │ │ ├── IdentifierGenerationService.java │ │ │ │ │ │ ├── InstanceMutexService.java │ │ │ │ │ │ ├── InteractingEntityService.java │ │ │ │ │ │ ├── InventoryItemService.java │ │ │ │ │ │ ├── ItemCategoryService.java │ │ │ │ │ │ ├── ItemCheckoutService.java │ │ │ │ │ │ ├── ItemListService.java │ │ │ │ │ │ ├── MongoDbAwareService.java │ │ │ │ │ │ ├── MongoHistoriedObjectService.java │ │ │ │ │ │ ├── MongoHistoryService.java │ │ │ │ │ │ ├── MongoObjectService.java │ │ │ │ │ │ ├── MongoService.java │ │ │ │ │ │ ├── StorageBlockService.java │ │ │ │ │ │ ├── StoredService.java │ │ │ │ │ │ ├── TopLevelMongoService.java │ │ │ │ │ │ ├── exception │ │ │ │ │ │ │ ├── AlreadyCheckedInException.java │ │ │ │ │ │ │ ├── DbDeleteRelationalException.java │ │ │ │ │ │ │ ├── DbDeletedException.java │ │ │ │ │ │ │ ├── DbHistoryNotFoundException.java │ │ │ │ │ │ │ ├── DbModValidationException.java │ │ │ │ │ │ │ └── DbNotFoundException.java │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ ├── FileAttachmentService.java │ │ │ │ │ │ │ ├── MongoFileService.java │ │ │ │ │ │ │ └── MongoHistoriedFileService.java │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ └── ImageService.java │ │ │ │ │ │ ├── media │ │ │ │ │ │ │ └── FileObjectService.java │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ ├── ItemAwareSearchResult.java │ │ │ │ │ │ │ ├── PagingCalculations.java │ │ │ │ │ │ │ ├── PagingOptions.java │ │ │ │ │ │ │ ├── SearchResult.java │ │ │ │ │ │ │ ├── SearchUtils.java │ │ │ │ │ │ │ └── SortType.java │ │ │ │ │ │ ├── transactions │ │ │ │ │ │ │ ├── AppliedTransactionService.java │ │ │ │ │ │ │ └── appliers │ │ │ │ │ │ │ │ ├── AddAmountTransactionApplier.java │ │ │ │ │ │ │ │ ├── AddWholeTransactionApplier.java │ │ │ │ │ │ │ │ ├── CheckinFullTransactionApplier.java │ │ │ │ │ │ │ │ ├── CheckinLossTransactionApplier.java │ │ │ │ │ │ │ │ ├── CheckinOutTransactionApplier.java │ │ │ │ │ │ │ │ ├── CheckinPartTransactionApplier.java │ │ │ │ │ │ │ │ ├── CheckoutAmountTransactionApplier.java │ │ │ │ │ │ │ │ ├── CheckoutWholeTransactionApplier.java │ │ │ │ │ │ │ │ ├── SetAmountTransactionApplier.java │ │ │ │ │ │ │ │ ├── SubtractAmountTransactionApplier.java │ │ │ │ │ │ │ │ ├── SubtractWholeTransactionApplier.java │ │ │ │ │ │ │ │ ├── TransactionApplier.java │ │ │ │ │ │ │ │ ├── TransferAmountTransactionApplier.java │ │ │ │ │ │ │ │ └── TransferWholeTransactionApplier.java │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── AnyMapCodecProvider.java │ │ │ │ │ │ │ ├── CustomCodecProvider.java │ │ │ │ │ │ │ ├── FileContentsGet.java │ │ │ │ │ │ │ ├── MongoSessionWrapper.java │ │ │ │ │ │ │ └── codecs │ │ │ │ │ │ │ ├── AnyMapCodec.java │ │ │ │ │ │ │ ├── BigIntCodec.java │ │ │ │ │ │ │ ├── ColorCodec.java │ │ │ │ │ │ │ ├── DurationCodec.java │ │ │ │ │ │ │ ├── QuantityCodec.java │ │ │ │ │ │ │ ├── UUIDCodec.java │ │ │ │ │ │ │ ├── UnitCodec.java │ │ │ │ │ │ │ └── ZonedDateTimeCodec.java │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── EventNotificationWrapper.java │ │ │ │ │ │ ├── HistoryEventNotificationService.java │ │ │ │ │ │ ├── OutgoingNotificationService.java │ │ │ │ │ │ └── ProcessResultsWrapper.java │ │ │ │ │ ├── schemaVersioning │ │ │ │ │ │ ├── ObjectSchemaUpgradeService.java │ │ │ │ │ │ └── upgraders │ │ │ │ │ │ │ ├── ObjectSchemaUpgrader.java │ │ │ │ │ │ │ ├── ObjectSchemaVersionBumper.java │ │ │ │ │ │ │ ├── UpgradingUtils.java │ │ │ │ │ │ │ ├── appliedTransaction │ │ │ │ │ │ │ └── AppliedTransactionSchemaUpgrader.java │ │ │ │ │ │ │ ├── checkout │ │ │ │ │ │ │ ├── CheckoutSchemaUpgrader.java │ │ │ │ │ │ │ └── bumpers │ │ │ │ │ │ │ │ └── CheckoutBumper2.java │ │ │ │ │ │ │ ├── historyEvent │ │ │ │ │ │ │ ├── HistoryEventSchemaUpgrader.java │ │ │ │ │ │ │ └── bumpers │ │ │ │ │ │ │ │ └── HistoryEventBumper2.java │ │ │ │ │ │ │ ├── interactingEntity │ │ │ │ │ │ │ ├── InteractingEntitySchemaUpgrader.java │ │ │ │ │ │ │ └── bumpers │ │ │ │ │ │ │ │ └── IntEntBumper2.java │ │ │ │ │ │ │ ├── inventoryItem │ │ │ │ │ │ │ ├── InventoryItemSchemaUpgrader.java │ │ │ │ │ │ │ └── bumpers │ │ │ │ │ │ │ │ ├── InvItemBumper2.java │ │ │ │ │ │ │ │ └── InvItemBumper3.java │ │ │ │ │ │ │ ├── storageBlock │ │ │ │ │ │ │ └── StorageBlockSchemaUpgrader.java │ │ │ │ │ │ │ └── stored │ │ │ │ │ │ │ ├── StoredSchemaUpgrader.java │ │ │ │ │ │ │ └── bumpers │ │ │ │ │ │ │ ├── StoredItemBumper2.java │ │ │ │ │ │ │ └── StoredItemBumper3.java │ │ │ │ │ └── serviceState │ │ │ │ │ │ ├── ServiceStateService.java │ │ │ │ │ │ └── db │ │ │ │ │ │ ├── DbCache.java │ │ │ │ │ │ ├── DbCacheEntry.java │ │ │ │ │ │ ├── OqmDatabaseService.java │ │ │ │ │ │ └── OqmMongoDatabase.java │ │ │ │ │ └── utils │ │ │ │ │ ├── ExternalAuthUtilService.java │ │ │ │ │ ├── JacksonModuleCustomizer.java │ │ │ │ │ ├── TimeUtils.java │ │ │ │ │ └── UrlUtils.java │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ ├── beans.xml │ │ │ │ ├── openapi.yaml │ │ │ │ └── resources │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── media │ │ │ │ │ ├── EBP-logo-icon.svg │ │ │ │ │ ├── empty.svg │ │ │ │ │ ├── logo.svg │ │ │ │ │ ├── logoSymbol.svg │ │ │ │ │ └── logoSymbolSquare.svg │ │ │ │ └── application.yaml │ │ │ └── test │ │ │ ├── java │ │ │ └── tech │ │ │ │ └── ebp │ │ │ │ └── oqm │ │ │ │ └── core │ │ │ │ └── api │ │ │ │ ├── interfaces │ │ │ │ ├── endpoints │ │ │ │ │ ├── info │ │ │ │ │ │ └── GeneralInfoTest.java │ │ │ │ │ └── inventory │ │ │ │ │ │ ├── UnitsEndpointsTest.java │ │ │ │ │ │ ├── items │ │ │ │ │ │ ├── InventoryItemsCrudTest.java │ │ │ │ │ │ └── StoredInItemEndpointsTest.java │ │ │ │ │ │ └── storage │ │ │ │ │ │ └── StorageCrudTest.java │ │ │ │ └── ui │ │ │ │ │ └── UiGetTest.java │ │ │ │ ├── model │ │ │ │ ├── MainObjectSerializationTest.java │ │ │ │ ├── MainObjectValidationTest.java │ │ │ │ ├── TestMainObject.java │ │ │ │ ├── jackson │ │ │ │ │ ├── MongoObjectIdModuleTest.java │ │ │ │ │ └── UnitModuleTest.java │ │ │ │ ├── object │ │ │ │ │ ├── history │ │ │ │ │ │ ├── HistoryEventSerializationTest.java │ │ │ │ │ │ ├── HistoryEventValidationTest.java │ │ │ │ │ │ └── ObjectHistoryEventTest.java │ │ │ │ │ ├── interactingEntity │ │ │ │ │ │ ├── externalService │ │ │ │ │ │ │ ├── ExternalServiceTest.java │ │ │ │ │ │ │ ├── GeneralServiceSerializationTest.java │ │ │ │ │ │ │ ├── GeneralServiceTest.java │ │ │ │ │ │ │ ├── PluginServiceSerializationTest.java │ │ │ │ │ │ │ └── PluginServiceTest.java │ │ │ │ │ │ └── user │ │ │ │ │ │ │ └── UserTest.java │ │ │ │ │ ├── media │ │ │ │ │ │ ├── ImageSerializationTest.java │ │ │ │ │ │ ├── ImageTest.java │ │ │ │ │ │ └── file │ │ │ │ │ │ │ └── FileHashesTest.java │ │ │ │ │ └── storage │ │ │ │ │ │ ├── ItemCategorySerializationTest.java │ │ │ │ │ │ ├── items │ │ │ │ │ │ ├── InventoryItemSerializationTest.java │ │ │ │ │ │ ├── InventoryItemTest.java │ │ │ │ │ │ ├── InventoryItemValidationTest.java │ │ │ │ │ │ ├── stored │ │ │ │ │ │ │ ├── AmountStoredSerializationTest.java │ │ │ │ │ │ │ ├── AmountStoredValidationTest.java │ │ │ │ │ │ │ ├── UniqueStoredSerializationTest.java │ │ │ │ │ │ │ └── UniqueStoredValidationTest.java │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── BigDecimalSumHelperTest.java │ │ │ │ │ │ │ └── QuantitySumHelperTest.java │ │ │ │ │ │ └── storageBlock │ │ │ │ │ │ └── StorageBlockTest.java │ │ │ │ ├── rest │ │ │ │ │ ├── ErrorMessageSerializationTest.java │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── externalService │ │ │ │ │ │ │ └── ExternalServiceLoginRequestSerializationTest.java │ │ │ │ │ │ └── roles │ │ │ │ │ │ │ ├── ServiceRolesTest.java │ │ │ │ │ │ │ └── UserRolesTest.java │ │ │ │ │ ├── media │ │ │ │ │ │ ├── ImageCreateRequestSerializationTest.java │ │ │ │ │ │ └── ImageCreateRequestValidationTest.java │ │ │ │ │ ├── tree │ │ │ │ │ │ └── storageBlock │ │ │ │ │ │ │ └── StorageBlockTreeTest.java │ │ │ │ │ └── unit │ │ │ │ │ │ └── custom │ │ │ │ │ │ └── NewCustomUnitRequestSerializationTest.java │ │ │ │ ├── testUtils │ │ │ │ │ ├── BasicTest.java │ │ │ │ │ ├── ObjectSerializationTest.java │ │ │ │ │ ├── ObjectValidationTest.java │ │ │ │ │ ├── ObjectValidatorTest.java │ │ │ │ │ └── TestConstraintValidatorContext.java │ │ │ │ ├── units │ │ │ │ │ ├── UnitSerializationTest.java │ │ │ │ │ └── UnitUtilsTest.java │ │ │ │ └── validators │ │ │ │ │ └── UnitValidatorTest.java │ │ │ │ ├── service │ │ │ │ ├── ItemStatsServiceTest.java │ │ │ │ ├── PasswordServiceTest.java │ │ │ │ ├── TempFileServiceTest.java │ │ │ │ ├── identifiers │ │ │ │ │ ├── general │ │ │ │ │ │ ├── CodeUtilTestBase.java │ │ │ │ │ │ ├── GeneralIdBarcodeServiceTest.java │ │ │ │ │ │ ├── GeneralIdUtilsTest.java │ │ │ │ │ │ ├── GenericIdUtilsTest.java │ │ │ │ │ │ └── upc │ │ │ │ │ │ │ ├── EANCodeUtilitiesTest.java │ │ │ │ │ │ │ ├── GTINCodeUtilitiesTest.java │ │ │ │ │ │ │ ├── ISBNCodeUtilitiesTest.java │ │ │ │ │ │ │ └── UpcCodeUtilitiesTest.java │ │ │ │ │ └── unique │ │ │ │ │ │ └── UniqueIdBarcodeServiceTest.java │ │ │ │ ├── importExport │ │ │ │ │ └── DataImportServiceTest.java │ │ │ │ ├── mongo │ │ │ │ │ ├── AppliedTransactionServiceTest.java │ │ │ │ │ ├── CustomUnitServiceTest.java │ │ │ │ │ ├── IdentifierGenerationServiceTest.java │ │ │ │ │ ├── ImageServiceTest.java │ │ │ │ │ ├── InstanceMutexServiceTest.java │ │ │ │ │ ├── InteractingEntityServiceTest.java │ │ │ │ │ ├── InventoryItemServiceTest.java │ │ │ │ │ ├── ItemCategoryServiceTest.java │ │ │ │ │ ├── MongoDbAwareServiceTest.java │ │ │ │ │ ├── MongoHistoriedObjectServiceNoKafkaTest.java │ │ │ │ │ ├── MongoHistoriedObjectServiceTest.java │ │ │ │ │ ├── StorageBlockServiceTest.java │ │ │ │ │ ├── StoredServiceTest.java │ │ │ │ │ ├── exception │ │ │ │ │ │ └── DbDeleteRelationalExceptionTest.java │ │ │ │ │ ├── file │ │ │ │ │ │ └── MongoHistoriedFileServiceTest.java │ │ │ │ │ └── search │ │ │ │ │ │ ├── PagingCalculationsTest.java │ │ │ │ │ │ └── PagingOptionsTest.java │ │ │ │ ├── scheduled │ │ │ │ │ └── ExpiryProcessorTest.java │ │ │ │ ├── schemaVersioning │ │ │ │ │ ├── ObjectSchemaUpgradeServiceTest.java │ │ │ │ │ └── upgraders │ │ │ │ │ │ ├── ObjectSchemaUpgraderTest.java │ │ │ │ │ │ ├── ObjectSchemaVersionBumperTest.java │ │ │ │ │ │ ├── UpgradingUtilsTest.java │ │ │ │ │ │ └── inventoryItem │ │ │ │ │ │ ├── InventoryItemSchemaUpgraderTest.java │ │ │ │ │ │ └── bumpers │ │ │ │ │ │ └── InvItemBumper2Test.java │ │ │ │ └── serviceState │ │ │ │ │ └── db │ │ │ │ │ └── OqmDatabaseServiceTest.java │ │ │ │ └── testResources │ │ │ │ ├── PasswordService.java │ │ │ │ ├── TestConstants.java │ │ │ │ ├── TestRestUtils.java │ │ │ │ ├── TestTypeOrder.java │ │ │ │ ├── data │ │ │ │ ├── InventoryItemTestObjectCreator.java │ │ │ │ ├── ItemCategoryTestObjectCreator.java │ │ │ │ ├── MongoTestConnector.java │ │ │ │ ├── StorageBlockTestObjectCreator.java │ │ │ │ ├── StoredTestObjectCreator.java │ │ │ │ ├── TestMainFileObject.java │ │ │ │ ├── TestMainFileObjectGet.java │ │ │ │ ├── TestMainFileObjectSearch.java │ │ │ │ ├── TestMainObject.java │ │ │ │ ├── TestMainObjectSearch.java │ │ │ │ ├── TestMongoHistoriedFileService.java │ │ │ │ ├── TestMongoHistoriedService.java │ │ │ │ ├── TestMongoService.java │ │ │ │ ├── TestMongoServiceAllowNullUserCreate.java │ │ │ │ ├── TestObjectCreator.java │ │ │ │ ├── TestUserService.java │ │ │ │ └── TestVersionableObject.java │ │ │ │ ├── lifecycleManagers │ │ │ │ ├── OurTestDescription.java │ │ │ │ ├── TestResourceLifecycleManager.java │ │ │ │ └── Utils.java │ │ │ │ ├── profiles │ │ │ │ ├── NoKafkaTest.java │ │ │ │ ├── NonDefaultTestProfile.java │ │ │ │ └── QuickExpiryCheckTestProfile.java │ │ │ │ ├── testClasses │ │ │ │ ├── MongoHistoriedServiceTest.java │ │ │ │ ├── MongoObjectServiceTest.java │ │ │ │ ├── RunningServerTest.java │ │ │ │ ├── SchemaBumperTest.java │ │ │ │ └── WebServerTest.java │ │ │ │ └── upgrader │ │ │ │ ├── TestVersion2Bumper.java │ │ │ │ ├── TestVersion3Bumper.java │ │ │ │ └── TestVersion4Bumper.java │ │ │ └── resources │ │ │ ├── application.yaml │ │ │ ├── junit-platform.properties │ │ │ ├── testFiles │ │ │ ├── genericFile │ │ │ ├── originOfSpecies.txt │ │ │ ├── shakespeare.txt │ │ │ ├── test_image.bmp │ │ │ ├── test_image.gif │ │ │ ├── test_image.jpeg │ │ │ ├── test_image.png │ │ │ ├── test_image_big.png │ │ │ ├── test_image_big_tall.png │ │ │ └── test_image_proj.xcf │ │ │ ├── testcontainers.properties │ │ │ └── upgrading │ │ │ ├── 1 │ │ │ ├── InventoryItem │ │ │ │ ├── 1_amountList_1.json │ │ │ │ ├── 1_amountSimple_1.json │ │ │ │ └── tracked_1.json │ │ │ └── case.json │ │ │ ├── 2 │ │ │ ├── InteractingEntity │ │ │ │ ├── coreAPI.json │ │ │ │ ├── service.json │ │ │ │ └── user.json │ │ │ └── case.json │ │ │ ├── 3 │ │ │ ├── ItemCheckout │ │ │ │ ├── amount_checkedIn.json │ │ │ │ ├── amount_checkedInForExt.json │ │ │ │ ├── amount_checkedOut.json │ │ │ │ ├── amount_checkedOutForExt.json │ │ │ │ ├── tracked_checkedIn.json │ │ │ │ └── tracked_checkedOut.json │ │ │ └── case.json │ │ │ ├── 4 │ │ │ ├── HistoryEvent │ │ │ │ ├── checkin.json │ │ │ │ ├── checkout.json │ │ │ │ ├── create.json │ │ │ │ └── update.json │ │ │ └── case.json │ │ │ ├── 5 │ │ │ ├── Stored │ │ │ │ ├── amount_exp.json │ │ │ │ ├── amount_no_exp.json │ │ │ │ └── unique_exp.json │ │ │ └── case.json │ │ │ └── 6 │ │ │ ├── InventoryItem │ │ │ └── item.json │ │ │ ├── Stored │ │ │ └── stored.json │ │ │ └── case.json │ └── oqm-core-base-station │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.gradle │ │ ├── dev │ │ ├── developers.jpeg │ │ └── oqm-realm.json │ │ ├── docs │ │ ├── Releasing.md │ │ ├── img.png │ │ ├── img_1.png │ │ ├── img_2.png │ │ └── usersAndAuth.md │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── installerSrc │ │ ├── 20-baseStation.json │ │ ├── base-station-config.list │ │ ├── baseStationClient.json │ │ ├── core-base-station.svg │ │ ├── core-baseStation-proxy-config.json │ │ ├── installerProperties.json │ │ ├── oqm-base-station.desktop │ │ ├── oqm-core-base_station.service │ │ └── uiEntry.json │ │ ├── lombok.config │ │ ├── makeInstallers.sh │ │ ├── settings.gradle │ │ └── src │ │ ├── integrationTest │ │ ├── java │ │ │ └── tech │ │ │ │ └── ebp │ │ │ │ └── oqm │ │ │ │ └── core │ │ │ │ └── baseStation │ │ │ │ └── interfaces │ │ │ │ └── ui │ │ │ │ └── PageLookoverTestIT.java │ │ └── resources │ │ │ └── application.yaml │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── tech │ │ │ │ └── ebp │ │ │ │ └── oqm │ │ │ │ └── core │ │ │ │ └── baseStation │ │ │ │ ├── MyLivenessCheck.java │ │ │ │ ├── filters │ │ │ │ ├── LoggingFilter.java │ │ │ │ └── RedirectCheckPrefixFilter.java │ │ │ │ ├── interfaces │ │ │ │ ├── RestInterface.java │ │ │ │ ├── TestResource.java │ │ │ │ ├── rest │ │ │ │ │ ├── ApiProvider.java │ │ │ │ │ ├── BarcodeImageCreation.java │ │ │ │ │ ├── Printouts.java │ │ │ │ │ ├── RunByEndpoints.java │ │ │ │ │ ├── components │ │ │ │ │ │ ├── KeywordAtts.java │ │ │ │ │ │ ├── Test.java │ │ │ │ │ │ └── UnitInputs.java │ │ │ │ │ └── passthrough │ │ │ │ │ │ ├── ApiHealthCheckPassthrough.java │ │ │ │ │ │ ├── DbManagementPassthrough.java │ │ │ │ │ │ ├── FileAttachmentPassthrough.java │ │ │ │ │ │ ├── GeneralIdPassthrough.java │ │ │ │ │ │ ├── IdGeneratorPassthrough.java │ │ │ │ │ │ ├── ImagePassthrough.java │ │ │ │ │ │ ├── InteractingEntityPassthrough.java │ │ │ │ │ │ ├── PassthroughProvider.java │ │ │ │ │ │ ├── UniqueIdPassthrough.java │ │ │ │ │ │ ├── inventory │ │ │ │ │ │ ├── InvItemPassthrough.java │ │ │ │ │ │ ├── ItemCategoryPassthrough.java │ │ │ │ │ │ ├── ItemCheckoutPassthrough.java │ │ │ │ │ │ ├── ItemInBlockPassthrough.java │ │ │ │ │ │ ├── ItemStoredPassthrough.java │ │ │ │ │ │ ├── ItemTransactionPassthrough.java │ │ │ │ │ │ ├── ManagementPassthrough.java │ │ │ │ │ │ ├── StorageBlockPassthrough.java │ │ │ │ │ │ └── UnitsPassthrough.java │ │ │ │ │ │ └── plugins │ │ │ │ │ │ └── externalItemSearch │ │ │ │ │ │ └── ItemLookupRestInterface.java │ │ │ │ └── ui │ │ │ │ │ ├── js │ │ │ │ │ └── JsGetters.java │ │ │ │ │ ├── pageComponents │ │ │ │ │ ├── PageComponentProvider.java │ │ │ │ │ ├── StorageBlockPageComponents.java │ │ │ │ │ └── TransactionComponents.java │ │ │ │ │ └── pages │ │ │ │ │ ├── BarcodeUi.java │ │ │ │ │ ├── EntityViewUi.java │ │ │ │ │ ├── FileAttachmentsUi.java │ │ │ │ │ ├── HelpUi.java │ │ │ │ │ ├── IdGeneratorsUi.java │ │ │ │ │ ├── ImagesUi.java │ │ │ │ │ ├── IndexUi.java │ │ │ │ │ ├── InventoryAdminUi.java │ │ │ │ │ ├── InventoryItemUi.java │ │ │ │ │ ├── ItemCategoriesUi.java │ │ │ │ │ ├── ItemCheckoutUi.java │ │ │ │ │ ├── OverviewUi.java │ │ │ │ │ ├── StorageBlockUi.java │ │ │ │ │ ├── UiProvider.java │ │ │ │ │ └── YouUi.java │ │ │ │ ├── livecycle │ │ │ │ └── LifecycleBean.java │ │ │ │ ├── model │ │ │ │ ├── CodeImageType.java │ │ │ │ ├── ObjectCodeContentType.java │ │ │ │ ├── UserInfo.java │ │ │ │ ├── printouts │ │ │ │ │ ├── InventorySheetsOptions.java │ │ │ │ │ ├── PageOrientation.java │ │ │ │ │ └── PageSizeOption.java │ │ │ │ └── searchObjects │ │ │ │ │ └── ItemStoredTransactionDropdownQuery.java │ │ │ │ ├── service │ │ │ │ ├── BarcodeService.java │ │ │ │ ├── DateTimeService.java │ │ │ │ ├── EnumFormattingService.java │ │ │ │ ├── ExternalItemSearchClient.java │ │ │ │ ├── ItemStoredResultsQuteFunctions.java │ │ │ │ ├── JacksonHelpersService.java │ │ │ │ ├── TempFileService.java │ │ │ │ ├── modelTweak │ │ │ │ │ └── SearchResultTweak.java │ │ │ │ └── printout │ │ │ │ │ ├── PrintoutDataService.java │ │ │ │ │ ├── StorageBlockInventorySheetService.java │ │ │ │ │ └── reports │ │ │ │ │ └── ReportGenerator.java │ │ │ │ └── utils │ │ │ │ ├── JwtUtils.java │ │ │ │ ├── ObjectUtils.java │ │ │ │ ├── Roles.java │ │ │ │ └── Searches.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── beans.xml │ │ │ └── resources │ │ │ │ ├── favicon.ico │ │ │ │ ├── fonts │ │ │ │ ├── fonts.css │ │ │ │ ├── lato-italic-400-latin-ext.woff2 │ │ │ │ ├── lato-italic-400-latin.woff2 │ │ │ │ ├── lato-normal-400-latin-ext.woff2 │ │ │ │ ├── lato-normal-400-latin.woff2 │ │ │ │ ├── lato-normal-700-latin-ext.woff2 │ │ │ │ └── lato-normal-700-latin.woff2 │ │ │ │ ├── lib │ │ │ │ ├── Croppie-2.6.4 │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .github │ │ │ │ │ │ └── ISSUE_TEMPLATE.md │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── croppie.css │ │ │ │ │ ├── croppie.js │ │ │ │ │ ├── croppie.min.js │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── cat.jpg │ │ │ │ │ │ ├── demo-1.jpg │ │ │ │ │ │ ├── demo-2.jpg │ │ │ │ │ │ ├── demo-3.jpg │ │ │ │ │ │ ├── demo.css │ │ │ │ │ │ ├── demo.js │ │ │ │ │ │ ├── hero.png │ │ │ │ │ │ ├── prism.css │ │ │ │ │ │ └── prism.js │ │ │ │ │ ├── deploy.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── package-lock.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ │ └── unit │ │ │ │ │ │ ├── Croppie.js │ │ │ │ │ │ ├── mocha.opts │ │ │ │ │ │ └── stubs │ │ │ │ │ │ ├── DOMTokenList.js │ │ │ │ │ │ ├── EventTarget.js │ │ │ │ │ │ ├── HTMLElement.js │ │ │ │ │ │ ├── document.js │ │ │ │ │ │ └── window.js │ │ │ │ ├── bootstrap-icons │ │ │ │ │ └── 1.11.1 │ │ │ │ │ │ ├── 0-circle-fill.svg │ │ │ │ │ │ ├── 0-circle.svg │ │ │ │ │ │ ├── 0-square-fill.svg │ │ │ │ │ │ ├── 0-square.svg │ │ │ │ │ │ ├── 1-circle-fill.svg │ │ │ │ │ │ ├── 1-circle.svg │ │ │ │ │ │ ├── 1-square-fill.svg │ │ │ │ │ │ ├── 1-square.svg │ │ │ │ │ │ ├── 123.svg │ │ │ │ │ │ ├── 2-circle-fill.svg │ │ │ │ │ │ ├── 2-circle.svg │ │ │ │ │ │ ├── 2-square-fill.svg │ │ │ │ │ │ ├── 2-square.svg │ │ │ │ │ │ ├── 3-circle-fill.svg │ │ │ │ │ │ ├── 3-circle.svg │ │ │ │ │ │ ├── 3-square-fill.svg │ │ │ │ │ │ ├── 3-square.svg │ │ │ │ │ │ ├── 4-circle-fill.svg │ │ │ │ │ │ ├── 4-circle.svg │ │ │ │ │ │ ├── 4-square-fill.svg │ │ │ │ │ │ ├── 4-square.svg │ │ │ │ │ │ ├── 5-circle-fill.svg │ │ │ │ │ │ ├── 5-circle.svg │ │ │ │ │ │ ├── 5-square-fill.svg │ │ │ │ │ │ ├── 5-square.svg │ │ │ │ │ │ ├── 6-circle-fill.svg │ │ │ │ │ │ ├── 6-circle.svg │ │ │ │ │ │ ├── 6-square-fill.svg │ │ │ │ │ │ ├── 6-square.svg │ │ │ │ │ │ ├── 7-circle-fill.svg │ │ │ │ │ │ ├── 7-circle.svg │ │ │ │ │ │ ├── 7-square-fill.svg │ │ │ │ │ │ ├── 7-square.svg │ │ │ │ │ │ ├── 8-circle-fill.svg │ │ │ │ │ │ ├── 8-circle.svg │ │ │ │ │ │ ├── 8-square-fill.svg │ │ │ │ │ │ ├── 8-square.svg │ │ │ │ │ │ ├── 9-circle-fill.svg │ │ │ │ │ │ ├── 9-circle.svg │ │ │ │ │ │ ├── 9-square-fill.svg │ │ │ │ │ │ ├── 9-square.svg │ │ │ │ │ │ ├── activity.svg │ │ │ │ │ │ ├── airplane-engines-fill.svg │ │ │ │ │ │ ├── airplane-engines.svg │ │ │ │ │ │ ├── airplane-fill.svg │ │ │ │ │ │ ├── airplane.svg │ │ │ │ │ │ ├── alarm-fill.svg │ │ │ │ │ │ ├── alarm.svg │ │ │ │ │ │ ├── alexa.svg │ │ │ │ │ │ ├── align-bottom.svg │ │ │ │ │ │ ├── align-center.svg │ │ │ │ │ │ ├── align-end.svg │ │ │ │ │ │ ├── align-middle.svg │ │ │ │ │ │ ├── align-start.svg │ │ │ │ │ │ ├── align-top.svg │ │ │ │ │ │ ├── alipay.svg │ │ │ │ │ │ ├── alphabet-uppercase.svg │ │ │ │ │ │ ├── alphabet.svg │ │ │ │ │ │ ├── alt.svg │ │ │ │ │ │ ├── amazon.svg │ │ │ │ │ │ ├── amd.svg │ │ │ │ │ │ ├── android.svg │ │ │ │ │ │ ├── android2.svg │ │ │ │ │ │ ├── app-indicator.svg │ │ │ │ │ │ ├── app.svg │ │ │ │ │ │ ├── apple.svg │ │ │ │ │ │ ├── archive-fill.svg │ │ │ │ │ │ ├── archive.svg │ │ │ │ │ │ ├── arrow-90deg-down.svg │ │ │ │ │ │ ├── arrow-90deg-left.svg │ │ │ │ │ │ ├── arrow-90deg-right.svg │ │ │ │ │ │ ├── arrow-90deg-up.svg │ │ │ │ │ │ ├── arrow-bar-down.svg │ │ │ │ │ │ ├── arrow-bar-left.svg │ │ │ │ │ │ ├── arrow-bar-right.svg │ │ │ │ │ │ ├── arrow-bar-up.svg │ │ │ │ │ │ ├── arrow-clockwise.svg │ │ │ │ │ │ ├── arrow-counterclockwise.svg │ │ │ │ │ │ ├── arrow-down-circle-fill.svg │ │ │ │ │ │ ├── arrow-down-circle.svg │ │ │ │ │ │ ├── arrow-down-left-circle-fill.svg │ │ │ │ │ │ ├── arrow-down-left-circle.svg │ │ │ │ │ │ ├── arrow-down-left-square-fill.svg │ │ │ │ │ │ ├── arrow-down-left-square.svg │ │ │ │ │ │ ├── arrow-down-left.svg │ │ │ │ │ │ ├── arrow-down-right-circle-fill.svg │ │ │ │ │ │ ├── arrow-down-right-circle.svg │ │ │ │ │ │ ├── arrow-down-right-square-fill.svg │ │ │ │ │ │ ├── arrow-down-right-square.svg │ │ │ │ │ │ ├── arrow-down-right.svg │ │ │ │ │ │ ├── arrow-down-short.svg │ │ │ │ │ │ ├── arrow-down-square-fill.svg │ │ │ │ │ │ ├── arrow-down-square.svg │ │ │ │ │ │ ├── arrow-down-up.svg │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ ├── arrow-left-circle-fill.svg │ │ │ │ │ │ ├── arrow-left-circle.svg │ │ │ │ │ │ ├── arrow-left-right.svg │ │ │ │ │ │ ├── arrow-left-short.svg │ │ │ │ │ │ ├── arrow-left-square-fill.svg │ │ │ │ │ │ ├── arrow-left-square.svg │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ ├── arrow-repeat.svg │ │ │ │ │ │ ├── arrow-return-left.svg │ │ │ │ │ │ ├── arrow-return-right.svg │ │ │ │ │ │ ├── arrow-right-circle-fill.svg │ │ │ │ │ │ ├── arrow-right-circle.svg │ │ │ │ │ │ ├── arrow-right-short.svg │ │ │ │ │ │ ├── arrow-right-square-fill.svg │ │ │ │ │ │ ├── arrow-right-square.svg │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ ├── arrow-through-heart-fill.svg │ │ │ │ │ │ ├── arrow-through-heart.svg │ │ │ │ │ │ ├── arrow-up-circle-fill.svg │ │ │ │ │ │ ├── arrow-up-circle.svg │ │ │ │ │ │ ├── arrow-up-left-circle-fill.svg │ │ │ │ │ │ ├── arrow-up-left-circle.svg │ │ │ │ │ │ ├── arrow-up-left-square-fill.svg │ │ │ │ │ │ ├── arrow-up-left-square.svg │ │ │ │ │ │ ├── arrow-up-left.svg │ │ │ │ │ │ ├── arrow-up-right-circle-fill.svg │ │ │ │ │ │ ├── arrow-up-right-circle.svg │ │ │ │ │ │ ├── arrow-up-right-square-fill.svg │ │ │ │ │ │ ├── arrow-up-right-square.svg │ │ │ │ │ │ ├── arrow-up-right.svg │ │ │ │ │ │ ├── arrow-up-short.svg │ │ │ │ │ │ ├── arrow-up-square-fill.svg │ │ │ │ │ │ ├── arrow-up-square.svg │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ ├── arrows-angle-contract.svg │ │ │ │ │ │ ├── arrows-angle-expand.svg │ │ │ │ │ │ ├── arrows-collapse-vertical.svg │ │ │ │ │ │ ├── arrows-collapse.svg │ │ │ │ │ │ ├── arrows-expand-vertical.svg │ │ │ │ │ │ ├── arrows-expand.svg │ │ │ │ │ │ ├── arrows-fullscreen.svg │ │ │ │ │ │ ├── arrows-move.svg │ │ │ │ │ │ ├── arrows-vertical.svg │ │ │ │ │ │ ├── arrows.svg │ │ │ │ │ │ ├── aspect-ratio-fill.svg │ │ │ │ │ │ ├── aspect-ratio.svg │ │ │ │ │ │ ├── asterisk.svg │ │ │ │ │ │ ├── at.svg │ │ │ │ │ │ ├── award-fill.svg │ │ │ │ │ │ ├── award.svg │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ ├── backpack-fill.svg │ │ │ │ │ │ ├── backpack.svg │ │ │ │ │ │ ├── backpack2-fill.svg │ │ │ │ │ │ ├── backpack2.svg │ │ │ │ │ │ ├── backpack3-fill.svg │ │ │ │ │ │ ├── backpack3.svg │ │ │ │ │ │ ├── backpack4-fill.svg │ │ │ │ │ │ ├── backpack4.svg │ │ │ │ │ │ ├── backspace-fill.svg │ │ │ │ │ │ ├── backspace-reverse-fill.svg │ │ │ │ │ │ ├── backspace-reverse.svg │ │ │ │ │ │ ├── backspace.svg │ │ │ │ │ │ ├── badge-3d-fill.svg │ │ │ │ │ │ ├── badge-3d.svg │ │ │ │ │ │ ├── badge-4k-fill.svg │ │ │ │ │ │ ├── badge-4k.svg │ │ │ │ │ │ ├── badge-8k-fill.svg │ │ │ │ │ │ ├── badge-8k.svg │ │ │ │ │ │ ├── badge-ad-fill.svg │ │ │ │ │ │ ├── badge-ad.svg │ │ │ │ │ │ ├── badge-ar-fill.svg │ │ │ │ │ │ ├── badge-ar.svg │ │ │ │ │ │ ├── badge-cc-fill.svg │ │ │ │ │ │ ├── badge-cc.svg │ │ │ │ │ │ ├── badge-hd-fill.svg │ │ │ │ │ │ ├── badge-hd.svg │ │ │ │ │ │ ├── badge-sd-fill.svg │ │ │ │ │ │ ├── badge-sd.svg │ │ │ │ │ │ ├── badge-tm-fill.svg │ │ │ │ │ │ ├── badge-tm.svg │ │ │ │ │ │ ├── badge-vo-fill.svg │ │ │ │ │ │ ├── badge-vo.svg │ │ │ │ │ │ ├── badge-vr-fill.svg │ │ │ │ │ │ ├── badge-vr.svg │ │ │ │ │ │ ├── badge-wc-fill.svg │ │ │ │ │ │ ├── badge-wc.svg │ │ │ │ │ │ ├── bag-check-fill.svg │ │ │ │ │ │ ├── bag-check.svg │ │ │ │ │ │ ├── bag-dash-fill.svg │ │ │ │ │ │ ├── bag-dash.svg │ │ │ │ │ │ ├── bag-fill.svg │ │ │ │ │ │ ├── bag-heart-fill.svg │ │ │ │ │ │ ├── bag-heart.svg │ │ │ │ │ │ ├── bag-plus-fill.svg │ │ │ │ │ │ ├── bag-plus.svg │ │ │ │ │ │ ├── bag-x-fill.svg │ │ │ │ │ │ ├── bag-x.svg │ │ │ │ │ │ ├── bag.svg │ │ │ │ │ │ ├── balloon-fill.svg │ │ │ │ │ │ ├── balloon-heart-fill.svg │ │ │ │ │ │ ├── balloon-heart.svg │ │ │ │ │ │ ├── balloon.svg │ │ │ │ │ │ ├── ban-fill.svg │ │ │ │ │ │ ├── ban.svg │ │ │ │ │ │ ├── bandaid-fill.svg │ │ │ │ │ │ ├── bandaid.svg │ │ │ │ │ │ ├── bank.svg │ │ │ │ │ │ ├── bank2.svg │ │ │ │ │ │ ├── bar-chart-fill.svg │ │ │ │ │ │ ├── bar-chart-line-fill.svg │ │ │ │ │ │ ├── bar-chart-line.svg │ │ │ │ │ │ ├── bar-chart-steps.svg │ │ │ │ │ │ ├── bar-chart.svg │ │ │ │ │ │ ├── basket-fill.svg │ │ │ │ │ │ ├── basket.svg │ │ │ │ │ │ ├── basket2-fill.svg │ │ │ │ │ │ ├── basket2.svg │ │ │ │ │ │ ├── basket3-fill.svg │ │ │ │ │ │ ├── basket3.svg │ │ │ │ │ │ ├── battery-charging.svg │ │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ │ ├── battery.svg │ │ │ │ │ │ ├── behance.svg │ │ │ │ │ │ ├── bell-fill.svg │ │ │ │ │ │ ├── bell-slash-fill.svg │ │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ │ ├── bell.svg │ │ │ │ │ │ ├── bezier.svg │ │ │ │ │ │ ├── bezier2.svg │ │ │ │ │ │ ├── bicycle.svg │ │ │ │ │ │ ├── bing.svg │ │ │ │ │ │ ├── binoculars-fill.svg │ │ │ │ │ │ ├── binoculars.svg │ │ │ │ │ │ ├── blockquote-left.svg │ │ │ │ │ │ ├── blockquote-right.svg │ │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ │ ├── body-text.svg │ │ │ │ │ │ ├── book-fill.svg │ │ │ │ │ │ ├── book-half.svg │ │ │ │ │ │ ├── book.svg │ │ │ │ │ │ ├── bookmark-check-fill.svg │ │ │ │ │ │ ├── bookmark-check.svg │ │ │ │ │ │ ├── bookmark-dash-fill.svg │ │ │ │ │ │ ├── bookmark-dash.svg │ │ │ │ │ │ ├── bookmark-fill.svg │ │ │ │ │ │ ├── bookmark-heart-fill.svg │ │ │ │ │ │ ├── bookmark-heart.svg │ │ │ │ │ │ ├── bookmark-plus-fill.svg │ │ │ │ │ │ ├── bookmark-plus.svg │ │ │ │ │ │ ├── bookmark-star-fill.svg │ │ │ │ │ │ ├── bookmark-star.svg │ │ │ │ │ │ ├── bookmark-x-fill.svg │ │ │ │ │ │ ├── bookmark-x.svg │ │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ │ ├── bookmarks-fill.svg │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ ├── bookshelf.svg │ │ │ │ │ │ ├── boombox-fill.svg │ │ │ │ │ │ ├── boombox.svg │ │ │ │ │ │ ├── bootstrap-fill.svg │ │ │ │ │ │ ├── bootstrap-icons.css │ │ │ │ │ │ ├── bootstrap-icons.json │ │ │ │ │ │ ├── bootstrap-icons.min.css │ │ │ │ │ │ ├── bootstrap-icons.scss │ │ │ │ │ │ ├── bootstrap-icons.svg │ │ │ │ │ │ ├── bootstrap-reboot.svg │ │ │ │ │ │ ├── bootstrap.svg │ │ │ │ │ │ ├── border-all.svg │ │ │ │ │ │ ├── border-bottom.svg │ │ │ │ │ │ ├── border-center.svg │ │ │ │ │ │ ├── border-inner.svg │ │ │ │ │ │ ├── border-left.svg │ │ │ │ │ │ ├── border-middle.svg │ │ │ │ │ │ ├── border-outer.svg │ │ │ │ │ │ ├── border-right.svg │ │ │ │ │ │ ├── border-style.svg │ │ │ │ │ │ ├── border-top.svg │ │ │ │ │ │ ├── border-width.svg │ │ │ │ │ │ ├── border.svg │ │ │ │ │ │ ├── bounding-box-circles.svg │ │ │ │ │ │ ├── bounding-box.svg │ │ │ │ │ │ ├── box-arrow-down-left.svg │ │ │ │ │ │ ├── box-arrow-down-right.svg │ │ │ │ │ │ ├── box-arrow-down.svg │ │ │ │ │ │ ├── box-arrow-in-down-left.svg │ │ │ │ │ │ ├── box-arrow-in-down-right.svg │ │ │ │ │ │ ├── box-arrow-in-down.svg │ │ │ │ │ │ ├── box-arrow-in-left.svg │ │ │ │ │ │ ├── box-arrow-in-right.svg │ │ │ │ │ │ ├── box-arrow-in-up-left.svg │ │ │ │ │ │ ├── box-arrow-in-up-right.svg │ │ │ │ │ │ ├── box-arrow-in-up.svg │ │ │ │ │ │ ├── box-arrow-left.svg │ │ │ │ │ │ ├── box-arrow-right.svg │ │ │ │ │ │ ├── box-arrow-up-left.svg │ │ │ │ │ │ ├── box-arrow-up-right.svg │ │ │ │ │ │ ├── box-arrow-up.svg │ │ │ │ │ │ ├── box-fill.svg │ │ │ │ │ │ ├── box-seam-fill.svg │ │ │ │ │ │ ├── box-seam.svg │ │ │ │ │ │ ├── box.svg │ │ │ │ │ │ ├── box2-fill.svg │ │ │ │ │ │ ├── box2-heart-fill.svg │ │ │ │ │ │ ├── box2-heart.svg │ │ │ │ │ │ ├── box2.svg │ │ │ │ │ │ ├── boxes.svg │ │ │ │ │ │ ├── braces-asterisk.svg │ │ │ │ │ │ ├── braces.svg │ │ │ │ │ │ ├── bricks.svg │ │ │ │ │ │ ├── briefcase-fill.svg │ │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ │ ├── brightness-alt-high-fill.svg │ │ │ │ │ │ ├── brightness-alt-high.svg │ │ │ │ │ │ ├── brightness-alt-low-fill.svg │ │ │ │ │ │ ├── brightness-alt-low.svg │ │ │ │ │ │ ├── brightness-high-fill.svg │ │ │ │ │ │ ├── brightness-high.svg │ │ │ │ │ │ ├── brightness-low-fill.svg │ │ │ │ │ │ ├── brightness-low.svg │ │ │ │ │ │ ├── brilliance.svg │ │ │ │ │ │ ├── broadcast-pin.svg │ │ │ │ │ │ ├── broadcast.svg │ │ │ │ │ │ ├── browser-chrome.svg │ │ │ │ │ │ ├── browser-edge.svg │ │ │ │ │ │ ├── browser-firefox.svg │ │ │ │ │ │ ├── browser-safari.svg │ │ │ │ │ │ ├── brush-fill.svg │ │ │ │ │ │ ├── brush.svg │ │ │ │ │ │ ├── bucket-fill.svg │ │ │ │ │ │ ├── bucket.svg │ │ │ │ │ │ ├── bug-fill.svg │ │ │ │ │ │ ├── bug.svg │ │ │ │ │ │ ├── building-add.svg │ │ │ │ │ │ ├── building-check.svg │ │ │ │ │ │ ├── building-dash.svg │ │ │ │ │ │ ├── building-down.svg │ │ │ │ │ │ ├── building-exclamation.svg │ │ │ │ │ │ ├── building-fill-add.svg │ │ │ │ │ │ ├── building-fill-check.svg │ │ │ │ │ │ ├── building-fill-dash.svg │ │ │ │ │ │ ├── building-fill-down.svg │ │ │ │ │ │ ├── building-fill-exclamation.svg │ │ │ │ │ │ ├── building-fill-gear.svg │ │ │ │ │ │ ├── building-fill-lock.svg │ │ │ │ │ │ ├── building-fill-slash.svg │ │ │ │ │ │ ├── building-fill-up.svg │ │ │ │ │ │ ├── building-fill-x.svg │ │ │ │ │ │ ├── building-fill.svg │ │ │ │ │ │ ├── building-gear.svg │ │ │ │ │ │ ├── building-lock.svg │ │ │ │ │ │ ├── building-slash.svg │ │ │ │ │ │ ├── building-up.svg │ │ │ │ │ │ ├── building-x.svg │ │ │ │ │ │ ├── building.svg │ │ │ │ │ │ ├── buildings-fill.svg │ │ │ │ │ │ ├── buildings.svg │ │ │ │ │ │ ├── bullseye.svg │ │ │ │ │ │ ├── bus-front-fill.svg │ │ │ │ │ │ ├── bus-front.svg │ │ │ │ │ │ ├── c-circle-fill.svg │ │ │ │ │ │ ├── c-circle.svg │ │ │ │ │ │ ├── c-square-fill.svg │ │ │ │ │ │ ├── c-square.svg │ │ │ │ │ │ ├── cake-fill.svg │ │ │ │ │ │ ├── cake.svg │ │ │ │ │ │ ├── cake2-fill.svg │ │ │ │ │ │ ├── cake2.svg │ │ │ │ │ │ ├── calculator-fill.svg │ │ │ │ │ │ ├── calculator.svg │ │ │ │ │ │ ├── calendar-check-fill.svg │ │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ │ ├── calendar-date-fill.svg │ │ │ │ │ │ ├── calendar-date.svg │ │ │ │ │ │ ├── calendar-day-fill.svg │ │ │ │ │ │ ├── calendar-day.svg │ │ │ │ │ │ ├── calendar-event-fill.svg │ │ │ │ │ │ ├── calendar-event.svg │ │ │ │ │ │ ├── calendar-fill.svg │ │ │ │ │ │ ├── calendar-heart-fill.svg │ │ │ │ │ │ ├── calendar-heart.svg │ │ │ │ │ │ ├── calendar-minus-fill.svg │ │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ │ ├── calendar-month-fill.svg │ │ │ │ │ │ ├── calendar-month.svg │ │ │ │ │ │ ├── calendar-plus-fill.svg │ │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ │ ├── calendar-range-fill.svg │ │ │ │ │ │ ├── calendar-range.svg │ │ │ │ │ │ ├── calendar-week-fill.svg │ │ │ │ │ │ ├── calendar-week.svg │ │ │ │ │ │ ├── calendar-x-fill.svg │ │ │ │ │ │ ├── calendar-x.svg │ │ │ │ │ │ ├── calendar.svg │ │ │ │ │ │ ├── calendar2-check-fill.svg │ │ │ │ │ │ ├── calendar2-check.svg │ │ │ │ │ │ ├── calendar2-date-fill.svg │ │ │ │ │ │ ├── calendar2-date.svg │ │ │ │ │ │ ├── calendar2-day-fill.svg │ │ │ │ │ │ ├── calendar2-day.svg │ │ │ │ │ │ ├── calendar2-event-fill.svg │ │ │ │ │ │ ├── calendar2-event.svg │ │ │ │ │ │ ├── calendar2-fill.svg │ │ │ │ │ │ ├── calendar2-heart-fill.svg │ │ │ │ │ │ ├── calendar2-heart.svg │ │ │ │ │ │ ├── calendar2-minus-fill.svg │ │ │ │ │ │ ├── calendar2-minus.svg │ │ │ │ │ │ ├── calendar2-month-fill.svg │ │ │ │ │ │ ├── calendar2-month.svg │ │ │ │ │ │ ├── calendar2-plus-fill.svg │ │ │ │ │ │ ├── calendar2-plus.svg │ │ │ │ │ │ ├── calendar2-range-fill.svg │ │ │ │ │ │ ├── calendar2-range.svg │ │ │ │ │ │ ├── calendar2-week-fill.svg │ │ │ │ │ │ ├── calendar2-week.svg │ │ │ │ │ │ ├── calendar2-x-fill.svg │ │ │ │ │ │ ├── calendar2-x.svg │ │ │ │ │ │ ├── calendar2.svg │ │ │ │ │ │ ├── calendar3-event-fill.svg │ │ │ │ │ │ ├── calendar3-event.svg │ │ │ │ │ │ ├── calendar3-fill.svg │ │ │ │ │ │ ├── calendar3-range-fill.svg │ │ │ │ │ │ ├── calendar3-range.svg │ │ │ │ │ │ ├── calendar3-week-fill.svg │ │ │ │ │ │ ├── calendar3-week.svg │ │ │ │ │ │ ├── calendar3.svg │ │ │ │ │ │ ├── calendar4-event.svg │ │ │ │ │ │ ├── calendar4-range.svg │ │ │ │ │ │ ├── calendar4-week.svg │ │ │ │ │ │ ├── calendar4.svg │ │ │ │ │ │ ├── camera-fill.svg │ │ │ │ │ │ ├── camera-reels-fill.svg │ │ │ │ │ │ ├── camera-reels.svg │ │ │ │ │ │ ├── camera-video-fill.svg │ │ │ │ │ │ ├── camera-video-off-fill.svg │ │ │ │ │ │ ├── camera-video-off.svg │ │ │ │ │ │ ├── camera-video.svg │ │ │ │ │ │ ├── camera.svg │ │ │ │ │ │ ├── camera2.svg │ │ │ │ │ │ ├── capslock-fill.svg │ │ │ │ │ │ ├── capslock.svg │ │ │ │ │ │ ├── capsule-pill.svg │ │ │ │ │ │ ├── capsule.svg │ │ │ │ │ │ ├── car-front-fill.svg │ │ │ │ │ │ ├── car-front.svg │ │ │ │ │ │ ├── card-checklist.svg │ │ │ │ │ │ ├── card-heading.svg │ │ │ │ │ │ ├── card-image.svg │ │ │ │ │ │ ├── card-list.svg │ │ │ │ │ │ ├── card-text.svg │ │ │ │ │ │ ├── caret-down-fill.svg │ │ │ │ │ │ ├── caret-down-square-fill.svg │ │ │ │ │ │ ├── caret-down-square.svg │ │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ │ ├── caret-left-fill.svg │ │ │ │ │ │ ├── caret-left-square-fill.svg │ │ │ │ │ │ ├── caret-left-square.svg │ │ │ │ │ │ ├── caret-left.svg │ │ │ │ │ │ ├── caret-right-fill.svg │ │ │ │ │ │ ├── caret-right-square-fill.svg │ │ │ │ │ │ ├── caret-right-square.svg │ │ │ │ │ │ ├── caret-right.svg │ │ │ │ │ │ ├── caret-up-fill.svg │ │ │ │ │ │ ├── caret-up-square-fill.svg │ │ │ │ │ │ ├── caret-up-square.svg │ │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ │ ├── cart-check-fill.svg │ │ │ │ │ │ ├── cart-check.svg │ │ │ │ │ │ ├── cart-dash-fill.svg │ │ │ │ │ │ ├── cart-dash.svg │ │ │ │ │ │ ├── cart-fill.svg │ │ │ │ │ │ ├── cart-plus-fill.svg │ │ │ │ │ │ ├── cart-plus.svg │ │ │ │ │ │ ├── cart-x-fill.svg │ │ │ │ │ │ ├── cart-x.svg │ │ │ │ │ │ ├── cart.svg │ │ │ │ │ │ ├── cart2.svg │ │ │ │ │ │ ├── cart3.svg │ │ │ │ │ │ ├── cart4.svg │ │ │ │ │ │ ├── cash-coin.svg │ │ │ │ │ │ ├── cash-stack.svg │ │ │ │ │ │ ├── cash.svg │ │ │ │ │ │ ├── cassette-fill.svg │ │ │ │ │ │ ├── cassette.svg │ │ │ │ │ │ ├── cast.svg │ │ │ │ │ │ ├── cc-circle-fill.svg │ │ │ │ │ │ ├── cc-circle.svg │ │ │ │ │ │ ├── cc-square-fill.svg │ │ │ │ │ │ ├── cc-square.svg │ │ │ │ │ │ ├── chat-dots-fill.svg │ │ │ │ │ │ ├── chat-dots.svg │ │ │ │ │ │ ├── chat-fill.svg │ │ │ │ │ │ ├── chat-heart-fill.svg │ │ │ │ │ │ ├── chat-heart.svg │ │ │ │ │ │ ├── chat-left-dots-fill.svg │ │ │ │ │ │ ├── chat-left-dots.svg │ │ │ │ │ │ ├── chat-left-fill.svg │ │ │ │ │ │ ├── chat-left-heart-fill.svg │ │ │ │ │ │ ├── chat-left-heart.svg │ │ │ │ │ │ ├── chat-left-quote-fill.svg │ │ │ │ │ │ ├── chat-left-quote.svg │ │ │ │ │ │ ├── chat-left-text-fill.svg │ │ │ │ │ │ ├── chat-left-text.svg │ │ │ │ │ │ ├── chat-left.svg │ │ │ │ │ │ ├── chat-quote-fill.svg │ │ │ │ │ │ ├── chat-quote.svg │ │ │ │ │ │ ├── chat-right-dots-fill.svg │ │ │ │ │ │ ├── chat-right-dots.svg │ │ │ │ │ │ ├── chat-right-fill.svg │ │ │ │ │ │ ├── chat-right-heart-fill.svg │ │ │ │ │ │ ├── chat-right-heart.svg │ │ │ │ │ │ ├── chat-right-quote-fill.svg │ │ │ │ │ │ ├── chat-right-quote.svg │ │ │ │ │ │ ├── chat-right-text-fill.svg │ │ │ │ │ │ ├── chat-right-text.svg │ │ │ │ │ │ ├── chat-right.svg │ │ │ │ │ │ ├── chat-square-dots-fill.svg │ │ │ │ │ │ ├── chat-square-dots.svg │ │ │ │ │ │ ├── chat-square-fill.svg │ │ │ │ │ │ ├── chat-square-heart-fill.svg │ │ │ │ │ │ ├── chat-square-heart.svg │ │ │ │ │ │ ├── chat-square-quote-fill.svg │ │ │ │ │ │ ├── chat-square-quote.svg │ │ │ │ │ │ ├── chat-square-text-fill.svg │ │ │ │ │ │ ├── chat-square-text.svg │ │ │ │ │ │ ├── chat-square.svg │ │ │ │ │ │ ├── chat-text-fill.svg │ │ │ │ │ │ ├── chat-text.svg │ │ │ │ │ │ ├── chat.svg │ │ │ │ │ │ ├── check-all.svg │ │ │ │ │ │ ├── check-circle-fill.svg │ │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ │ ├── check-lg.svg │ │ │ │ │ │ ├── check-square-fill.svg │ │ │ │ │ │ ├── check-square.svg │ │ │ │ │ │ ├── check.svg │ │ │ │ │ │ ├── check2-all.svg │ │ │ │ │ │ ├── check2-circle.svg │ │ │ │ │ │ ├── check2-square.svg │ │ │ │ │ │ ├── check2.svg │ │ │ │ │ │ ├── chevron-bar-contract.svg │ │ │ │ │ │ ├── chevron-bar-down.svg │ │ │ │ │ │ ├── chevron-bar-expand.svg │ │ │ │ │ │ ├── chevron-bar-left.svg │ │ │ │ │ │ ├── chevron-bar-right.svg │ │ │ │ │ │ ├── chevron-bar-up.svg │ │ │ │ │ │ ├── chevron-compact-down.svg │ │ │ │ │ │ ├── chevron-compact-left.svg │ │ │ │ │ │ ├── chevron-compact-right.svg │ │ │ │ │ │ ├── chevron-compact-up.svg │ │ │ │ │ │ ├── chevron-contract.svg │ │ │ │ │ │ ├── chevron-double-down.svg │ │ │ │ │ │ ├── chevron-double-left.svg │ │ │ │ │ │ ├── chevron-double-right.svg │ │ │ │ │ │ ├── chevron-double-up.svg │ │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ │ ├── chevron-expand.svg │ │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ │ ├── circle-fill.svg │ │ │ │ │ │ ├── circle-half.svg │ │ │ │ │ │ ├── circle-square.svg │ │ │ │ │ │ ├── circle.svg │ │ │ │ │ │ ├── clipboard-check-fill.svg │ │ │ │ │ │ ├── clipboard-check.svg │ │ │ │ │ │ ├── clipboard-data-fill.svg │ │ │ │ │ │ ├── clipboard-data.svg │ │ │ │ │ │ ├── clipboard-fill.svg │ │ │ │ │ │ ├── clipboard-heart-fill.svg │ │ │ │ │ │ ├── clipboard-heart.svg │ │ │ │ │ │ ├── clipboard-minus-fill.svg │ │ │ │ │ │ ├── clipboard-minus.svg │ │ │ │ │ │ ├── clipboard-plus-fill.svg │ │ │ │ │ │ ├── clipboard-plus.svg │ │ │ │ │ │ ├── clipboard-pulse.svg │ │ │ │ │ │ ├── clipboard-x-fill.svg │ │ │ │ │ │ ├── clipboard-x.svg │ │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ │ ├── clipboard2-check-fill.svg │ │ │ │ │ │ ├── clipboard2-check.svg │ │ │ │ │ │ ├── clipboard2-data-fill.svg │ │ │ │ │ │ ├── clipboard2-data.svg │ │ │ │ │ │ ├── clipboard2-fill.svg │ │ │ │ │ │ ├── clipboard2-heart-fill.svg │ │ │ │ │ │ ├── clipboard2-heart.svg │ │ │ │ │ │ ├── clipboard2-minus-fill.svg │ │ │ │ │ │ ├── clipboard2-minus.svg │ │ │ │ │ │ ├── clipboard2-plus-fill.svg │ │ │ │ │ │ ├── clipboard2-plus.svg │ │ │ │ │ │ ├── clipboard2-pulse-fill.svg │ │ │ │ │ │ ├── clipboard2-pulse.svg │ │ │ │ │ │ ├── clipboard2-x-fill.svg │ │ │ │ │ │ ├── clipboard2-x.svg │ │ │ │ │ │ ├── clipboard2.svg │ │ │ │ │ │ ├── clock-fill.svg │ │ │ │ │ │ ├── clock-history.svg │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ ├── cloud-arrow-down-fill.svg │ │ │ │ │ │ ├── cloud-arrow-down.svg │ │ │ │ │ │ ├── cloud-arrow-up-fill.svg │ │ │ │ │ │ ├── cloud-arrow-up.svg │ │ │ │ │ │ ├── cloud-check-fill.svg │ │ │ │ │ │ ├── cloud-check.svg │ │ │ │ │ │ ├── cloud-download-fill.svg │ │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ │ ├── cloud-drizzle-fill.svg │ │ │ │ │ │ ├── cloud-drizzle.svg │ │ │ │ │ │ ├── cloud-fill.svg │ │ │ │ │ │ ├── cloud-fog-fill.svg │ │ │ │ │ │ ├── cloud-fog.svg │ │ │ │ │ │ ├── cloud-fog2-fill.svg │ │ │ │ │ │ ├── cloud-fog2.svg │ │ │ │ │ │ ├── cloud-hail-fill.svg │ │ │ │ │ │ ├── cloud-hail.svg │ │ │ │ │ │ ├── cloud-haze-fill.svg │ │ │ │ │ │ ├── cloud-haze.svg │ │ │ │ │ │ ├── cloud-haze2-fill.svg │ │ │ │ │ │ ├── cloud-haze2.svg │ │ │ │ │ │ ├── cloud-lightning-fill.svg │ │ │ │ │ │ ├── cloud-lightning-rain-fill.svg │ │ │ │ │ │ ├── cloud-lightning-rain.svg │ │ │ │ │ │ ├── cloud-lightning.svg │ │ │ │ │ │ ├── cloud-minus-fill.svg │ │ │ │ │ │ ├── cloud-minus.svg │ │ │ │ │ │ ├── cloud-moon-fill.svg │ │ │ │ │ │ ├── cloud-moon.svg │ │ │ │ │ │ ├── cloud-plus-fill.svg │ │ │ │ │ │ ├── cloud-plus.svg │ │ │ │ │ │ ├── cloud-rain-fill.svg │ │ │ │ │ │ ├── cloud-rain-heavy-fill.svg │ │ │ │ │ │ ├── cloud-rain-heavy.svg │ │ │ │ │ │ ├── cloud-rain.svg │ │ │ │ │ │ ├── cloud-slash-fill.svg │ │ │ │ │ │ ├── cloud-slash.svg │ │ │ │ │ │ ├── cloud-sleet-fill.svg │ │ │ │ │ │ ├── cloud-sleet.svg │ │ │ │ │ │ ├── cloud-snow-fill.svg │ │ │ │ │ │ ├── cloud-snow.svg │ │ │ │ │ │ ├── cloud-sun-fill.svg │ │ │ │ │ │ ├── cloud-sun.svg │ │ │ │ │ │ ├── cloud-upload-fill.svg │ │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ │ ├── cloud.svg │ │ │ │ │ │ ├── clouds-fill.svg │ │ │ │ │ │ ├── clouds.svg │ │ │ │ │ │ ├── cloudy-fill.svg │ │ │ │ │ │ ├── cloudy.svg │ │ │ │ │ │ ├── code-slash.svg │ │ │ │ │ │ ├── code-square.svg │ │ │ │ │ │ ├── code.svg │ │ │ │ │ │ ├── coin.svg │ │ │ │ │ │ ├── collection-fill.svg │ │ │ │ │ │ ├── collection-play-fill.svg │ │ │ │ │ │ ├── collection-play.svg │ │ │ │ │ │ ├── collection.svg │ │ │ │ │ │ ├── columns-gap.svg │ │ │ │ │ │ ├── columns.svg │ │ │ │ │ │ ├── command.svg │ │ │ │ │ │ ├── compass-fill.svg │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ ├── cone-striped.svg │ │ │ │ │ │ ├── cone.svg │ │ │ │ │ │ ├── controller.svg │ │ │ │ │ │ ├── cookie.svg │ │ │ │ │ │ ├── copy.svg │ │ │ │ │ │ ├── cpu-fill.svg │ │ │ │ │ │ ├── cpu.svg │ │ │ │ │ │ ├── credit-card-2-back-fill.svg │ │ │ │ │ │ ├── credit-card-2-back.svg │ │ │ │ │ │ ├── credit-card-2-front-fill.svg │ │ │ │ │ │ ├── credit-card-2-front.svg │ │ │ │ │ │ ├── credit-card-fill.svg │ │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ │ ├── crop.svg │ │ │ │ │ │ ├── crosshair.svg │ │ │ │ │ │ ├── crosshair2.svg │ │ │ │ │ │ ├── cup-fill.svg │ │ │ │ │ │ ├── cup-hot-fill.svg │ │ │ │ │ │ ├── cup-hot.svg │ │ │ │ │ │ ├── cup-straw.svg │ │ │ │ │ │ ├── cup.svg │ │ │ │ │ │ ├── currency-bitcoin.svg │ │ │ │ │ │ ├── currency-dollar.svg │ │ │ │ │ │ ├── currency-euro.svg │ │ │ │ │ │ ├── currency-exchange.svg │ │ │ │ │ │ ├── currency-pound.svg │ │ │ │ │ │ ├── currency-rupee.svg │ │ │ │ │ │ ├── currency-yen.svg │ │ │ │ │ │ ├── cursor-fill.svg │ │ │ │ │ │ ├── cursor-text.svg │ │ │ │ │ │ ├── cursor.svg │ │ │ │ │ │ ├── dash-circle-dotted.svg │ │ │ │ │ │ ├── dash-circle-fill.svg │ │ │ │ │ │ ├── dash-circle.svg │ │ │ │ │ │ ├── dash-lg.svg │ │ │ │ │ │ ├── dash-square-dotted.svg │ │ │ │ │ │ ├── dash-square-fill.svg │ │ │ │ │ │ ├── dash-square.svg │ │ │ │ │ │ ├── dash.svg │ │ │ │ │ │ ├── database-add.svg │ │ │ │ │ │ ├── database-check.svg │ │ │ │ │ │ ├── database-dash.svg │ │ │ │ │ │ ├── database-down.svg │ │ │ │ │ │ ├── database-exclamation.svg │ │ │ │ │ │ ├── database-fill-add.svg │ │ │ │ │ │ ├── database-fill-check.svg │ │ │ │ │ │ ├── database-fill-dash.svg │ │ │ │ │ │ ├── database-fill-down.svg │ │ │ │ │ │ ├── database-fill-exclamation.svg │ │ │ │ │ │ ├── database-fill-gear.svg │ │ │ │ │ │ ├── database-fill-lock.svg │ │ │ │ │ │ ├── database-fill-slash.svg │ │ │ │ │ │ ├── database-fill-up.svg │ │ │ │ │ │ ├── database-fill-x.svg │ │ │ │ │ │ ├── database-fill.svg │ │ │ │ │ │ ├── database-gear.svg │ │ │ │ │ │ ├── database-lock.svg │ │ │ │ │ │ ├── database-slash.svg │ │ │ │ │ │ ├── database-up.svg │ │ │ │ │ │ ├── database-x.svg │ │ │ │ │ │ ├── database.svg │ │ │ │ │ │ ├── device-hdd-fill.svg │ │ │ │ │ │ ├── device-hdd.svg │ │ │ │ │ │ ├── device-ssd-fill.svg │ │ │ │ │ │ ├── device-ssd.svg │ │ │ │ │ │ ├── diagram-2-fill.svg │ │ │ │ │ │ ├── diagram-2.svg │ │ │ │ │ │ ├── diagram-3-fill.svg │ │ │ │ │ │ ├── diagram-3.svg │ │ │ │ │ │ ├── diamond-fill.svg │ │ │ │ │ │ ├── diamond-half.svg │ │ │ │ │ │ ├── diamond.svg │ │ │ │ │ │ ├── dice-1-fill.svg │ │ │ │ │ │ ├── dice-1.svg │ │ │ │ │ │ ├── dice-2-fill.svg │ │ │ │ │ │ ├── dice-2.svg │ │ │ │ │ │ ├── dice-3-fill.svg │ │ │ │ │ │ ├── dice-3.svg │ │ │ │ │ │ ├── dice-4-fill.svg │ │ │ │ │ │ ├── dice-4.svg │ │ │ │ │ │ ├── dice-5-fill.svg │ │ │ │ │ │ ├── dice-5.svg │ │ │ │ │ │ ├── dice-6-fill.svg │ │ │ │ │ │ ├── dice-6.svg │ │ │ │ │ │ ├── disc-fill.svg │ │ │ │ │ │ ├── disc.svg │ │ │ │ │ │ ├── discord.svg │ │ │ │ │ │ ├── display-fill.svg │ │ │ │ │ │ ├── display.svg │ │ │ │ │ │ ├── displayport-fill.svg │ │ │ │ │ │ ├── displayport.svg │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ ├── door-closed-fill.svg │ │ │ │ │ │ ├── door-closed.svg │ │ │ │ │ │ ├── door-open-fill.svg │ │ │ │ │ │ ├── door-open.svg │ │ │ │ │ │ ├── dot.svg │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ ├── dpad-fill.svg │ │ │ │ │ │ ├── dpad.svg │ │ │ │ │ │ ├── dribbble.svg │ │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ │ ├── droplet-fill.svg │ │ │ │ │ │ ├── droplet-half.svg │ │ │ │ │ │ ├── droplet.svg │ │ │ │ │ │ ├── duffle-fill.svg │ │ │ │ │ │ ├── duffle.svg │ │ │ │ │ │ ├── ear-fill.svg │ │ │ │ │ │ ├── ear.svg │ │ │ │ │ │ ├── earbuds.svg │ │ │ │ │ │ ├── easel-fill.svg │ │ │ │ │ │ ├── easel.svg │ │ │ │ │ │ ├── easel2-fill.svg │ │ │ │ │ │ ├── easel2.svg │ │ │ │ │ │ ├── easel3-fill.svg │ │ │ │ │ │ ├── easel3.svg │ │ │ │ │ │ ├── egg-fill.svg │ │ │ │ │ │ ├── egg-fried.svg │ │ │ │ │ │ ├── egg.svg │ │ │ │ │ │ ├── eject-fill.svg │ │ │ │ │ │ ├── eject.svg │ │ │ │ │ │ ├── emoji-angry-fill.svg │ │ │ │ │ │ ├── emoji-angry.svg │ │ │ │ │ │ ├── emoji-astonished-fill.svg │ │ │ │ │ │ ├── emoji-astonished.svg │ │ │ │ │ │ ├── emoji-dizzy-fill.svg │ │ │ │ │ │ ├── emoji-dizzy.svg │ │ │ │ │ │ ├── emoji-expressionless-fill.svg │ │ │ │ │ │ ├── emoji-expressionless.svg │ │ │ │ │ │ ├── emoji-frown-fill.svg │ │ │ │ │ │ ├── emoji-frown.svg │ │ │ │ │ │ ├── emoji-grimace-fill.svg │ │ │ │ │ │ ├── emoji-grimace.svg │ │ │ │ │ │ ├── emoji-grin-fill.svg │ │ │ │ │ │ ├── emoji-grin.svg │ │ │ │ │ │ ├── emoji-heart-eyes-fill.svg │ │ │ │ │ │ ├── emoji-heart-eyes.svg │ │ │ │ │ │ ├── emoji-kiss-fill.svg │ │ │ │ │ │ ├── emoji-kiss.svg │ │ │ │ │ │ ├── emoji-laughing-fill.svg │ │ │ │ │ │ ├── emoji-laughing.svg │ │ │ │ │ │ ├── emoji-neutral-fill.svg │ │ │ │ │ │ ├── emoji-neutral.svg │ │ │ │ │ │ ├── emoji-smile-fill.svg │ │ │ │ │ │ ├── emoji-smile-upside-down-fill.svg │ │ │ │ │ │ ├── emoji-smile-upside-down.svg │ │ │ │ │ │ ├── emoji-smile.svg │ │ │ │ │ │ ├── emoji-sunglasses-fill.svg │ │ │ │ │ │ ├── emoji-sunglasses.svg │ │ │ │ │ │ ├── emoji-surprise-fill.svg │ │ │ │ │ │ ├── emoji-surprise.svg │ │ │ │ │ │ ├── emoji-tear-fill.svg │ │ │ │ │ │ ├── emoji-tear.svg │ │ │ │ │ │ ├── emoji-wink-fill.svg │ │ │ │ │ │ ├── emoji-wink.svg │ │ │ │ │ │ ├── envelope-arrow-down-fill.svg │ │ │ │ │ │ ├── envelope-arrow-down.svg │ │ │ │ │ │ ├── envelope-arrow-up-fill.svg │ │ │ │ │ │ ├── envelope-arrow-up.svg │ │ │ │ │ │ ├── envelope-at-fill.svg │ │ │ │ │ │ ├── envelope-at.svg │ │ │ │ │ │ ├── envelope-check-fill.svg │ │ │ │ │ │ ├── envelope-check.svg │ │ │ │ │ │ ├── envelope-dash-fill.svg │ │ │ │ │ │ ├── envelope-dash.svg │ │ │ │ │ │ ├── envelope-exclamation-fill.svg │ │ │ │ │ │ ├── envelope-exclamation.svg │ │ │ │ │ │ ├── envelope-fill.svg │ │ │ │ │ │ ├── envelope-heart-fill.svg │ │ │ │ │ │ ├── envelope-heart.svg │ │ │ │ │ │ ├── envelope-open-fill.svg │ │ │ │ │ │ ├── envelope-open-heart-fill.svg │ │ │ │ │ │ ├── envelope-open-heart.svg │ │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ │ ├── envelope-paper-fill.svg │ │ │ │ │ │ ├── envelope-paper-heart-fill.svg │ │ │ │ │ │ ├── envelope-paper-heart.svg │ │ │ │ │ │ ├── envelope-paper.svg │ │ │ │ │ │ ├── envelope-plus-fill.svg │ │ │ │ │ │ ├── envelope-plus.svg │ │ │ │ │ │ ├── envelope-slash-fill.svg │ │ │ │ │ │ ├── envelope-slash.svg │ │ │ │ │ │ ├── envelope-x-fill.svg │ │ │ │ │ │ ├── envelope-x.svg │ │ │ │ │ │ ├── envelope.svg │ │ │ │ │ │ ├── eraser-fill.svg │ │ │ │ │ │ ├── eraser.svg │ │ │ │ │ │ ├── escape.svg │ │ │ │ │ │ ├── ethernet.svg │ │ │ │ │ │ ├── ev-front-fill.svg │ │ │ │ │ │ ├── ev-front.svg │ │ │ │ │ │ ├── ev-station-fill.svg │ │ │ │ │ │ ├── ev-station.svg │ │ │ │ │ │ ├── exclamation-circle-fill.svg │ │ │ │ │ │ ├── exclamation-circle.svg │ │ │ │ │ │ ├── exclamation-diamond-fill.svg │ │ │ │ │ │ ├── exclamation-diamond.svg │ │ │ │ │ │ ├── exclamation-lg.svg │ │ │ │ │ │ ├── exclamation-octagon-fill.svg │ │ │ │ │ │ ├── exclamation-octagon.svg │ │ │ │ │ │ ├── exclamation-square-fill.svg │ │ │ │ │ │ ├── exclamation-square.svg │ │ │ │ │ │ ├── exclamation-triangle-fill.svg │ │ │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ │ ├── exclude.svg │ │ │ │ │ │ ├── explicit-fill.svg │ │ │ │ │ │ ├── explicit.svg │ │ │ │ │ │ ├── exposure.svg │ │ │ │ │ │ ├── eye-fill.svg │ │ │ │ │ │ ├── eye-slash-fill.svg │ │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ │ ├── eye.svg │ │ │ │ │ │ ├── eyedropper.svg │ │ │ │ │ │ ├── eyeglasses.svg │ │ │ │ │ │ ├── facebook.svg │ │ │ │ │ │ ├── fan.svg │ │ │ │ │ │ ├── fast-forward-btn-fill.svg │ │ │ │ │ │ ├── fast-forward-btn.svg │ │ │ │ │ │ ├── fast-forward-circle-fill.svg │ │ │ │ │ │ ├── fast-forward-circle.svg │ │ │ │ │ │ ├── fast-forward-fill.svg │ │ │ │ │ │ ├── fast-forward.svg │ │ │ │ │ │ ├── feather.svg │ │ │ │ │ │ ├── feather2.svg │ │ │ │ │ │ ├── file-arrow-down-fill.svg │ │ │ │ │ │ ├── file-arrow-down.svg │ │ │ │ │ │ ├── file-arrow-up-fill.svg │ │ │ │ │ │ ├── file-arrow-up.svg │ │ │ │ │ │ ├── file-bar-graph-fill.svg │ │ │ │ │ │ ├── file-bar-graph.svg │ │ │ │ │ │ ├── file-binary-fill.svg │ │ │ │ │ │ ├── file-binary.svg │ │ │ │ │ │ ├── file-break-fill.svg │ │ │ │ │ │ ├── file-break.svg │ │ │ │ │ │ ├── file-check-fill.svg │ │ │ │ │ │ ├── file-check.svg │ │ │ │ │ │ ├── file-code-fill.svg │ │ │ │ │ │ ├── file-code.svg │ │ │ │ │ │ ├── file-diff-fill.svg │ │ │ │ │ │ ├── file-diff.svg │ │ │ │ │ │ ├── file-earmark-arrow-down-fill.svg │ │ │ │ │ │ ├── file-earmark-arrow-down.svg │ │ │ │ │ │ ├── file-earmark-arrow-up-fill.svg │ │ │ │ │ │ ├── file-earmark-arrow-up.svg │ │ │ │ │ │ ├── file-earmark-bar-graph-fill.svg │ │ │ │ │ │ ├── file-earmark-bar-graph.svg │ │ │ │ │ │ ├── file-earmark-binary-fill.svg │ │ │ │ │ │ ├── file-earmark-binary.svg │ │ │ │ │ │ ├── file-earmark-break-fill.svg │ │ │ │ │ │ ├── file-earmark-break.svg │ │ │ │ │ │ ├── file-earmark-check-fill.svg │ │ │ │ │ │ ├── file-earmark-check.svg │ │ │ │ │ │ ├── file-earmark-code-fill.svg │ │ │ │ │ │ ├── file-earmark-code.svg │ │ │ │ │ │ ├── file-earmark-diff-fill.svg │ │ │ │ │ │ ├── file-earmark-diff.svg │ │ │ │ │ │ ├── file-earmark-easel-fill.svg │ │ │ │ │ │ ├── file-earmark-easel.svg │ │ │ │ │ │ ├── file-earmark-excel-fill.svg │ │ │ │ │ │ ├── file-earmark-excel.svg │ │ │ │ │ │ ├── file-earmark-fill.svg │ │ │ │ │ │ ├── file-earmark-font-fill.svg │ │ │ │ │ │ ├── file-earmark-font.svg │ │ │ │ │ │ ├── file-earmark-image-fill.svg │ │ │ │ │ │ ├── file-earmark-image.svg │ │ │ │ │ │ ├── file-earmark-lock-fill.svg │ │ │ │ │ │ ├── file-earmark-lock.svg │ │ │ │ │ │ ├── file-earmark-lock2-fill.svg │ │ │ │ │ │ ├── file-earmark-lock2.svg │ │ │ │ │ │ ├── file-earmark-medical-fill.svg │ │ │ │ │ │ ├── file-earmark-medical.svg │ │ │ │ │ │ ├── file-earmark-minus-fill.svg │ │ │ │ │ │ ├── file-earmark-minus.svg │ │ │ │ │ │ ├── file-earmark-music-fill.svg │ │ │ │ │ │ ├── file-earmark-music.svg │ │ │ │ │ │ ├── file-earmark-pdf-fill.svg │ │ │ │ │ │ ├── file-earmark-pdf.svg │ │ │ │ │ │ ├── file-earmark-person-fill.svg │ │ │ │ │ │ ├── file-earmark-person.svg │ │ │ │ │ │ ├── file-earmark-play-fill.svg │ │ │ │ │ │ ├── file-earmark-play.svg │ │ │ │ │ │ ├── file-earmark-plus-fill.svg │ │ │ │ │ │ ├── file-earmark-plus.svg │ │ │ │ │ │ ├── file-earmark-post-fill.svg │ │ │ │ │ │ ├── file-earmark-post.svg │ │ │ │ │ │ ├── file-earmark-ppt-fill.svg │ │ │ │ │ │ ├── file-earmark-ppt.svg │ │ │ │ │ │ ├── file-earmark-richtext-fill.svg │ │ │ │ │ │ ├── file-earmark-richtext.svg │ │ │ │ │ │ ├── file-earmark-ruled-fill.svg │ │ │ │ │ │ ├── file-earmark-ruled.svg │ │ │ │ │ │ ├── file-earmark-slides-fill.svg │ │ │ │ │ │ ├── file-earmark-slides.svg │ │ │ │ │ │ ├── file-earmark-spreadsheet-fill.svg │ │ │ │ │ │ ├── file-earmark-spreadsheet.svg │ │ │ │ │ │ ├── file-earmark-text-fill.svg │ │ │ │ │ │ ├── file-earmark-text.svg │ │ │ │ │ │ ├── file-earmark-word-fill.svg │ │ │ │ │ │ ├── file-earmark-word.svg │ │ │ │ │ │ ├── file-earmark-x-fill.svg │ │ │ │ │ │ ├── file-earmark-x.svg │ │ │ │ │ │ ├── file-earmark-zip-fill.svg │ │ │ │ │ │ ├── file-earmark-zip.svg │ │ │ │ │ │ ├── file-earmark.svg │ │ │ │ │ │ ├── file-easel-fill.svg │ │ │ │ │ │ ├── file-easel.svg │ │ │ │ │ │ ├── file-excel-fill.svg │ │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ │ ├── file-fill.svg │ │ │ │ │ │ ├── file-font-fill.svg │ │ │ │ │ │ ├── file-font.svg │ │ │ │ │ │ ├── file-image-fill.svg │ │ │ │ │ │ ├── file-image.svg │ │ │ │ │ │ ├── file-lock-fill.svg │ │ │ │ │ │ ├── file-lock.svg │ │ │ │ │ │ ├── file-lock2-fill.svg │ │ │ │ │ │ ├── file-lock2.svg │ │ │ │ │ │ ├── file-medical-fill.svg │ │ │ │ │ │ ├── file-medical.svg │ │ │ │ │ │ ├── file-minus-fill.svg │ │ │ │ │ │ ├── file-minus.svg │ │ │ │ │ │ ├── file-music-fill.svg │ │ │ │ │ │ ├── file-music.svg │ │ │ │ │ │ ├── file-pdf-fill.svg │ │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ │ ├── file-person-fill.svg │ │ │ │ │ │ ├── file-person.svg │ │ │ │ │ │ ├── file-play-fill.svg │ │ │ │ │ │ ├── file-play.svg │ │ │ │ │ │ ├── file-plus-fill.svg │ │ │ │ │ │ ├── file-plus.svg │ │ │ │ │ │ ├── file-post-fill.svg │ │ │ │ │ │ ├── file-post.svg │ │ │ │ │ │ ├── file-ppt-fill.svg │ │ │ │ │ │ ├── file-ppt.svg │ │ │ │ │ │ ├── file-richtext-fill.svg │ │ │ │ │ │ ├── file-richtext.svg │ │ │ │ │ │ ├── file-ruled-fill.svg │ │ │ │ │ │ ├── file-ruled.svg │ │ │ │ │ │ ├── file-slides-fill.svg │ │ │ │ │ │ ├── file-slides.svg │ │ │ │ │ │ ├── file-spreadsheet-fill.svg │ │ │ │ │ │ ├── file-spreadsheet.svg │ │ │ │ │ │ ├── file-text-fill.svg │ │ │ │ │ │ ├── file-text.svg │ │ │ │ │ │ ├── file-word-fill.svg │ │ │ │ │ │ ├── file-word.svg │ │ │ │ │ │ ├── file-x-fill.svg │ │ │ │ │ │ ├── file-x.svg │ │ │ │ │ │ ├── file-zip-fill.svg │ │ │ │ │ │ ├── file-zip.svg │ │ │ │ │ │ ├── file.svg │ │ │ │ │ │ ├── files-alt.svg │ │ │ │ │ │ ├── files.svg │ │ │ │ │ │ ├── filetype-aac.svg │ │ │ │ │ │ ├── filetype-ai.svg │ │ │ │ │ │ ├── filetype-bmp.svg │ │ │ │ │ │ ├── filetype-cs.svg │ │ │ │ │ │ ├── filetype-css.svg │ │ │ │ │ │ ├── filetype-csv.svg │ │ │ │ │ │ ├── filetype-doc.svg │ │ │ │ │ │ ├── filetype-docx.svg │ │ │ │ │ │ ├── filetype-exe.svg │ │ │ │ │ │ ├── filetype-gif.svg │ │ │ │ │ │ ├── filetype-heic.svg │ │ │ │ │ │ ├── filetype-html.svg │ │ │ │ │ │ ├── filetype-java.svg │ │ │ │ │ │ ├── filetype-jpg.svg │ │ │ │ │ │ ├── filetype-js.svg │ │ │ │ │ │ ├── filetype-json.svg │ │ │ │ │ │ ├── filetype-jsx.svg │ │ │ │ │ │ ├── filetype-key.svg │ │ │ │ │ │ ├── filetype-m4p.svg │ │ │ │ │ │ ├── filetype-md.svg │ │ │ │ │ │ ├── filetype-mdx.svg │ │ │ │ │ │ ├── filetype-mov.svg │ │ │ │ │ │ ├── filetype-mp3.svg │ │ │ │ │ │ ├── filetype-mp4.svg │ │ │ │ │ │ ├── filetype-otf.svg │ │ │ │ │ │ ├── filetype-pdf.svg │ │ │ │ │ │ ├── filetype-php.svg │ │ │ │ │ │ ├── filetype-png.svg │ │ │ │ │ │ ├── filetype-ppt.svg │ │ │ │ │ │ ├── filetype-pptx.svg │ │ │ │ │ │ ├── filetype-psd.svg │ │ │ │ │ │ ├── filetype-py.svg │ │ │ │ │ │ ├── filetype-raw.svg │ │ │ │ │ │ ├── filetype-rb.svg │ │ │ │ │ │ ├── filetype-sass.svg │ │ │ │ │ │ ├── filetype-scss.svg │ │ │ │ │ │ ├── filetype-sh.svg │ │ │ │ │ │ ├── filetype-sql.svg │ │ │ │ │ │ ├── filetype-svg.svg │ │ │ │ │ │ ├── filetype-tiff.svg │ │ │ │ │ │ ├── filetype-tsx.svg │ │ │ │ │ │ ├── filetype-ttf.svg │ │ │ │ │ │ ├── filetype-txt.svg │ │ │ │ │ │ ├── filetype-wav.svg │ │ │ │ │ │ ├── filetype-woff.svg │ │ │ │ │ │ ├── filetype-xls.svg │ │ │ │ │ │ ├── filetype-xlsx.svg │ │ │ │ │ │ ├── filetype-xml.svg │ │ │ │ │ │ ├── filetype-yml.svg │ │ │ │ │ │ ├── film.svg │ │ │ │ │ │ ├── filter-circle-fill.svg │ │ │ │ │ │ ├── filter-circle.svg │ │ │ │ │ │ ├── filter-left.svg │ │ │ │ │ │ ├── filter-right.svg │ │ │ │ │ │ ├── filter-square-fill.svg │ │ │ │ │ │ ├── filter-square.svg │ │ │ │ │ │ ├── filter.svg │ │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ │ ├── fire.svg │ │ │ │ │ │ ├── flag-fill.svg │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ ├── floppy-fill.svg │ │ │ │ │ │ ├── floppy.svg │ │ │ │ │ │ ├── floppy2-fill.svg │ │ │ │ │ │ ├── floppy2.svg │ │ │ │ │ │ ├── flower1.svg │ │ │ │ │ │ ├── flower2.svg │ │ │ │ │ │ ├── flower3.svg │ │ │ │ │ │ ├── folder-check.svg │ │ │ │ │ │ ├── folder-fill.svg │ │ │ │ │ │ ├── folder-minus.svg │ │ │ │ │ │ ├── folder-plus.svg │ │ │ │ │ │ ├── folder-symlink-fill.svg │ │ │ │ │ │ ├── folder-symlink.svg │ │ │ │ │ │ ├── folder-x.svg │ │ │ │ │ │ ├── folder.svg │ │ │ │ │ │ ├── folder2-open.svg │ │ │ │ │ │ ├── folder2.svg │ │ │ │ │ │ ├── fonts.svg │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── bootstrap-icons.woff │ │ │ │ │ │ └── bootstrap-icons.woff2 │ │ │ │ │ │ ├── forward-fill.svg │ │ │ │ │ │ ├── forward.svg │ │ │ │ │ │ ├── front.svg │ │ │ │ │ │ ├── fuel-pump-diesel-fill.svg │ │ │ │ │ │ ├── fuel-pump-diesel.svg │ │ │ │ │ │ ├── fuel-pump-fill.svg │ │ │ │ │ │ ├── fuel-pump.svg │ │ │ │ │ │ ├── fullscreen-exit.svg │ │ │ │ │ │ ├── fullscreen.svg │ │ │ │ │ │ ├── funnel-fill.svg │ │ │ │ │ │ ├── funnel.svg │ │ │ │ │ │ ├── gear-fill.svg │ │ │ │ │ │ ├── gear-wide-connected.svg │ │ │ │ │ │ ├── gear-wide.svg │ │ │ │ │ │ ├── gear.svg │ │ │ │ │ │ ├── gem.svg │ │ │ │ │ │ ├── gender-ambiguous.svg │ │ │ │ │ │ ├── gender-female.svg │ │ │ │ │ │ ├── gender-male.svg │ │ │ │ │ │ ├── gender-neuter.svg │ │ │ │ │ │ ├── gender-trans.svg │ │ │ │ │ │ ├── geo-alt-fill.svg │ │ │ │ │ │ ├── geo-alt.svg │ │ │ │ │ │ ├── geo-fill.svg │ │ │ │ │ │ ├── geo.svg │ │ │ │ │ │ ├── gift-fill.svg │ │ │ │ │ │ ├── gift.svg │ │ │ │ │ │ ├── git.svg │ │ │ │ │ │ ├── github.svg │ │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ │ ├── globe-americas.svg │ │ │ │ │ │ ├── globe-asia-australia.svg │ │ │ │ │ │ ├── globe-central-south-asia.svg │ │ │ │ │ │ ├── globe-europe-africa.svg │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ ├── globe2.svg │ │ │ │ │ │ ├── google-play.svg │ │ │ │ │ │ ├── google.svg │ │ │ │ │ │ ├── gpu-card.svg │ │ │ │ │ │ ├── graph-down-arrow.svg │ │ │ │ │ │ ├── graph-down.svg │ │ │ │ │ │ ├── graph-up-arrow.svg │ │ │ │ │ │ ├── graph-up.svg │ │ │ │ │ │ ├── grid-1x2-fill.svg │ │ │ │ │ │ ├── grid-1x2.svg │ │ │ │ │ │ ├── grid-3x2-gap-fill.svg │ │ │ │ │ │ ├── grid-3x2-gap.svg │ │ │ │ │ │ ├── grid-3x2.svg │ │ │ │ │ │ ├── grid-3x3-gap-fill.svg │ │ │ │ │ │ ├── grid-3x3-gap.svg │ │ │ │ │ │ ├── grid-3x3.svg │ │ │ │ │ │ ├── grid-fill.svg │ │ │ │ │ │ ├── grid.svg │ │ │ │ │ │ ├── grip-horizontal.svg │ │ │ │ │ │ ├── grip-vertical.svg │ │ │ │ │ │ ├── h-circle-fill.svg │ │ │ │ │ │ ├── h-circle.svg │ │ │ │ │ │ ├── h-square-fill.svg │ │ │ │ │ │ ├── h-square.svg │ │ │ │ │ │ ├── hammer.svg │ │ │ │ │ │ ├── hand-index-fill.svg │ │ │ │ │ │ ├── hand-index-thumb-fill.svg │ │ │ │ │ │ ├── hand-index-thumb.svg │ │ │ │ │ │ ├── hand-index.svg │ │ │ │ │ │ ├── hand-thumbs-down-fill.svg │ │ │ │ │ │ ├── hand-thumbs-down.svg │ │ │ │ │ │ ├── hand-thumbs-up-fill.svg │ │ │ │ │ │ ├── hand-thumbs-up.svg │ │ │ │ │ │ ├── handbag-fill.svg │ │ │ │ │ │ ├── handbag.svg │ │ │ │ │ │ ├── hash.svg │ │ │ │ │ │ ├── hdd-fill.svg │ │ │ │ │ │ ├── hdd-network-fill.svg │ │ │ │ │ │ ├── hdd-network.svg │ │ │ │ │ │ ├── hdd-rack-fill.svg │ │ │ │ │ │ ├── hdd-rack.svg │ │ │ │ │ │ ├── hdd-stack-fill.svg │ │ │ │ │ │ ├── hdd-stack.svg │ │ │ │ │ │ ├── hdd.svg │ │ │ │ │ │ ├── hdmi-fill.svg │ │ │ │ │ │ ├── hdmi.svg │ │ │ │ │ │ ├── headphones.svg │ │ │ │ │ │ ├── headset-vr.svg │ │ │ │ │ │ ├── headset.svg │ │ │ │ │ │ ├── heart-arrow.svg │ │ │ │ │ │ ├── heart-fill.svg │ │ │ │ │ │ ├── heart-half.svg │ │ │ │ │ │ ├── heart-pulse-fill.svg │ │ │ │ │ │ ├── heart-pulse.svg │ │ │ │ │ │ ├── heart.svg │ │ │ │ │ │ ├── heartbreak-fill.svg │ │ │ │ │ │ ├── heartbreak.svg │ │ │ │ │ │ ├── hearts.svg │ │ │ │ │ │ ├── heptagon-fill.svg │ │ │ │ │ │ ├── heptagon-half.svg │ │ │ │ │ │ ├── heptagon.svg │ │ │ │ │ │ ├── hexagon-fill.svg │ │ │ │ │ │ ├── hexagon-half.svg │ │ │ │ │ │ ├── hexagon.svg │ │ │ │ │ │ ├── highlighter.svg │ │ │ │ │ │ ├── highlights.svg │ │ │ │ │ │ ├── hospital-fill.svg │ │ │ │ │ │ ├── hospital.svg │ │ │ │ │ │ ├── hourglass-bottom.svg │ │ │ │ │ │ ├── hourglass-split.svg │ │ │ │ │ │ ├── hourglass-top.svg │ │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ │ ├── house-add-fill.svg │ │ │ │ │ │ ├── house-add.svg │ │ │ │ │ │ ├── house-check-fill.svg │ │ │ │ │ │ ├── house-check.svg │ │ │ │ │ │ ├── house-dash-fill.svg │ │ │ │ │ │ ├── house-dash.svg │ │ │ │ │ │ ├── house-door-fill.svg │ │ │ │ │ │ ├── house-door.svg │ │ │ │ │ │ ├── house-down-fill.svg │ │ │ │ │ │ ├── house-down.svg │ │ │ │ │ │ ├── house-exclamation-fill.svg │ │ │ │ │ │ ├── house-exclamation.svg │ │ │ │ │ │ ├── house-fill.svg │ │ │ │ │ │ ├── house-gear-fill.svg │ │ │ │ │ │ ├── house-gear.svg │ │ │ │ │ │ ├── house-heart-fill.svg │ │ │ │ │ │ ├── house-heart.svg │ │ │ │ │ │ ├── house-lock-fill.svg │ │ │ │ │ │ ├── house-lock.svg │ │ │ │ │ │ ├── house-slash-fill.svg │ │ │ │ │ │ ├── house-slash.svg │ │ │ │ │ │ ├── house-up-fill.svg │ │ │ │ │ │ ├── house-up.svg │ │ │ │ │ │ ├── house-x-fill.svg │ │ │ │ │ │ ├── house-x.svg │ │ │ │ │ │ ├── house.svg │ │ │ │ │ │ ├── houses-fill.svg │ │ │ │ │ │ ├── houses.svg │ │ │ │ │ │ ├── hr.svg │ │ │ │ │ │ ├── hurricane.svg │ │ │ │ │ │ ├── hypnotize.svg │ │ │ │ │ │ ├── image-alt.svg │ │ │ │ │ │ ├── image-fill.svg │ │ │ │ │ │ ├── image.svg │ │ │ │ │ │ ├── images.svg │ │ │ │ │ │ ├── inbox-fill.svg │ │ │ │ │ │ ├── inbox.svg │ │ │ │ │ │ ├── inboxes-fill.svg │ │ │ │ │ │ ├── inboxes.svg │ │ │ │ │ │ ├── incognito.svg │ │ │ │ │ │ ├── indent.svg │ │ │ │ │ │ ├── infinity.svg │ │ │ │ │ │ ├── info-circle-fill.svg │ │ │ │ │ │ ├── info-circle.svg │ │ │ │ │ │ ├── info-lg.svg │ │ │ │ │ │ ├── info-square-fill.svg │ │ │ │ │ │ ├── info-square.svg │ │ │ │ │ │ ├── info.svg │ │ │ │ │ │ ├── input-cursor-text.svg │ │ │ │ │ │ ├── input-cursor.svg │ │ │ │ │ │ ├── instagram.svg │ │ │ │ │ │ ├── intersect.svg │ │ │ │ │ │ ├── journal-album.svg │ │ │ │ │ │ ├── journal-arrow-down.svg │ │ │ │ │ │ ├── journal-arrow-up.svg │ │ │ │ │ │ ├── journal-bookmark-fill.svg │ │ │ │ │ │ ├── journal-bookmark.svg │ │ │ │ │ │ ├── journal-check.svg │ │ │ │ │ │ ├── journal-code.svg │ │ │ │ │ │ ├── journal-medical.svg │ │ │ │ │ │ ├── journal-minus.svg │ │ │ │ │ │ ├── journal-plus.svg │ │ │ │ │ │ ├── journal-richtext.svg │ │ │ │ │ │ ├── journal-text.svg │ │ │ │ │ │ ├── journal-x.svg │ │ │ │ │ │ ├── journal.svg │ │ │ │ │ │ ├── journals.svg │ │ │ │ │ │ ├── joystick.svg │ │ │ │ │ │ ├── justify-left.svg │ │ │ │ │ │ ├── justify-right.svg │ │ │ │ │ │ ├── justify.svg │ │ │ │ │ │ ├── kanban-fill.svg │ │ │ │ │ │ ├── kanban.svg │ │ │ │ │ │ ├── key-fill.svg │ │ │ │ │ │ ├── key.svg │ │ │ │ │ │ ├── keyboard-fill.svg │ │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ │ ├── ladder.svg │ │ │ │ │ │ ├── lamp-fill.svg │ │ │ │ │ │ ├── lamp.svg │ │ │ │ │ │ ├── laptop-fill.svg │ │ │ │ │ │ ├── laptop.svg │ │ │ │ │ │ ├── layer-backward.svg │ │ │ │ │ │ ├── layer-forward.svg │ │ │ │ │ │ ├── layers-fill.svg │ │ │ │ │ │ ├── layers-half.svg │ │ │ │ │ │ ├── layers.svg │ │ │ │ │ │ ├── layout-sidebar-inset-reverse.svg │ │ │ │ │ │ ├── layout-sidebar-inset.svg │ │ │ │ │ │ ├── layout-sidebar-reverse.svg │ │ │ │ │ │ ├── layout-sidebar.svg │ │ │ │ │ │ ├── layout-split.svg │ │ │ │ │ │ ├── layout-text-sidebar-reverse.svg │ │ │ │ │ │ ├── layout-text-sidebar.svg │ │ │ │ │ │ ├── layout-text-window-reverse.svg │ │ │ │ │ │ ├── layout-text-window.svg │ │ │ │ │ │ ├── layout-three-columns.svg │ │ │ │ │ │ ├── layout-wtf.svg │ │ │ │ │ │ ├── life-preserver.svg │ │ │ │ │ │ ├── lightbulb-fill.svg │ │ │ │ │ │ ├── lightbulb-off-fill.svg │ │ │ │ │ │ ├── lightbulb-off.svg │ │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ │ ├── lightning-charge-fill.svg │ │ │ │ │ │ ├── lightning-charge.svg │ │ │ │ │ │ ├── lightning-fill.svg │ │ │ │ │ │ ├── lightning.svg │ │ │ │ │ │ ├── line.svg │ │ │ │ │ │ ├── link-45deg.svg │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ │ ├── list-check.svg │ │ │ │ │ │ ├── list-columns-reverse.svg │ │ │ │ │ │ ├── list-columns.svg │ │ │ │ │ │ ├── list-nested.svg │ │ │ │ │ │ ├── list-ol.svg │ │ │ │ │ │ ├── list-stars.svg │ │ │ │ │ │ ├── list-task.svg │ │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ │ ├── list.svg │ │ │ │ │ │ ├── lock-fill.svg │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ ├── luggage-fill.svg │ │ │ │ │ │ ├── luggage.svg │ │ │ │ │ │ ├── lungs-fill.svg │ │ │ │ │ │ ├── lungs.svg │ │ │ │ │ │ ├── magic.svg │ │ │ │ │ │ ├── magnet-fill.svg │ │ │ │ │ │ ├── magnet.svg │ │ │ │ │ │ ├── mailbox-flag.svg │ │ │ │ │ │ ├── mailbox.svg │ │ │ │ │ │ ├── mailbox2-flag.svg │ │ │ │ │ │ ├── mailbox2.svg │ │ │ │ │ │ ├── map-fill.svg │ │ │ │ │ │ ├── map.svg │ │ │ │ │ │ ├── markdown-fill.svg │ │ │ │ │ │ ├── markdown.svg │ │ │ │ │ │ ├── marker-tip.svg │ │ │ │ │ │ ├── mask.svg │ │ │ │ │ │ ├── mastodon.svg │ │ │ │ │ │ ├── medium.svg │ │ │ │ │ │ ├── megaphone-fill.svg │ │ │ │ │ │ ├── megaphone.svg │ │ │ │ │ │ ├── memory.svg │ │ │ │ │ │ ├── menu-app-fill.svg │ │ │ │ │ │ ├── menu-app.svg │ │ │ │ │ │ ├── menu-button-fill.svg │ │ │ │ │ │ ├── menu-button-wide-fill.svg │ │ │ │ │ │ ├── menu-button-wide.svg │ │ │ │ │ │ ├── menu-button.svg │ │ │ │ │ │ ├── menu-down.svg │ │ │ │ │ │ ├── menu-up.svg │ │ │ │ │ │ ├── messenger.svg │ │ │ │ │ │ ├── meta.svg │ │ │ │ │ │ ├── mic-fill.svg │ │ │ │ │ │ ├── mic-mute-fill.svg │ │ │ │ │ │ ├── mic-mute.svg │ │ │ │ │ │ ├── mic.svg │ │ │ │ │ │ ├── microsoft-teams.svg │ │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ │ ├── minecart-loaded.svg │ │ │ │ │ │ ├── minecart.svg │ │ │ │ │ │ ├── modem-fill.svg │ │ │ │ │ │ ├── modem.svg │ │ │ │ │ │ ├── moisture.svg │ │ │ │ │ │ ├── moon-fill.svg │ │ │ │ │ │ ├── moon-stars-fill.svg │ │ │ │ │ │ ├── moon-stars.svg │ │ │ │ │ │ ├── moon.svg │ │ │ │ │ │ ├── mortarboard-fill.svg │ │ │ │ │ │ ├── mortarboard.svg │ │ │ │ │ │ ├── motherboard-fill.svg │ │ │ │ │ │ ├── motherboard.svg │ │ │ │ │ │ ├── mouse-fill.svg │ │ │ │ │ │ ├── mouse.svg │ │ │ │ │ │ ├── mouse2-fill.svg │ │ │ │ │ │ ├── mouse2.svg │ │ │ │ │ │ ├── mouse3-fill.svg │ │ │ │ │ │ ├── mouse3.svg │ │ │ │ │ │ ├── music-note-beamed.svg │ │ │ │ │ │ ├── music-note-list.svg │ │ │ │ │ │ ├── music-note.svg │ │ │ │ │ │ ├── music-player-fill.svg │ │ │ │ │ │ ├── music-player.svg │ │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ │ ├── nintendo-switch.svg │ │ │ │ │ │ ├── node-minus-fill.svg │ │ │ │ │ │ ├── node-minus.svg │ │ │ │ │ │ ├── node-plus-fill.svg │ │ │ │ │ │ ├── node-plus.svg │ │ │ │ │ │ ├── noise-reduction.svg │ │ │ │ │ │ ├── nut-fill.svg │ │ │ │ │ │ ├── nut.svg │ │ │ │ │ │ ├── nvidia.svg │ │ │ │ │ │ ├── nvme-fill.svg │ │ │ │ │ │ ├── nvme.svg │ │ │ │ │ │ ├── octagon-fill.svg │ │ │ │ │ │ ├── octagon-half.svg │ │ │ │ │ │ ├── octagon.svg │ │ │ │ │ │ ├── opencollective.svg │ │ │ │ │ │ ├── optical-audio-fill.svg │ │ │ │ │ │ ├── optical-audio.svg │ │ │ │ │ │ ├── option.svg │ │ │ │ │ │ ├── outlet.svg │ │ │ │ │ │ ├── p-circle-fill.svg │ │ │ │ │ │ ├── p-circle.svg │ │ │ │ │ │ ├── p-square-fill.svg │ │ │ │ │ │ ├── p-square.svg │ │ │ │ │ │ ├── paint-bucket.svg │ │ │ │ │ │ ├── palette-fill.svg │ │ │ │ │ │ ├── palette.svg │ │ │ │ │ │ ├── palette2.svg │ │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ │ ├── pass-fill.svg │ │ │ │ │ │ ├── pass.svg │ │ │ │ │ │ ├── passport-fill.svg │ │ │ │ │ │ ├── passport.svg │ │ │ │ │ │ ├── patch-check-fill.svg │ │ │ │ │ │ ├── patch-check.svg │ │ │ │ │ │ ├── patch-exclamation-fill.svg │ │ │ │ │ │ ├── patch-exclamation.svg │ │ │ │ │ │ ├── patch-minus-fill.svg │ │ │ │ │ │ ├── patch-minus.svg │ │ │ │ │ │ ├── patch-plus-fill.svg │ │ │ │ │ │ ├── patch-plus.svg │ │ │ │ │ │ ├── patch-question-fill.svg │ │ │ │ │ │ ├── patch-question.svg │ │ │ │ │ │ ├── pause-btn-fill.svg │ │ │ │ │ │ ├── pause-btn.svg │ │ │ │ │ │ ├── pause-circle-fill.svg │ │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ │ ├── pause-fill.svg │ │ │ │ │ │ ├── pause.svg │ │ │ │ │ │ ├── paypal.svg │ │ │ │ │ │ ├── pc-display-horizontal.svg │ │ │ │ │ │ ├── pc-display.svg │ │ │ │ │ │ ├── pc-horizontal.svg │ │ │ │ │ │ ├── pc.svg │ │ │ │ │ │ ├── pci-card-network.svg │ │ │ │ │ │ ├── pci-card-sound.svg │ │ │ │ │ │ ├── pci-card.svg │ │ │ │ │ │ ├── peace-fill.svg │ │ │ │ │ │ ├── peace.svg │ │ │ │ │ │ ├── pen-fill.svg │ │ │ │ │ │ ├── pen.svg │ │ │ │ │ │ ├── pencil-fill.svg │ │ │ │ │ │ ├── pencil-square.svg │ │ │ │ │ │ ├── pencil.svg │ │ │ │ │ │ ├── pentagon-fill.svg │ │ │ │ │ │ ├── pentagon-half.svg │ │ │ │ │ │ ├── pentagon.svg │ │ │ │ │ │ ├── people-fill.svg │ │ │ │ │ │ ├── people.svg │ │ │ │ │ │ ├── percent.svg │ │ │ │ │ │ ├── person-add.svg │ │ │ │ │ │ ├── person-arms-up.svg │ │ │ │ │ │ ├── person-badge-fill.svg │ │ │ │ │ │ ├── person-badge.svg │ │ │ │ │ │ ├── person-bounding-box.svg │ │ │ │ │ │ ├── person-check-fill.svg │ │ │ │ │ │ ├── person-check.svg │ │ │ │ │ │ ├── person-circle.svg │ │ │ │ │ │ ├── person-dash-fill.svg │ │ │ │ │ │ ├── person-dash.svg │ │ │ │ │ │ ├── person-down.svg │ │ │ │ │ │ ├── person-exclamation.svg │ │ │ │ │ │ ├── person-fill-add.svg │ │ │ │ │ │ ├── person-fill-check.svg │ │ │ │ │ │ ├── person-fill-dash.svg │ │ │ │ │ │ ├── person-fill-down.svg │ │ │ │ │ │ ├── person-fill-exclamation.svg │ │ │ │ │ │ ├── person-fill-gear.svg │ │ │ │ │ │ ├── person-fill-lock.svg │ │ │ │ │ │ ├── person-fill-slash.svg │ │ │ │ │ │ ├── person-fill-up.svg │ │ │ │ │ │ ├── person-fill-x.svg │ │ │ │ │ │ ├── person-fill.svg │ │ │ │ │ │ ├── person-gear.svg │ │ │ │ │ │ ├── person-heart.svg │ │ │ │ │ │ ├── person-hearts.svg │ │ │ │ │ │ ├── person-lines-fill.svg │ │ │ │ │ │ ├── person-lock.svg │ │ │ │ │ │ ├── person-plus-fill.svg │ │ │ │ │ │ ├── person-plus.svg │ │ │ │ │ │ ├── person-raised-hand.svg │ │ │ │ │ │ ├── person-rolodex.svg │ │ │ │ │ │ ├── person-slash.svg │ │ │ │ │ │ ├── person-square.svg │ │ │ │ │ │ ├── person-standing-dress.svg │ │ │ │ │ │ ├── person-standing.svg │ │ │ │ │ │ ├── person-up.svg │ │ │ │ │ │ ├── person-vcard-fill.svg │ │ │ │ │ │ ├── person-vcard.svg │ │ │ │ │ │ ├── person-video.svg │ │ │ │ │ │ ├── person-video2.svg │ │ │ │ │ │ ├── person-video3.svg │ │ │ │ │ │ ├── person-walking.svg │ │ │ │ │ │ ├── person-wheelchair.svg │ │ │ │ │ │ ├── person-workspace.svg │ │ │ │ │ │ ├── person-x-fill.svg │ │ │ │ │ │ ├── person-x.svg │ │ │ │ │ │ ├── person.svg │ │ │ │ │ │ ├── phone-fill.svg │ │ │ │ │ │ ├── phone-flip.svg │ │ │ │ │ │ ├── phone-landscape-fill.svg │ │ │ │ │ │ ├── phone-landscape.svg │ │ │ │ │ │ ├── phone-vibrate-fill.svg │ │ │ │ │ │ ├── phone-vibrate.svg │ │ │ │ │ │ ├── phone.svg │ │ │ │ │ │ ├── pie-chart-fill.svg │ │ │ │ │ │ ├── pie-chart.svg │ │ │ │ │ │ ├── piggy-bank-fill.svg │ │ │ │ │ │ ├── piggy-bank.svg │ │ │ │ │ │ ├── pin-angle-fill.svg │ │ │ │ │ │ ├── pin-angle.svg │ │ │ │ │ │ ├── pin-fill.svg │ │ │ │ │ │ ├── pin-map-fill.svg │ │ │ │ │ │ ├── pin-map.svg │ │ │ │ │ │ ├── pin.svg │ │ │ │ │ │ ├── pinterest.svg │ │ │ │ │ │ ├── pip-fill.svg │ │ │ │ │ │ ├── pip.svg │ │ │ │ │ │ ├── play-btn-fill.svg │ │ │ │ │ │ ├── play-btn.svg │ │ │ │ │ │ ├── play-circle-fill.svg │ │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ │ ├── play-fill.svg │ │ │ │ │ │ ├── play.svg │ │ │ │ │ │ ├── playstation.svg │ │ │ │ │ │ ├── plug-fill.svg │ │ │ │ │ │ ├── plug.svg │ │ │ │ │ │ ├── plugin.svg │ │ │ │ │ │ ├── plus-circle-dotted.svg │ │ │ │ │ │ ├── plus-circle-fill.svg │ │ │ │ │ │ ├── plus-circle.svg │ │ │ │ │ │ ├── plus-lg.svg │ │ │ │ │ │ ├── plus-slash-minus.svg │ │ │ │ │ │ ├── plus-square-dotted.svg │ │ │ │ │ │ ├── plus-square-fill.svg │ │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ │ ├── plus.svg │ │ │ │ │ │ ├── postage-fill.svg │ │ │ │ │ │ ├── postage-heart-fill.svg │ │ │ │ │ │ ├── postage-heart.svg │ │ │ │ │ │ ├── postage.svg │ │ │ │ │ │ ├── postcard-fill.svg │ │ │ │ │ │ ├── postcard-heart-fill.svg │ │ │ │ │ │ ├── postcard-heart.svg │ │ │ │ │ │ ├── postcard.svg │ │ │ │ │ │ ├── power.svg │ │ │ │ │ │ ├── prescription.svg │ │ │ │ │ │ ├── prescription2.svg │ │ │ │ │ │ ├── printer-fill.svg │ │ │ │ │ │ ├── printer.svg │ │ │ │ │ │ ├── projector-fill.svg │ │ │ │ │ │ ├── projector.svg │ │ │ │ │ │ ├── puzzle-fill.svg │ │ │ │ │ │ ├── puzzle.svg │ │ │ │ │ │ ├── qr-code-scan.svg │ │ │ │ │ │ ├── qr-code.svg │ │ │ │ │ │ ├── question-circle-fill.svg │ │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ │ ├── question-diamond-fill.svg │ │ │ │ │ │ ├── question-diamond.svg │ │ │ │ │ │ ├── question-lg.svg │ │ │ │ │ │ ├── question-octagon-fill.svg │ │ │ │ │ │ ├── question-octagon.svg │ │ │ │ │ │ ├── question-square-fill.svg │ │ │ │ │ │ ├── question-square.svg │ │ │ │ │ │ ├── question.svg │ │ │ │ │ │ ├── quora.svg │ │ │ │ │ │ ├── quote.svg │ │ │ │ │ │ ├── r-circle-fill.svg │ │ │ │ │ │ ├── r-circle.svg │ │ │ │ │ │ ├── r-square-fill.svg │ │ │ │ │ │ ├── r-square.svg │ │ │ │ │ │ ├── radar.svg │ │ │ │ │ │ ├── radioactive.svg │ │ │ │ │ │ ├── rainbow.svg │ │ │ │ │ │ ├── receipt-cutoff.svg │ │ │ │ │ │ ├── receipt.svg │ │ │ │ │ │ ├── reception-0.svg │ │ │ │ │ │ ├── reception-1.svg │ │ │ │ │ │ ├── reception-2.svg │ │ │ │ │ │ ├── reception-3.svg │ │ │ │ │ │ ├── reception-4.svg │ │ │ │ │ │ ├── record-btn-fill.svg │ │ │ │ │ │ ├── record-btn.svg │ │ │ │ │ │ ├── record-circle-fill.svg │ │ │ │ │ │ ├── record-circle.svg │ │ │ │ │ │ ├── record-fill.svg │ │ │ │ │ │ ├── record.svg │ │ │ │ │ │ ├── record2-fill.svg │ │ │ │ │ │ ├── record2.svg │ │ │ │ │ │ ├── recycle.svg │ │ │ │ │ │ ├── reddit.svg │ │ │ │ │ │ ├── regex.svg │ │ │ │ │ │ ├── repeat-1.svg │ │ │ │ │ │ ├── repeat.svg │ │ │ │ │ │ ├── reply-all-fill.svg │ │ │ │ │ │ ├── reply-all.svg │ │ │ │ │ │ ├── reply-fill.svg │ │ │ │ │ │ ├── reply.svg │ │ │ │ │ │ ├── rewind-btn-fill.svg │ │ │ │ │ │ ├── rewind-btn.svg │ │ │ │ │ │ ├── rewind-circle-fill.svg │ │ │ │ │ │ ├── rewind-circle.svg │ │ │ │ │ │ ├── rewind-fill.svg │ │ │ │ │ │ ├── rewind.svg │ │ │ │ │ │ ├── robot.svg │ │ │ │ │ │ ├── rocket-fill.svg │ │ │ │ │ │ ├── rocket-takeoff-fill.svg │ │ │ │ │ │ ├── rocket-takeoff.svg │ │ │ │ │ │ ├── rocket.svg │ │ │ │ │ │ ├── router-fill.svg │ │ │ │ │ │ ├── router.svg │ │ │ │ │ │ ├── rss-fill.svg │ │ │ │ │ │ ├── rss.svg │ │ │ │ │ │ ├── rulers.svg │ │ │ │ │ │ ├── safe-fill.svg │ │ │ │ │ │ ├── safe.svg │ │ │ │ │ │ ├── safe2-fill.svg │ │ │ │ │ │ ├── safe2.svg │ │ │ │ │ │ ├── save-fill.svg │ │ │ │ │ │ ├── save.svg │ │ │ │ │ │ ├── save2-fill.svg │ │ │ │ │ │ ├── save2.svg │ │ │ │ │ │ ├── scissors.svg │ │ │ │ │ │ ├── scooter.svg │ │ │ │ │ │ ├── screwdriver.svg │ │ │ │ │ │ ├── sd-card-fill.svg │ │ │ │ │ │ ├── sd-card.svg │ │ │ │ │ │ ├── search-heart-fill.svg │ │ │ │ │ │ ├── search-heart.svg │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ ├── segmented-nav.svg │ │ │ │ │ │ ├── send-arrow-down-fill.svg │ │ │ │ │ │ ├── send-arrow-down.svg │ │ │ │ │ │ ├── send-arrow-up-fill.svg │ │ │ │ │ │ ├── send-arrow-up.svg │ │ │ │ │ │ ├── send-check-fill.svg │ │ │ │ │ │ ├── send-check.svg │ │ │ │ │ │ ├── send-dash-fill.svg │ │ │ │ │ │ ├── send-dash.svg │ │ │ │ │ │ ├── send-exclamation-fill.svg │ │ │ │ │ │ ├── send-exclamation.svg │ │ │ │ │ │ ├── send-fill.svg │ │ │ │ │ │ ├── send-plus-fill.svg │ │ │ │ │ │ ├── send-plus.svg │ │ │ │ │ │ ├── send-slash-fill.svg │ │ │ │ │ │ ├── send-slash.svg │ │ │ │ │ │ ├── send-x-fill.svg │ │ │ │ │ │ ├── send-x.svg │ │ │ │ │ │ ├── send.svg │ │ │ │ │ │ ├── server.svg │ │ │ │ │ │ ├── shadows.svg │ │ │ │ │ │ ├── share-fill.svg │ │ │ │ │ │ ├── share.svg │ │ │ │ │ │ ├── shield-check.svg │ │ │ │ │ │ ├── shield-exclamation.svg │ │ │ │ │ │ ├── shield-fill-check.svg │ │ │ │ │ │ ├── shield-fill-exclamation.svg │ │ │ │ │ │ ├── shield-fill-minus.svg │ │ │ │ │ │ ├── shield-fill-plus.svg │ │ │ │ │ │ ├── shield-fill-x.svg │ │ │ │ │ │ ├── shield-fill.svg │ │ │ │ │ │ ├── shield-lock-fill.svg │ │ │ │ │ │ ├── shield-lock.svg │ │ │ │ │ │ ├── shield-minus.svg │ │ │ │ │ │ ├── shield-plus.svg │ │ │ │ │ │ ├── shield-shaded.svg │ │ │ │ │ │ ├── shield-slash-fill.svg │ │ │ │ │ │ ├── shield-slash.svg │ │ │ │ │ │ ├── shield-x.svg │ │ │ │ │ │ ├── shield.svg │ │ │ │ │ │ ├── shift-fill.svg │ │ │ │ │ │ ├── shift.svg │ │ │ │ │ │ ├── shop-window.svg │ │ │ │ │ │ ├── shop.svg │ │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ │ ├── sign-dead-end-fill.svg │ │ │ │ │ │ ├── sign-dead-end.svg │ │ │ │ │ │ ├── sign-do-not-enter-fill.svg │ │ │ │ │ │ ├── sign-do-not-enter.svg │ │ │ │ │ │ ├── sign-intersection-fill.svg │ │ │ │ │ │ ├── sign-intersection-side-fill.svg │ │ │ │ │ │ ├── sign-intersection-side.svg │ │ │ │ │ │ ├── sign-intersection-t-fill.svg │ │ │ │ │ │ ├── sign-intersection-t.svg │ │ │ │ │ │ ├── sign-intersection-y-fill.svg │ │ │ │ │ │ ├── sign-intersection-y.svg │ │ │ │ │ │ ├── sign-intersection.svg │ │ │ │ │ │ ├── sign-merge-left-fill.svg │ │ │ │ │ │ ├── sign-merge-left.svg │ │ │ │ │ │ ├── sign-merge-right-fill.svg │ │ │ │ │ │ ├── sign-merge-right.svg │ │ │ │ │ │ ├── sign-no-left-turn-fill.svg │ │ │ │ │ │ ├── sign-no-left-turn.svg │ │ │ │ │ │ ├── sign-no-parking-fill.svg │ │ │ │ │ │ ├── sign-no-parking.svg │ │ │ │ │ │ ├── sign-no-right-turn-fill.svg │ │ │ │ │ │ ├── sign-no-right-turn.svg │ │ │ │ │ │ ├── sign-railroad-fill.svg │ │ │ │ │ │ ├── sign-railroad.svg │ │ │ │ │ │ ├── sign-stop-fill.svg │ │ │ │ │ │ ├── sign-stop-lights-fill.svg │ │ │ │ │ │ ├── sign-stop-lights.svg │ │ │ │ │ │ ├── sign-stop.svg │ │ │ │ │ │ ├── sign-turn-left-fill.svg │ │ │ │ │ │ ├── sign-turn-left.svg │ │ │ │ │ │ ├── sign-turn-right-fill.svg │ │ │ │ │ │ ├── sign-turn-right.svg │ │ │ │ │ │ ├── sign-turn-slight-left-fill.svg │ │ │ │ │ │ ├── sign-turn-slight-left.svg │ │ │ │ │ │ ├── sign-turn-slight-right-fill.svg │ │ │ │ │ │ ├── sign-turn-slight-right.svg │ │ │ │ │ │ ├── sign-yield-fill.svg │ │ │ │ │ │ ├── sign-yield.svg │ │ │ │ │ │ ├── signal.svg │ │ │ │ │ │ ├── signpost-2-fill.svg │ │ │ │ │ │ ├── signpost-2.svg │ │ │ │ │ │ ├── signpost-fill.svg │ │ │ │ │ │ ├── signpost-split-fill.svg │ │ │ │ │ │ ├── signpost-split.svg │ │ │ │ │ │ ├── signpost.svg │ │ │ │ │ │ ├── sim-fill.svg │ │ │ │ │ │ ├── sim-slash-fill.svg │ │ │ │ │ │ ├── sim-slash.svg │ │ │ │ │ │ ├── sim.svg │ │ │ │ │ │ ├── sina-weibo.svg │ │ │ │ │ │ ├── skip-backward-btn-fill.svg │ │ │ │ │ │ ├── skip-backward-btn.svg │ │ │ │ │ │ ├── skip-backward-circle-fill.svg │ │ │ │ │ │ ├── skip-backward-circle.svg │ │ │ │ │ │ ├── skip-backward-fill.svg │ │ │ │ │ │ ├── skip-backward.svg │ │ │ │ │ │ ├── skip-end-btn-fill.svg │ │ │ │ │ │ ├── skip-end-btn.svg │ │ │ │ │ │ ├── skip-end-circle-fill.svg │ │ │ │ │ │ ├── skip-end-circle.svg │ │ │ │ │ │ ├── skip-end-fill.svg │ │ │ │ │ │ ├── skip-end.svg │ │ │ │ │ │ ├── skip-forward-btn-fill.svg │ │ │ │ │ │ ├── skip-forward-btn.svg │ │ │ │ │ │ ├── skip-forward-circle-fill.svg │ │ │ │ │ │ ├── skip-forward-circle.svg │ │ │ │ │ │ ├── skip-forward-fill.svg │ │ │ │ │ │ ├── skip-forward.svg │ │ │ │ │ │ ├── skip-start-btn-fill.svg │ │ │ │ │ │ ├── skip-start-btn.svg │ │ │ │ │ │ ├── skip-start-circle-fill.svg │ │ │ │ │ │ ├── skip-start-circle.svg │ │ │ │ │ │ ├── skip-start-fill.svg │ │ │ │ │ │ ├── skip-start.svg │ │ │ │ │ │ ├── skype.svg │ │ │ │ │ │ ├── slack.svg │ │ │ │ │ │ ├── slash-circle-fill.svg │ │ │ │ │ │ ├── slash-circle.svg │ │ │ │ │ │ ├── slash-lg.svg │ │ │ │ │ │ ├── slash-square-fill.svg │ │ │ │ │ │ ├── slash-square.svg │ │ │ │ │ │ ├── slash.svg │ │ │ │ │ │ ├── sliders.svg │ │ │ │ │ │ ├── sliders2-vertical.svg │ │ │ │ │ │ ├── sliders2.svg │ │ │ │ │ │ ├── smartwatch.svg │ │ │ │ │ │ ├── snapchat.svg │ │ │ │ │ │ ├── snow.svg │ │ │ │ │ │ ├── snow2.svg │ │ │ │ │ │ ├── snow3.svg │ │ │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ │ │ ├── sort-down-alt.svg │ │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ │ │ ├── sort-up-alt.svg │ │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ │ ├── soundwave.svg │ │ │ │ │ │ ├── sourceforge.svg │ │ │ │ │ │ ├── speaker-fill.svg │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ │ ├── speedometer2.svg │ │ │ │ │ │ ├── spellcheck.svg │ │ │ │ │ │ ├── spotify.svg │ │ │ │ │ │ ├── square-fill.svg │ │ │ │ │ │ ├── square-half.svg │ │ │ │ │ │ ├── square.svg │ │ │ │ │ │ ├── stack-overflow.svg │ │ │ │ │ │ ├── stack.svg │ │ │ │ │ │ ├── star-fill.svg │ │ │ │ │ │ ├── star-half.svg │ │ │ │ │ │ ├── star.svg │ │ │ │ │ │ ├── stars.svg │ │ │ │ │ │ ├── steam.svg │ │ │ │ │ │ ├── stickies-fill.svg │ │ │ │ │ │ ├── stickies.svg │ │ │ │ │ │ ├── sticky-fill.svg │ │ │ │ │ │ ├── sticky.svg │ │ │ │ │ │ ├── stop-btn-fill.svg │ │ │ │ │ │ ├── stop-btn.svg │ │ │ │ │ │ ├── stop-circle-fill.svg │ │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ │ ├── stop-fill.svg │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ ├── stoplights-fill.svg │ │ │ │ │ │ ├── stoplights.svg │ │ │ │ │ │ ├── stopwatch-fill.svg │ │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ │ ├── strava.svg │ │ │ │ │ │ ├── stripe.svg │ │ │ │ │ │ ├── subscript.svg │ │ │ │ │ │ ├── substack.svg │ │ │ │ │ │ ├── subtract.svg │ │ │ │ │ │ ├── suit-club-fill.svg │ │ │ │ │ │ ├── suit-club.svg │ │ │ │ │ │ ├── suit-diamond-fill.svg │ │ │ │ │ │ ├── suit-diamond.svg │ │ │ │ │ │ ├── suit-heart-fill.svg │ │ │ │ │ │ ├── suit-heart.svg │ │ │ │ │ │ ├── suit-spade-fill.svg │ │ │ │ │ │ ├── suit-spade.svg │ │ │ │ │ │ ├── suitcase-fill.svg │ │ │ │ │ │ ├── suitcase-lg-fill.svg │ │ │ │ │ │ ├── suitcase-lg.svg │ │ │ │ │ │ ├── suitcase.svg │ │ │ │ │ │ ├── suitcase2-fill.svg │ │ │ │ │ │ ├── suitcase2.svg │ │ │ │ │ │ ├── sun-fill.svg │ │ │ │ │ │ ├── sun.svg │ │ │ │ │ │ ├── sunglasses.svg │ │ │ │ │ │ ├── sunrise-fill.svg │ │ │ │ │ │ ├── sunrise.svg │ │ │ │ │ │ ├── sunset-fill.svg │ │ │ │ │ │ ├── sunset.svg │ │ │ │ │ │ ├── superscript.svg │ │ │ │ │ │ ├── symmetry-horizontal.svg │ │ │ │ │ │ ├── symmetry-vertical.svg │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ ├── tablet-fill.svg │ │ │ │ │ │ ├── tablet-landscape-fill.svg │ │ │ │ │ │ ├── tablet-landscape.svg │ │ │ │ │ │ ├── tablet.svg │ │ │ │ │ │ ├── tag-fill.svg │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ ├── tags-fill.svg │ │ │ │ │ │ ├── tags.svg │ │ │ │ │ │ ├── taxi-front-fill.svg │ │ │ │ │ │ ├── taxi-front.svg │ │ │ │ │ │ ├── telegram.svg │ │ │ │ │ │ ├── telephone-fill.svg │ │ │ │ │ │ ├── telephone-forward-fill.svg │ │ │ │ │ │ ├── telephone-forward.svg │ │ │ │ │ │ ├── telephone-inbound-fill.svg │ │ │ │ │ │ ├── telephone-inbound.svg │ │ │ │ │ │ ├── telephone-minus-fill.svg │ │ │ │ │ │ ├── telephone-minus.svg │ │ │ │ │ │ ├── telephone-outbound-fill.svg │ │ │ │ │ │ ├── telephone-outbound.svg │ │ │ │ │ │ ├── telephone-plus-fill.svg │ │ │ │ │ │ ├── telephone-plus.svg │ │ │ │ │ │ ├── telephone-x-fill.svg │ │ │ │ │ │ ├── telephone-x.svg │ │ │ │ │ │ ├── telephone.svg │ │ │ │ │ │ ├── tencent-qq.svg │ │ │ │ │ │ ├── terminal-dash.svg │ │ │ │ │ │ ├── terminal-fill.svg │ │ │ │ │ │ ├── terminal-plus.svg │ │ │ │ │ │ ├── terminal-split.svg │ │ │ │ │ │ ├── terminal-x.svg │ │ │ │ │ │ ├── terminal.svg │ │ │ │ │ │ ├── text-center.svg │ │ │ │ │ │ ├── text-indent-left.svg │ │ │ │ │ │ ├── text-indent-right.svg │ │ │ │ │ │ ├── text-left.svg │ │ │ │ │ │ ├── text-paragraph.svg │ │ │ │ │ │ ├── text-right.svg │ │ │ │ │ │ ├── text-wrap.svg │ │ │ │ │ │ ├── textarea-resize.svg │ │ │ │ │ │ ├── textarea-t.svg │ │ │ │ │ │ ├── textarea.svg │ │ │ │ │ │ ├── thermometer-half.svg │ │ │ │ │ │ ├── thermometer-high.svg │ │ │ │ │ │ ├── thermometer-low.svg │ │ │ │ │ │ ├── thermometer-snow.svg │ │ │ │ │ │ ├── thermometer-sun.svg │ │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ │ ├── threads-fill.svg │ │ │ │ │ │ ├── threads.svg │ │ │ │ │ │ ├── three-dots-vertical.svg │ │ │ │ │ │ ├── three-dots.svg │ │ │ │ │ │ ├── thunderbolt-fill.svg │ │ │ │ │ │ ├── thunderbolt.svg │ │ │ │ │ │ ├── ticket-detailed-fill.svg │ │ │ │ │ │ ├── ticket-detailed.svg │ │ │ │ │ │ ├── ticket-fill.svg │ │ │ │ │ │ ├── ticket-perforated-fill.svg │ │ │ │ │ │ ├── ticket-perforated.svg │ │ │ │ │ │ ├── ticket.svg │ │ │ │ │ │ ├── tiktok.svg │ │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ │ ├── toggle2-off.svg │ │ │ │ │ │ ├── toggle2-on.svg │ │ │ │ │ │ ├── toggles.svg │ │ │ │ │ │ ├── toggles2.svg │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ ├── tornado.svg │ │ │ │ │ │ ├── train-freight-front-fill.svg │ │ │ │ │ │ ├── train-freight-front.svg │ │ │ │ │ │ ├── train-front-fill.svg │ │ │ │ │ │ ├── train-front.svg │ │ │ │ │ │ ├── train-lightrail-front-fill.svg │ │ │ │ │ │ ├── train-lightrail-front.svg │ │ │ │ │ │ ├── translate.svg │ │ │ │ │ │ ├── transparency.svg │ │ │ │ │ │ ├── trash-fill.svg │ │ │ │ │ │ ├── trash.svg │ │ │ │ │ │ ├── trash2-fill.svg │ │ │ │ │ │ ├── trash2.svg │ │ │ │ │ │ ├── trash3-fill.svg │ │ │ │ │ │ ├── trash3.svg │ │ │ │ │ │ ├── tree-fill.svg │ │ │ │ │ │ ├── tree.svg │ │ │ │ │ │ ├── trello.svg │ │ │ │ │ │ ├── triangle-fill.svg │ │ │ │ │ │ ├── triangle-half.svg │ │ │ │ │ │ ├── triangle.svg │ │ │ │ │ │ ├── trophy-fill.svg │ │ │ │ │ │ ├── trophy.svg │ │ │ │ │ │ ├── tropical-storm.svg │ │ │ │ │ │ ├── truck-flatbed.svg │ │ │ │ │ │ ├── truck-front-fill.svg │ │ │ │ │ │ ├── truck-front.svg │ │ │ │ │ │ ├── truck.svg │ │ │ │ │ │ ├── tsunami.svg │ │ │ │ │ │ ├── tv-fill.svg │ │ │ │ │ │ ├── tv.svg │ │ │ │ │ │ ├── twitch.svg │ │ │ │ │ │ ├── twitter-x.svg │ │ │ │ │ │ ├── twitter.svg │ │ │ │ │ │ ├── type-bold.svg │ │ │ │ │ │ ├── type-h1.svg │ │ │ │ │ │ ├── type-h2.svg │ │ │ │ │ │ ├── type-h3.svg │ │ │ │ │ │ ├── type-h4.svg │ │ │ │ │ │ ├── type-h5.svg │ │ │ │ │ │ ├── type-h6.svg │ │ │ │ │ │ ├── type-italic.svg │ │ │ │ │ │ ├── type-strikethrough.svg │ │ │ │ │ │ ├── type-underline.svg │ │ │ │ │ │ ├── type.svg │ │ │ │ │ │ ├── ubuntu.svg │ │ │ │ │ │ ├── ui-checks-grid.svg │ │ │ │ │ │ ├── ui-checks.svg │ │ │ │ │ │ ├── ui-radios-grid.svg │ │ │ │ │ │ ├── ui-radios.svg │ │ │ │ │ │ ├── umbrella-fill.svg │ │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ │ ├── unindent.svg │ │ │ │ │ │ ├── union.svg │ │ │ │ │ │ ├── unity.svg │ │ │ │ │ │ ├── universal-access-circle.svg │ │ │ │ │ │ ├── universal-access.svg │ │ │ │ │ │ ├── unlock-fill.svg │ │ │ │ │ │ ├── unlock.svg │ │ │ │ │ │ ├── upc-scan.svg │ │ │ │ │ │ ├── upc.svg │ │ │ │ │ │ ├── upload.svg │ │ │ │ │ │ ├── usb-c-fill.svg │ │ │ │ │ │ ├── usb-c.svg │ │ │ │ │ │ ├── usb-drive-fill.svg │ │ │ │ │ │ ├── usb-drive.svg │ │ │ │ │ │ ├── usb-fill.svg │ │ │ │ │ │ ├── usb-micro-fill.svg │ │ │ │ │ │ ├── usb-micro.svg │ │ │ │ │ │ ├── usb-mini-fill.svg │ │ │ │ │ │ ├── usb-mini.svg │ │ │ │ │ │ ├── usb-plug-fill.svg │ │ │ │ │ │ ├── usb-plug.svg │ │ │ │ │ │ ├── usb-symbol.svg │ │ │ │ │ │ ├── usb.svg │ │ │ │ │ │ ├── valentine.svg │ │ │ │ │ │ ├── valentine2.svg │ │ │ │ │ │ ├── vector-pen.svg │ │ │ │ │ │ ├── view-list.svg │ │ │ │ │ │ ├── view-stacked.svg │ │ │ │ │ │ ├── vignette.svg │ │ │ │ │ │ ├── vimeo.svg │ │ │ │ │ │ ├── vinyl-fill.svg │ │ │ │ │ │ ├── vinyl.svg │ │ │ │ │ │ ├── virus.svg │ │ │ │ │ │ ├── virus2.svg │ │ │ │ │ │ ├── voicemail.svg │ │ │ │ │ │ ├── volume-down-fill.svg │ │ │ │ │ │ ├── volume-down.svg │ │ │ │ │ │ ├── volume-mute-fill.svg │ │ │ │ │ │ ├── volume-mute.svg │ │ │ │ │ │ ├── volume-off-fill.svg │ │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ │ ├── volume-up-fill.svg │ │ │ │ │ │ ├── volume-up.svg │ │ │ │ │ │ ├── vr.svg │ │ │ │ │ │ ├── wallet-fill.svg │ │ │ │ │ │ ├── wallet.svg │ │ │ │ │ │ ├── wallet2.svg │ │ │ │ │ │ ├── watch.svg │ │ │ │ │ │ ├── water.svg │ │ │ │ │ │ ├── webcam-fill.svg │ │ │ │ │ │ ├── webcam.svg │ │ │ │ │ │ ├── wechat.svg │ │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ │ ├── wifi-1.svg │ │ │ │ │ │ ├── wifi-2.svg │ │ │ │ │ │ ├── wifi-off.svg │ │ │ │ │ │ ├── wifi.svg │ │ │ │ │ │ ├── wikipedia.svg │ │ │ │ │ │ ├── wind.svg │ │ │ │ │ │ ├── window-dash.svg │ │ │ │ │ │ ├── window-desktop.svg │ │ │ │ │ │ ├── window-dock.svg │ │ │ │ │ │ ├── window-fullscreen.svg │ │ │ │ │ │ ├── window-plus.svg │ │ │ │ │ │ ├── window-sidebar.svg │ │ │ │ │ │ ├── window-split.svg │ │ │ │ │ │ ├── window-stack.svg │ │ │ │ │ │ ├── window-x.svg │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ ├── windows.svg │ │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ │ ├── wrench-adjustable-circle-fill.svg │ │ │ │ │ │ ├── wrench-adjustable-circle.svg │ │ │ │ │ │ ├── wrench-adjustable.svg │ │ │ │ │ │ ├── wrench.svg │ │ │ │ │ │ ├── x-circle-fill.svg │ │ │ │ │ │ ├── x-circle.svg │ │ │ │ │ │ ├── x-diamond-fill.svg │ │ │ │ │ │ ├── x-diamond.svg │ │ │ │ │ │ ├── x-lg.svg │ │ │ │ │ │ ├── x-octagon-fill.svg │ │ │ │ │ │ ├── x-octagon.svg │ │ │ │ │ │ ├── x-square-fill.svg │ │ │ │ │ │ ├── x-square.svg │ │ │ │ │ │ ├── x.svg │ │ │ │ │ │ ├── xbox.svg │ │ │ │ │ │ ├── yelp.svg │ │ │ │ │ │ ├── yin-yang.svg │ │ │ │ │ │ ├── youtube.svg │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ └── zoom-out.svg │ │ │ │ ├── bootstrap │ │ │ │ │ └── 5.3.8 │ │ │ │ │ │ └── bootswatch.yeti.min.css │ │ │ │ ├── dselect │ │ │ │ │ └── 1.0.4 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dselect.css │ │ │ │ │ │ │ ├── dselect.css.map │ │ │ │ │ │ │ └── dselect.min.css │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dselect.js │ │ │ │ │ │ │ └── dselect.min.js │ │ │ │ │ │ ├── gulpfile.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── source │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── dselect.scss │ │ │ │ │ │ └── js │ │ │ │ │ │ └── dselect.js │ │ │ │ ├── html5-qrcode │ │ │ │ │ └── 2.3.8 │ │ │ │ │ │ └── html5-qrcode.min.js │ │ │ │ ├── js-cookie │ │ │ │ │ └── 3.0.5 │ │ │ │ │ │ └── js.cookie.min.js │ │ │ │ ├── luxon │ │ │ │ │ └── 3.3.0 │ │ │ │ │ │ └── luxon.min.js │ │ │ │ ├── spin.js │ │ │ │ │ ├── spin.css │ │ │ │ │ └── spin.umd.js │ │ │ │ └── treant-js │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Treant.css │ │ │ │ │ ├── Treant.js │ │ │ │ │ ├── build │ │ │ │ │ ├── examples │ │ │ │ │ ├── basic-example │ │ │ │ │ │ ├── basic-example.css │ │ │ │ │ │ ├── basic-example.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── collapsable │ │ │ │ │ │ ├── collapsable.css │ │ │ │ │ │ ├── collapsable.js │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── cheryl.png │ │ │ │ │ │ │ ├── figgs.png │ │ │ │ │ │ │ ├── lana.png │ │ │ │ │ │ │ ├── malory.png │ │ │ │ │ │ │ ├── pam.png │ │ │ │ │ │ │ ├── sterling.png │ │ │ │ │ │ │ └── woodhouse.png │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── comments │ │ │ │ │ │ ├── avatar.jpg │ │ │ │ │ │ ├── example8.css │ │ │ │ │ │ ├── example8.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── connectors │ │ │ │ │ │ ├── connectors.css │ │ │ │ │ │ ├── connectors.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── custom-color-plus-scrollbar │ │ │ │ │ │ ├── custom-color-plus-scrollbar.css │ │ │ │ │ │ ├── custom-color-plus-scrollbar.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── custom-colored │ │ │ │ │ │ ├── custom-colored.css │ │ │ │ │ │ ├── custom-colored.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── evolution-tree │ │ │ │ │ │ ├── example6.css │ │ │ │ │ │ ├── example6.js │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── archaebacteria.png │ │ │ │ │ │ │ ├── bonyfish.png │ │ │ │ │ │ │ ├── cartilaginousfish.png │ │ │ │ │ │ │ ├── chelirates.png │ │ │ │ │ │ │ ├── cnidarians.png │ │ │ │ │ │ │ ├── cvijece1.png │ │ │ │ │ │ │ ├── cvijece2.png │ │ │ │ │ │ │ ├── ferns.png │ │ │ │ │ │ │ ├── flatare.png │ │ │ │ │ │ │ ├── fungi.png │ │ │ │ │ │ │ ├── greenalgae.png │ │ │ │ │ │ │ ├── insekti.png │ │ │ │ │ │ │ ├── kornjaca.png │ │ │ │ │ │ │ ├── lophoprates.png │ │ │ │ │ │ │ ├── mosculs.png │ │ │ │ │ │ │ ├── mosses.png │ │ │ │ │ │ │ ├── ne_cvijece.png │ │ │ │ │ │ │ ├── protoctis.png │ │ │ │ │ │ │ ├── ptica.png │ │ │ │ │ │ │ ├── rak.png │ │ │ │ │ │ │ ├── rotfiers.png │ │ │ │ │ │ │ ├── roundworms.png │ │ │ │ │ │ │ ├── segmentedworms.png │ │ │ │ │ │ │ ├── slon.png │ │ │ │ │ │ │ ├── spuzva.png │ │ │ │ │ │ │ ├── truebacteria.png │ │ │ │ │ │ │ ├── zaba.png │ │ │ │ │ │ │ ├── zmijurina.png │ │ │ │ │ │ │ └── zvezda.png │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── headshots │ │ │ │ │ │ ├── 1.jpg │ │ │ │ │ │ ├── 10.jpg │ │ │ │ │ │ ├── 11.jpg │ │ │ │ │ │ ├── 2.jpg │ │ │ │ │ │ ├── 4.jpg │ │ │ │ │ │ ├── 5.jpg │ │ │ │ │ │ ├── 6.jpg │ │ │ │ │ │ ├── 7.jpg │ │ │ │ │ │ ├── 8.jpg │ │ │ │ │ │ └── 9.jpg │ │ │ │ │ ├── no-parent │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── no-parent.css │ │ │ │ │ │ └── no-parent.js │ │ │ │ │ ├── simple-scrollbar │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── simple-scrollbar.css │ │ │ │ │ │ └── simple-scrollbar.js │ │ │ │ │ ├── super-simple │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── super-simple.css │ │ │ │ │ │ └── super-simple.js │ │ │ │ │ ├── tennis-draw │ │ │ │ │ │ ├── example7.css │ │ │ │ │ │ ├── example7.js │ │ │ │ │ │ ├── flags │ │ │ │ │ │ │ ├── arg.jpg │ │ │ │ │ │ │ ├── aus.jpg │ │ │ │ │ │ │ ├── can.jpg │ │ │ │ │ │ │ ├── esp.jpg │ │ │ │ │ │ │ ├── fin.jpg │ │ │ │ │ │ │ ├── fra.jpg │ │ │ │ │ │ │ ├── lat.jpg │ │ │ │ │ │ │ ├── rus.jpg │ │ │ │ │ │ │ ├── slo.jpg │ │ │ │ │ │ │ ├── srb.jpg │ │ │ │ │ │ │ ├── ukr.jpg │ │ │ │ │ │ │ └── usa.jpg │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── trophy.png │ │ │ │ │ ├── test_ground │ │ │ │ │ │ ├── example_configs.js │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── slika-manja.jpg │ │ │ │ │ └── timeline │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── timeline.css │ │ │ │ │ │ └── timeline.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── vendor │ │ │ │ │ ├── jquery.easing.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── jquery.mousewheel.js │ │ │ │ │ ├── perfect-scrollbar │ │ │ │ │ ├── perfect-scrollbar.css │ │ │ │ │ └── perfect-scrollbar.js │ │ │ │ │ └── raphael.js │ │ │ │ ├── media │ │ │ │ ├── EBP-logo-icon.svg │ │ │ │ ├── chevron_down.svg │ │ │ │ ├── chevron_up.svg │ │ │ │ ├── empty.svg │ │ │ │ ├── logo.svg │ │ │ │ ├── logoSymbol.svg │ │ │ │ └── logoSymbolSquare.svg │ │ │ │ └── res │ │ │ │ ├── css │ │ │ │ ├── bootstrap-adjust.css │ │ │ │ ├── main.css │ │ │ │ ├── printout │ │ │ │ │ └── printout.css │ │ │ │ └── storageTree.css │ │ │ │ └── js │ │ │ │ ├── CodeScanning.js │ │ │ │ ├── OqmDb.js │ │ │ │ ├── dselectHelpers.js │ │ │ │ ├── entityRef.js │ │ │ │ ├── getParamUtils.js │ │ │ │ ├── historySearch.js │ │ │ │ ├── identifiers.js │ │ │ │ ├── item │ │ │ │ └── extItemSearch.js │ │ │ │ ├── main.js │ │ │ │ ├── modalHelpers.js │ │ │ │ ├── obj │ │ │ │ ├── getters.js │ │ │ │ ├── idGenerator │ │ │ │ │ ├── idGeneratorAddEdit.js │ │ │ │ │ ├── idGeneratorSearchSelect.js │ │ │ │ │ └── idGeneratorUtils.js │ │ │ │ ├── item │ │ │ │ │ ├── itemAddEdit.js │ │ │ │ │ ├── itemSearchSelect.js │ │ │ │ │ └── itemView.js │ │ │ │ ├── itemCategory │ │ │ │ │ ├── ItemCategoryInput.js │ │ │ │ │ └── itemCategoryTree.js │ │ │ │ ├── itemCategoryView.js │ │ │ │ ├── itemCheckout │ │ │ │ │ ├── itemCheckin.js │ │ │ │ │ ├── itemCheckoutSearchSelect.js │ │ │ │ │ └── itemCheckoutView.js │ │ │ │ ├── itemList │ │ │ │ │ └── itemListView.js │ │ │ │ ├── itemStored │ │ │ │ │ ├── itemStoredEdit.js │ │ │ │ │ ├── itemStoredSearch.js │ │ │ │ │ ├── itemStoredSearchSelect.js │ │ │ │ │ ├── itemStoredTransaction.js │ │ │ │ │ ├── storedFormInput.js │ │ │ │ │ └── storedView.js │ │ │ │ ├── media │ │ │ │ │ ├── fileAttachment │ │ │ │ │ │ ├── FileAttachmentAddEdit.js │ │ │ │ │ │ ├── FileAttachmentSearchSelect.js │ │ │ │ │ │ └── FileAttachmentView.js │ │ │ │ │ ├── imageAdd.js │ │ │ │ │ ├── imageAddFromSelect.js │ │ │ │ │ └── imageSearchSelect.js │ │ │ │ ├── objEdit.js │ │ │ │ ├── objView.js │ │ │ │ ├── storageBlock │ │ │ │ │ ├── capacities.js │ │ │ │ │ ├── storageBlockTree.js │ │ │ │ │ └── storageSearchSelect.js │ │ │ │ └── units.js │ │ │ │ ├── other.js │ │ │ │ ├── pageMessages.js │ │ │ │ ├── realDarkMode.js │ │ │ │ ├── rest.js │ │ │ │ ├── search.js │ │ │ │ ├── selectedObjectDivUtils.js │ │ │ │ ├── spinnerHelpers.js │ │ │ │ ├── storedTypeUtils.js │ │ │ │ ├── textCopy.js │ │ │ │ ├── theme.js │ │ │ │ └── timeHelpers.js │ │ │ ├── application.yml │ │ │ └── templates │ │ │ ├── email │ │ │ ├── htmlEmailTemplate.html │ │ │ ├── serverAdmin │ │ │ │ ├── testEmailTemplate.html │ │ │ │ └── testEmailTemplate.txt │ │ │ └── textEmailTemplate.txt │ │ │ ├── other │ │ │ └── StartBannerTemplate.txt │ │ │ ├── printouts │ │ │ ├── mainPrintoutTemplate.html │ │ │ └── storageBlockInvSheet │ │ │ │ └── storageBlockInventorySheet.html │ │ │ ├── tags │ │ │ ├── CodeScannerModal.html │ │ │ ├── amountDisplay.txt │ │ │ ├── carousel.html │ │ │ ├── copyTextButton.html │ │ │ ├── email │ │ │ │ └── htmlEmailParagraph.html │ │ │ ├── fileAttachment │ │ │ │ ├── FileAttachmentAddEditForm.html │ │ │ │ ├── FileAttachmentAddEditModal.html │ │ │ │ ├── FileAttachmentObjectView.html │ │ │ │ ├── FileAttachmentSearchSelectModal.html │ │ │ │ ├── FileAttachmentViewModal.html │ │ │ │ ├── fileAttachmentSearchForm.html │ │ │ │ ├── fileAttachmentSearchResults.html │ │ │ │ └── fileAttachmentSelectFormInput.html │ │ │ ├── icons │ │ │ │ ├── add.html │ │ │ │ ├── addFile.html │ │ │ │ ├── addSubTrans.html │ │ │ │ ├── addUser.html │ │ │ │ ├── barcode.html │ │ │ │ ├── categories.html │ │ │ │ ├── checkinout.html │ │ │ │ ├── copy.html │ │ │ │ ├── copyChecked.html │ │ │ │ ├── coreApi.html │ │ │ │ ├── database.html │ │ │ │ ├── download.html │ │ │ │ ├── edit.html │ │ │ │ ├── expired.html │ │ │ │ ├── expiring.html │ │ │ │ ├── extService.html │ │ │ │ ├── fileAttachments.html │ │ │ │ ├── fileCsv.html │ │ │ │ ├── fileJson.html │ │ │ │ ├── fileType.html │ │ │ │ ├── flags.html │ │ │ │ ├── generalIds.html │ │ │ │ ├── help.html │ │ │ │ ├── history.html │ │ │ │ ├── icon.html │ │ │ │ ├── idGenerators.html │ │ │ │ ├── image.html │ │ │ │ ├── images.html │ │ │ │ ├── info.html │ │ │ │ ├── interactingEntity.html │ │ │ │ ├── interactingEntityType.html │ │ │ │ ├── inventoryAdmin.html │ │ │ │ ├── item.html │ │ │ │ ├── itemLists.html │ │ │ │ ├── items.html │ │ │ │ ├── left.html │ │ │ │ ├── locked.html │ │ │ │ ├── lowStock.html │ │ │ │ ├── newTab.html │ │ │ │ ├── overView.html │ │ │ │ ├── pageIcon.html │ │ │ │ ├── print.html │ │ │ │ ├── qr.html │ │ │ │ ├── remove.html │ │ │ │ ├── review.html │ │ │ │ ├── right.html │ │ │ │ ├── search.html │ │ │ │ ├── select.html │ │ │ │ ├── statusDown.html │ │ │ │ ├── statusPending.html │ │ │ │ ├── statusUp.html │ │ │ │ ├── storageBlock.html │ │ │ │ ├── storageBlocks.html │ │ │ │ ├── storageTypeAmtList.html │ │ │ │ ├── storageTypeBulk.html │ │ │ │ ├── storageTypeUniqueMulti.html │ │ │ │ ├── storageTypeUniqueSingle.html │ │ │ │ ├── stored.html │ │ │ │ ├── storedTypeAmount.html │ │ │ │ ├── storedTypeUnique.html │ │ │ │ ├── themeAuto.html │ │ │ │ ├── themeDark.html │ │ │ │ ├── themeLight.html │ │ │ │ ├── transaction.html │ │ │ │ ├── transactionAdd.html │ │ │ │ ├── transactionCheckin.html │ │ │ │ ├── transactionCheckout.html │ │ │ │ ├── transactionSet.html │ │ │ │ ├── transactionSubtract.html │ │ │ │ ├── transactionTransfer.html │ │ │ │ ├── uniqueIds.html │ │ │ │ ├── unlocked.html │ │ │ │ ├── useDatapoint.html │ │ │ │ ├── user.html │ │ │ │ ├── userAdmin.html │ │ │ │ ├── view.html │ │ │ │ ├── viewClose.html │ │ │ │ └── you.html │ │ │ ├── inputs │ │ │ │ ├── attInput.html │ │ │ │ ├── barcodeInput.html │ │ │ │ ├── capacityInput.html │ │ │ │ ├── categoryInput.html │ │ │ │ ├── identifiers │ │ │ │ │ ├── addedGeneralIdentifier.qute.html │ │ │ │ │ ├── addedUniqueIdentifier.qute.html │ │ │ │ │ ├── associatedIdGeneratorInput.qute.html │ │ │ │ │ ├── generalIdInput.qute.html │ │ │ │ │ ├── identifierInput.qute.html │ │ │ │ │ └── uniqueIdInput.qute.html │ │ │ │ ├── item │ │ │ │ │ └── itemSelectInput.html │ │ │ │ ├── itemList │ │ │ │ │ └── ItemListActionModeInput.html │ │ │ │ ├── itemStored │ │ │ │ │ └── itemStoredSelectInput.html │ │ │ │ ├── keywordInput.html │ │ │ │ ├── storageBlock │ │ │ │ │ └── storageBlockSelectInput.html │ │ │ │ └── units │ │ │ │ │ ├── unitOptions.html │ │ │ │ │ └── unitOptionsGroups.html │ │ │ ├── interactingEntityRef.html │ │ │ ├── itemAddEditModal.html │ │ │ ├── itemCheckout │ │ │ │ ├── itemCheckinModal.html │ │ │ │ ├── itemCheckoutModal.html │ │ │ │ ├── itemCheckoutSelectInput.html │ │ │ │ └── viewModal.html │ │ │ ├── itemList │ │ │ │ └── itemListReviewModal.html │ │ │ ├── itemStored │ │ │ │ ├── itemStoredEditModal.qute.html │ │ │ │ ├── itemStoredViewModal.qute.html │ │ │ │ └── transaction │ │ │ │ │ ├── addTransactionModal.html │ │ │ │ │ ├── allTransactionModals.html │ │ │ │ │ ├── buttons │ │ │ │ │ └── transactionDropdown.html │ │ │ │ │ ├── checkinTransactionModal.html │ │ │ │ │ ├── checkoutTransactionModal.html │ │ │ │ │ ├── setTransactionModal.html │ │ │ │ │ ├── subtractTransactionModal.html │ │ │ │ │ └── transferTransactionModal.html │ │ │ ├── itemStoredAddSubTransferModal.html │ │ │ ├── links │ │ │ │ ├── inventoryItem.html │ │ │ │ ├── inventoryItems.html │ │ │ │ ├── itemCategory.html │ │ │ │ ├── itemCheckoutButton.html │ │ │ │ ├── storageBlock.html │ │ │ │ └── storageBlocks.html │ │ │ ├── modal.html │ │ │ ├── objView │ │ │ │ ├── history │ │ │ │ │ ├── objHistorySearchForm.html │ │ │ │ │ ├── objHistoryView.html │ │ │ │ │ └── searchResults.html │ │ │ │ ├── itemViewModal.html │ │ │ │ ├── objAttsView.html │ │ │ │ └── objKeywordsView.html │ │ │ ├── object │ │ │ │ └── idGenerator │ │ │ │ │ ├── GenerateResultModal.html │ │ │ │ │ ├── addEditForm.qute.html │ │ │ │ │ ├── addEditModal.qute.html │ │ │ │ │ ├── searchForm.html │ │ │ │ │ ├── searchResults.html │ │ │ │ │ └── searchSelectModal.html │ │ │ ├── paginationButtons.html │ │ │ ├── printouts │ │ │ │ ├── storageBlockInventorySheet │ │ │ │ │ ├── amountListStoredTable.html │ │ │ │ │ ├── amountSimpleStoredTable.html │ │ │ │ │ └── trackedStoredTable.html │ │ │ │ └── storageBlockTable.html │ │ │ ├── providerInfoCard.html │ │ │ ├── search │ │ │ │ ├── category │ │ │ │ │ ├── searchForm.html │ │ │ │ │ ├── searchResults.html │ │ │ │ │ └── searchSelectModal.html │ │ │ │ ├── image │ │ │ │ │ ├── imageSearchForm.html │ │ │ │ │ ├── imageSearchResults.html │ │ │ │ │ ├── imageSearchSelectModal.html │ │ │ │ │ ├── imageSelectFormInput.html │ │ │ │ │ └── imageSelectFormInputHidden.html │ │ │ │ ├── interactingEntity │ │ │ │ │ ├── searchForm.html │ │ │ │ │ ├── searchResults.html │ │ │ │ │ └── searchSelectModal.html │ │ │ │ ├── item │ │ │ │ │ ├── itemSearchForm.html │ │ │ │ │ ├── itemSearchResults.html │ │ │ │ │ └── itemSearchSelectModal.html │ │ │ │ ├── itemCheckout │ │ │ │ │ ├── searchForm.html │ │ │ │ │ ├── searchResults.html │ │ │ │ │ └── searchSelectModal.html │ │ │ │ ├── itemList │ │ │ │ │ ├── searchForm.html │ │ │ │ │ ├── searchResults.html │ │ │ │ │ └── searchSelectModal.html │ │ │ │ ├── itemStored │ │ │ │ │ ├── itemStoredSearchSelectModal.html │ │ │ │ │ ├── searchForm.html │ │ │ │ │ └── searchResults.html │ │ │ │ ├── searchForm.html │ │ │ │ └── storage │ │ │ │ │ ├── searchForm.html │ │ │ │ │ ├── searchResults.html │ │ │ │ │ └── searchSelectModal.html │ │ │ └── storageBlock │ │ │ │ ├── blockTree.html │ │ │ │ └── blockTreeEntry.html │ │ │ ├── templates │ │ │ └── items.csv │ │ │ └── webui │ │ │ ├── bootstrapComponents │ │ │ └── modal.html │ │ │ ├── js │ │ │ ├── carousel.js │ │ │ ├── constants.js │ │ │ ├── icons.js │ │ │ ├── links.js │ │ │ └── pageComponents.js │ │ │ ├── mainWebPageTemplate.html │ │ │ ├── pages │ │ │ ├── barcodes.html │ │ │ ├── categories.html │ │ │ ├── entity.html │ │ │ ├── fileAttachments.html │ │ │ ├── help.html │ │ │ ├── idGenerators.html │ │ │ ├── images.html │ │ │ ├── inventoryAdmin.html │ │ │ ├── itemCheckout.html │ │ │ ├── itemList.html │ │ │ ├── itemLists.html │ │ │ ├── items.html │ │ │ ├── overview.html │ │ │ ├── serverAdmin.html │ │ │ ├── serverInfo.html │ │ │ ├── storage.html │ │ │ └── you.html │ │ │ └── redirectPages │ │ │ ├── badAuthUiRedirect.html │ │ │ └── redirectWithMessage.html │ │ └── test │ │ ├── java │ │ └── tech │ │ │ └── ebp │ │ │ └── oqm │ │ │ └── core │ │ │ └── baseStation │ │ │ ├── interfaces │ │ │ └── ui │ │ │ │ ├── BasicUiTest.java │ │ │ │ ├── PageLookoverTest.java │ │ │ │ └── pages │ │ │ │ ├── ItemsUiTest.java │ │ │ │ ├── StorageBlockUiTest.java │ │ │ │ └── transactions │ │ │ │ └── add │ │ │ │ ├── AddAmtListTransactionUiTest.java │ │ │ │ ├── AddBulkTransactionUiTest.java │ │ │ │ ├── AddUniqueMultiTransactionUiTest.java │ │ │ │ └── AddUniqueSingleTransactionUiTest.java │ │ │ └── testResources │ │ │ ├── lifecycle │ │ │ └── TestCleanup.java │ │ │ ├── testClasses │ │ │ ├── RunningServerTest.java │ │ │ ├── WebServerTest.java │ │ │ └── WebUiTest.java │ │ │ ├── testUsers │ │ │ ├── TestUser.java │ │ │ ├── TestUserService.java │ │ │ └── TestUserType.java │ │ │ └── ui │ │ │ ├── PlaywrightSetup.java │ │ │ ├── assertions │ │ │ ├── MainAssertions.java │ │ │ └── MessageAssertions.java │ │ │ ├── pages │ │ │ ├── AllPages.java │ │ │ ├── ItemsPage.java │ │ │ └── StorageBlockPage.java │ │ │ └── utilities │ │ │ ├── AttKeywordUiUtils.java │ │ │ ├── HistoryUiUtils.java │ │ │ ├── ItemsUiUtils.java │ │ │ ├── NavUtils.java │ │ │ ├── StorageBlockUiUtils.java │ │ │ ├── StorageSearchSelectUiUtils.java │ │ │ └── transaction │ │ │ └── AddTransactionUtils.java │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.junit.platform.launcher.TestExecutionListener │ │ └── application.yaml ├── docs │ └── README.md ├── drivers │ ├── README.md │ ├── demoDriver │ │ ├── MacroPad │ │ │ ├── .MacroPad.ino.swp │ │ │ └── MacroPad.ino │ │ ├── Makefile │ │ ├── README.md │ │ ├── adafruit_products_Adafruit_MacroPad_RP2040_Pinout.png │ │ ├── demo-driver.c │ │ └── driverServer │ │ │ ├── README.md │ │ │ ├── __pycache__ │ │ │ └── app.cpython-310.pyc │ │ │ └── app.py │ ├── docs │ │ ├── README.md │ │ └── Serial Communication Spec.adoc │ └── open-qm-driver-server │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── acceptanceFeatures │ │ └── Test.feature │ │ ├── build.gradle │ │ ├── docs │ │ └── notes.md │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ ├── integrationTest │ │ ├── java │ │ │ └── com │ │ │ │ └── ebp │ │ │ │ └── openQuarterMaster │ │ │ │ └── driverServer │ │ │ │ ├── AnotherReactiveGreetingResourceIntTest.java │ │ │ │ ├── ReactiveGreetingResourceIntTest.java │ │ │ │ └── acceptance │ │ │ │ ├── CucumberIntTestConfig.java │ │ │ │ ├── CucumberQuarkusIntegrationTest.java │ │ │ │ └── steps │ │ │ │ └── TestSteps.java │ │ └── resources │ │ │ └── application.yaml │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── com │ │ │ │ └── ebp │ │ │ │ └── openQuarterMaster │ │ │ │ └── driverServer │ │ │ │ ├── AppLifecycleBean.java │ │ │ │ ├── MyReflectionConfiguration.java │ │ │ │ ├── ReactiveGreetingResource.java │ │ │ │ ├── interfaces │ │ │ │ └── rest │ │ │ │ │ ├── SerialManagerInterface.java │ │ │ │ │ └── SerialManagerInterfaceDemo.java │ │ │ │ ├── serial │ │ │ │ └── SerialPortWrapper.java │ │ │ │ └── services │ │ │ │ └── SerialService.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── beans.xml │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.yaml │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── ebp │ │ │ └── openQuarterMaster │ │ │ └── driverServer │ │ │ ├── ReactiveGreetingResourceTest.java │ │ │ ├── acceptance │ │ │ ├── CucumberTestConfig.java │ │ │ └── steps │ │ │ │ └── TestSteps.java │ │ │ └── testUtils │ │ │ ├── TestRestUtils.java │ │ │ ├── lifecycleManagers │ │ │ └── TestResourceLifecycleManager.java │ │ │ ├── serial │ │ │ ├── ReferenceStorageHardwareImplementation.java │ │ │ └── TestSerialPortManager.java │ │ │ └── testClasses │ │ │ ├── RunningServerTest.java │ │ │ └── WebServerTest.java │ │ └── resources │ │ └── application.yaml ├── libs │ ├── README.md │ ├── core-api-lib-quarkus │ │ ├── .gitignore │ │ ├── .idea │ │ │ └── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── README.md │ │ ├── deployment │ │ │ ├── .gitignore │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── tech │ │ │ │ │ └── ebp │ │ │ │ │ └── oqm │ │ │ │ │ └── lib │ │ │ │ │ └── core │ │ │ │ │ └── api │ │ │ │ │ └── quarkus │ │ │ │ │ └── deployment │ │ │ │ │ ├── CoreApiLibBuildTimeConfig.java │ │ │ │ │ ├── CoreApiLibQuarkusProcessor.java │ │ │ │ │ └── OqmCoreApiWebServiceContainer.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── tech │ │ │ │ └── ebp │ │ │ │ └── oqm │ │ │ │ └── lib │ │ │ │ └── core │ │ │ │ └── api │ │ │ │ └── quark │ │ │ │ └── quarkus │ │ │ │ └── test │ │ │ │ ├── CoreApiLibHealthCheckTest.java │ │ │ │ ├── CoreApiLibQuarkusDevModeTest.java │ │ │ │ └── CoreApiLibQuarkusTest.java │ │ ├── integration-tests │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── tech │ │ │ │ │ │ └── ebp │ │ │ │ │ │ └── oqm │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── core │ │ │ │ │ │ └── api │ │ │ │ │ │ └── quark │ │ │ │ │ │ └── quarkus │ │ │ │ │ │ └── it │ │ │ │ │ │ └── CoreApiLibQuarkusResource.java │ │ │ │ └── resources │ │ │ │ │ └── application.properties │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── tech │ │ │ │ └── ebp │ │ │ │ └── oqm │ │ │ │ └── lib │ │ │ │ └── core │ │ │ │ └── api │ │ │ │ └── quark │ │ │ │ └── quarkus │ │ │ │ └── it │ │ │ │ ├── CoreApiLibQuarkusResourceIT.java │ │ │ │ └── CoreApiLibQuarkusResourceTest.java │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── runtime │ │ │ ├── .gitignore │ │ │ ├── lombok.config │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── tech │ │ │ │ └── ebp │ │ │ │ └── oqm │ │ │ │ └── lib │ │ │ │ └── core │ │ │ │ └── api │ │ │ │ └── quarkus │ │ │ │ └── runtime │ │ │ │ ├── Constants.java │ │ │ │ ├── CoreApiHealthCheck.java │ │ │ │ ├── OqmCoreApiConfig.java │ │ │ │ ├── OqmDatabaseService.java │ │ │ │ ├── OqmUnitService.java │ │ │ │ ├── restClient │ │ │ │ ├── OqmCoreApiClientService.java │ │ │ │ ├── files │ │ │ │ │ ├── FileUploadBody.java │ │ │ │ │ └── ImportBundleFileBody.java │ │ │ │ ├── otherQueries │ │ │ │ │ └── DbExportQuery.java │ │ │ │ └── searchObjects │ │ │ │ │ ├── AppliedTransactionSearch.java │ │ │ │ │ ├── FileAttachmentSearch.java │ │ │ │ │ ├── FileSearchObject.java │ │ │ │ │ ├── HistorySearch.java │ │ │ │ │ ├── IdGeneratorSearch.java │ │ │ │ │ ├── ImageSearch.java │ │ │ │ │ ├── InteractingEntitySearch.java │ │ │ │ │ ├── InventoryItemSearch.java │ │ │ │ │ ├── ItemCategorySearch.java │ │ │ │ │ ├── ItemCheckoutSearch.java │ │ │ │ │ ├── SearchKeyAttObject.java │ │ │ │ │ ├── SearchObject.java │ │ │ │ │ ├── StorageBlockSearch.java │ │ │ │ │ └── StoredSearch.java │ │ │ │ └── sso │ │ │ │ ├── KcClientAuthService.java │ │ │ │ ├── KeycloakRestClient.java │ │ │ │ └── headerFactories │ │ │ │ └── OidcClientAuthHeaderFactory.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ ├── beans.xml │ │ │ └── quarkus-extension.yaml │ ├── open-qm-core │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── gradle.xml │ │ │ ├── inspectionProfiles │ │ │ │ └── Project_Default.xml │ │ │ ├── jarRepositories.xml │ │ │ ├── libraries-with-intellij-classes.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── modules │ │ │ │ ├── open-qm-core.open-qm-lib-core.main.iml │ │ │ │ ├── open-qm-core.test.iml │ │ │ │ ├── open-qm-lib-core.main.iml │ │ │ │ ├── open-qm-lib-core.test.iml │ │ │ │ ├── tech.epic-breakfast-productions.openQuarterMaster.lib.open-qm-lib-core.main.iml │ │ │ │ └── tech.epic-breakfast-productions.openQuarterMaster.lib.open-qm-lib-core.test.iml │ │ │ ├── uiDesigner.xml │ │ │ └── vcs.xml │ │ ├── README.md │ │ ├── build.gradle │ │ ├── docs │ │ │ ├── How to Store.md │ │ │ ├── Releasing.md │ │ │ └── nextVersionIdeas.md │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── lombok.config │ │ ├── settings.gradle │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── tech │ │ │ │ │ └── ebp │ │ │ │ │ └── oqm │ │ │ │ │ └── lib │ │ │ │ │ └── core │ │ │ │ │ ├── jackson │ │ │ │ │ ├── ColorModule.java │ │ │ │ │ ├── MongoObjectIdModule.java │ │ │ │ │ ├── QuantityJsonDeserializer.java │ │ │ │ │ ├── TempQuantityJacksonModule.java │ │ │ │ │ ├── TestableModule.java │ │ │ │ │ └── UnitModule.java │ │ │ │ │ ├── object │ │ │ │ │ ├── AttKeywordContaining.java │ │ │ │ │ ├── AttKeywordMainObject.java │ │ │ │ │ ├── FileMainObject.java │ │ │ │ │ ├── HasParent.java │ │ │ │ │ ├── ImagedMainObject.java │ │ │ │ │ ├── MainObject.java │ │ │ │ │ ├── ObjectUtils.java │ │ │ │ │ ├── Versionable.java │ │ │ │ │ ├── history │ │ │ │ │ │ ├── DescriptiveEvent.java │ │ │ │ │ │ ├── EventType.java │ │ │ │ │ │ ├── ObjectHistoryEvent.java │ │ │ │ │ │ └── events │ │ │ │ │ │ │ ├── CreateEvent.java │ │ │ │ │ │ │ ├── DeleteEvent.java │ │ │ │ │ │ │ ├── UpdateEvent.java │ │ │ │ │ │ │ ├── externalService │ │ │ │ │ │ │ ├── ExtServiceAuthEvent.java │ │ │ │ │ │ │ └── ExtServiceSetupEvent.java │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ └── NewFileVersionEvent.java │ │ │ │ │ │ │ ├── item │ │ │ │ │ │ │ ├── ItemAddEvent.java │ │ │ │ │ │ │ ├── ItemAddSubEvent.java │ │ │ │ │ │ │ ├── ItemCheckinEvent.java │ │ │ │ │ │ │ ├── ItemCheckoutEvent.java │ │ │ │ │ │ │ ├── ItemLowStockEvent.java │ │ │ │ │ │ │ ├── ItemStorageBlockEvent.java │ │ │ │ │ │ │ ├── ItemSubEvent.java │ │ │ │ │ │ │ ├── ItemTransferEvent.java │ │ │ │ │ │ │ └── expiry │ │ │ │ │ │ │ │ ├── ItemExpiredEvent.java │ │ │ │ │ │ │ │ ├── ItemExpiryEvent.java │ │ │ │ │ │ │ │ └── ItemExpiryWarningEvent.java │ │ │ │ │ │ │ ├── itemList │ │ │ │ │ │ │ ├── ItemListActionAddEvent.java │ │ │ │ │ │ │ ├── ItemListActionDeleteEvent.java │ │ │ │ │ │ │ ├── ItemListActionUpdateEvent.java │ │ │ │ │ │ │ └── ItemListApplyEvent.java │ │ │ │ │ │ │ └── user │ │ │ │ │ │ │ ├── UserDisabledEvent.java │ │ │ │ │ │ │ ├── UserEnabledEvent.java │ │ │ │ │ │ │ └── UserLoginEvent.java │ │ │ │ │ ├── interactingEntity │ │ │ │ │ │ ├── InteractingEntity.java │ │ │ │ │ │ ├── InteractingEntityReference.java │ │ │ │ │ │ ├── InteractingEntityType.java │ │ │ │ │ │ ├── externalService │ │ │ │ │ │ │ ├── ExternalService.java │ │ │ │ │ │ │ ├── GeneralService.java │ │ │ │ │ │ │ ├── ServiceType.java │ │ │ │ │ │ │ ├── plugin │ │ │ │ │ │ │ │ ├── Plugin.java │ │ │ │ │ │ │ │ ├── PluginService.java │ │ │ │ │ │ │ │ ├── PluginType.java │ │ │ │ │ │ │ │ ├── PluginTypeType.java │ │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ │ │ └── nav │ │ │ │ │ │ │ │ │ ├── NavItem.java │ │ │ │ │ │ │ │ │ └── NavSubMenu.java │ │ │ │ │ │ │ └── roles │ │ │ │ │ │ │ │ └── RequestedRole.java │ │ │ │ │ │ └── user │ │ │ │ │ │ │ ├── NotificationSettings.java │ │ │ │ │ │ │ └── User.java │ │ │ │ │ ├── itemList │ │ │ │ │ │ ├── ItemList.java │ │ │ │ │ │ ├── ItemListAction.java │ │ │ │ │ │ └── ItemListActionMode.java │ │ │ │ │ ├── media │ │ │ │ │ │ ├── FileHashes.java │ │ │ │ │ │ ├── FileMetadata.java │ │ │ │ │ │ ├── Image.java │ │ │ │ │ │ └── file │ │ │ │ │ │ │ └── FileAttachment.java │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── ItemCategory.java │ │ │ │ │ │ ├── checkout │ │ │ │ │ │ │ ├── CheckoutNotificationStatus.java │ │ │ │ │ │ │ ├── ItemCheckout.java │ │ │ │ │ │ │ ├── checkinDetails │ │ │ │ │ │ │ │ ├── CheckInDetails.java │ │ │ │ │ │ │ │ ├── CheckInType.java │ │ │ │ │ │ │ │ ├── LossCheckin.java │ │ │ │ │ │ │ │ └── ReturnCheckin.java │ │ │ │ │ │ │ └── checkoutFor │ │ │ │ │ │ │ │ ├── CheckoutFor.java │ │ │ │ │ │ │ │ ├── CheckoutForExtUser.java │ │ │ │ │ │ │ │ ├── CheckoutForOqmEntity.java │ │ │ │ │ │ │ │ └── CheckoutForType.java │ │ │ │ │ │ ├── items │ │ │ │ │ │ │ ├── AmountItem.java │ │ │ │ │ │ │ ├── InventoryItem.java │ │ │ │ │ │ │ ├── ItemNotificationStatus.java │ │ │ │ │ │ │ ├── ListAmountItem.java │ │ │ │ │ │ │ ├── SimpleAmountItem.java │ │ │ │ │ │ │ ├── TrackedItem.java │ │ │ │ │ │ │ ├── exception │ │ │ │ │ │ │ │ ├── AlreadyStoredException.java │ │ │ │ │ │ │ │ ├── NoCheckoutDetailException.java │ │ │ │ │ │ │ │ ├── NoStorageBlockException.java │ │ │ │ │ │ │ │ └── NotEnoughStoredException.java │ │ │ │ │ │ │ ├── stored │ │ │ │ │ │ │ │ ├── AmountStored.java │ │ │ │ │ │ │ │ ├── StorageType.java │ │ │ │ │ │ │ │ ├── Stored.java │ │ │ │ │ │ │ │ ├── StoredNotificationStatus.java │ │ │ │ │ │ │ │ ├── StoredType.java │ │ │ │ │ │ │ │ └── TrackedStored.java │ │ │ │ │ │ │ ├── storedWrapper │ │ │ │ │ │ │ │ ├── ListStoredWrapper.java │ │ │ │ │ │ │ │ ├── MapStoredWrapper.java │ │ │ │ │ │ │ │ ├── SingleStoredWrapper.java │ │ │ │ │ │ │ │ ├── StoredWrapper.java │ │ │ │ │ │ │ │ ├── WrapperNotificationStatus.java │ │ │ │ │ │ │ │ ├── amountStored │ │ │ │ │ │ │ │ │ ├── ListAmountStoredWrapper.java │ │ │ │ │ │ │ │ │ └── SingleAmountStoredWrapper.java │ │ │ │ │ │ │ │ └── trackedStored │ │ │ │ │ │ │ │ │ └── TrackedMapStoredWrapper.java │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── BigDecimalSumHelper.java │ │ │ │ │ │ │ │ ├── QuantitySumHelper.java │ │ │ │ │ │ │ │ └── SumHelper.java │ │ │ │ │ │ └── storageBlock │ │ │ │ │ │ │ └── StorageBlock.java │ │ │ │ │ └── upgrade │ │ │ │ │ │ ├── ObjectUpgrader.java │ │ │ │ │ │ ├── ObjectVersionBumper.java │ │ │ │ │ │ └── UpgradeResult.java │ │ │ │ │ ├── quantities │ │ │ │ │ └── QuantitiesUtils.java │ │ │ │ │ ├── rest │ │ │ │ │ ├── ErrorMessage.java │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── TokenCheckResponse.java │ │ │ │ │ │ ├── externalService │ │ │ │ │ │ │ ├── ExternalServiceLoginRequest.java │ │ │ │ │ │ │ └── ExternalServiceLoginResponse.java │ │ │ │ │ │ ├── roles │ │ │ │ │ │ │ ├── Roles.java │ │ │ │ │ │ │ ├── ServiceRoles.java │ │ │ │ │ │ │ └── UserRoles.java │ │ │ │ │ │ └── user │ │ │ │ │ │ │ ├── UserLoginRequest.java │ │ │ │ │ │ │ └── UserLoginResponse.java │ │ │ │ │ ├── externalItemLookup │ │ │ │ │ │ ├── ExtItemLookupProviderInfo.java │ │ │ │ │ │ ├── ExtItemLookupResult.java │ │ │ │ │ │ └── ExtItemLookupResults.java │ │ │ │ │ ├── externalService │ │ │ │ │ │ ├── ExternalServiceSetupRequest.java │ │ │ │ │ │ ├── ExternalServiceSetupResponse.java │ │ │ │ │ │ ├── GeneralServiceSetupRequest.java │ │ │ │ │ │ └── PluginServiceSetupRequest.java │ │ │ │ │ ├── media │ │ │ │ │ │ ├── CodeImageType.java │ │ │ │ │ │ ├── ImageCreateRequest.java │ │ │ │ │ │ ├── ObjectCodeContentType.java │ │ │ │ │ │ └── file │ │ │ │ │ │ │ └── FileAttachmentGet.java │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── IMAGED_OBJ_TYPE_NAME.java │ │ │ │ │ │ └── itemCheckout │ │ │ │ │ │ │ └── ItemCheckoutRequest.java │ │ │ │ │ ├── tree │ │ │ │ │ │ ├── ParentedMainObjectTree.java │ │ │ │ │ │ ├── ParentedMainObjectTreeNode.java │ │ │ │ │ │ ├── TextInBox.java │ │ │ │ │ │ ├── itemCategory │ │ │ │ │ │ │ ├── ItemCategoryTree.java │ │ │ │ │ │ │ └── ItemCategoryTreeNode.java │ │ │ │ │ │ └── storageBlock │ │ │ │ │ │ │ ├── StorageBlockTree.java │ │ │ │ │ │ │ └── StorageBlockTreeNode.java │ │ │ │ │ ├── unit │ │ │ │ │ │ ├── UnitListEntry.java │ │ │ │ │ │ ├── UnitListResponse.java │ │ │ │ │ │ └── custom │ │ │ │ │ │ │ ├── NewBaseCustomUnitRequest.java │ │ │ │ │ │ │ ├── NewCustomUnitRequest.java │ │ │ │ │ │ │ └── NewDerivedCustomUnitRequest.java │ │ │ │ │ └── user │ │ │ │ │ │ ├── UserCreateRequest.java │ │ │ │ │ │ ├── UserGetResponse.java │ │ │ │ │ │ └── availability │ │ │ │ │ │ ├── AvailabilityResponse.java │ │ │ │ │ │ ├── EmailAvailabilityResponse.java │ │ │ │ │ │ └── UsernameAvailabilityResponse.java │ │ │ │ │ ├── units │ │ │ │ │ ├── CustomUnitEntry.java │ │ │ │ │ ├── LibUnits.java │ │ │ │ │ ├── OqmProvidedUnits.java │ │ │ │ │ ├── UnitCategory.java │ │ │ │ │ ├── UnitTools.java │ │ │ │ │ ├── UnitUtils.java │ │ │ │ │ └── ValidUnitDimension.java │ │ │ │ │ └── validation │ │ │ │ │ ├── annotations │ │ │ │ │ ├── ValidBase64.java │ │ │ │ │ ├── ValidHeldStoredUnits.java │ │ │ │ │ ├── ValidInteractingEntityReference.java │ │ │ │ │ ├── ValidPassword.java │ │ │ │ │ ├── ValidQuantity.java │ │ │ │ │ ├── ValidQuantityOfUnit.java │ │ │ │ │ ├── ValidServiceRole.java │ │ │ │ │ ├── ValidUnit.java │ │ │ │ │ └── ValidUserRole.java │ │ │ │ │ └── validators │ │ │ │ │ ├── Base64Validator.java │ │ │ │ │ ├── InteractingEntityReferenceValidator.java │ │ │ │ │ ├── PasswordConstraintValidator.java │ │ │ │ │ ├── QuantityOfUnitValidator.java │ │ │ │ │ ├── QuantityValidator.java │ │ │ │ │ ├── ServiceRoleValidator.java │ │ │ │ │ ├── UnitValidator.java │ │ │ │ │ ├── UserRoleValidator.java │ │ │ │ │ ├── ValidStoredUnitsValidator.java │ │ │ │ │ └── Validator.java │ │ │ └── resources │ │ │ │ └── META-INF │ │ │ │ └── beans.xml │ │ │ └── test │ │ │ ├── java │ │ │ └── tech │ │ │ │ └── ebp │ │ │ │ └── oqm │ │ │ │ └── lib │ │ │ │ └── core │ │ │ │ ├── MainObjectSerializationTest.java │ │ │ │ ├── MainObjectValidationTest.java │ │ │ │ ├── TestMainObject.java │ │ │ │ ├── jackson │ │ │ │ ├── MongoObjectIdModuleTest.java │ │ │ │ └── UnitModuleTest.java │ │ │ │ ├── object │ │ │ │ ├── history │ │ │ │ │ ├── HistoryEventSerializationTest.java │ │ │ │ │ ├── HistoryEventValidationTest.java │ │ │ │ │ └── ObjectHistoryEventTest.java │ │ │ │ ├── interactingEntity │ │ │ │ │ ├── externalService │ │ │ │ │ │ ├── ExternalServiceTest.java │ │ │ │ │ │ ├── GeneralServiceSerializationTest.java │ │ │ │ │ │ ├── GeneralServiceTest.java │ │ │ │ │ │ ├── PluginServiceSerializationTest.java │ │ │ │ │ │ └── PluginServiceTest.java │ │ │ │ │ └── user │ │ │ │ │ │ └── UserTest.java │ │ │ │ ├── media │ │ │ │ │ ├── ImageSerializationTest.java │ │ │ │ │ ├── ImageTest.java │ │ │ │ │ ├── ImageValidationTest.java │ │ │ │ │ └── file │ │ │ │ │ │ └── FileHashesTest.java │ │ │ │ └── storage │ │ │ │ │ ├── ItemCategorySerializationTest.java │ │ │ │ │ ├── items │ │ │ │ │ ├── InventoryItemSerializationTest.java │ │ │ │ │ ├── InventoryItemTest.java │ │ │ │ │ ├── InventoryItemValidationTest.java │ │ │ │ │ ├── ListAmountItemTest.java │ │ │ │ │ ├── SimpleAmountItemTest.java │ │ │ │ │ ├── TrackedItemTest.java │ │ │ │ │ ├── stored │ │ │ │ │ │ ├── AmountStoredSerializationTest.java │ │ │ │ │ │ ├── AmountStoredValidationTest.java │ │ │ │ │ │ ├── TrackedStoredSerializationTest.java │ │ │ │ │ │ └── TrackedStoredValidationTest.java │ │ │ │ │ ├── storedWrapper │ │ │ │ │ │ ├── StoredWrapperTest.java │ │ │ │ │ │ ├── amountStored │ │ │ │ │ │ │ ├── ListAmountStoredWrapperSerializationTest.java │ │ │ │ │ │ │ ├── ListAmountStoredWrapperTest.java │ │ │ │ │ │ │ ├── ListAmountStoredWrapperValidationTest.java │ │ │ │ │ │ │ ├── SingleAmountStoredWrapperSerializationTest.java │ │ │ │ │ │ │ ├── SingleAmountStoredWrapperTest.java │ │ │ │ │ │ │ └── TrackedStoredWrapperTest.java │ │ │ │ │ │ └── trackedStored │ │ │ │ │ │ │ ├── TrackedMapStoredWrapperSerealizationTest.java │ │ │ │ │ │ │ └── TrackedMapStoredWrapperTest.java │ │ │ │ │ └── utils │ │ │ │ │ │ ├── BigDecimalSumHelperTest.java │ │ │ │ │ │ └── QuantitySumHelperTest.java │ │ │ │ │ └── storageBlock │ │ │ │ │ └── StorageBlockTest.java │ │ │ │ ├── rest │ │ │ │ ├── ErrorMessageSerializationTest.java │ │ │ │ ├── auth │ │ │ │ │ ├── externalService │ │ │ │ │ │ └── ExternalServiceLoginRequestSerializationTest.java │ │ │ │ │ └── roles │ │ │ │ │ │ ├── ServiceRolesTest.java │ │ │ │ │ │ └── UserRolesTest.java │ │ │ │ ├── media │ │ │ │ │ ├── ImageCreateRequestSerializationTest.java │ │ │ │ │ └── ImageCreateRequestValidationTest.java │ │ │ │ ├── tree │ │ │ │ │ └── storageBlock │ │ │ │ │ │ └── StorageBlockTreeTest.java │ │ │ │ └── unit │ │ │ │ │ └── custom │ │ │ │ │ └── NewCustomUnitRequestSerializationTest.java │ │ │ │ ├── testUtils │ │ │ │ ├── BasicTest.java │ │ │ │ ├── ObjectSerializationTest.java │ │ │ │ ├── ObjectValidationTest.java │ │ │ │ ├── ObjectValidatorTest.java │ │ │ │ └── TestConstraintValidatorContext.java │ │ │ │ ├── units │ │ │ │ ├── UnitSerializationTest.java │ │ │ │ └── UnitUtilsTest.java │ │ │ │ └── validation │ │ │ │ └── validators │ │ │ │ ├── PasswordConstraintValidatorTest.java │ │ │ │ └── UnitValidatorTest.java │ │ │ └── resources │ │ │ ├── junit-platform.properties │ │ │ ├── test_image.png │ │ │ ├── test_image_big.png │ │ │ ├── test_image_big_tall.png │ │ │ └── test_image_proj.xcf │ └── open-qm-moduleDriver │ │ ├── .gitignore │ │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── jarRepositories.xml │ │ ├── misc.xml │ │ └── vcs.xml │ │ ├── README.md │ │ ├── build.gradle │ │ ├── docs │ │ └── README.md │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── lombok.config │ │ ├── settings.gradle │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── tech │ │ │ │ └── ebp │ │ │ │ └── oqm │ │ │ │ └── lib │ │ │ │ └── moduleDriver │ │ │ │ ├── BlockLightPowerState.java │ │ │ │ ├── BlockLightSetting.java │ │ │ │ ├── ModuleInfo.java │ │ │ │ ├── ModuleInteractionInfo.java │ │ │ │ ├── ModuleState.java │ │ │ │ ├── interaction │ │ │ │ ├── command │ │ │ │ │ ├── Commands.java │ │ │ │ │ ├── ModuleCommander.java │ │ │ │ │ └── commands │ │ │ │ │ │ ├── Command.java │ │ │ │ │ │ ├── CommandParser.java │ │ │ │ │ │ ├── CommandParsingUtils.java │ │ │ │ │ │ ├── CommandType.java │ │ │ │ │ │ ├── complex │ │ │ │ │ │ ├── ComplexCommand.java │ │ │ │ │ │ ├── ErrorCommand.java │ │ │ │ │ │ ├── GetInfoReturnCommand.java │ │ │ │ │ │ ├── GetStateReturnCommand.java │ │ │ │ │ │ └── MessageCommand.java │ │ │ │ │ │ └── simple │ │ │ │ │ │ ├── GetInfoCommand.java │ │ │ │ │ │ ├── GetStateCommand.java │ │ │ │ │ │ ├── OkCommand.java │ │ │ │ │ │ ├── PingCommand.java │ │ │ │ │ │ └── SimpleCommand.java │ │ │ │ ├── exceptions │ │ │ │ │ ├── CommandAssertionError.java │ │ │ │ │ ├── CommandParseException.java │ │ │ │ │ ├── CommandReturnedErrorException.java │ │ │ │ │ └── SerialInteractionUnlockedException.java │ │ │ │ └── serial │ │ │ │ │ ├── SerialPortModuleCommander.java │ │ │ │ │ └── SerialPortWrapper.java │ │ │ │ └── rest │ │ │ │ └── PostMessageRequest.java │ │ └── resources │ │ │ └── META-INF │ │ │ └── beans.xml │ │ └── test │ │ ├── java │ │ └── tech │ │ │ └── ebp │ │ │ └── oqm │ │ │ └── lib │ │ │ └── moduleDriver │ │ │ ├── ModuleStateValidationTest.java │ │ │ ├── interaction │ │ │ └── command │ │ │ │ └── commands │ │ │ │ ├── CommandParserTest.java │ │ │ │ ├── CommandParsingUtilsTest.java │ │ │ │ ├── CommandTest.java │ │ │ │ └── simple │ │ │ │ └── SimpleCommandTest.java │ │ │ └── testUtils │ │ │ ├── BasicTest.java │ │ │ ├── ObjectSerializationTest.java │ │ │ ├── ObjectValidationTest.java │ │ │ └── serial │ │ │ ├── ReferenceStorageHardwareImplementation.java │ │ │ └── TestSerialPortManager.java │ │ └── resources │ │ ├── junit-platform.properties │ │ ├── test_image.png │ │ ├── test_image_big.png │ │ ├── test_image_big_tall.png │ │ └── test_image_proj.xcf └── plugins │ ├── .gitignore │ ├── .idea │ └── .gitignore │ ├── README.md │ ├── alert-messenger │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── dev │ │ ├── README.md │ │ ├── devTest-cert-cert.pem │ │ ├── devTest-cert-key.pem │ │ ├── developers.jpeg │ │ └── oqm-realm.json │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── tech │ │ │ │ └── ebp │ │ │ │ └── oqm │ │ │ │ └── plugin │ │ │ │ └── alertMessenger │ │ │ │ ├── ExampleConsumer.java │ │ │ │ ├── ObjectNodeDeserializer.java │ │ │ │ ├── interfaces │ │ │ │ └── ui │ │ │ │ │ ├── Home.java │ │ │ │ │ └── UiInterface.java │ │ │ │ ├── livecycle │ │ │ │ └── LifecycleBean.java │ │ │ │ ├── model │ │ │ │ └── UserInfo.java │ │ │ │ └── utils │ │ │ │ └── JwtUtils.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ ├── favicon.ico │ │ │ │ └── res │ │ │ │ ├── js │ │ │ │ └── OqmDb.js │ │ │ │ └── lib │ │ │ │ └── js-cookie │ │ │ │ └── 3.0.5 │ │ │ │ └── js.cookie.min.js │ │ │ ├── application.yaml │ │ │ └── templates │ │ │ └── webui │ │ │ └── pages │ │ │ └── index.html │ │ └── test │ │ ├── java │ │ └── tech │ │ │ └── ebp │ │ │ └── oqm │ │ │ └── plugin │ │ │ └── alertManager │ │ │ └── TestConsumerTest.java │ │ └── resources │ │ └── application.yaml │ ├── alt-formats │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── installerSrc │ │ ├── 30-plugin-alt_formats.json │ │ ├── installerProperties.json │ │ ├── oqm-plugin-ext_item_search.service │ │ ├── plugin-ext_item_search-config.list │ │ └── uiEntry.json │ ├── lombok.config │ ├── makeInstallers.sh │ ├── settings.gradle │ └── src │ │ ├── integrationTest │ │ └── java │ │ │ └── tech │ │ │ └── ebp │ │ │ └── oqm │ │ │ └── plugin │ │ │ └── altFormats │ │ │ └── BootTestIT.java │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── tech │ │ │ │ └── ebp │ │ │ │ └── oqm │ │ │ │ └── plugin │ │ │ │ └── altFormats │ │ │ │ ├── interfaces │ │ │ │ └── Templates.java │ │ │ │ ├── lifecycle │ │ │ │ └── LifecycleBean.java │ │ │ │ ├── service │ │ │ │ └── csv │ │ │ │ │ └── InvItemCsvConverter.java │ │ │ │ └── utils │ │ │ │ └── QuteGlobals.java │ │ └── resources │ │ │ ├── application.yml │ │ │ └── templates │ │ │ └── templates │ │ │ └── items.csv │ │ ├── native-test │ │ └── java │ │ │ └── tech │ │ │ └── ebp │ │ │ └── openQuarterMaster │ │ │ └── BootIT.java │ │ └── test │ │ ├── java │ │ └── tech │ │ │ └── ebp │ │ │ └── oqm │ │ │ └── plugin │ │ │ └── altFormats │ │ │ └── BootTest.java │ │ └── resources │ │ └── application.yaml │ ├── cloud-context │ ├── .idea │ │ └── .gitignore │ ├── readme.md │ ├── snhInstallerSrc │ │ ├── 50-plugin-cloud-context.json │ │ └── properties.json │ └── src │ │ └── oqm-cloud-context.py │ ├── docs │ ├── NewPluginIdeas.md │ ├── Plugin Integration.md │ └── README.md │ ├── external-item-search │ ├── .dockerignore │ ├── .gitignore │ ├── .idea │ │ └── .gitignore │ ├── README.md │ ├── build.gradle │ ├── dev │ │ └── wmMapping │ │ │ └── mappings │ │ │ ├── barcodelookup_barcode.json │ │ │ ├── datakick_barcode.json │ │ │ ├── rebrickable_part.json │ │ │ ├── upcitemdb_barcode.json │ │ │ └── upcitemdb_trial_barcode.json │ ├── docs │ │ ├── itemSources.md │ │ ├── readme.md │ │ └── releasing.md │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── installerSrc │ │ ├── 30-plugin-ext_item_search.json │ │ ├── installerProperties.json │ │ ├── oqm-plugin-ext_item_search.service │ │ ├── plugin-ext_item_search-config.list │ │ └── uiEntry.json │ ├── lombok.config │ ├── makeInstallers.sh │ ├── settings.gradle │ └── src │ │ ├── integrationTest │ │ └── java │ │ │ └── tech │ │ │ └── ebp │ │ │ └── oqm │ │ │ └── plugin │ │ │ └── extItemSearch │ │ │ └── BootTestIT.java │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── tech │ │ │ │ └── ebp │ │ │ │ └── oqm │ │ │ │ └── plugin │ │ │ │ └── extItemSearch │ │ │ │ ├── interfaces │ │ │ │ └── ItemLookupRestInterface.java │ │ │ │ ├── lifecycle │ │ │ │ └── LifecycleBean.java │ │ │ │ ├── model │ │ │ │ ├── ExtItemLookupProviderInfo.java │ │ │ │ ├── ExtItemLookupResult.java │ │ │ │ └── ExtItemLookupResults.java │ │ │ │ └── service │ │ │ │ ├── ExtItemLookupService.java │ │ │ │ └── searchServices │ │ │ │ ├── ItemSearchService.java │ │ │ │ ├── api │ │ │ │ ├── ItemApiSearchService.java │ │ │ │ ├── lego │ │ │ │ │ ├── LegoLookupService.java │ │ │ │ │ └── rebrickable │ │ │ │ │ │ ├── RebrickableLookupClient.java │ │ │ │ │ │ └── RebrickableService.java │ │ │ │ └── product │ │ │ │ │ ├── ApiProductSearchService.java │ │ │ │ │ ├── barcodeLookup │ │ │ │ │ ├── BarcodeLookupClient.java │ │ │ │ │ └── BarcodeLookupService.java │ │ │ │ │ ├── dataKick │ │ │ │ │ ├── DataKickLookupClient.java │ │ │ │ │ └── DataKickService.java │ │ │ │ │ └── upcItemDb │ │ │ │ │ ├── UpcItemDbLookupClient.java │ │ │ │ │ └── UpcItemDbService.java │ │ │ │ └── webPage │ │ │ │ ├── AdafruitWebProductScrapeService.java │ │ │ │ ├── AmazonWebProductScrapeService.java │ │ │ │ ├── GenericWebProductScrapeService.java │ │ │ │ └── WebPageProductScrapeService.java │ │ └── resources │ │ │ └── application.yml │ │ ├── native-test │ │ └── java │ │ │ └── tech │ │ │ └── ebp │ │ │ └── openQuarterMaster │ │ │ └── BootIT.java │ │ └── test │ │ ├── java │ │ └── tech │ │ │ └── ebp │ │ │ └── oqm │ │ │ └── plugin │ │ │ └── extItemSearch │ │ │ └── BootTest.java │ │ └── resources │ │ └── application.yaml │ ├── image-search │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── poc │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── gradle.xml │ │ │ ├── misc.xml │ │ │ └── vcs.xml │ │ ├── README.md │ │ ├── build.gradle │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ ├── ImageComparisonProjectFinal.java │ │ │ │ └── ImageData.java │ │ └── testImages │ │ │ ├── FAIESSGRE.jpg │ │ │ ├── Pliers.jpg │ │ │ ├── Screw.jpg │ │ │ ├── Screw2.jpg │ │ │ ├── Shovel.jpg │ │ │ ├── Wirestrippers.jpg │ │ │ ├── adjustable_wrench_tool_3.jpg │ │ │ ├── banana2.jpg │ │ │ ├── bin.jpg │ │ │ ├── bin2.jpg │ │ │ ├── bolt.jpg │ │ │ ├── box.jpg │ │ │ ├── box2.jpg │ │ │ ├── box3.jpg │ │ │ ├── cayenne.jpg │ │ │ ├── courgette.jpg │ │ │ ├── electric_jigsaw_tool_8.jpg │ │ │ ├── fork.jpg │ │ │ ├── gloves.jpg │ │ │ ├── hammer.jpg │ │ │ ├── hammer_tool_1.jpg │ │ │ ├── hammer_tool_5.jpg │ │ │ ├── handheldrake.jpg │ │ │ ├── hoe.jpg │ │ │ ├── hose.jpg │ │ │ ├── hoses.jpg │ │ │ ├── hoses2.jpg │ │ │ ├── knife.jpg │ │ │ ├── knife2.jpg │ │ │ ├── lantern.jpg │ │ │ ├── lantern2.jpg │ │ │ ├── lantern3.jpg │ │ │ ├── ledduce.jpg │ │ │ ├── lightbulb.jpg │ │ │ ├── lights.jpg │ │ │ ├── manguo.jpg │ │ │ ├── mustard.jpg │ │ │ ├── needle_nose_pliers_tool_9.jpg │ │ │ ├── nut.jpg │ │ │ ├── open_end_wrench_tool_7.jpg │ │ │ ├── oregano.jpg │ │ │ ├── paintroller.jpg │ │ │ ├── paintroller2.jpg │ │ │ ├── paprika.jpg │ │ │ ├── pepper.jpg │ │ │ ├── pineappple.jpg │ │ │ ├── rake2.jpg │ │ │ ├── screwdriver.jpg │ │ │ ├── screwdriver_tool_2.jpg │ │ │ ├── seasoning.jpg │ │ │ ├── spoon.jpg │ │ │ ├── tournevis.jpg │ │ │ ├── trowel.jpg │ │ │ ├── utility_knife_tool_10.jpg │ │ │ ├── vherry.jpg │ │ │ ├── washer.jpg │ │ │ ├── watch.jpg │ │ │ ├── watermelon.jpg │ │ │ ├── wirecutters.jpg │ │ │ ├── woodscrew.jpg │ │ │ └── wrench.jpg │ ├── settings.gradle │ └── src │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-micro │ │ ├── java │ │ │ └── tech │ │ │ │ └── ebp │ │ │ │ └── oqm │ │ │ │ └── plugin │ │ │ │ └── imageSearch │ │ │ │ ├── GreetingConfig.java │ │ │ │ ├── GreetingResource.java │ │ │ │ ├── MyMessagingApplication.java │ │ │ │ └── SomePage.java │ │ └── resources │ │ │ ├── application.yml │ │ │ ├── models │ │ │ └── .gitkeep │ │ │ └── templates │ │ │ └── page.qute.html │ │ ├── native-test │ │ └── java │ │ │ └── tech │ │ │ └── ebp │ │ │ └── oqm │ │ │ └── plugin │ │ │ └── imageSearch │ │ │ └── GreetingResourceIT.java │ │ └── test │ │ └── java │ │ └── tech │ │ └── ebp │ │ └── oqm │ │ └── plugin │ │ └── imageSearch │ │ ├── GreetingResourceTest.java │ │ └── MyMessagingApplicationTest.java │ ├── makeInstallers.sh │ ├── mapper │ └── .idea │ │ └── .gitignore │ ├── miffie-llm │ └── .idea │ │ └── .gitignore │ ├── mss-controller │ ├── .gitignore │ ├── .idea │ │ └── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── README.md │ ├── mss-controller-plugin-devtools │ │ ├── .gitignore │ │ ├── README.md │ │ ├── deployment │ │ │ ├── .gitignore │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── tech │ │ │ │ └── ebp │ │ │ │ └── oqm │ │ │ │ └── plugin │ │ │ │ └── mssController │ │ │ │ └── devTools │ │ │ │ └── deployment │ │ │ │ ├── CoreApiLibQuarkusProcessor.java │ │ │ │ ├── config │ │ │ │ ├── DevModuleConfig.java │ │ │ │ ├── MssControllerDevserviceConfig.java │ │ │ │ └── MssControllerDevtoolBuildTimeConfig.java │ │ │ │ └── testModules │ │ │ │ ├── MssTestModule.java │ │ │ │ ├── MssTestNetworkModule.java │ │ │ │ └── MssTestSerialModule.java │ │ ├── integration-tests │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── tech │ │ │ │ │ │ └── ebp │ │ │ │ │ │ └── oqm │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── core │ │ │ │ │ │ └── api │ │ │ │ │ │ └── quark │ │ │ │ │ │ └── quarkus │ │ │ │ │ │ └── it │ │ │ │ │ │ └── CoreApiLibQuarkusResource.java │ │ │ │ └── resources │ │ │ │ │ └── application.properties │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── tech │ │ │ │ └── ebp │ │ │ │ └── oqm │ │ │ │ └── lib │ │ │ │ └── core │ │ │ │ └── api │ │ │ │ └── quark │ │ │ │ └── quarkus │ │ │ │ └── it │ │ │ │ ├── CoreApiLibQuarkusResourceIT.java │ │ │ │ └── CoreApiLibQuarkusResourceTest.java │ │ ├── pom.xml │ │ └── runtime │ │ │ ├── .gitignore │ │ │ ├── lombok.config │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── tech │ │ │ │ └── ebp │ │ │ │ └── oqm │ │ │ │ └── plugin │ │ │ │ └── mssController │ │ │ │ └── devTools │ │ │ │ └── runtime │ │ │ │ └── Constants.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ ├── beans.xml │ │ │ └── quarkus-extension.yaml │ ├── mss-controller-plugin-lib │ │ ├── lombok.config │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── tech │ │ │ └── ebp │ │ │ └── oqm │ │ │ └── plugin │ │ │ └── mssController │ │ │ └── lib │ │ │ └── command │ │ │ ├── CommandType.java │ │ │ ├── GetModInfoCommand.java │ │ │ ├── HighlightBlocksCommand.java │ │ │ ├── IdentifyModCommand.java │ │ │ ├── MssCommand.java │ │ │ └── response │ │ │ ├── CommandResponse.java │ │ │ ├── CommandResponseStatus.java │ │ │ ├── GetModuleInfoResponse.java │ │ │ └── ModuleInfo.java │ ├── mss-controller-plugin-testModuleServer │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── docker │ │ │ │ ├── Dockerfile.jvm │ │ │ │ ├── Dockerfile.legacy-jar │ │ │ │ ├── Dockerfile.native │ │ │ │ └── Dockerfile.native-micro │ │ │ ├── java │ │ │ │ └── tech │ │ │ │ │ └── ebp │ │ │ │ │ └── oqm │ │ │ │ │ └── plugin │ │ │ │ │ └── mssController │ │ │ │ │ └── testModuleServer │ │ │ │ │ ├── GreetingResource.java │ │ │ │ │ ├── ShutdownHandler.java │ │ │ │ │ ├── StartupHandler.java │ │ │ │ │ ├── config │ │ │ │ │ └── ModuleConfig.java │ │ │ │ │ ├── interfaces │ │ │ │ │ ├── TestModuleInterface.java │ │ │ │ │ ├── rest │ │ │ │ │ │ ├── ModuleInfoEndpoints.java │ │ │ │ │ │ └── NetworkModuleInterface.java │ │ │ │ │ └── serial │ │ │ │ │ │ ├── SerialModuleInterface.java │ │ │ │ │ │ └── TestSerialPort.java │ │ │ │ │ └── module │ │ │ │ │ └── TestModuleImpl.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ ├── java │ │ │ └── tech │ │ │ │ └── ebp │ │ │ │ └── oqm │ │ │ │ └── plugin │ │ │ │ └── mssController │ │ │ │ └── testModuleServer │ │ │ │ ├── GreetingResourceIT.java │ │ │ │ ├── GreetingResourceTest.java │ │ │ │ ├── SerialPortTest.java │ │ │ │ └── testProfiles │ │ │ │ └── SerialPortTestProfile.java │ │ │ └── resources │ │ │ └── application.properties │ ├── mss-controller-plugin │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── dev │ │ │ ├── README.md │ │ │ ├── devTest-cert-cert.pem │ │ │ ├── devTest-cert-key.pem │ │ │ ├── developers.jpeg │ │ │ └── oqm-realm.json │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── docker │ │ │ │ │ ├── Dockerfile.jvm │ │ │ │ │ ├── Dockerfile.legacy-jar │ │ │ │ │ ├── Dockerfile.native │ │ │ │ │ └── Dockerfile.native-micro │ │ │ │ ├── java │ │ │ │ │ └── tech │ │ │ │ │ │ └── ebp │ │ │ │ │ │ └── oqm │ │ │ │ │ │ └── plugin │ │ │ │ │ │ └── mssController │ │ │ │ │ │ ├── LifecycleBean.java │ │ │ │ │ │ ├── MyLivenessCheck.java │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── ModuleConfig.java │ │ │ │ │ │ └── VoiceSearchConfig.java │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ ├── RestInterface.java │ │ │ │ │ │ ├── rest │ │ │ │ │ │ │ ├── ItemSearch.java │ │ │ │ │ │ │ ├── ModuleInteraction.java │ │ │ │ │ │ │ └── VoiceInteraction.java │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── IndexUiHandler.java │ │ │ │ │ │ │ ├── MainUiHandler.java │ │ │ │ │ │ │ └── UiHandler.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ └── module │ │ │ │ │ │ │ ├── ModuleOqmDbInfo.java │ │ │ │ │ │ │ └── OqmModuleInfo.java │ │ │ │ │ │ └── moduleInteraction │ │ │ │ │ │ ├── ItemSearchResults.java │ │ │ │ │ │ ├── ItemVoiceSearchResults.java │ │ │ │ │ │ ├── ModuleMaster.java │ │ │ │ │ │ ├── module │ │ │ │ │ │ ├── MssModule.java │ │ │ │ │ │ └── serialModule │ │ │ │ │ │ │ ├── MssSerialModule.java │ │ │ │ │ │ │ ├── SerialPortWrapper.java │ │ │ │ │ │ │ └── exceptions │ │ │ │ │ │ │ ├── CommandAssertionError.java │ │ │ │ │ │ │ ├── CommandParseException.java │ │ │ │ │ │ │ ├── CommandReturnedErrorException.java │ │ │ │ │ │ │ └── SerialInteractionUnlockedException.java │ │ │ │ │ │ ├── service │ │ │ │ │ │ ├── ItemSearchService.java │ │ │ │ │ │ ├── StorageBlockInteractionService.java │ │ │ │ │ │ ├── VoiceDisabledException.java │ │ │ │ │ │ └── VoiceSearchService.java │ │ │ │ │ │ └── updates │ │ │ │ │ │ └── MssUpdate.java │ │ │ │ └── resources │ │ │ │ │ ├── META-INF │ │ │ │ │ └── resources │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── fonts.css │ │ │ │ │ │ ├── open-sans-italic-cyrillic-ext.woff2 │ │ │ │ │ │ ├── open-sans-italic-cyrillic.woff2 │ │ │ │ │ │ ├── open-sans-italic-greek-ext.woff2 │ │ │ │ │ │ ├── open-sans-italic-greek.woff2 │ │ │ │ │ │ ├── open-sans-italic-hebrew.woff2 │ │ │ │ │ │ ├── open-sans-italic-latin-ext.woff2 │ │ │ │ │ │ ├── open-sans-italic-latin.woff2 │ │ │ │ │ │ ├── open-sans-italic-vietnamese.woff2 │ │ │ │ │ │ ├── open-sans-normal-cyrillic-ext.woff2 │ │ │ │ │ │ ├── open-sans-normal-cyrillic.woff2 │ │ │ │ │ │ ├── open-sans-normal-greek-ext.woff2 │ │ │ │ │ │ ├── open-sans-normal-greek.woff2 │ │ │ │ │ │ ├── open-sans-normal-hebrew.woff2 │ │ │ │ │ │ ├── open-sans-normal-latin-ext.woff2 │ │ │ │ │ │ ├── open-sans-normal-latin.woff2 │ │ │ │ │ │ └── open-sans-normal-vietnamese.woff2 │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── bootstrap-icons │ │ │ │ │ │ │ └── 1.11.0 │ │ │ │ │ │ │ │ ├── 0-circle-fill.svg │ │ │ │ │ │ │ │ ├── 0-circle.svg │ │ │ │ │ │ │ │ ├── 0-square-fill.svg │ │ │ │ │ │ │ │ ├── 0-square.svg │ │ │ │ │ │ │ │ ├── 1-circle-fill.svg │ │ │ │ │ │ │ │ ├── 1-circle.svg │ │ │ │ │ │ │ │ ├── 1-square-fill.svg │ │ │ │ │ │ │ │ ├── 1-square.svg │ │ │ │ │ │ │ │ ├── 123.svg │ │ │ │ │ │ │ │ ├── 2-circle-fill.svg │ │ │ │ │ │ │ │ ├── 2-circle.svg │ │ │ │ │ │ │ │ ├── 2-square-fill.svg │ │ │ │ │ │ │ │ ├── 2-square.svg │ │ │ │ │ │ │ │ ├── 3-circle-fill.svg │ │ │ │ │ │ │ │ ├── 3-circle.svg │ │ │ │ │ │ │ │ ├── 3-square-fill.svg │ │ │ │ │ │ │ │ ├── 3-square.svg │ │ │ │ │ │ │ │ ├── 4-circle-fill.svg │ │ │ │ │ │ │ │ ├── 4-circle.svg │ │ │ │ │ │ │ │ ├── 4-square-fill.svg │ │ │ │ │ │ │ │ ├── 4-square.svg │ │ │ │ │ │ │ │ ├── 5-circle-fill.svg │ │ │ │ │ │ │ │ ├── 5-circle.svg │ │ │ │ │ │ │ │ ├── 5-square-fill.svg │ │ │ │ │ │ │ │ ├── 5-square.svg │ │ │ │ │ │ │ │ ├── 6-circle-fill.svg │ │ │ │ │ │ │ │ ├── 6-circle.svg │ │ │ │ │ │ │ │ ├── 6-square-fill.svg │ │ │ │ │ │ │ │ ├── 6-square.svg │ │ │ │ │ │ │ │ ├── 7-circle-fill.svg │ │ │ │ │ │ │ │ ├── 7-circle.svg │ │ │ │ │ │ │ │ ├── 7-square-fill.svg │ │ │ │ │ │ │ │ ├── 7-square.svg │ │ │ │ │ │ │ │ ├── 8-circle-fill.svg │ │ │ │ │ │ │ │ ├── 8-circle.svg │ │ │ │ │ │ │ │ ├── 8-square-fill.svg │ │ │ │ │ │ │ │ ├── 8-square.svg │ │ │ │ │ │ │ │ ├── 9-circle-fill.svg │ │ │ │ │ │ │ │ ├── 9-circle.svg │ │ │ │ │ │ │ │ ├── 9-square-fill.svg │ │ │ │ │ │ │ │ ├── 9-square.svg │ │ │ │ │ │ │ │ ├── activity.svg │ │ │ │ │ │ │ │ ├── airplane-engines-fill.svg │ │ │ │ │ │ │ │ ├── airplane-engines.svg │ │ │ │ │ │ │ │ ├── airplane-fill.svg │ │ │ │ │ │ │ │ ├── airplane.svg │ │ │ │ │ │ │ │ ├── alarm-fill.svg │ │ │ │ │ │ │ │ ├── alarm.svg │ │ │ │ │ │ │ │ ├── alexa.svg │ │ │ │ │ │ │ │ ├── align-bottom.svg │ │ │ │ │ │ │ │ ├── align-center.svg │ │ │ │ │ │ │ │ ├── align-end.svg │ │ │ │ │ │ │ │ ├── align-middle.svg │ │ │ │ │ │ │ │ ├── align-start.svg │ │ │ │ │ │ │ │ ├── align-top.svg │ │ │ │ │ │ │ │ ├── alipay.svg │ │ │ │ │ │ │ │ ├── alphabet-uppercase.svg │ │ │ │ │ │ │ │ ├── alphabet.svg │ │ │ │ │ │ │ │ ├── alt.svg │ │ │ │ │ │ │ │ ├── amazon.svg │ │ │ │ │ │ │ │ ├── amd.svg │ │ │ │ │ │ │ │ ├── android.svg │ │ │ │ │ │ │ │ ├── android2.svg │ │ │ │ │ │ │ │ ├── app-indicator.svg │ │ │ │ │ │ │ │ ├── app.svg │ │ │ │ │ │ │ │ ├── apple.svg │ │ │ │ │ │ │ │ ├── archive-fill.svg │ │ │ │ │ │ │ │ ├── archive.svg │ │ │ │ │ │ │ │ ├── arrow-90deg-down.svg │ │ │ │ │ │ │ │ ├── arrow-90deg-left.svg │ │ │ │ │ │ │ │ ├── arrow-90deg-right.svg │ │ │ │ │ │ │ │ ├── arrow-90deg-up.svg │ │ │ │ │ │ │ │ ├── arrow-bar-down.svg │ │ │ │ │ │ │ │ ├── arrow-bar-left.svg │ │ │ │ │ │ │ │ ├── arrow-bar-right.svg │ │ │ │ │ │ │ │ ├── arrow-bar-up.svg │ │ │ │ │ │ │ │ ├── arrow-clockwise.svg │ │ │ │ │ │ │ │ ├── arrow-counterclockwise.svg │ │ │ │ │ │ │ │ ├── arrow-down-circle-fill.svg │ │ │ │ │ │ │ │ ├── arrow-down-circle.svg │ │ │ │ │ │ │ │ ├── arrow-down-left-circle-fill.svg │ │ │ │ │ │ │ │ ├── arrow-down-left-circle.svg │ │ │ │ │ │ │ │ ├── arrow-down-left-square-fill.svg │ │ │ │ │ │ │ │ ├── arrow-down-left-square.svg │ │ │ │ │ │ │ │ ├── arrow-down-left.svg │ │ │ │ │ │ │ │ ├── arrow-down-right-circle-fill.svg │ │ │ │ │ │ │ │ ├── arrow-down-right-circle.svg │ │ │ │ │ │ │ │ ├── arrow-down-right-square-fill.svg │ │ │ │ │ │ │ │ ├── arrow-down-right-square.svg │ │ │ │ │ │ │ │ ├── arrow-down-right.svg │ │ │ │ │ │ │ │ ├── arrow-down-short.svg │ │ │ │ │ │ │ │ ├── arrow-down-square-fill.svg │ │ │ │ │ │ │ │ ├── arrow-down-square.svg │ │ │ │ │ │ │ │ ├── arrow-down-up.svg │ │ │ │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ │ │ │ ├── arrow-left-circle-fill.svg │ │ │ │ │ │ │ │ ├── arrow-left-circle.svg │ │ │ │ │ │ │ │ ├── arrow-left-right.svg │ │ │ │ │ │ │ │ ├── arrow-left-short.svg │ │ │ │ │ │ │ │ ├── arrow-left-square-fill.svg │ │ │ │ │ │ │ │ ├── arrow-left-square.svg │ │ │ │ │ │ │ │ ├── arrow-left.svg │ │ │ │ │ │ │ │ ├── arrow-repeat.svg │ │ │ │ │ │ │ │ ├── arrow-return-left.svg │ │ │ │ │ │ │ │ ├── arrow-return-right.svg │ │ │ │ │ │ │ │ ├── arrow-right-circle-fill.svg │ │ │ │ │ │ │ │ ├── arrow-right-circle.svg │ │ │ │ │ │ │ │ ├── arrow-right-short.svg │ │ │ │ │ │ │ │ ├── arrow-right-square-fill.svg │ │ │ │ │ │ │ │ ├── arrow-right-square.svg │ │ │ │ │ │ │ │ ├── arrow-right.svg │ │ │ │ │ │ │ │ ├── arrow-through-heart-fill.svg │ │ │ │ │ │ │ │ ├── arrow-through-heart.svg │ │ │ │ │ │ │ │ ├── arrow-up-circle-fill.svg │ │ │ │ │ │ │ │ ├── arrow-up-circle.svg │ │ │ │ │ │ │ │ ├── arrow-up-left-circle-fill.svg │ │ │ │ │ │ │ │ ├── arrow-up-left-circle.svg │ │ │ │ │ │ │ │ ├── arrow-up-left-square-fill.svg │ │ │ │ │ │ │ │ ├── arrow-up-left-square.svg │ │ │ │ │ │ │ │ ├── arrow-up-left.svg │ │ │ │ │ │ │ │ ├── arrow-up-right-circle-fill.svg │ │ │ │ │ │ │ │ ├── arrow-up-right-circle.svg │ │ │ │ │ │ │ │ ├── arrow-up-right-square-fill.svg │ │ │ │ │ │ │ │ ├── arrow-up-right-square.svg │ │ │ │ │ │ │ │ ├── arrow-up-right.svg │ │ │ │ │ │ │ │ ├── arrow-up-short.svg │ │ │ │ │ │ │ │ ├── arrow-up-square-fill.svg │ │ │ │ │ │ │ │ ├── arrow-up-square.svg │ │ │ │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ │ │ │ ├── arrows-angle-contract.svg │ │ │ │ │ │ │ │ ├── arrows-angle-expand.svg │ │ │ │ │ │ │ │ ├── arrows-collapse-vertical.svg │ │ │ │ │ │ │ │ ├── arrows-collapse.svg │ │ │ │ │ │ │ │ ├── arrows-expand-vertical.svg │ │ │ │ │ │ │ │ ├── arrows-expand.svg │ │ │ │ │ │ │ │ ├── arrows-fullscreen.svg │ │ │ │ │ │ │ │ ├── arrows-move.svg │ │ │ │ │ │ │ │ ├── arrows-vertical.svg │ │ │ │ │ │ │ │ ├── arrows.svg │ │ │ │ │ │ │ │ ├── aspect-ratio-fill.svg │ │ │ │ │ │ │ │ ├── aspect-ratio.svg │ │ │ │ │ │ │ │ ├── asterisk.svg │ │ │ │ │ │ │ │ ├── at.svg │ │ │ │ │ │ │ │ ├── award-fill.svg │ │ │ │ │ │ │ │ ├── award.svg │ │ │ │ │ │ │ │ ├── back.svg │ │ │ │ │ │ │ │ ├── backpack-fill.svg │ │ │ │ │ │ │ │ ├── backpack.svg │ │ │ │ │ │ │ │ ├── backpack2-fill.svg │ │ │ │ │ │ │ │ ├── backpack2.svg │ │ │ │ │ │ │ │ ├── backpack3-fill.svg │ │ │ │ │ │ │ │ ├── backpack3.svg │ │ │ │ │ │ │ │ ├── backpack4-fill.svg │ │ │ │ │ │ │ │ ├── backpack4.svg │ │ │ │ │ │ │ │ ├── backspace-fill.svg │ │ │ │ │ │ │ │ ├── backspace-reverse-fill.svg │ │ │ │ │ │ │ │ ├── backspace-reverse.svg │ │ │ │ │ │ │ │ ├── backspace.svg │ │ │ │ │ │ │ │ ├── badge-3d-fill.svg │ │ │ │ │ │ │ │ ├── badge-3d.svg │ │ │ │ │ │ │ │ ├── badge-4k-fill.svg │ │ │ │ │ │ │ │ ├── badge-4k.svg │ │ │ │ │ │ │ │ ├── badge-8k-fill.svg │ │ │ │ │ │ │ │ ├── badge-8k.svg │ │ │ │ │ │ │ │ ├── badge-ad-fill.svg │ │ │ │ │ │ │ │ ├── badge-ad.svg │ │ │ │ │ │ │ │ ├── badge-ar-fill.svg │ │ │ │ │ │ │ │ ├── badge-ar.svg │ │ │ │ │ │ │ │ ├── badge-cc-fill.svg │ │ │ │ │ │ │ │ ├── badge-cc.svg │ │ │ │ │ │ │ │ ├── badge-hd-fill.svg │ │ │ │ │ │ │ │ ├── badge-hd.svg │ │ │ │ │ │ │ │ ├── badge-sd-fill.svg │ │ │ │ │ │ │ │ ├── badge-sd.svg │ │ │ │ │ │ │ │ ├── badge-tm-fill.svg │ │ │ │ │ │ │ │ ├── badge-tm.svg │ │ │ │ │ │ │ │ ├── badge-vo-fill.svg │ │ │ │ │ │ │ │ ├── badge-vo.svg │ │ │ │ │ │ │ │ ├── badge-vr-fill.svg │ │ │ │ │ │ │ │ ├── badge-vr.svg │ │ │ │ │ │ │ │ ├── badge-wc-fill.svg │ │ │ │ │ │ │ │ ├── badge-wc.svg │ │ │ │ │ │ │ │ ├── bag-check-fill.svg │ │ │ │ │ │ │ │ ├── bag-check.svg │ │ │ │ │ │ │ │ ├── bag-dash-fill.svg │ │ │ │ │ │ │ │ ├── bag-dash.svg │ │ │ │ │ │ │ │ ├── bag-fill.svg │ │ │ │ │ │ │ │ ├── bag-heart-fill.svg │ │ │ │ │ │ │ │ ├── bag-heart.svg │ │ │ │ │ │ │ │ ├── bag-plus-fill.svg │ │ │ │ │ │ │ │ ├── bag-plus.svg │ │ │ │ │ │ │ │ ├── bag-x-fill.svg │ │ │ │ │ │ │ │ ├── bag-x.svg │ │ │ │ │ │ │ │ ├── bag.svg │ │ │ │ │ │ │ │ ├── balloon-fill.svg │ │ │ │ │ │ │ │ ├── balloon-heart-fill.svg │ │ │ │ │ │ │ │ ├── balloon-heart.svg │ │ │ │ │ │ │ │ ├── balloon.svg │ │ │ │ │ │ │ │ ├── ban-fill.svg │ │ │ │ │ │ │ │ ├── ban.svg │ │ │ │ │ │ │ │ ├── bandaid-fill.svg │ │ │ │ │ │ │ │ ├── bandaid.svg │ │ │ │ │ │ │ │ ├── bank.svg │ │ │ │ │ │ │ │ ├── bank2.svg │ │ │ │ │ │ │ │ ├── bar-chart-fill.svg │ │ │ │ │ │ │ │ ├── bar-chart-line-fill.svg │ │ │ │ │ │ │ │ ├── bar-chart-line.svg │ │ │ │ │ │ │ │ ├── bar-chart-steps.svg │ │ │ │ │ │ │ │ ├── bar-chart.svg │ │ │ │ │ │ │ │ ├── basket-fill.svg │ │ │ │ │ │ │ │ ├── basket.svg │ │ │ │ │ │ │ │ ├── basket2-fill.svg │ │ │ │ │ │ │ │ ├── basket2.svg │ │ │ │ │ │ │ │ ├── basket3-fill.svg │ │ │ │ │ │ │ │ ├── basket3.svg │ │ │ │ │ │ │ │ ├── battery-charging.svg │ │ │ │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ │ │ │ ├── battery.svg │ │ │ │ │ │ │ │ ├── behance.svg │ │ │ │ │ │ │ │ ├── bell-fill.svg │ │ │ │ │ │ │ │ ├── bell-slash-fill.svg │ │ │ │ │ │ │ │ ├── bell-slash.svg │ │ │ │ │ │ │ │ ├── bell.svg │ │ │ │ │ │ │ │ ├── bezier.svg │ │ │ │ │ │ │ │ ├── bezier2.svg │ │ │ │ │ │ │ │ ├── bicycle.svg │ │ │ │ │ │ │ │ ├── bing.svg │ │ │ │ │ │ │ │ ├── binoculars-fill.svg │ │ │ │ │ │ │ │ ├── binoculars.svg │ │ │ │ │ │ │ │ ├── blockquote-left.svg │ │ │ │ │ │ │ │ ├── blockquote-right.svg │ │ │ │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ │ │ │ ├── body-text.svg │ │ │ │ │ │ │ │ ├── book-fill.svg │ │ │ │ │ │ │ │ ├── book-half.svg │ │ │ │ │ │ │ │ ├── book.svg │ │ │ │ │ │ │ │ ├── bookmark-check-fill.svg │ │ │ │ │ │ │ │ ├── bookmark-check.svg │ │ │ │ │ │ │ │ ├── bookmark-dash-fill.svg │ │ │ │ │ │ │ │ ├── bookmark-dash.svg │ │ │ │ │ │ │ │ ├── bookmark-fill.svg │ │ │ │ │ │ │ │ ├── bookmark-heart-fill.svg │ │ │ │ │ │ │ │ ├── bookmark-heart.svg │ │ │ │ │ │ │ │ ├── bookmark-plus-fill.svg │ │ │ │ │ │ │ │ ├── bookmark-plus.svg │ │ │ │ │ │ │ │ ├── bookmark-star-fill.svg │ │ │ │ │ │ │ │ ├── bookmark-star.svg │ │ │ │ │ │ │ │ ├── bookmark-x-fill.svg │ │ │ │ │ │ │ │ ├── bookmark-x.svg │ │ │ │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ │ │ │ ├── bookmarks-fill.svg │ │ │ │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ │ │ │ ├── bookshelf.svg │ │ │ │ │ │ │ │ ├── boombox-fill.svg │ │ │ │ │ │ │ │ ├── boombox.svg │ │ │ │ │ │ │ │ ├── bootstrap-fill.svg │ │ │ │ │ │ │ │ ├── bootstrap-icons.css │ │ │ │ │ │ │ │ ├── bootstrap-icons.json │ │ │ │ │ │ │ │ ├── bootstrap-icons.min.css │ │ │ │ │ │ │ │ ├── bootstrap-icons.scss │ │ │ │ │ │ │ │ ├── bootstrap-icons.svg │ │ │ │ │ │ │ │ ├── bootstrap-reboot.svg │ │ │ │ │ │ │ │ ├── bootstrap.svg │ │ │ │ │ │ │ │ ├── border-all.svg │ │ │ │ │ │ │ │ ├── border-bottom.svg │ │ │ │ │ │ │ │ ├── border-center.svg │ │ │ │ │ │ │ │ ├── border-inner.svg │ │ │ │ │ │ │ │ ├── border-left.svg │ │ │ │ │ │ │ │ ├── border-middle.svg │ │ │ │ │ │ │ │ ├── border-outer.svg │ │ │ │ │ │ │ │ ├── border-right.svg │ │ │ │ │ │ │ │ ├── border-style.svg │ │ │ │ │ │ │ │ ├── border-top.svg │ │ │ │ │ │ │ │ ├── border-width.svg │ │ │ │ │ │ │ │ ├── border.svg │ │ │ │ │ │ │ │ ├── bounding-box-circles.svg │ │ │ │ │ │ │ │ ├── bounding-box.svg │ │ │ │ │ │ │ │ ├── box-arrow-down-left.svg │ │ │ │ │ │ │ │ ├── box-arrow-down-right.svg │ │ │ │ │ │ │ │ ├── box-arrow-down.svg │ │ │ │ │ │ │ │ ├── box-arrow-in-down-left.svg │ │ │ │ │ │ │ │ ├── box-arrow-in-down-right.svg │ │ │ │ │ │ │ │ ├── box-arrow-in-down.svg │ │ │ │ │ │ │ │ ├── box-arrow-in-left.svg │ │ │ │ │ │ │ │ ├── box-arrow-in-right.svg │ │ │ │ │ │ │ │ ├── box-arrow-in-up-left.svg │ │ │ │ │ │ │ │ ├── box-arrow-in-up-right.svg │ │ │ │ │ │ │ │ ├── box-arrow-in-up.svg │ │ │ │ │ │ │ │ ├── box-arrow-left.svg │ │ │ │ │ │ │ │ ├── box-arrow-right.svg │ │ │ │ │ │ │ │ ├── box-arrow-up-left.svg │ │ │ │ │ │ │ │ ├── box-arrow-up-right.svg │ │ │ │ │ │ │ │ ├── box-arrow-up.svg │ │ │ │ │ │ │ │ ├── box-fill.svg │ │ │ │ │ │ │ │ ├── box-seam-fill.svg │ │ │ │ │ │ │ │ ├── box-seam.svg │ │ │ │ │ │ │ │ ├── box.svg │ │ │ │ │ │ │ │ ├── box2-fill.svg │ │ │ │ │ │ │ │ ├── box2-heart-fill.svg │ │ │ │ │ │ │ │ ├── box2-heart.svg │ │ │ │ │ │ │ │ ├── box2.svg │ │ │ │ │ │ │ │ ├── boxes.svg │ │ │ │ │ │ │ │ ├── braces-asterisk.svg │ │ │ │ │ │ │ │ ├── braces.svg │ │ │ │ │ │ │ │ ├── bricks.svg │ │ │ │ │ │ │ │ ├── briefcase-fill.svg │ │ │ │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ │ │ │ ├── brightness-alt-high-fill.svg │ │ │ │ │ │ │ │ ├── brightness-alt-high.svg │ │ │ │ │ │ │ │ ├── brightness-alt-low-fill.svg │ │ │ │ │ │ │ │ ├── brightness-alt-low.svg │ │ │ │ │ │ │ │ ├── brightness-high-fill.svg │ │ │ │ │ │ │ │ ├── brightness-high.svg │ │ │ │ │ │ │ │ ├── brightness-low-fill.svg │ │ │ │ │ │ │ │ ├── brightness-low.svg │ │ │ │ │ │ │ │ ├── brilliance.svg │ │ │ │ │ │ │ │ ├── broadcast-pin.svg │ │ │ │ │ │ │ │ ├── broadcast.svg │ │ │ │ │ │ │ │ ├── browser-chrome.svg │ │ │ │ │ │ │ │ ├── browser-edge.svg │ │ │ │ │ │ │ │ ├── browser-firefox.svg │ │ │ │ │ │ │ │ ├── browser-safari.svg │ │ │ │ │ │ │ │ ├── brush-fill.svg │ │ │ │ │ │ │ │ ├── brush.svg │ │ │ │ │ │ │ │ ├── bucket-fill.svg │ │ │ │ │ │ │ │ ├── bucket.svg │ │ │ │ │ │ │ │ ├── bug-fill.svg │ │ │ │ │ │ │ │ ├── bug.svg │ │ │ │ │ │ │ │ ├── building-add.svg │ │ │ │ │ │ │ │ ├── building-check.svg │ │ │ │ │ │ │ │ ├── building-dash.svg │ │ │ │ │ │ │ │ ├── building-down.svg │ │ │ │ │ │ │ │ ├── building-exclamation.svg │ │ │ │ │ │ │ │ ├── building-fill-add.svg │ │ │ │ │ │ │ │ ├── building-fill-check.svg │ │ │ │ │ │ │ │ ├── building-fill-dash.svg │ │ │ │ │ │ │ │ ├── building-fill-down.svg │ │ │ │ │ │ │ │ ├── building-fill-exclamation.svg │ │ │ │ │ │ │ │ ├── building-fill-gear.svg │ │ │ │ │ │ │ │ ├── building-fill-lock.svg │ │ │ │ │ │ │ │ ├── building-fill-slash.svg │ │ │ │ │ │ │ │ ├── building-fill-up.svg │ │ │ │ │ │ │ │ ├── building-fill-x.svg │ │ │ │ │ │ │ │ ├── building-fill.svg │ │ │ │ │ │ │ │ ├── building-gear.svg │ │ │ │ │ │ │ │ ├── building-lock.svg │ │ │ │ │ │ │ │ ├── building-slash.svg │ │ │ │ │ │ │ │ ├── building-up.svg │ │ │ │ │ │ │ │ ├── building-x.svg │ │ │ │ │ │ │ │ ├── building.svg │ │ │ │ │ │ │ │ ├── buildings-fill.svg │ │ │ │ │ │ │ │ ├── buildings.svg │ │ │ │ │ │ │ │ ├── bullseye.svg │ │ │ │ │ │ │ │ ├── bus-front-fill.svg │ │ │ │ │ │ │ │ ├── bus-front.svg │ │ │ │ │ │ │ │ ├── c-circle-fill.svg │ │ │ │ │ │ │ │ ├── c-circle.svg │ │ │ │ │ │ │ │ ├── c-square-fill.svg │ │ │ │ │ │ │ │ ├── c-square.svg │ │ │ │ │ │ │ │ ├── cake-fill.svg │ │ │ │ │ │ │ │ ├── cake.svg │ │ │ │ │ │ │ │ ├── cake2-fill.svg │ │ │ │ │ │ │ │ ├── cake2.svg │ │ │ │ │ │ │ │ ├── calculator-fill.svg │ │ │ │ │ │ │ │ ├── calculator.svg │ │ │ │ │ │ │ │ ├── calendar-check-fill.svg │ │ │ │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ │ │ │ ├── calendar-date-fill.svg │ │ │ │ │ │ │ │ ├── calendar-date.svg │ │ │ │ │ │ │ │ ├── calendar-day-fill.svg │ │ │ │ │ │ │ │ ├── calendar-day.svg │ │ │ │ │ │ │ │ ├── calendar-event-fill.svg │ │ │ │ │ │ │ │ ├── calendar-event.svg │ │ │ │ │ │ │ │ ├── calendar-fill.svg │ │ │ │ │ │ │ │ ├── calendar-heart-fill.svg │ │ │ │ │ │ │ │ ├── calendar-heart.svg │ │ │ │ │ │ │ │ ├── calendar-minus-fill.svg │ │ │ │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ │ │ │ ├── calendar-month-fill.svg │ │ │ │ │ │ │ │ ├── calendar-month.svg │ │ │ │ │ │ │ │ ├── calendar-plus-fill.svg │ │ │ │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ │ │ │ ├── calendar-range-fill.svg │ │ │ │ │ │ │ │ ├── calendar-range.svg │ │ │ │ │ │ │ │ ├── calendar-week-fill.svg │ │ │ │ │ │ │ │ ├── calendar-week.svg │ │ │ │ │ │ │ │ ├── calendar-x-fill.svg │ │ │ │ │ │ │ │ ├── calendar-x.svg │ │ │ │ │ │ │ │ ├── calendar.svg │ │ │ │ │ │ │ │ ├── calendar2-check-fill.svg │ │ │ │ │ │ │ │ ├── calendar2-check.svg │ │ │ │ │ │ │ │ ├── calendar2-date-fill.svg │ │ │ │ │ │ │ │ ├── calendar2-date.svg │ │ │ │ │ │ │ │ ├── calendar2-day-fill.svg │ │ │ │ │ │ │ │ ├── calendar2-day.svg │ │ │ │ │ │ │ │ ├── calendar2-event-fill.svg │ │ │ │ │ │ │ │ ├── calendar2-event.svg │ │ │ │ │ │ │ │ ├── calendar2-fill.svg │ │ │ │ │ │ │ │ ├── calendar2-heart-fill.svg │ │ │ │ │ │ │ │ ├── calendar2-heart.svg │ │ │ │ │ │ │ │ ├── calendar2-minus-fill.svg │ │ │ │ │ │ │ │ ├── calendar2-minus.svg │ │ │ │ │ │ │ │ ├── calendar2-month-fill.svg │ │ │ │ │ │ │ │ ├── calendar2-month.svg │ │ │ │ │ │ │ │ ├── calendar2-plus-fill.svg │ │ │ │ │ │ │ │ ├── calendar2-plus.svg │ │ │ │ │ │ │ │ ├── calendar2-range-fill.svg │ │ │ │ │ │ │ │ ├── calendar2-range.svg │ │ │ │ │ │ │ │ ├── calendar2-week-fill.svg │ │ │ │ │ │ │ │ ├── calendar2-week.svg │ │ │ │ │ │ │ │ ├── calendar2-x-fill.svg │ │ │ │ │ │ │ │ ├── calendar2-x.svg │ │ │ │ │ │ │ │ ├── calendar2.svg │ │ │ │ │ │ │ │ ├── calendar3-event-fill.svg │ │ │ │ │ │ │ │ ├── calendar3-event.svg │ │ │ │ │ │ │ │ ├── calendar3-fill.svg │ │ │ │ │ │ │ │ ├── calendar3-range-fill.svg │ │ │ │ │ │ │ │ ├── calendar3-range.svg │ │ │ │ │ │ │ │ ├── calendar3-week-fill.svg │ │ │ │ │ │ │ │ ├── calendar3-week.svg │ │ │ │ │ │ │ │ ├── calendar3.svg │ │ │ │ │ │ │ │ ├── calendar4-event.svg │ │ │ │ │ │ │ │ ├── calendar4-range.svg │ │ │ │ │ │ │ │ ├── calendar4-week.svg │ │ │ │ │ │ │ │ ├── calendar4.svg │ │ │ │ │ │ │ │ ├── camera-fill.svg │ │ │ │ │ │ │ │ ├── camera-reels-fill.svg │ │ │ │ │ │ │ │ ├── camera-reels.svg │ │ │ │ │ │ │ │ ├── camera-video-fill.svg │ │ │ │ │ │ │ │ ├── camera-video-off-fill.svg │ │ │ │ │ │ │ │ ├── camera-video-off.svg │ │ │ │ │ │ │ │ ├── camera-video.svg │ │ │ │ │ │ │ │ ├── camera.svg │ │ │ │ │ │ │ │ ├── camera2.svg │ │ │ │ │ │ │ │ ├── capslock-fill.svg │ │ │ │ │ │ │ │ ├── capslock.svg │ │ │ │ │ │ │ │ ├── capsule-pill.svg │ │ │ │ │ │ │ │ ├── capsule.svg │ │ │ │ │ │ │ │ ├── car-front-fill.svg │ │ │ │ │ │ │ │ ├── car-front.svg │ │ │ │ │ │ │ │ ├── card-checklist.svg │ │ │ │ │ │ │ │ ├── card-heading.svg │ │ │ │ │ │ │ │ ├── card-image.svg │ │ │ │ │ │ │ │ ├── card-list.svg │ │ │ │ │ │ │ │ ├── card-text.svg │ │ │ │ │ │ │ │ ├── caret-down-fill.svg │ │ │ │ │ │ │ │ ├── caret-down-square-fill.svg │ │ │ │ │ │ │ │ ├── caret-down-square.svg │ │ │ │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ │ │ │ ├── caret-left-fill.svg │ │ │ │ │ │ │ │ ├── caret-left-square-fill.svg │ │ │ │ │ │ │ │ ├── caret-left-square.svg │ │ │ │ │ │ │ │ ├── caret-left.svg │ │ │ │ │ │ │ │ ├── caret-right-fill.svg │ │ │ │ │ │ │ │ ├── caret-right-square-fill.svg │ │ │ │ │ │ │ │ ├── caret-right-square.svg │ │ │ │ │ │ │ │ ├── caret-right.svg │ │ │ │ │ │ │ │ ├── caret-up-fill.svg │ │ │ │ │ │ │ │ ├── caret-up-square-fill.svg │ │ │ │ │ │ │ │ ├── caret-up-square.svg │ │ │ │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ │ │ │ ├── cart-check-fill.svg │ │ │ │ │ │ │ │ ├── cart-check.svg │ │ │ │ │ │ │ │ ├── cart-dash-fill.svg │ │ │ │ │ │ │ │ ├── cart-dash.svg │ │ │ │ │ │ │ │ ├── cart-fill.svg │ │ │ │ │ │ │ │ ├── cart-plus-fill.svg │ │ │ │ │ │ │ │ ├── cart-plus.svg │ │ │ │ │ │ │ │ ├── cart-x-fill.svg │ │ │ │ │ │ │ │ ├── cart-x.svg │ │ │ │ │ │ │ │ ├── cart.svg │ │ │ │ │ │ │ │ ├── cart2.svg │ │ │ │ │ │ │ │ ├── cart3.svg │ │ │ │ │ │ │ │ ├── cart4.svg │ │ │ │ │ │ │ │ ├── cash-coin.svg │ │ │ │ │ │ │ │ ├── cash-stack.svg │ │ │ │ │ │ │ │ ├── cash.svg │ │ │ │ │ │ │ │ ├── cassette-fill.svg │ │ │ │ │ │ │ │ ├── cassette.svg │ │ │ │ │ │ │ │ ├── cast.svg │ │ │ │ │ │ │ │ ├── cc-circle-fill.svg │ │ │ │ │ │ │ │ ├── cc-circle.svg │ │ │ │ │ │ │ │ ├── cc-square-fill.svg │ │ │ │ │ │ │ │ ├── cc-square.svg │ │ │ │ │ │ │ │ ├── chat-dots-fill.svg │ │ │ │ │ │ │ │ ├── chat-dots.svg │ │ │ │ │ │ │ │ ├── chat-fill.svg │ │ │ │ │ │ │ │ ├── chat-heart-fill.svg │ │ │ │ │ │ │ │ ├── chat-heart.svg │ │ │ │ │ │ │ │ ├── chat-left-dots-fill.svg │ │ │ │ │ │ │ │ ├── chat-left-dots.svg │ │ │ │ │ │ │ │ ├── chat-left-fill.svg │ │ │ │ │ │ │ │ ├── chat-left-heart-fill.svg │ │ │ │ │ │ │ │ ├── chat-left-heart.svg │ │ │ │ │ │ │ │ ├── chat-left-quote-fill.svg │ │ │ │ │ │ │ │ ├── chat-left-quote.svg │ │ │ │ │ │ │ │ ├── chat-left-text-fill.svg │ │ │ │ │ │ │ │ ├── chat-left-text.svg │ │ │ │ │ │ │ │ ├── chat-left.svg │ │ │ │ │ │ │ │ ├── chat-quote-fill.svg │ │ │ │ │ │ │ │ ├── chat-quote.svg │ │ │ │ │ │ │ │ ├── chat-right-dots-fill.svg │ │ │ │ │ │ │ │ ├── chat-right-dots.svg │ │ │ │ │ │ │ │ ├── chat-right-fill.svg │ │ │ │ │ │ │ │ ├── chat-right-heart-fill.svg │ │ │ │ │ │ │ │ ├── chat-right-heart.svg │ │ │ │ │ │ │ │ ├── chat-right-quote-fill.svg │ │ │ │ │ │ │ │ ├── chat-right-quote.svg │ │ │ │ │ │ │ │ ├── chat-right-text-fill.svg │ │ │ │ │ │ │ │ ├── chat-right-text.svg │ │ │ │ │ │ │ │ ├── chat-right.svg │ │ │ │ │ │ │ │ ├── chat-square-dots-fill.svg │ │ │ │ │ │ │ │ ├── chat-square-dots.svg │ │ │ │ │ │ │ │ ├── chat-square-fill.svg │ │ │ │ │ │ │ │ ├── chat-square-heart-fill.svg │ │ │ │ │ │ │ │ ├── chat-square-heart.svg │ │ │ │ │ │ │ │ ├── chat-square-quote-fill.svg │ │ │ │ │ │ │ │ ├── chat-square-quote.svg │ │ │ │ │ │ │ │ ├── chat-square-text-fill.svg │ │ │ │ │ │ │ │ ├── chat-square-text.svg │ │ │ │ │ │ │ │ ├── chat-square.svg │ │ │ │ │ │ │ │ ├── chat-text-fill.svg │ │ │ │ │ │ │ │ ├── chat-text.svg │ │ │ │ │ │ │ │ ├── chat.svg │ │ │ │ │ │ │ │ ├── check-all.svg │ │ │ │ │ │ │ │ ├── check-circle-fill.svg │ │ │ │ │ │ │ │ ├── check-circle.svg │ │ │ │ │ │ │ │ ├── check-lg.svg │ │ │ │ │ │ │ │ ├── check-square-fill.svg │ │ │ │ │ │ │ │ ├── check-square.svg │ │ │ │ │ │ │ │ ├── check.svg │ │ │ │ │ │ │ │ ├── check2-all.svg │ │ │ │ │ │ │ │ ├── check2-circle.svg │ │ │ │ │ │ │ │ ├── check2-square.svg │ │ │ │ │ │ │ │ ├── check2.svg │ │ │ │ │ │ │ │ ├── chevron-bar-contract.svg │ │ │ │ │ │ │ │ ├── chevron-bar-down.svg │ │ │ │ │ │ │ │ ├── chevron-bar-expand.svg │ │ │ │ │ │ │ │ ├── chevron-bar-left.svg │ │ │ │ │ │ │ │ ├── chevron-bar-right.svg │ │ │ │ │ │ │ │ ├── chevron-bar-up.svg │ │ │ │ │ │ │ │ ├── chevron-compact-down.svg │ │ │ │ │ │ │ │ ├── chevron-compact-left.svg │ │ │ │ │ │ │ │ ├── chevron-compact-right.svg │ │ │ │ │ │ │ │ ├── chevron-compact-up.svg │ │ │ │ │ │ │ │ ├── chevron-contract.svg │ │ │ │ │ │ │ │ ├── chevron-double-down.svg │ │ │ │ │ │ │ │ ├── chevron-double-left.svg │ │ │ │ │ │ │ │ ├── chevron-double-right.svg │ │ │ │ │ │ │ │ ├── chevron-double-up.svg │ │ │ │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ │ │ │ ├── chevron-expand.svg │ │ │ │ │ │ │ │ ├── chevron-left.svg │ │ │ │ │ │ │ │ ├── chevron-right.svg │ │ │ │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ │ │ │ ├── circle-fill.svg │ │ │ │ │ │ │ │ ├── circle-half.svg │ │ │ │ │ │ │ │ ├── circle-square.svg │ │ │ │ │ │ │ │ ├── circle.svg │ │ │ │ │ │ │ │ ├── clipboard-check-fill.svg │ │ │ │ │ │ │ │ ├── clipboard-check.svg │ │ │ │ │ │ │ │ ├── clipboard-data-fill.svg │ │ │ │ │ │ │ │ ├── clipboard-data.svg │ │ │ │ │ │ │ │ ├── clipboard-fill.svg │ │ │ │ │ │ │ │ ├── clipboard-heart-fill.svg │ │ │ │ │ │ │ │ ├── clipboard-heart.svg │ │ │ │ │ │ │ │ ├── clipboard-minus-fill.svg │ │ │ │ │ │ │ │ ├── clipboard-minus.svg │ │ │ │ │ │ │ │ ├── clipboard-plus-fill.svg │ │ │ │ │ │ │ │ ├── clipboard-plus.svg │ │ │ │ │ │ │ │ ├── clipboard-pulse.svg │ │ │ │ │ │ │ │ ├── clipboard-x-fill.svg │ │ │ │ │ │ │ │ ├── clipboard-x.svg │ │ │ │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ │ │ │ ├── clipboard2-check-fill.svg │ │ │ │ │ │ │ │ ├── clipboard2-check.svg │ │ │ │ │ │ │ │ ├── clipboard2-data-fill.svg │ │ │ │ │ │ │ │ ├── clipboard2-data.svg │ │ │ │ │ │ │ │ ├── clipboard2-fill.svg │ │ │ │ │ │ │ │ ├── clipboard2-heart-fill.svg │ │ │ │ │ │ │ │ ├── clipboard2-heart.svg │ │ │ │ │ │ │ │ ├── clipboard2-minus-fill.svg │ │ │ │ │ │ │ │ ├── clipboard2-minus.svg │ │ │ │ │ │ │ │ ├── clipboard2-plus-fill.svg │ │ │ │ │ │ │ │ ├── clipboard2-plus.svg │ │ │ │ │ │ │ │ ├── clipboard2-pulse-fill.svg │ │ │ │ │ │ │ │ ├── clipboard2-pulse.svg │ │ │ │ │ │ │ │ ├── clipboard2-x-fill.svg │ │ │ │ │ │ │ │ ├── clipboard2-x.svg │ │ │ │ │ │ │ │ ├── clipboard2.svg │ │ │ │ │ │ │ │ ├── clock-fill.svg │ │ │ │ │ │ │ │ ├── clock-history.svg │ │ │ │ │ │ │ │ ├── clock.svg │ │ │ │ │ │ │ │ ├── cloud-arrow-down-fill.svg │ │ │ │ │ │ │ │ ├── cloud-arrow-down.svg │ │ │ │ │ │ │ │ ├── cloud-arrow-up-fill.svg │ │ │ │ │ │ │ │ ├── cloud-arrow-up.svg │ │ │ │ │ │ │ │ ├── cloud-check-fill.svg │ │ │ │ │ │ │ │ ├── cloud-check.svg │ │ │ │ │ │ │ │ ├── cloud-download-fill.svg │ │ │ │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ │ │ │ ├── cloud-drizzle-fill.svg │ │ │ │ │ │ │ │ ├── cloud-drizzle.svg │ │ │ │ │ │ │ │ ├── cloud-fill.svg │ │ │ │ │ │ │ │ ├── cloud-fog-fill.svg │ │ │ │ │ │ │ │ ├── cloud-fog.svg │ │ │ │ │ │ │ │ ├── cloud-fog2-fill.svg │ │ │ │ │ │ │ │ ├── cloud-fog2.svg │ │ │ │ │ │ │ │ ├── cloud-hail-fill.svg │ │ │ │ │ │ │ │ ├── cloud-hail.svg │ │ │ │ │ │ │ │ ├── cloud-haze-fill.svg │ │ │ │ │ │ │ │ ├── cloud-haze.svg │ │ │ │ │ │ │ │ ├── cloud-haze2-fill.svg │ │ │ │ │ │ │ │ ├── cloud-haze2.svg │ │ │ │ │ │ │ │ ├── cloud-lightning-fill.svg │ │ │ │ │ │ │ │ ├── cloud-lightning-rain-fill.svg │ │ │ │ │ │ │ │ ├── cloud-lightning-rain.svg │ │ │ │ │ │ │ │ ├── cloud-lightning.svg │ │ │ │ │ │ │ │ ├── cloud-minus-fill.svg │ │ │ │ │ │ │ │ ├── cloud-minus.svg │ │ │ │ │ │ │ │ ├── cloud-moon-fill.svg │ │ │ │ │ │ │ │ ├── cloud-moon.svg │ │ │ │ │ │ │ │ ├── cloud-plus-fill.svg │ │ │ │ │ │ │ │ ├── cloud-plus.svg │ │ │ │ │ │ │ │ ├── cloud-rain-fill.svg │ │ │ │ │ │ │ │ ├── cloud-rain-heavy-fill.svg │ │ │ │ │ │ │ │ ├── cloud-rain-heavy.svg │ │ │ │ │ │ │ │ ├── cloud-rain.svg │ │ │ │ │ │ │ │ ├── cloud-slash-fill.svg │ │ │ │ │ │ │ │ ├── cloud-slash.svg │ │ │ │ │ │ │ │ ├── cloud-sleet-fill.svg │ │ │ │ │ │ │ │ ├── cloud-sleet.svg │ │ │ │ │ │ │ │ ├── cloud-snow-fill.svg │ │ │ │ │ │ │ │ ├── cloud-snow.svg │ │ │ │ │ │ │ │ ├── cloud-sun-fill.svg │ │ │ │ │ │ │ │ ├── cloud-sun.svg │ │ │ │ │ │ │ │ ├── cloud-upload-fill.svg │ │ │ │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ │ │ │ ├── cloud.svg │ │ │ │ │ │ │ │ ├── clouds-fill.svg │ │ │ │ │ │ │ │ ├── clouds.svg │ │ │ │ │ │ │ │ ├── cloudy-fill.svg │ │ │ │ │ │ │ │ ├── cloudy.svg │ │ │ │ │ │ │ │ ├── code-slash.svg │ │ │ │ │ │ │ │ ├── code-square.svg │ │ │ │ │ │ │ │ ├── code.svg │ │ │ │ │ │ │ │ ├── coin.svg │ │ │ │ │ │ │ │ ├── collection-fill.svg │ │ │ │ │ │ │ │ ├── collection-play-fill.svg │ │ │ │ │ │ │ │ ├── collection-play.svg │ │ │ │ │ │ │ │ ├── collection.svg │ │ │ │ │ │ │ │ ├── columns-gap.svg │ │ │ │ │ │ │ │ ├── columns.svg │ │ │ │ │ │ │ │ ├── command.svg │ │ │ │ │ │ │ │ ├── compass-fill.svg │ │ │ │ │ │ │ │ ├── compass.svg │ │ │ │ │ │ │ │ ├── cone-striped.svg │ │ │ │ │ │ │ │ ├── cone.svg │ │ │ │ │ │ │ │ ├── controller.svg │ │ │ │ │ │ │ │ ├── cookie.svg │ │ │ │ │ │ │ │ ├── copy.svg │ │ │ │ │ │ │ │ ├── cpu-fill.svg │ │ │ │ │ │ │ │ ├── cpu.svg │ │ │ │ │ │ │ │ ├── credit-card-2-back-fill.svg │ │ │ │ │ │ │ │ ├── credit-card-2-back.svg │ │ │ │ │ │ │ │ ├── credit-card-2-front-fill.svg │ │ │ │ │ │ │ │ ├── credit-card-2-front.svg │ │ │ │ │ │ │ │ ├── credit-card-fill.svg │ │ │ │ │ │ │ │ ├── credit-card.svg │ │ │ │ │ │ │ │ ├── crop.svg │ │ │ │ │ │ │ │ ├── crosshair.svg │ │ │ │ │ │ │ │ ├── crosshair2.svg │ │ │ │ │ │ │ │ ├── cup-fill.svg │ │ │ │ │ │ │ │ ├── cup-hot-fill.svg │ │ │ │ │ │ │ │ ├── cup-hot.svg │ │ │ │ │ │ │ │ ├── cup-straw.svg │ │ │ │ │ │ │ │ ├── cup.svg │ │ │ │ │ │ │ │ ├── currency-bitcoin.svg │ │ │ │ │ │ │ │ ├── currency-dollar.svg │ │ │ │ │ │ │ │ ├── currency-euro.svg │ │ │ │ │ │ │ │ ├── currency-exchange.svg │ │ │ │ │ │ │ │ ├── currency-pound.svg │ │ │ │ │ │ │ │ ├── currency-rupee.svg │ │ │ │ │ │ │ │ ├── currency-yen.svg │ │ │ │ │ │ │ │ ├── cursor-fill.svg │ │ │ │ │ │ │ │ ├── cursor-text.svg │ │ │ │ │ │ │ │ ├── cursor.svg │ │ │ │ │ │ │ │ ├── dash-circle-dotted.svg │ │ │ │ │ │ │ │ ├── dash-circle-fill.svg │ │ │ │ │ │ │ │ ├── dash-circle.svg │ │ │ │ │ │ │ │ ├── dash-lg.svg │ │ │ │ │ │ │ │ ├── dash-square-dotted.svg │ │ │ │ │ │ │ │ ├── dash-square-fill.svg │ │ │ │ │ │ │ │ ├── dash-square.svg │ │ │ │ │ │ │ │ ├── dash.svg │ │ │ │ │ │ │ │ ├── database-add.svg │ │ │ │ │ │ │ │ ├── database-check.svg │ │ │ │ │ │ │ │ ├── database-dash.svg │ │ │ │ │ │ │ │ ├── database-down.svg │ │ │ │ │ │ │ │ ├── database-exclamation.svg │ │ │ │ │ │ │ │ ├── database-fill-add.svg │ │ │ │ │ │ │ │ ├── database-fill-check.svg │ │ │ │ │ │ │ │ ├── database-fill-dash.svg │ │ │ │ │ │ │ │ ├── database-fill-down.svg │ │ │ │ │ │ │ │ ├── database-fill-exclamation.svg │ │ │ │ │ │ │ │ ├── database-fill-gear.svg │ │ │ │ │ │ │ │ ├── database-fill-lock.svg │ │ │ │ │ │ │ │ ├── database-fill-slash.svg │ │ │ │ │ │ │ │ ├── database-fill-up.svg │ │ │ │ │ │ │ │ ├── database-fill-x.svg │ │ │ │ │ │ │ │ ├── database-fill.svg │ │ │ │ │ │ │ │ ├── database-gear.svg │ │ │ │ │ │ │ │ ├── database-lock.svg │ │ │ │ │ │ │ │ ├── database-slash.svg │ │ │ │ │ │ │ │ ├── database-up.svg │ │ │ │ │ │ │ │ ├── database-x.svg │ │ │ │ │ │ │ │ ├── database.svg │ │ │ │ │ │ │ │ ├── device-hdd-fill.svg │ │ │ │ │ │ │ │ ├── device-hdd.svg │ │ │ │ │ │ │ │ ├── device-ssd-fill.svg │ │ │ │ │ │ │ │ ├── device-ssd.svg │ │ │ │ │ │ │ │ ├── diagram-2-fill.svg │ │ │ │ │ │ │ │ ├── diagram-2.svg │ │ │ │ │ │ │ │ ├── diagram-3-fill.svg │ │ │ │ │ │ │ │ ├── diagram-3.svg │ │ │ │ │ │ │ │ ├── diamond-fill.svg │ │ │ │ │ │ │ │ ├── diamond-half.svg │ │ │ │ │ │ │ │ ├── diamond.svg │ │ │ │ │ │ │ │ ├── dice-1-fill.svg │ │ │ │ │ │ │ │ ├── dice-1.svg │ │ │ │ │ │ │ │ ├── dice-2-fill.svg │ │ │ │ │ │ │ │ ├── dice-2.svg │ │ │ │ │ │ │ │ ├── dice-3-fill.svg │ │ │ │ │ │ │ │ ├── dice-3.svg │ │ │ │ │ │ │ │ ├── dice-4-fill.svg │ │ │ │ │ │ │ │ ├── dice-4.svg │ │ │ │ │ │ │ │ ├── dice-5-fill.svg │ │ │ │ │ │ │ │ ├── dice-5.svg │ │ │ │ │ │ │ │ ├── dice-6-fill.svg │ │ │ │ │ │ │ │ ├── dice-6.svg │ │ │ │ │ │ │ │ ├── disc-fill.svg │ │ │ │ │ │ │ │ ├── disc.svg │ │ │ │ │ │ │ │ ├── discord.svg │ │ │ │ │ │ │ │ ├── display-fill.svg │ │ │ │ │ │ │ │ ├── display.svg │ │ │ │ │ │ │ │ ├── displayport-fill.svg │ │ │ │ │ │ │ │ ├── displayport.svg │ │ │ │ │ │ │ │ ├── distribute-horizontal.svg │ │ │ │ │ │ │ │ ├── distribute-vertical.svg │ │ │ │ │ │ │ │ ├── door-closed-fill.svg │ │ │ │ │ │ │ │ ├── door-closed.svg │ │ │ │ │ │ │ │ ├── door-open-fill.svg │ │ │ │ │ │ │ │ ├── door-open.svg │ │ │ │ │ │ │ │ ├── dot.svg │ │ │ │ │ │ │ │ ├── download.svg │ │ │ │ │ │ │ │ ├── dpad-fill.svg │ │ │ │ │ │ │ │ ├── dpad.svg │ │ │ │ │ │ │ │ ├── dribbble.svg │ │ │ │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ │ │ │ ├── droplet-fill.svg │ │ │ │ │ │ │ │ ├── droplet-half.svg │ │ │ │ │ │ │ │ ├── droplet.svg │ │ │ │ │ │ │ │ ├── duffle-fill.svg │ │ │ │ │ │ │ │ ├── duffle.svg │ │ │ │ │ │ │ │ ├── ear-fill.svg │ │ │ │ │ │ │ │ ├── ear.svg │ │ │ │ │ │ │ │ ├── earbuds.svg │ │ │ │ │ │ │ │ ├── easel-fill.svg │ │ │ │ │ │ │ │ ├── easel.svg │ │ │ │ │ │ │ │ ├── easel2-fill.svg │ │ │ │ │ │ │ │ ├── easel2.svg │ │ │ │ │ │ │ │ ├── easel3-fill.svg │ │ │ │ │ │ │ │ ├── easel3.svg │ │ │ │ │ │ │ │ ├── egg-fill.svg │ │ │ │ │ │ │ │ ├── egg-fried.svg │ │ │ │ │ │ │ │ ├── egg.svg │ │ │ │ │ │ │ │ ├── eject-fill.svg │ │ │ │ │ │ │ │ ├── eject.svg │ │ │ │ │ │ │ │ ├── emoji-angry-fill.svg │ │ │ │ │ │ │ │ ├── emoji-angry.svg │ │ │ │ │ │ │ │ ├── emoji-astonished-fill.svg │ │ │ │ │ │ │ │ ├── emoji-astonished.svg │ │ │ │ │ │ │ │ ├── emoji-dizzy-fill.svg │ │ │ │ │ │ │ │ ├── emoji-dizzy.svg │ │ │ │ │ │ │ │ ├── emoji-expressionless-fill.svg │ │ │ │ │ │ │ │ ├── emoji-expressionless.svg │ │ │ │ │ │ │ │ ├── emoji-frown-fill.svg │ │ │ │ │ │ │ │ ├── emoji-frown.svg │ │ │ │ │ │ │ │ ├── emoji-grimace-fill.svg │ │ │ │ │ │ │ │ ├── emoji-grimace.svg │ │ │ │ │ │ │ │ ├── emoji-grin-fill.svg │ │ │ │ │ │ │ │ ├── emoji-grin.svg │ │ │ │ │ │ │ │ ├── emoji-heart-eyes-fill.svg │ │ │ │ │ │ │ │ ├── emoji-heart-eyes.svg │ │ │ │ │ │ │ │ ├── emoji-kiss-fill.svg │ │ │ │ │ │ │ │ ├── emoji-kiss.svg │ │ │ │ │ │ │ │ ├── emoji-laughing-fill.svg │ │ │ │ │ │ │ │ ├── emoji-laughing.svg │ │ │ │ │ │ │ │ ├── emoji-neutral-fill.svg │ │ │ │ │ │ │ │ ├── emoji-neutral.svg │ │ │ │ │ │ │ │ ├── emoji-smile-fill.svg │ │ │ │ │ │ │ │ ├── emoji-smile-upside-down-fill.svg │ │ │ │ │ │ │ │ ├── emoji-smile-upside-down.svg │ │ │ │ │ │ │ │ ├── emoji-smile.svg │ │ │ │ │ │ │ │ ├── emoji-sunglasses-fill.svg │ │ │ │ │ │ │ │ ├── emoji-sunglasses.svg │ │ │ │ │ │ │ │ ├── emoji-surprise-fill.svg │ │ │ │ │ │ │ │ ├── emoji-surprise.svg │ │ │ │ │ │ │ │ ├── emoji-tear-fill.svg │ │ │ │ │ │ │ │ ├── emoji-tear.svg │ │ │ │ │ │ │ │ ├── emoji-wink-fill.svg │ │ │ │ │ │ │ │ ├── emoji-wink.svg │ │ │ │ │ │ │ │ ├── envelope-arrow-down-fill.svg │ │ │ │ │ │ │ │ ├── envelope-arrow-down.svg │ │ │ │ │ │ │ │ ├── envelope-arrow-up-fill.svg │ │ │ │ │ │ │ │ ├── envelope-arrow-up.svg │ │ │ │ │ │ │ │ ├── envelope-at-fill.svg │ │ │ │ │ │ │ │ ├── envelope-at.svg │ │ │ │ │ │ │ │ ├── envelope-check-fill.svg │ │ │ │ │ │ │ │ ├── envelope-check.svg │ │ │ │ │ │ │ │ ├── envelope-dash-fill.svg │ │ │ │ │ │ │ │ ├── envelope-dash.svg │ │ │ │ │ │ │ │ ├── envelope-exclamation-fill.svg │ │ │ │ │ │ │ │ ├── envelope-exclamation.svg │ │ │ │ │ │ │ │ ├── envelope-fill.svg │ │ │ │ │ │ │ │ ├── envelope-heart-fill.svg │ │ │ │ │ │ │ │ ├── envelope-heart.svg │ │ │ │ │ │ │ │ ├── envelope-open-fill.svg │ │ │ │ │ │ │ │ ├── envelope-open-heart-fill.svg │ │ │ │ │ │ │ │ ├── envelope-open-heart.svg │ │ │ │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ │ │ │ ├── envelope-paper-fill.svg │ │ │ │ │ │ │ │ ├── envelope-paper-heart-fill.svg │ │ │ │ │ │ │ │ ├── envelope-paper-heart.svg │ │ │ │ │ │ │ │ ├── envelope-paper.svg │ │ │ │ │ │ │ │ ├── envelope-plus-fill.svg │ │ │ │ │ │ │ │ ├── envelope-plus.svg │ │ │ │ │ │ │ │ ├── envelope-slash-fill.svg │ │ │ │ │ │ │ │ ├── envelope-slash.svg │ │ │ │ │ │ │ │ ├── envelope-x-fill.svg │ │ │ │ │ │ │ │ ├── envelope-x.svg │ │ │ │ │ │ │ │ ├── envelope.svg │ │ │ │ │ │ │ │ ├── eraser-fill.svg │ │ │ │ │ │ │ │ ├── eraser.svg │ │ │ │ │ │ │ │ ├── escape.svg │ │ │ │ │ │ │ │ ├── ethernet.svg │ │ │ │ │ │ │ │ ├── ev-front-fill.svg │ │ │ │ │ │ │ │ ├── ev-front.svg │ │ │ │ │ │ │ │ ├── ev-station-fill.svg │ │ │ │ │ │ │ │ ├── ev-station.svg │ │ │ │ │ │ │ │ ├── exclamation-circle-fill.svg │ │ │ │ │ │ │ │ ├── exclamation-circle.svg │ │ │ │ │ │ │ │ ├── exclamation-diamond-fill.svg │ │ │ │ │ │ │ │ ├── exclamation-diamond.svg │ │ │ │ │ │ │ │ ├── exclamation-lg.svg │ │ │ │ │ │ │ │ ├── exclamation-octagon-fill.svg │ │ │ │ │ │ │ │ ├── exclamation-octagon.svg │ │ │ │ │ │ │ │ ├── exclamation-square-fill.svg │ │ │ │ │ │ │ │ ├── exclamation-square.svg │ │ │ │ │ │ │ │ ├── exclamation-triangle-fill.svg │ │ │ │ │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ │ │ │ ├── exclude.svg │ │ │ │ │ │ │ │ ├── explicit-fill.svg │ │ │ │ │ │ │ │ ├── explicit.svg │ │ │ │ │ │ │ │ ├── exposure.svg │ │ │ │ │ │ │ │ ├── eye-fill.svg │ │ │ │ │ │ │ │ ├── eye-slash-fill.svg │ │ │ │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ │ │ │ ├── eye.svg │ │ │ │ │ │ │ │ ├── eyedropper.svg │ │ │ │ │ │ │ │ ├── eyeglasses.svg │ │ │ │ │ │ │ │ ├── facebook.svg │ │ │ │ │ │ │ │ ├── fan.svg │ │ │ │ │ │ │ │ ├── fast-forward-btn-fill.svg │ │ │ │ │ │ │ │ ├── fast-forward-btn.svg │ │ │ │ │ │ │ │ ├── fast-forward-circle-fill.svg │ │ │ │ │ │ │ │ ├── fast-forward-circle.svg │ │ │ │ │ │ │ │ ├── fast-forward-fill.svg │ │ │ │ │ │ │ │ ├── fast-forward.svg │ │ │ │ │ │ │ │ ├── feather.svg │ │ │ │ │ │ │ │ ├── feather2.svg │ │ │ │ │ │ │ │ ├── file-arrow-down-fill.svg │ │ │ │ │ │ │ │ ├── file-arrow-down.svg │ │ │ │ │ │ │ │ ├── file-arrow-up-fill.svg │ │ │ │ │ │ │ │ ├── file-arrow-up.svg │ │ │ │ │ │ │ │ ├── file-bar-graph-fill.svg │ │ │ │ │ │ │ │ ├── file-bar-graph.svg │ │ │ │ │ │ │ │ ├── file-binary-fill.svg │ │ │ │ │ │ │ │ ├── file-binary.svg │ │ │ │ │ │ │ │ ├── file-break-fill.svg │ │ │ │ │ │ │ │ ├── file-break.svg │ │ │ │ │ │ │ │ ├── file-check-fill.svg │ │ │ │ │ │ │ │ ├── file-check.svg │ │ │ │ │ │ │ │ ├── file-code-fill.svg │ │ │ │ │ │ │ │ ├── file-code.svg │ │ │ │ │ │ │ │ ├── file-diff-fill.svg │ │ │ │ │ │ │ │ ├── file-diff.svg │ │ │ │ │ │ │ │ ├── file-earmark-arrow-down-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-arrow-down.svg │ │ │ │ │ │ │ │ ├── file-earmark-arrow-up-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-arrow-up.svg │ │ │ │ │ │ │ │ ├── file-earmark-bar-graph-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-bar-graph.svg │ │ │ │ │ │ │ │ ├── file-earmark-binary-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-binary.svg │ │ │ │ │ │ │ │ ├── file-earmark-break-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-break.svg │ │ │ │ │ │ │ │ ├── file-earmark-check-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-check.svg │ │ │ │ │ │ │ │ ├── file-earmark-code-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-code.svg │ │ │ │ │ │ │ │ ├── file-earmark-diff-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-diff.svg │ │ │ │ │ │ │ │ ├── file-earmark-easel-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-easel.svg │ │ │ │ │ │ │ │ ├── file-earmark-excel-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-excel.svg │ │ │ │ │ │ │ │ ├── file-earmark-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-font-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-font.svg │ │ │ │ │ │ │ │ ├── file-earmark-image-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-image.svg │ │ │ │ │ │ │ │ ├── file-earmark-lock-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-lock.svg │ │ │ │ │ │ │ │ ├── file-earmark-lock2-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-lock2.svg │ │ │ │ │ │ │ │ ├── file-earmark-medical-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-medical.svg │ │ │ │ │ │ │ │ ├── file-earmark-minus-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-minus.svg │ │ │ │ │ │ │ │ ├── file-earmark-music-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-music.svg │ │ │ │ │ │ │ │ ├── file-earmark-pdf-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-pdf.svg │ │ │ │ │ │ │ │ ├── file-earmark-person-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-person.svg │ │ │ │ │ │ │ │ ├── file-earmark-play-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-play.svg │ │ │ │ │ │ │ │ ├── file-earmark-plus-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-plus.svg │ │ │ │ │ │ │ │ ├── file-earmark-post-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-post.svg │ │ │ │ │ │ │ │ ├── file-earmark-ppt-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-ppt.svg │ │ │ │ │ │ │ │ ├── file-earmark-richtext-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-richtext.svg │ │ │ │ │ │ │ │ ├── file-earmark-ruled-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-ruled.svg │ │ │ │ │ │ │ │ ├── file-earmark-slides-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-slides.svg │ │ │ │ │ │ │ │ ├── file-earmark-spreadsheet-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-spreadsheet.svg │ │ │ │ │ │ │ │ ├── file-earmark-text-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-text.svg │ │ │ │ │ │ │ │ ├── file-earmark-word-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-word.svg │ │ │ │ │ │ │ │ ├── file-earmark-x-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-x.svg │ │ │ │ │ │ │ │ ├── file-earmark-zip-fill.svg │ │ │ │ │ │ │ │ ├── file-earmark-zip.svg │ │ │ │ │ │ │ │ ├── file-earmark.svg │ │ │ │ │ │ │ │ ├── file-easel-fill.svg │ │ │ │ │ │ │ │ ├── file-easel.svg │ │ │ │ │ │ │ │ ├── file-excel-fill.svg │ │ │ │ │ │ │ │ ├── file-excel.svg │ │ │ │ │ │ │ │ ├── file-fill.svg │ │ │ │ │ │ │ │ ├── file-font-fill.svg │ │ │ │ │ │ │ │ ├── file-font.svg │ │ │ │ │ │ │ │ ├── file-image-fill.svg │ │ │ │ │ │ │ │ ├── file-image.svg │ │ │ │ │ │ │ │ ├── file-lock-fill.svg │ │ │ │ │ │ │ │ ├── file-lock.svg │ │ │ │ │ │ │ │ ├── file-lock2-fill.svg │ │ │ │ │ │ │ │ ├── file-lock2.svg │ │ │ │ │ │ │ │ ├── file-medical-fill.svg │ │ │ │ │ │ │ │ ├── file-medical.svg │ │ │ │ │ │ │ │ ├── file-minus-fill.svg │ │ │ │ │ │ │ │ ├── file-minus.svg │ │ │ │ │ │ │ │ ├── file-music-fill.svg │ │ │ │ │ │ │ │ ├── file-music.svg │ │ │ │ │ │ │ │ ├── file-pdf-fill.svg │ │ │ │ │ │ │ │ ├── file-pdf.svg │ │ │ │ │ │ │ │ ├── file-person-fill.svg │ │ │ │ │ │ │ │ ├── file-person.svg │ │ │ │ │ │ │ │ ├── file-play-fill.svg │ │ │ │ │ │ │ │ ├── file-play.svg │ │ │ │ │ │ │ │ ├── file-plus-fill.svg │ │ │ │ │ │ │ │ ├── file-plus.svg │ │ │ │ │ │ │ │ ├── file-post-fill.svg │ │ │ │ │ │ │ │ ├── file-post.svg │ │ │ │ │ │ │ │ ├── file-ppt-fill.svg │ │ │ │ │ │ │ │ ├── file-ppt.svg │ │ │ │ │ │ │ │ ├── file-richtext-fill.svg │ │ │ │ │ │ │ │ ├── file-richtext.svg │ │ │ │ │ │ │ │ ├── file-ruled-fill.svg │ │ │ │ │ │ │ │ ├── file-ruled.svg │ │ │ │ │ │ │ │ ├── file-slides-fill.svg │ │ │ │ │ │ │ │ ├── file-slides.svg │ │ │ │ │ │ │ │ ├── file-spreadsheet-fill.svg │ │ │ │ │ │ │ │ ├── file-spreadsheet.svg │ │ │ │ │ │ │ │ ├── file-text-fill.svg │ │ │ │ │ │ │ │ ├── file-text.svg │ │ │ │ │ │ │ │ ├── file-word-fill.svg │ │ │ │ │ │ │ │ ├── file-word.svg │ │ │ │ │ │ │ │ ├── file-x-fill.svg │ │ │ │ │ │ │ │ ├── file-x.svg │ │ │ │ │ │ │ │ ├── file-zip-fill.svg │ │ │ │ │ │ │ │ ├── file-zip.svg │ │ │ │ │ │ │ │ ├── file.svg │ │ │ │ │ │ │ │ ├── files-alt.svg │ │ │ │ │ │ │ │ ├── files.svg │ │ │ │ │ │ │ │ ├── filetype-aac.svg │ │ │ │ │ │ │ │ ├── filetype-ai.svg │ │ │ │ │ │ │ │ ├── filetype-bmp.svg │ │ │ │ │ │ │ │ ├── filetype-cs.svg │ │ │ │ │ │ │ │ ├── filetype-css.svg │ │ │ │ │ │ │ │ ├── filetype-csv.svg │ │ │ │ │ │ │ │ ├── filetype-doc.svg │ │ │ │ │ │ │ │ ├── filetype-docx.svg │ │ │ │ │ │ │ │ ├── filetype-exe.svg │ │ │ │ │ │ │ │ ├── filetype-gif.svg │ │ │ │ │ │ │ │ ├── filetype-heic.svg │ │ │ │ │ │ │ │ ├── filetype-html.svg │ │ │ │ │ │ │ │ ├── filetype-java.svg │ │ │ │ │ │ │ │ ├── filetype-jpg.svg │ │ │ │ │ │ │ │ ├── filetype-js.svg │ │ │ │ │ │ │ │ ├── filetype-json.svg │ │ │ │ │ │ │ │ ├── filetype-jsx.svg │ │ │ │ │ │ │ │ ├── filetype-key.svg │ │ │ │ │ │ │ │ ├── filetype-m4p.svg │ │ │ │ │ │ │ │ ├── filetype-md.svg │ │ │ │ │ │ │ │ ├── filetype-mdx.svg │ │ │ │ │ │ │ │ ├── filetype-mov.svg │ │ │ │ │ │ │ │ ├── filetype-mp3.svg │ │ │ │ │ │ │ │ ├── filetype-mp4.svg │ │ │ │ │ │ │ │ ├── filetype-otf.svg │ │ │ │ │ │ │ │ ├── filetype-pdf.svg │ │ │ │ │ │ │ │ ├── filetype-php.svg │ │ │ │ │ │ │ │ ├── filetype-png.svg │ │ │ │ │ │ │ │ ├── filetype-ppt.svg │ │ │ │ │ │ │ │ ├── filetype-pptx.svg │ │ │ │ │ │ │ │ ├── filetype-psd.svg │ │ │ │ │ │ │ │ ├── filetype-py.svg │ │ │ │ │ │ │ │ ├── filetype-raw.svg │ │ │ │ │ │ │ │ ├── filetype-rb.svg │ │ │ │ │ │ │ │ ├── filetype-sass.svg │ │ │ │ │ │ │ │ ├── filetype-scss.svg │ │ │ │ │ │ │ │ ├── filetype-sh.svg │ │ │ │ │ │ │ │ ├── filetype-sql.svg │ │ │ │ │ │ │ │ ├── filetype-svg.svg │ │ │ │ │ │ │ │ ├── filetype-tiff.svg │ │ │ │ │ │ │ │ ├── filetype-tsx.svg │ │ │ │ │ │ │ │ ├── filetype-ttf.svg │ │ │ │ │ │ │ │ ├── filetype-txt.svg │ │ │ │ │ │ │ │ ├── filetype-wav.svg │ │ │ │ │ │ │ │ ├── filetype-woff.svg │ │ │ │ │ │ │ │ ├── filetype-xls.svg │ │ │ │ │ │ │ │ ├── filetype-xlsx.svg │ │ │ │ │ │ │ │ ├── filetype-xml.svg │ │ │ │ │ │ │ │ ├── filetype-yml.svg │ │ │ │ │ │ │ │ ├── film.svg │ │ │ │ │ │ │ │ ├── filter-circle-fill.svg │ │ │ │ │ │ │ │ ├── filter-circle.svg │ │ │ │ │ │ │ │ ├── filter-left.svg │ │ │ │ │ │ │ │ ├── filter-right.svg │ │ │ │ │ │ │ │ ├── filter-square-fill.svg │ │ │ │ │ │ │ │ ├── filter-square.svg │ │ │ │ │ │ │ │ ├── filter.svg │ │ │ │ │ │ │ │ ├── fingerprint.svg │ │ │ │ │ │ │ │ ├── fire.svg │ │ │ │ │ │ │ │ ├── flag-fill.svg │ │ │ │ │ │ │ │ ├── flag.svg │ │ │ │ │ │ │ │ ├── floppy-fill.svg │ │ │ │ │ │ │ │ ├── floppy.svg │ │ │ │ │ │ │ │ ├── floppy2-fill.svg │ │ │ │ │ │ │ │ ├── floppy2.svg │ │ │ │ │ │ │ │ ├── flower1.svg │ │ │ │ │ │ │ │ ├── flower2.svg │ │ │ │ │ │ │ │ ├── flower3.svg │ │ │ │ │ │ │ │ ├── folder-check.svg │ │ │ │ │ │ │ │ ├── folder-fill.svg │ │ │ │ │ │ │ │ ├── folder-minus.svg │ │ │ │ │ │ │ │ ├── folder-plus.svg │ │ │ │ │ │ │ │ ├── folder-symlink-fill.svg │ │ │ │ │ │ │ │ ├── folder-symlink.svg │ │ │ │ │ │ │ │ ├── folder-x.svg │ │ │ │ │ │ │ │ ├── folder.svg │ │ │ │ │ │ │ │ ├── folder2-open.svg │ │ │ │ │ │ │ │ ├── folder2.svg │ │ │ │ │ │ │ │ ├── fonts.svg │ │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ │ ├── bootstrap-icons.woff │ │ │ │ │ │ │ │ └── bootstrap-icons.woff2 │ │ │ │ │ │ │ │ ├── forward-fill.svg │ │ │ │ │ │ │ │ ├── forward.svg │ │ │ │ │ │ │ │ ├── front.svg │ │ │ │ │ │ │ │ ├── fuel-pump-diesel-fill.svg │ │ │ │ │ │ │ │ ├── fuel-pump-diesel.svg │ │ │ │ │ │ │ │ ├── fuel-pump-fill.svg │ │ │ │ │ │ │ │ ├── fuel-pump.svg │ │ │ │ │ │ │ │ ├── fullscreen-exit.svg │ │ │ │ │ │ │ │ ├── fullscreen.svg │ │ │ │ │ │ │ │ ├── funnel-fill.svg │ │ │ │ │ │ │ │ ├── funnel.svg │ │ │ │ │ │ │ │ ├── gear-fill.svg │ │ │ │ │ │ │ │ ├── gear-wide-connected.svg │ │ │ │ │ │ │ │ ├── gear-wide.svg │ │ │ │ │ │ │ │ ├── gear.svg │ │ │ │ │ │ │ │ ├── gem.svg │ │ │ │ │ │ │ │ ├── gender-ambiguous.svg │ │ │ │ │ │ │ │ ├── gender-female.svg │ │ │ │ │ │ │ │ ├── gender-male.svg │ │ │ │ │ │ │ │ ├── gender-neuter.svg │ │ │ │ │ │ │ │ ├── gender-trans.svg │ │ │ │ │ │ │ │ ├── geo-alt-fill.svg │ │ │ │ │ │ │ │ ├── geo-alt.svg │ │ │ │ │ │ │ │ ├── geo-fill.svg │ │ │ │ │ │ │ │ ├── geo.svg │ │ │ │ │ │ │ │ ├── gift-fill.svg │ │ │ │ │ │ │ │ ├── gift.svg │ │ │ │ │ │ │ │ ├── git.svg │ │ │ │ │ │ │ │ ├── github.svg │ │ │ │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ │ │ │ ├── globe-americas.svg │ │ │ │ │ │ │ │ ├── globe-asia-australia.svg │ │ │ │ │ │ │ │ ├── globe-central-south-asia.svg │ │ │ │ │ │ │ │ ├── globe-europe-africa.svg │ │ │ │ │ │ │ │ ├── globe.svg │ │ │ │ │ │ │ │ ├── globe2.svg │ │ │ │ │ │ │ │ ├── google-play.svg │ │ │ │ │ │ │ │ ├── google.svg │ │ │ │ │ │ │ │ ├── gpu-card.svg │ │ │ │ │ │ │ │ ├── graph-down-arrow.svg │ │ │ │ │ │ │ │ ├── graph-down.svg │ │ │ │ │ │ │ │ ├── graph-up-arrow.svg │ │ │ │ │ │ │ │ ├── graph-up.svg │ │ │ │ │ │ │ │ ├── grid-1x2-fill.svg │ │ │ │ │ │ │ │ ├── grid-1x2.svg │ │ │ │ │ │ │ │ ├── grid-3x2-gap-fill.svg │ │ │ │ │ │ │ │ ├── grid-3x2-gap.svg │ │ │ │ │ │ │ │ ├── grid-3x2.svg │ │ │ │ │ │ │ │ ├── grid-3x3-gap-fill.svg │ │ │ │ │ │ │ │ ├── grid-3x3-gap.svg │ │ │ │ │ │ │ │ ├── grid-3x3.svg │ │ │ │ │ │ │ │ ├── grid-fill.svg │ │ │ │ │ │ │ │ ├── grid.svg │ │ │ │ │ │ │ │ ├── grip-horizontal.svg │ │ │ │ │ │ │ │ ├── grip-vertical.svg │ │ │ │ │ │ │ │ ├── h-circle-fill.svg │ │ │ │ │ │ │ │ ├── h-circle.svg │ │ │ │ │ │ │ │ ├── h-square-fill.svg │ │ │ │ │ │ │ │ ├── h-square.svg │ │ │ │ │ │ │ │ ├── hammer.svg │ │ │ │ │ │ │ │ ├── hand-index-fill.svg │ │ │ │ │ │ │ │ ├── hand-index-thumb-fill.svg │ │ │ │ │ │ │ │ ├── hand-index-thumb.svg │ │ │ │ │ │ │ │ ├── hand-index.svg │ │ │ │ │ │ │ │ ├── hand-thumbs-down-fill.svg │ │ │ │ │ │ │ │ ├── hand-thumbs-down.svg │ │ │ │ │ │ │ │ ├── hand-thumbs-up-fill.svg │ │ │ │ │ │ │ │ ├── hand-thumbs-up.svg │ │ │ │ │ │ │ │ ├── handbag-fill.svg │ │ │ │ │ │ │ │ ├── handbag.svg │ │ │ │ │ │ │ │ ├── hash.svg │ │ │ │ │ │ │ │ ├── hdd-fill.svg │ │ │ │ │ │ │ │ ├── hdd-network-fill.svg │ │ │ │ │ │ │ │ ├── hdd-network.svg │ │ │ │ │ │ │ │ ├── hdd-rack-fill.svg │ │ │ │ │ │ │ │ ├── hdd-rack.svg │ │ │ │ │ │ │ │ ├── hdd-stack-fill.svg │ │ │ │ │ │ │ │ ├── hdd-stack.svg │ │ │ │ │ │ │ │ ├── hdd.svg │ │ │ │ │ │ │ │ ├── hdmi-fill.svg │ │ │ │ │ │ │ │ ├── hdmi.svg │ │ │ │ │ │ │ │ ├── headphones.svg │ │ │ │ │ │ │ │ ├── headset-vr.svg │ │ │ │ │ │ │ │ ├── headset.svg │ │ │ │ │ │ │ │ ├── heart-arrow.svg │ │ │ │ │ │ │ │ ├── heart-fill.svg │ │ │ │ │ │ │ │ ├── heart-half.svg │ │ │ │ │ │ │ │ ├── heart-pulse-fill.svg │ │ │ │ │ │ │ │ ├── heart-pulse.svg │ │ │ │ │ │ │ │ ├── heart.svg │ │ │ │ │ │ │ │ ├── heartbreak-fill.svg │ │ │ │ │ │ │ │ ├── heartbreak.svg │ │ │ │ │ │ │ │ ├── hearts.svg │ │ │ │ │ │ │ │ ├── heptagon-fill.svg │ │ │ │ │ │ │ │ ├── heptagon-half.svg │ │ │ │ │ │ │ │ ├── heptagon.svg │ │ │ │ │ │ │ │ ├── hexagon-fill.svg │ │ │ │ │ │ │ │ ├── hexagon-half.svg │ │ │ │ │ │ │ │ ├── hexagon.svg │ │ │ │ │ │ │ │ ├── highlighter.svg │ │ │ │ │ │ │ │ ├── highlights.svg │ │ │ │ │ │ │ │ ├── hospital-fill.svg │ │ │ │ │ │ │ │ ├── hospital.svg │ │ │ │ │ │ │ │ ├── hourglass-bottom.svg │ │ │ │ │ │ │ │ ├── hourglass-split.svg │ │ │ │ │ │ │ │ ├── hourglass-top.svg │ │ │ │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ │ │ │ ├── house-add-fill.svg │ │ │ │ │ │ │ │ ├── house-add.svg │ │ │ │ │ │ │ │ ├── house-check-fill.svg │ │ │ │ │ │ │ │ ├── house-check.svg │ │ │ │ │ │ │ │ ├── house-dash-fill.svg │ │ │ │ │ │ │ │ ├── house-dash.svg │ │ │ │ │ │ │ │ ├── house-door-fill.svg │ │ │ │ │ │ │ │ ├── house-door.svg │ │ │ │ │ │ │ │ ├── house-down-fill.svg │ │ │ │ │ │ │ │ ├── house-down.svg │ │ │ │ │ │ │ │ ├── house-exclamation-fill.svg │ │ │ │ │ │ │ │ ├── house-exclamation.svg │ │ │ │ │ │ │ │ ├── house-fill.svg │ │ │ │ │ │ │ │ ├── house-gear-fill.svg │ │ │ │ │ │ │ │ ├── house-gear.svg │ │ │ │ │ │ │ │ ├── house-heart-fill.svg │ │ │ │ │ │ │ │ ├── house-heart.svg │ │ │ │ │ │ │ │ ├── house-lock-fill.svg │ │ │ │ │ │ │ │ ├── house-lock.svg │ │ │ │ │ │ │ │ ├── house-slash-fill.svg │ │ │ │ │ │ │ │ ├── house-slash.svg │ │ │ │ │ │ │ │ ├── house-up-fill.svg │ │ │ │ │ │ │ │ ├── house-up.svg │ │ │ │ │ │ │ │ ├── house-x-fill.svg │ │ │ │ │ │ │ │ ├── house-x.svg │ │ │ │ │ │ │ │ ├── house.svg │ │ │ │ │ │ │ │ ├── houses-fill.svg │ │ │ │ │ │ │ │ ├── houses.svg │ │ │ │ │ │ │ │ ├── hr.svg │ │ │ │ │ │ │ │ ├── hurricane.svg │ │ │ │ │ │ │ │ ├── hypnotize.svg │ │ │ │ │ │ │ │ ├── image-alt.svg │ │ │ │ │ │ │ │ ├── image-fill.svg │ │ │ │ │ │ │ │ ├── image.svg │ │ │ │ │ │ │ │ ├── images.svg │ │ │ │ │ │ │ │ ├── inbox-fill.svg │ │ │ │ │ │ │ │ ├── inbox.svg │ │ │ │ │ │ │ │ ├── inboxes-fill.svg │ │ │ │ │ │ │ │ ├── inboxes.svg │ │ │ │ │ │ │ │ ├── incognito.svg │ │ │ │ │ │ │ │ ├── indent.svg │ │ │ │ │ │ │ │ ├── infinity.svg │ │ │ │ │ │ │ │ ├── info-circle-fill.svg │ │ │ │ │ │ │ │ ├── info-circle.svg │ │ │ │ │ │ │ │ ├── info-lg.svg │ │ │ │ │ │ │ │ ├── info-square-fill.svg │ │ │ │ │ │ │ │ ├── info-square.svg │ │ │ │ │ │ │ │ ├── info.svg │ │ │ │ │ │ │ │ ├── input-cursor-text.svg │ │ │ │ │ │ │ │ ├── input-cursor.svg │ │ │ │ │ │ │ │ ├── instagram.svg │ │ │ │ │ │ │ │ ├── intersect.svg │ │ │ │ │ │ │ │ ├── journal-album.svg │ │ │ │ │ │ │ │ ├── journal-arrow-down.svg │ │ │ │ │ │ │ │ ├── journal-arrow-up.svg │ │ │ │ │ │ │ │ ├── journal-bookmark-fill.svg │ │ │ │ │ │ │ │ ├── journal-bookmark.svg │ │ │ │ │ │ │ │ ├── journal-check.svg │ │ │ │ │ │ │ │ ├── journal-code.svg │ │ │ │ │ │ │ │ ├── journal-medical.svg │ │ │ │ │ │ │ │ ├── journal-minus.svg │ │ │ │ │ │ │ │ ├── journal-plus.svg │ │ │ │ │ │ │ │ ├── journal-richtext.svg │ │ │ │ │ │ │ │ ├── journal-text.svg │ │ │ │ │ │ │ │ ├── journal-x.svg │ │ │ │ │ │ │ │ ├── journal.svg │ │ │ │ │ │ │ │ ├── journals.svg │ │ │ │ │ │ │ │ ├── joystick.svg │ │ │ │ │ │ │ │ ├── justify-left.svg │ │ │ │ │ │ │ │ ├── justify-right.svg │ │ │ │ │ │ │ │ ├── justify.svg │ │ │ │ │ │ │ │ ├── kanban-fill.svg │ │ │ │ │ │ │ │ ├── kanban.svg │ │ │ │ │ │ │ │ ├── key-fill.svg │ │ │ │ │ │ │ │ ├── key.svg │ │ │ │ │ │ │ │ ├── keyboard-fill.svg │ │ │ │ │ │ │ │ ├── keyboard.svg │ │ │ │ │ │ │ │ ├── ladder.svg │ │ │ │ │ │ │ │ ├── lamp-fill.svg │ │ │ │ │ │ │ │ ├── lamp.svg │ │ │ │ │ │ │ │ ├── laptop-fill.svg │ │ │ │ │ │ │ │ ├── laptop.svg │ │ │ │ │ │ │ │ ├── layer-backward.svg │ │ │ │ │ │ │ │ ├── layer-forward.svg │ │ │ │ │ │ │ │ ├── layers-fill.svg │ │ │ │ │ │ │ │ ├── layers-half.svg │ │ │ │ │ │ │ │ ├── layers.svg │ │ │ │ │ │ │ │ ├── layout-sidebar-inset-reverse.svg │ │ │ │ │ │ │ │ ├── layout-sidebar-inset.svg │ │ │ │ │ │ │ │ ├── layout-sidebar-reverse.svg │ │ │ │ │ │ │ │ ├── layout-sidebar.svg │ │ │ │ │ │ │ │ ├── layout-split.svg │ │ │ │ │ │ │ │ ├── layout-text-sidebar-reverse.svg │ │ │ │ │ │ │ │ ├── layout-text-sidebar.svg │ │ │ │ │ │ │ │ ├── layout-text-window-reverse.svg │ │ │ │ │ │ │ │ ├── layout-text-window.svg │ │ │ │ │ │ │ │ ├── layout-three-columns.svg │ │ │ │ │ │ │ │ ├── layout-wtf.svg │ │ │ │ │ │ │ │ ├── life-preserver.svg │ │ │ │ │ │ │ │ ├── lightbulb-fill.svg │ │ │ │ │ │ │ │ ├── lightbulb-off-fill.svg │ │ │ │ │ │ │ │ ├── lightbulb-off.svg │ │ │ │ │ │ │ │ ├── lightbulb.svg │ │ │ │ │ │ │ │ ├── lightning-charge-fill.svg │ │ │ │ │ │ │ │ ├── lightning-charge.svg │ │ │ │ │ │ │ │ ├── lightning-fill.svg │ │ │ │ │ │ │ │ ├── lightning.svg │ │ │ │ │ │ │ │ ├── line.svg │ │ │ │ │ │ │ │ ├── link-45deg.svg │ │ │ │ │ │ │ │ ├── link.svg │ │ │ │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ │ │ │ ├── list-check.svg │ │ │ │ │ │ │ │ ├── list-columns-reverse.svg │ │ │ │ │ │ │ │ ├── list-columns.svg │ │ │ │ │ │ │ │ ├── list-nested.svg │ │ │ │ │ │ │ │ ├── list-ol.svg │ │ │ │ │ │ │ │ ├── list-stars.svg │ │ │ │ │ │ │ │ ├── list-task.svg │ │ │ │ │ │ │ │ ├── list-ul.svg │ │ │ │ │ │ │ │ ├── list.svg │ │ │ │ │ │ │ │ ├── lock-fill.svg │ │ │ │ │ │ │ │ ├── lock.svg │ │ │ │ │ │ │ │ ├── luggage-fill.svg │ │ │ │ │ │ │ │ ├── luggage.svg │ │ │ │ │ │ │ │ ├── lungs-fill.svg │ │ │ │ │ │ │ │ ├── lungs.svg │ │ │ │ │ │ │ │ ├── magic.svg │ │ │ │ │ │ │ │ ├── magnet-fill.svg │ │ │ │ │ │ │ │ ├── magnet.svg │ │ │ │ │ │ │ │ ├── mailbox-flag.svg │ │ │ │ │ │ │ │ ├── mailbox.svg │ │ │ │ │ │ │ │ ├── mailbox2-flag.svg │ │ │ │ │ │ │ │ ├── mailbox2.svg │ │ │ │ │ │ │ │ ├── map-fill.svg │ │ │ │ │ │ │ │ ├── map.svg │ │ │ │ │ │ │ │ ├── markdown-fill.svg │ │ │ │ │ │ │ │ ├── markdown.svg │ │ │ │ │ │ │ │ ├── marker-tip.svg │ │ │ │ │ │ │ │ ├── mask.svg │ │ │ │ │ │ │ │ ├── mastodon.svg │ │ │ │ │ │ │ │ ├── medium.svg │ │ │ │ │ │ │ │ ├── megaphone-fill.svg │ │ │ │ │ │ │ │ ├── megaphone.svg │ │ │ │ │ │ │ │ ├── memory.svg │ │ │ │ │ │ │ │ ├── menu-app-fill.svg │ │ │ │ │ │ │ │ ├── menu-app.svg │ │ │ │ │ │ │ │ ├── menu-button-fill.svg │ │ │ │ │ │ │ │ ├── menu-button-wide-fill.svg │ │ │ │ │ │ │ │ ├── menu-button-wide.svg │ │ │ │ │ │ │ │ ├── menu-button.svg │ │ │ │ │ │ │ │ ├── menu-down.svg │ │ │ │ │ │ │ │ ├── menu-up.svg │ │ │ │ │ │ │ │ ├── messenger.svg │ │ │ │ │ │ │ │ ├── meta.svg │ │ │ │ │ │ │ │ ├── mic-fill.svg │ │ │ │ │ │ │ │ ├── mic-mute-fill.svg │ │ │ │ │ │ │ │ ├── mic-mute.svg │ │ │ │ │ │ │ │ ├── mic.svg │ │ │ │ │ │ │ │ ├── microsoft-teams.svg │ │ │ │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ │ │ │ ├── minecart-loaded.svg │ │ │ │ │ │ │ │ ├── minecart.svg │ │ │ │ │ │ │ │ ├── modem-fill.svg │ │ │ │ │ │ │ │ ├── modem.svg │ │ │ │ │ │ │ │ ├── moisture.svg │ │ │ │ │ │ │ │ ├── moon-fill.svg │ │ │ │ │ │ │ │ ├── moon-stars-fill.svg │ │ │ │ │ │ │ │ ├── moon-stars.svg │ │ │ │ │ │ │ │ ├── moon.svg │ │ │ │ │ │ │ │ ├── mortarboard-fill.svg │ │ │ │ │ │ │ │ ├── mortarboard.svg │ │ │ │ │ │ │ │ ├── motherboard-fill.svg │ │ │ │ │ │ │ │ ├── motherboard.svg │ │ │ │ │ │ │ │ ├── mouse-fill.svg │ │ │ │ │ │ │ │ ├── mouse.svg │ │ │ │ │ │ │ │ ├── mouse2-fill.svg │ │ │ │ │ │ │ │ ├── mouse2.svg │ │ │ │ │ │ │ │ ├── mouse3-fill.svg │ │ │ │ │ │ │ │ ├── mouse3.svg │ │ │ │ │ │ │ │ ├── music-note-beamed.svg │ │ │ │ │ │ │ │ ├── music-note-list.svg │ │ │ │ │ │ │ │ ├── music-note.svg │ │ │ │ │ │ │ │ ├── music-player-fill.svg │ │ │ │ │ │ │ │ ├── music-player.svg │ │ │ │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ │ │ │ ├── nintendo-switch.svg │ │ │ │ │ │ │ │ ├── node-minus-fill.svg │ │ │ │ │ │ │ │ ├── node-minus.svg │ │ │ │ │ │ │ │ ├── node-plus-fill.svg │ │ │ │ │ │ │ │ ├── node-plus.svg │ │ │ │ │ │ │ │ ├── noise-reduction.svg │ │ │ │ │ │ │ │ ├── nut-fill.svg │ │ │ │ │ │ │ │ ├── nut.svg │ │ │ │ │ │ │ │ ├── nvidia.svg │ │ │ │ │ │ │ │ ├── nvme-fill.svg │ │ │ │ │ │ │ │ ├── nvme.svg │ │ │ │ │ │ │ │ ├── octagon-fill.svg │ │ │ │ │ │ │ │ ├── octagon-half.svg │ │ │ │ │ │ │ │ ├── octagon.svg │ │ │ │ │ │ │ │ ├── opencollective.svg │ │ │ │ │ │ │ │ ├── optical-audio-fill.svg │ │ │ │ │ │ │ │ ├── optical-audio.svg │ │ │ │ │ │ │ │ ├── option.svg │ │ │ │ │ │ │ │ ├── outlet.svg │ │ │ │ │ │ │ │ ├── p-circle-fill.svg │ │ │ │ │ │ │ │ ├── p-circle.svg │ │ │ │ │ │ │ │ ├── p-square-fill.svg │ │ │ │ │ │ │ │ ├── p-square.svg │ │ │ │ │ │ │ │ ├── paint-bucket.svg │ │ │ │ │ │ │ │ ├── palette-fill.svg │ │ │ │ │ │ │ │ ├── palette.svg │ │ │ │ │ │ │ │ ├── palette2.svg │ │ │ │ │ │ │ │ ├── paperclip.svg │ │ │ │ │ │ │ │ ├── paragraph.svg │ │ │ │ │ │ │ │ ├── pass-fill.svg │ │ │ │ │ │ │ │ ├── pass.svg │ │ │ │ │ │ │ │ ├── passport-fill.svg │ │ │ │ │ │ │ │ ├── passport.svg │ │ │ │ │ │ │ │ ├── patch-check-fill.svg │ │ │ │ │ │ │ │ ├── patch-check.svg │ │ │ │ │ │ │ │ ├── patch-exclamation-fill.svg │ │ │ │ │ │ │ │ ├── patch-exclamation.svg │ │ │ │ │ │ │ │ ├── patch-minus-fill.svg │ │ │ │ │ │ │ │ ├── patch-minus.svg │ │ │ │ │ │ │ │ ├── patch-plus-fill.svg │ │ │ │ │ │ │ │ ├── patch-plus.svg │ │ │ │ │ │ │ │ ├── patch-question-fill.svg │ │ │ │ │ │ │ │ ├── patch-question.svg │ │ │ │ │ │ │ │ ├── pause-btn-fill.svg │ │ │ │ │ │ │ │ ├── pause-btn.svg │ │ │ │ │ │ │ │ ├── pause-circle-fill.svg │ │ │ │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ │ │ │ ├── pause-fill.svg │ │ │ │ │ │ │ │ ├── pause.svg │ │ │ │ │ │ │ │ ├── paypal.svg │ │ │ │ │ │ │ │ ├── pc-display-horizontal.svg │ │ │ │ │ │ │ │ ├── pc-display.svg │ │ │ │ │ │ │ │ ├── pc-horizontal.svg │ │ │ │ │ │ │ │ ├── pc.svg │ │ │ │ │ │ │ │ ├── pci-card-network.svg │ │ │ │ │ │ │ │ ├── pci-card-sound.svg │ │ │ │ │ │ │ │ ├── pci-card.svg │ │ │ │ │ │ │ │ ├── peace-fill.svg │ │ │ │ │ │ │ │ ├── peace.svg │ │ │ │ │ │ │ │ ├── pen-fill.svg │ │ │ │ │ │ │ │ ├── pen.svg │ │ │ │ │ │ │ │ ├── pencil-fill.svg │ │ │ │ │ │ │ │ ├── pencil-square.svg │ │ │ │ │ │ │ │ ├── pencil.svg │ │ │ │ │ │ │ │ ├── pentagon-fill.svg │ │ │ │ │ │ │ │ ├── pentagon-half.svg │ │ │ │ │ │ │ │ ├── pentagon.svg │ │ │ │ │ │ │ │ ├── people-fill.svg │ │ │ │ │ │ │ │ ├── people.svg │ │ │ │ │ │ │ │ ├── percent.svg │ │ │ │ │ │ │ │ ├── person-add.svg │ │ │ │ │ │ │ │ ├── person-arms-up.svg │ │ │ │ │ │ │ │ ├── person-badge-fill.svg │ │ │ │ │ │ │ │ ├── person-badge.svg │ │ │ │ │ │ │ │ ├── person-bounding-box.svg │ │ │ │ │ │ │ │ ├── person-check-fill.svg │ │ │ │ │ │ │ │ ├── person-check.svg │ │ │ │ │ │ │ │ ├── person-circle.svg │ │ │ │ │ │ │ │ ├── person-dash-fill.svg │ │ │ │ │ │ │ │ ├── person-dash.svg │ │ │ │ │ │ │ │ ├── person-down.svg │ │ │ │ │ │ │ │ ├── person-exclamation.svg │ │ │ │ │ │ │ │ ├── person-fill-add.svg │ │ │ │ │ │ │ │ ├── person-fill-check.svg │ │ │ │ │ │ │ │ ├── person-fill-dash.svg │ │ │ │ │ │ │ │ ├── person-fill-down.svg │ │ │ │ │ │ │ │ ├── person-fill-exclamation.svg │ │ │ │ │ │ │ │ ├── person-fill-gear.svg │ │ │ │ │ │ │ │ ├── person-fill-lock.svg │ │ │ │ │ │ │ │ ├── person-fill-slash.svg │ │ │ │ │ │ │ │ ├── person-fill-up.svg │ │ │ │ │ │ │ │ ├── person-fill-x.svg │ │ │ │ │ │ │ │ ├── person-fill.svg │ │ │ │ │ │ │ │ ├── person-gear.svg │ │ │ │ │ │ │ │ ├── person-heart.svg │ │ │ │ │ │ │ │ ├── person-hearts.svg │ │ │ │ │ │ │ │ ├── person-lines-fill.svg │ │ │ │ │ │ │ │ ├── person-lock.svg │ │ │ │ │ │ │ │ ├── person-plus-fill.svg │ │ │ │ │ │ │ │ ├── person-plus.svg │ │ │ │ │ │ │ │ ├── person-raised-hand.svg │ │ │ │ │ │ │ │ ├── person-rolodex.svg │ │ │ │ │ │ │ │ ├── person-slash.svg │ │ │ │ │ │ │ │ ├── person-square.svg │ │ │ │ │ │ │ │ ├── person-standing-dress.svg │ │ │ │ │ │ │ │ ├── person-standing.svg │ │ │ │ │ │ │ │ ├── person-up.svg │ │ │ │ │ │ │ │ ├── person-vcard-fill.svg │ │ │ │ │ │ │ │ ├── person-vcard.svg │ │ │ │ │ │ │ │ ├── person-video.svg │ │ │ │ │ │ │ │ ├── person-video2.svg │ │ │ │ │ │ │ │ ├── person-video3.svg │ │ │ │ │ │ │ │ ├── person-walking.svg │ │ │ │ │ │ │ │ ├── person-wheelchair.svg │ │ │ │ │ │ │ │ ├── person-workspace.svg │ │ │ │ │ │ │ │ ├── person-x-fill.svg │ │ │ │ │ │ │ │ ├── person-x.svg │ │ │ │ │ │ │ │ ├── person.svg │ │ │ │ │ │ │ │ ├── phone-fill.svg │ │ │ │ │ │ │ │ ├── phone-flip.svg │ │ │ │ │ │ │ │ ├── phone-landscape-fill.svg │ │ │ │ │ │ │ │ ├── phone-landscape.svg │ │ │ │ │ │ │ │ ├── phone-vibrate-fill.svg │ │ │ │ │ │ │ │ ├── phone-vibrate.svg │ │ │ │ │ │ │ │ ├── phone.svg │ │ │ │ │ │ │ │ ├── pie-chart-fill.svg │ │ │ │ │ │ │ │ ├── pie-chart.svg │ │ │ │ │ │ │ │ ├── piggy-bank-fill.svg │ │ │ │ │ │ │ │ ├── piggy-bank.svg │ │ │ │ │ │ │ │ ├── pin-angle-fill.svg │ │ │ │ │ │ │ │ ├── pin-angle.svg │ │ │ │ │ │ │ │ ├── pin-fill.svg │ │ │ │ │ │ │ │ ├── pin-map-fill.svg │ │ │ │ │ │ │ │ ├── pin-map.svg │ │ │ │ │ │ │ │ ├── pin.svg │ │ │ │ │ │ │ │ ├── pinterest.svg │ │ │ │ │ │ │ │ ├── pip-fill.svg │ │ │ │ │ │ │ │ ├── pip.svg │ │ │ │ │ │ │ │ ├── play-btn-fill.svg │ │ │ │ │ │ │ │ ├── play-btn.svg │ │ │ │ │ │ │ │ ├── play-circle-fill.svg │ │ │ │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ │ │ │ ├── play-fill.svg │ │ │ │ │ │ │ │ ├── play.svg │ │ │ │ │ │ │ │ ├── playstation.svg │ │ │ │ │ │ │ │ ├── plug-fill.svg │ │ │ │ │ │ │ │ ├── plug.svg │ │ │ │ │ │ │ │ ├── plugin.svg │ │ │ │ │ │ │ │ ├── plus-circle-dotted.svg │ │ │ │ │ │ │ │ ├── plus-circle-fill.svg │ │ │ │ │ │ │ │ ├── plus-circle.svg │ │ │ │ │ │ │ │ ├── plus-lg.svg │ │ │ │ │ │ │ │ ├── plus-slash-minus.svg │ │ │ │ │ │ │ │ ├── plus-square-dotted.svg │ │ │ │ │ │ │ │ ├── plus-square-fill.svg │ │ │ │ │ │ │ │ ├── plus-square.svg │ │ │ │ │ │ │ │ ├── plus.svg │ │ │ │ │ │ │ │ ├── postage-fill.svg │ │ │ │ │ │ │ │ ├── postage-heart-fill.svg │ │ │ │ │ │ │ │ ├── postage-heart.svg │ │ │ │ │ │ │ │ ├── postage.svg │ │ │ │ │ │ │ │ ├── postcard-fill.svg │ │ │ │ │ │ │ │ ├── postcard-heart-fill.svg │ │ │ │ │ │ │ │ ├── postcard-heart.svg │ │ │ │ │ │ │ │ ├── postcard.svg │ │ │ │ │ │ │ │ ├── power.svg │ │ │ │ │ │ │ │ ├── prescription.svg │ │ │ │ │ │ │ │ ├── prescription2.svg │ │ │ │ │ │ │ │ ├── printer-fill.svg │ │ │ │ │ │ │ │ ├── printer.svg │ │ │ │ │ │ │ │ ├── projector-fill.svg │ │ │ │ │ │ │ │ ├── projector.svg │ │ │ │ │ │ │ │ ├── puzzle-fill.svg │ │ │ │ │ │ │ │ ├── puzzle.svg │ │ │ │ │ │ │ │ ├── qr-code-scan.svg │ │ │ │ │ │ │ │ ├── qr-code.svg │ │ │ │ │ │ │ │ ├── question-circle-fill.svg │ │ │ │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ │ │ │ ├── question-diamond-fill.svg │ │ │ │ │ │ │ │ ├── question-diamond.svg │ │ │ │ │ │ │ │ ├── question-lg.svg │ │ │ │ │ │ │ │ ├── question-octagon-fill.svg │ │ │ │ │ │ │ │ ├── question-octagon.svg │ │ │ │ │ │ │ │ ├── question-square-fill.svg │ │ │ │ │ │ │ │ ├── question-square.svg │ │ │ │ │ │ │ │ ├── question.svg │ │ │ │ │ │ │ │ ├── quora.svg │ │ │ │ │ │ │ │ ├── quote.svg │ │ │ │ │ │ │ │ ├── r-circle-fill.svg │ │ │ │ │ │ │ │ ├── r-circle.svg │ │ │ │ │ │ │ │ ├── r-square-fill.svg │ │ │ │ │ │ │ │ ├── r-square.svg │ │ │ │ │ │ │ │ ├── radar.svg │ │ │ │ │ │ │ │ ├── radioactive.svg │ │ │ │ │ │ │ │ ├── rainbow.svg │ │ │ │ │ │ │ │ ├── receipt-cutoff.svg │ │ │ │ │ │ │ │ ├── receipt.svg │ │ │ │ │ │ │ │ ├── reception-0.svg │ │ │ │ │ │ │ │ ├── reception-1.svg │ │ │ │ │ │ │ │ ├── reception-2.svg │ │ │ │ │ │ │ │ ├── reception-3.svg │ │ │ │ │ │ │ │ ├── reception-4.svg │ │ │ │ │ │ │ │ ├── record-btn-fill.svg │ │ │ │ │ │ │ │ ├── record-btn.svg │ │ │ │ │ │ │ │ ├── record-circle-fill.svg │ │ │ │ │ │ │ │ ├── record-circle.svg │ │ │ │ │ │ │ │ ├── record-fill.svg │ │ │ │ │ │ │ │ ├── record.svg │ │ │ │ │ │ │ │ ├── record2-fill.svg │ │ │ │ │ │ │ │ ├── record2.svg │ │ │ │ │ │ │ │ ├── recycle.svg │ │ │ │ │ │ │ │ ├── reddit.svg │ │ │ │ │ │ │ │ ├── regex.svg │ │ │ │ │ │ │ │ ├── repeat-1.svg │ │ │ │ │ │ │ │ ├── repeat.svg │ │ │ │ │ │ │ │ ├── reply-all-fill.svg │ │ │ │ │ │ │ │ ├── reply-all.svg │ │ │ │ │ │ │ │ ├── reply-fill.svg │ │ │ │ │ │ │ │ ├── reply.svg │ │ │ │ │ │ │ │ ├── rewind-btn-fill.svg │ │ │ │ │ │ │ │ ├── rewind-btn.svg │ │ │ │ │ │ │ │ ├── rewind-circle-fill.svg │ │ │ │ │ │ │ │ ├── rewind-circle.svg │ │ │ │ │ │ │ │ ├── rewind-fill.svg │ │ │ │ │ │ │ │ ├── rewind.svg │ │ │ │ │ │ │ │ ├── robot.svg │ │ │ │ │ │ │ │ ├── rocket-fill.svg │ │ │ │ │ │ │ │ ├── rocket-takeoff-fill.svg │ │ │ │ │ │ │ │ ├── rocket-takeoff.svg │ │ │ │ │ │ │ │ ├── rocket.svg │ │ │ │ │ │ │ │ ├── router-fill.svg │ │ │ │ │ │ │ │ ├── router.svg │ │ │ │ │ │ │ │ ├── rss-fill.svg │ │ │ │ │ │ │ │ ├── rss.svg │ │ │ │ │ │ │ │ ├── rulers.svg │ │ │ │ │ │ │ │ ├── safe-fill.svg │ │ │ │ │ │ │ │ ├── safe.svg │ │ │ │ │ │ │ │ ├── safe2-fill.svg │ │ │ │ │ │ │ │ ├── safe2.svg │ │ │ │ │ │ │ │ ├── save-fill.svg │ │ │ │ │ │ │ │ ├── save.svg │ │ │ │ │ │ │ │ ├── save2-fill.svg │ │ │ │ │ │ │ │ ├── save2.svg │ │ │ │ │ │ │ │ ├── scissors.svg │ │ │ │ │ │ │ │ ├── scooter.svg │ │ │ │ │ │ │ │ ├── screwdriver.svg │ │ │ │ │ │ │ │ ├── sd-card-fill.svg │ │ │ │ │ │ │ │ ├── sd-card.svg │ │ │ │ │ │ │ │ ├── search-heart-fill.svg │ │ │ │ │ │ │ │ ├── search-heart.svg │ │ │ │ │ │ │ │ ├── search.svg │ │ │ │ │ │ │ │ ├── segmented-nav.svg │ │ │ │ │ │ │ │ ├── send-arrow-down-fill.svg │ │ │ │ │ │ │ │ ├── send-arrow-down.svg │ │ │ │ │ │ │ │ ├── send-arrow-up-fill.svg │ │ │ │ │ │ │ │ ├── send-arrow-up.svg │ │ │ │ │ │ │ │ ├── send-check-fill.svg │ │ │ │ │ │ │ │ ├── send-check.svg │ │ │ │ │ │ │ │ ├── send-dash-fill.svg │ │ │ │ │ │ │ │ ├── send-dash.svg │ │ │ │ │ │ │ │ ├── send-exclamation-fill.svg │ │ │ │ │ │ │ │ ├── send-exclamation.svg │ │ │ │ │ │ │ │ ├── send-fill.svg │ │ │ │ │ │ │ │ ├── send-plus-fill.svg │ │ │ │ │ │ │ │ ├── send-plus.svg │ │ │ │ │ │ │ │ ├── send-slash-fill.svg │ │ │ │ │ │ │ │ ├── send-slash.svg │ │ │ │ │ │ │ │ ├── send-x-fill.svg │ │ │ │ │ │ │ │ ├── send-x.svg │ │ │ │ │ │ │ │ ├── send.svg │ │ │ │ │ │ │ │ ├── server.svg │ │ │ │ │ │ │ │ ├── shadows.svg │ │ │ │ │ │ │ │ ├── share-fill.svg │ │ │ │ │ │ │ │ ├── share.svg │ │ │ │ │ │ │ │ ├── shield-check.svg │ │ │ │ │ │ │ │ ├── shield-exclamation.svg │ │ │ │ │ │ │ │ ├── shield-fill-check.svg │ │ │ │ │ │ │ │ ├── shield-fill-exclamation.svg │ │ │ │ │ │ │ │ ├── shield-fill-minus.svg │ │ │ │ │ │ │ │ ├── shield-fill-plus.svg │ │ │ │ │ │ │ │ ├── shield-fill-x.svg │ │ │ │ │ │ │ │ ├── shield-fill.svg │ │ │ │ │ │ │ │ ├── shield-lock-fill.svg │ │ │ │ │ │ │ │ ├── shield-lock.svg │ │ │ │ │ │ │ │ ├── shield-minus.svg │ │ │ │ │ │ │ │ ├── shield-plus.svg │ │ │ │ │ │ │ │ ├── shield-shaded.svg │ │ │ │ │ │ │ │ ├── shield-slash-fill.svg │ │ │ │ │ │ │ │ ├── shield-slash.svg │ │ │ │ │ │ │ │ ├── shield-x.svg │ │ │ │ │ │ │ │ ├── shield.svg │ │ │ │ │ │ │ │ ├── shift-fill.svg │ │ │ │ │ │ │ │ ├── shift.svg │ │ │ │ │ │ │ │ ├── shop-window.svg │ │ │ │ │ │ │ │ ├── shop.svg │ │ │ │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ │ │ │ ├── sign-dead-end-fill.svg │ │ │ │ │ │ │ │ ├── sign-dead-end.svg │ │ │ │ │ │ │ │ ├── sign-do-not-enter-fill.svg │ │ │ │ │ │ │ │ ├── sign-do-not-enter.svg │ │ │ │ │ │ │ │ ├── sign-intersection-fill.svg │ │ │ │ │ │ │ │ ├── sign-intersection-side-fill.svg │ │ │ │ │ │ │ │ ├── sign-intersection-side.svg │ │ │ │ │ │ │ │ ├── sign-intersection-t-fill.svg │ │ │ │ │ │ │ │ ├── sign-intersection-t.svg │ │ │ │ │ │ │ │ ├── sign-intersection-y-fill.svg │ │ │ │ │ │ │ │ ├── sign-intersection-y.svg │ │ │ │ │ │ │ │ ├── sign-intersection.svg │ │ │ │ │ │ │ │ ├── sign-merge-left-fill.svg │ │ │ │ │ │ │ │ ├── sign-merge-left.svg │ │ │ │ │ │ │ │ ├── sign-merge-right-fill.svg │ │ │ │ │ │ │ │ ├── sign-merge-right.svg │ │ │ │ │ │ │ │ ├── sign-no-left-turn-fill.svg │ │ │ │ │ │ │ │ ├── sign-no-left-turn.svg │ │ │ │ │ │ │ │ ├── sign-no-parking-fill.svg │ │ │ │ │ │ │ │ ├── sign-no-parking.svg │ │ │ │ │ │ │ │ ├── sign-no-right-turn-fill.svg │ │ │ │ │ │ │ │ ├── sign-no-right-turn.svg │ │ │ │ │ │ │ │ ├── sign-railroad-fill.svg │ │ │ │ │ │ │ │ ├── sign-railroad.svg │ │ │ │ │ │ │ │ ├── sign-stop-fill.svg │ │ │ │ │ │ │ │ ├── sign-stop-lights-fill.svg │ │ │ │ │ │ │ │ ├── sign-stop-lights.svg │ │ │ │ │ │ │ │ ├── sign-stop.svg │ │ │ │ │ │ │ │ ├── sign-turn-left-fill.svg │ │ │ │ │ │ │ │ ├── sign-turn-left.svg │ │ │ │ │ │ │ │ ├── sign-turn-right-fill.svg │ │ │ │ │ │ │ │ ├── sign-turn-right.svg │ │ │ │ │ │ │ │ ├── sign-turn-slight-left-fill.svg │ │ │ │ │ │ │ │ ├── sign-turn-slight-left.svg │ │ │ │ │ │ │ │ ├── sign-turn-slight-right-fill.svg │ │ │ │ │ │ │ │ ├── sign-turn-slight-right.svg │ │ │ │ │ │ │ │ ├── sign-yield-fill.svg │ │ │ │ │ │ │ │ ├── sign-yield.svg │ │ │ │ │ │ │ │ ├── signal.svg │ │ │ │ │ │ │ │ ├── signpost-2-fill.svg │ │ │ │ │ │ │ │ ├── signpost-2.svg │ │ │ │ │ │ │ │ ├── signpost-fill.svg │ │ │ │ │ │ │ │ ├── signpost-split-fill.svg │ │ │ │ │ │ │ │ ├── signpost-split.svg │ │ │ │ │ │ │ │ ├── signpost.svg │ │ │ │ │ │ │ │ ├── sim-fill.svg │ │ │ │ │ │ │ │ ├── sim-slash-fill.svg │ │ │ │ │ │ │ │ ├── sim-slash.svg │ │ │ │ │ │ │ │ ├── sim.svg │ │ │ │ │ │ │ │ ├── sina-weibo.svg │ │ │ │ │ │ │ │ ├── skip-backward-btn-fill.svg │ │ │ │ │ │ │ │ ├── skip-backward-btn.svg │ │ │ │ │ │ │ │ ├── skip-backward-circle-fill.svg │ │ │ │ │ │ │ │ ├── skip-backward-circle.svg │ │ │ │ │ │ │ │ ├── skip-backward-fill.svg │ │ │ │ │ │ │ │ ├── skip-backward.svg │ │ │ │ │ │ │ │ ├── skip-end-btn-fill.svg │ │ │ │ │ │ │ │ ├── skip-end-btn.svg │ │ │ │ │ │ │ │ ├── skip-end-circle-fill.svg │ │ │ │ │ │ │ │ ├── skip-end-circle.svg │ │ │ │ │ │ │ │ ├── skip-end-fill.svg │ │ │ │ │ │ │ │ ├── skip-end.svg │ │ │ │ │ │ │ │ ├── skip-forward-btn-fill.svg │ │ │ │ │ │ │ │ ├── skip-forward-btn.svg │ │ │ │ │ │ │ │ ├── skip-forward-circle-fill.svg │ │ │ │ │ │ │ │ ├── skip-forward-circle.svg │ │ │ │ │ │ │ │ ├── skip-forward-fill.svg │ │ │ │ │ │ │ │ ├── skip-forward.svg │ │ │ │ │ │ │ │ ├── skip-start-btn-fill.svg │ │ │ │ │ │ │ │ ├── skip-start-btn.svg │ │ │ │ │ │ │ │ ├── skip-start-circle-fill.svg │ │ │ │ │ │ │ │ ├── skip-start-circle.svg │ │ │ │ │ │ │ │ ├── skip-start-fill.svg │ │ │ │ │ │ │ │ ├── skip-start.svg │ │ │ │ │ │ │ │ ├── skype.svg │ │ │ │ │ │ │ │ ├── slack.svg │ │ │ │ │ │ │ │ ├── slash-circle-fill.svg │ │ │ │ │ │ │ │ ├── slash-circle.svg │ │ │ │ │ │ │ │ ├── slash-lg.svg │ │ │ │ │ │ │ │ ├── slash-square-fill.svg │ │ │ │ │ │ │ │ ├── slash-square.svg │ │ │ │ │ │ │ │ ├── slash.svg │ │ │ │ │ │ │ │ ├── sliders.svg │ │ │ │ │ │ │ │ ├── sliders2-vertical.svg │ │ │ │ │ │ │ │ ├── sliders2.svg │ │ │ │ │ │ │ │ ├── smartwatch.svg │ │ │ │ │ │ │ │ ├── snapchat.svg │ │ │ │ │ │ │ │ ├── snow.svg │ │ │ │ │ │ │ │ ├── snow2.svg │ │ │ │ │ │ │ │ ├── snow3.svg │ │ │ │ │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ │ │ │ │ ├── sort-down-alt.svg │ │ │ │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ │ │ │ │ ├── sort-up-alt.svg │ │ │ │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ │ │ │ ├── soundwave.svg │ │ │ │ │ │ │ │ ├── sourceforge.svg │ │ │ │ │ │ │ │ ├── speaker-fill.svg │ │ │ │ │ │ │ │ ├── speaker.svg │ │ │ │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ │ │ │ ├── speedometer2.svg │ │ │ │ │ │ │ │ ├── spellcheck.svg │ │ │ │ │ │ │ │ ├── spotify.svg │ │ │ │ │ │ │ │ ├── square-fill.svg │ │ │ │ │ │ │ │ ├── square-half.svg │ │ │ │ │ │ │ │ ├── square.svg │ │ │ │ │ │ │ │ ├── stack-overflow.svg │ │ │ │ │ │ │ │ ├── stack.svg │ │ │ │ │ │ │ │ ├── star-fill.svg │ │ │ │ │ │ │ │ ├── star-half.svg │ │ │ │ │ │ │ │ ├── star.svg │ │ │ │ │ │ │ │ ├── stars.svg │ │ │ │ │ │ │ │ ├── steam.svg │ │ │ │ │ │ │ │ ├── stickies-fill.svg │ │ │ │ │ │ │ │ ├── stickies.svg │ │ │ │ │ │ │ │ ├── sticky-fill.svg │ │ │ │ │ │ │ │ ├── sticky.svg │ │ │ │ │ │ │ │ ├── stop-btn-fill.svg │ │ │ │ │ │ │ │ ├── stop-btn.svg │ │ │ │ │ │ │ │ ├── stop-circle-fill.svg │ │ │ │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ │ │ │ ├── stop-fill.svg │ │ │ │ │ │ │ │ ├── stop.svg │ │ │ │ │ │ │ │ ├── stoplights-fill.svg │ │ │ │ │ │ │ │ ├── stoplights.svg │ │ │ │ │ │ │ │ ├── stopwatch-fill.svg │ │ │ │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ │ │ │ ├── strava.svg │ │ │ │ │ │ │ │ ├── stripe.svg │ │ │ │ │ │ │ │ ├── subscript.svg │ │ │ │ │ │ │ │ ├── substack.svg │ │ │ │ │ │ │ │ ├── subtract.svg │ │ │ │ │ │ │ │ ├── suit-club-fill.svg │ │ │ │ │ │ │ │ ├── suit-club.svg │ │ │ │ │ │ │ │ ├── suit-diamond-fill.svg │ │ │ │ │ │ │ │ ├── suit-diamond.svg │ │ │ │ │ │ │ │ ├── suit-heart-fill.svg │ │ │ │ │ │ │ │ ├── suit-heart.svg │ │ │ │ │ │ │ │ ├── suit-spade-fill.svg │ │ │ │ │ │ │ │ ├── suit-spade.svg │ │ │ │ │ │ │ │ ├── suitcase-fill.svg │ │ │ │ │ │ │ │ ├── suitcase-lg-fill.svg │ │ │ │ │ │ │ │ ├── suitcase-lg.svg │ │ │ │ │ │ │ │ ├── suitcase.svg │ │ │ │ │ │ │ │ ├── suitcase2-fill.svg │ │ │ │ │ │ │ │ ├── suitcase2.svg │ │ │ │ │ │ │ │ ├── sun-fill.svg │ │ │ │ │ │ │ │ ├── sun.svg │ │ │ │ │ │ │ │ ├── sunglasses.svg │ │ │ │ │ │ │ │ ├── sunrise-fill.svg │ │ │ │ │ │ │ │ ├── sunrise.svg │ │ │ │ │ │ │ │ ├── sunset-fill.svg │ │ │ │ │ │ │ │ ├── sunset.svg │ │ │ │ │ │ │ │ ├── superscript.svg │ │ │ │ │ │ │ │ ├── symmetry-horizontal.svg │ │ │ │ │ │ │ │ ├── symmetry-vertical.svg │ │ │ │ │ │ │ │ ├── table.svg │ │ │ │ │ │ │ │ ├── tablet-fill.svg │ │ │ │ │ │ │ │ ├── tablet-landscape-fill.svg │ │ │ │ │ │ │ │ ├── tablet-landscape.svg │ │ │ │ │ │ │ │ ├── tablet.svg │ │ │ │ │ │ │ │ ├── tag-fill.svg │ │ │ │ │ │ │ │ ├── tag.svg │ │ │ │ │ │ │ │ ├── tags-fill.svg │ │ │ │ │ │ │ │ ├── tags.svg │ │ │ │ │ │ │ │ ├── taxi-front-fill.svg │ │ │ │ │ │ │ │ ├── taxi-front.svg │ │ │ │ │ │ │ │ ├── telegram.svg │ │ │ │ │ │ │ │ ├── telephone-fill.svg │ │ │ │ │ │ │ │ ├── telephone-forward-fill.svg │ │ │ │ │ │ │ │ ├── telephone-forward.svg │ │ │ │ │ │ │ │ ├── telephone-inbound-fill.svg │ │ │ │ │ │ │ │ ├── telephone-inbound.svg │ │ │ │ │ │ │ │ ├── telephone-minus-fill.svg │ │ │ │ │ │ │ │ ├── telephone-minus.svg │ │ │ │ │ │ │ │ ├── telephone-outbound-fill.svg │ │ │ │ │ │ │ │ ├── telephone-outbound.svg │ │ │ │ │ │ │ │ ├── telephone-plus-fill.svg │ │ │ │ │ │ │ │ ├── telephone-plus.svg │ │ │ │ │ │ │ │ ├── telephone-x-fill.svg │ │ │ │ │ │ │ │ ├── telephone-x.svg │ │ │ │ │ │ │ │ ├── telephone.svg │ │ │ │ │ │ │ │ ├── tencent-qq.svg │ │ │ │ │ │ │ │ ├── terminal-dash.svg │ │ │ │ │ │ │ │ ├── terminal-fill.svg │ │ │ │ │ │ │ │ ├── terminal-plus.svg │ │ │ │ │ │ │ │ ├── terminal-split.svg │ │ │ │ │ │ │ │ ├── terminal-x.svg │ │ │ │ │ │ │ │ ├── terminal.svg │ │ │ │ │ │ │ │ ├── text-center.svg │ │ │ │ │ │ │ │ ├── text-indent-left.svg │ │ │ │ │ │ │ │ ├── text-indent-right.svg │ │ │ │ │ │ │ │ ├── text-left.svg │ │ │ │ │ │ │ │ ├── text-paragraph.svg │ │ │ │ │ │ │ │ ├── text-right.svg │ │ │ │ │ │ │ │ ├── text-wrap.svg │ │ │ │ │ │ │ │ ├── textarea-resize.svg │ │ │ │ │ │ │ │ ├── textarea-t.svg │ │ │ │ │ │ │ │ ├── textarea.svg │ │ │ │ │ │ │ │ ├── thermometer-half.svg │ │ │ │ │ │ │ │ ├── thermometer-high.svg │ │ │ │ │ │ │ │ ├── thermometer-low.svg │ │ │ │ │ │ │ │ ├── thermometer-snow.svg │ │ │ │ │ │ │ │ ├── thermometer-sun.svg │ │ │ │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ │ │ │ ├── threads-fill.svg │ │ │ │ │ │ │ │ ├── threads.svg │ │ │ │ │ │ │ │ ├── three-dots-vertical.svg │ │ │ │ │ │ │ │ ├── three-dots.svg │ │ │ │ │ │ │ │ ├── thunderbolt-fill.svg │ │ │ │ │ │ │ │ ├── thunderbolt.svg │ │ │ │ │ │ │ │ ├── ticket-detailed-fill.svg │ │ │ │ │ │ │ │ ├── ticket-detailed.svg │ │ │ │ │ │ │ │ ├── ticket-fill.svg │ │ │ │ │ │ │ │ ├── ticket-perforated-fill.svg │ │ │ │ │ │ │ │ ├── ticket-perforated.svg │ │ │ │ │ │ │ │ ├── ticket.svg │ │ │ │ │ │ │ │ ├── tiktok.svg │ │ │ │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ │ │ │ ├── toggle2-off.svg │ │ │ │ │ │ │ │ ├── toggle2-on.svg │ │ │ │ │ │ │ │ ├── toggles.svg │ │ │ │ │ │ │ │ ├── toggles2.svg │ │ │ │ │ │ │ │ ├── tools.svg │ │ │ │ │ │ │ │ ├── tornado.svg │ │ │ │ │ │ │ │ ├── train-freight-front-fill.svg │ │ │ │ │ │ │ │ ├── train-freight-front.svg │ │ │ │ │ │ │ │ ├── train-front-fill.svg │ │ │ │ │ │ │ │ ├── train-front.svg │ │ │ │ │ │ │ │ ├── train-lightrail-front-fill.svg │ │ │ │ │ │ │ │ ├── train-lightrail-front.svg │ │ │ │ │ │ │ │ ├── translate.svg │ │ │ │ │ │ │ │ ├── transparency.svg │ │ │ │ │ │ │ │ ├── trash-fill.svg │ │ │ │ │ │ │ │ ├── trash.svg │ │ │ │ │ │ │ │ ├── trash2-fill.svg │ │ │ │ │ │ │ │ ├── trash2.svg │ │ │ │ │ │ │ │ ├── trash3-fill.svg │ │ │ │ │ │ │ │ ├── trash3.svg │ │ │ │ │ │ │ │ ├── tree-fill.svg │ │ │ │ │ │ │ │ ├── tree.svg │ │ │ │ │ │ │ │ ├── trello.svg │ │ │ │ │ │ │ │ ├── triangle-fill.svg │ │ │ │ │ │ │ │ ├── triangle-half.svg │ │ │ │ │ │ │ │ ├── triangle.svg │ │ │ │ │ │ │ │ ├── trophy-fill.svg │ │ │ │ │ │ │ │ ├── trophy.svg │ │ │ │ │ │ │ │ ├── tropical-storm.svg │ │ │ │ │ │ │ │ ├── truck-flatbed.svg │ │ │ │ │ │ │ │ ├── truck-front-fill.svg │ │ │ │ │ │ │ │ ├── truck-front.svg │ │ │ │ │ │ │ │ ├── truck.svg │ │ │ │ │ │ │ │ ├── tsunami.svg │ │ │ │ │ │ │ │ ├── tv-fill.svg │ │ │ │ │ │ │ │ ├── tv.svg │ │ │ │ │ │ │ │ ├── twitch.svg │ │ │ │ │ │ │ │ ├── twitter-x.svg │ │ │ │ │ │ │ │ ├── twitter.svg │ │ │ │ │ │ │ │ ├── type-bold.svg │ │ │ │ │ │ │ │ ├── type-h1.svg │ │ │ │ │ │ │ │ ├── type-h2.svg │ │ │ │ │ │ │ │ ├── type-h3.svg │ │ │ │ │ │ │ │ ├── type-h4.svg │ │ │ │ │ │ │ │ ├── type-h5.svg │ │ │ │ │ │ │ │ ├── type-h6.svg │ │ │ │ │ │ │ │ ├── type-italic.svg │ │ │ │ │ │ │ │ ├── type-strikethrough.svg │ │ │ │ │ │ │ │ ├── type-underline.svg │ │ │ │ │ │ │ │ ├── type.svg │ │ │ │ │ │ │ │ ├── ubuntu.svg │ │ │ │ │ │ │ │ ├── ui-checks-grid.svg │ │ │ │ │ │ │ │ ├── ui-checks.svg │ │ │ │ │ │ │ │ ├── ui-radios-grid.svg │ │ │ │ │ │ │ │ ├── ui-radios.svg │ │ │ │ │ │ │ │ ├── umbrella-fill.svg │ │ │ │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ │ │ │ ├── unindent.svg │ │ │ │ │ │ │ │ ├── union.svg │ │ │ │ │ │ │ │ ├── unity.svg │ │ │ │ │ │ │ │ ├── universal-access-circle.svg │ │ │ │ │ │ │ │ ├── universal-access.svg │ │ │ │ │ │ │ │ ├── unlock-fill.svg │ │ │ │ │ │ │ │ ├── unlock.svg │ │ │ │ │ │ │ │ ├── upc-scan.svg │ │ │ │ │ │ │ │ ├── upc.svg │ │ │ │ │ │ │ │ ├── upload.svg │ │ │ │ │ │ │ │ ├── usb-c-fill.svg │ │ │ │ │ │ │ │ ├── usb-c.svg │ │ │ │ │ │ │ │ ├── usb-drive-fill.svg │ │ │ │ │ │ │ │ ├── usb-drive.svg │ │ │ │ │ │ │ │ ├── usb-fill.svg │ │ │ │ │ │ │ │ ├── usb-micro-fill.svg │ │ │ │ │ │ │ │ ├── usb-micro.svg │ │ │ │ │ │ │ │ ├── usb-mini-fill.svg │ │ │ │ │ │ │ │ ├── usb-mini.svg │ │ │ │ │ │ │ │ ├── usb-plug-fill.svg │ │ │ │ │ │ │ │ ├── usb-plug.svg │ │ │ │ │ │ │ │ ├── usb-symbol.svg │ │ │ │ │ │ │ │ ├── usb.svg │ │ │ │ │ │ │ │ ├── valentine.svg │ │ │ │ │ │ │ │ ├── valentine2.svg │ │ │ │ │ │ │ │ ├── vector-pen.svg │ │ │ │ │ │ │ │ ├── view-list.svg │ │ │ │ │ │ │ │ ├── view-stacked.svg │ │ │ │ │ │ │ │ ├── vignette.svg │ │ │ │ │ │ │ │ ├── vimeo.svg │ │ │ │ │ │ │ │ ├── vinyl-fill.svg │ │ │ │ │ │ │ │ ├── vinyl.svg │ │ │ │ │ │ │ │ ├── virus.svg │ │ │ │ │ │ │ │ ├── virus2.svg │ │ │ │ │ │ │ │ ├── voicemail.svg │ │ │ │ │ │ │ │ ├── volume-down-fill.svg │ │ │ │ │ │ │ │ ├── volume-down.svg │ │ │ │ │ │ │ │ ├── volume-mute-fill.svg │ │ │ │ │ │ │ │ ├── volume-mute.svg │ │ │ │ │ │ │ │ ├── volume-off-fill.svg │ │ │ │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ │ │ │ ├── volume-up-fill.svg │ │ │ │ │ │ │ │ ├── volume-up.svg │ │ │ │ │ │ │ │ ├── vr.svg │ │ │ │ │ │ │ │ ├── wallet-fill.svg │ │ │ │ │ │ │ │ ├── wallet.svg │ │ │ │ │ │ │ │ ├── wallet2.svg │ │ │ │ │ │ │ │ ├── watch.svg │ │ │ │ │ │ │ │ ├── water.svg │ │ │ │ │ │ │ │ ├── webcam-fill.svg │ │ │ │ │ │ │ │ ├── webcam.svg │ │ │ │ │ │ │ │ ├── wechat.svg │ │ │ │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ │ │ │ ├── wifi-1.svg │ │ │ │ │ │ │ │ ├── wifi-2.svg │ │ │ │ │ │ │ │ ├── wifi-off.svg │ │ │ │ │ │ │ │ ├── wifi.svg │ │ │ │ │ │ │ │ ├── wikipedia.svg │ │ │ │ │ │ │ │ ├── wind.svg │ │ │ │ │ │ │ │ ├── window-dash.svg │ │ │ │ │ │ │ │ ├── window-desktop.svg │ │ │ │ │ │ │ │ ├── window-dock.svg │ │ │ │ │ │ │ │ ├── window-fullscreen.svg │ │ │ │ │ │ │ │ ├── window-plus.svg │ │ │ │ │ │ │ │ ├── window-sidebar.svg │ │ │ │ │ │ │ │ ├── window-split.svg │ │ │ │ │ │ │ │ ├── window-stack.svg │ │ │ │ │ │ │ │ ├── window-x.svg │ │ │ │ │ │ │ │ ├── window.svg │ │ │ │ │ │ │ │ ├── windows.svg │ │ │ │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ │ │ │ ├── wrench-adjustable-circle-fill.svg │ │ │ │ │ │ │ │ ├── wrench-adjustable-circle.svg │ │ │ │ │ │ │ │ ├── wrench-adjustable.svg │ │ │ │ │ │ │ │ ├── wrench.svg │ │ │ │ │ │ │ │ ├── x-circle-fill.svg │ │ │ │ │ │ │ │ ├── x-circle.svg │ │ │ │ │ │ │ │ ├── x-diamond-fill.svg │ │ │ │ │ │ │ │ ├── x-diamond.svg │ │ │ │ │ │ │ │ ├── x-lg.svg │ │ │ │ │ │ │ │ ├── x-octagon-fill.svg │ │ │ │ │ │ │ │ ├── x-octagon.svg │ │ │ │ │ │ │ │ ├── x-square-fill.svg │ │ │ │ │ │ │ │ ├── x-square.svg │ │ │ │ │ │ │ │ ├── x.svg │ │ │ │ │ │ │ │ ├── xbox.svg │ │ │ │ │ │ │ │ ├── yelp.svg │ │ │ │ │ │ │ │ ├── yin-yang.svg │ │ │ │ │ │ │ │ ├── youtube.svg │ │ │ │ │ │ │ │ ├── zoom-in.svg │ │ │ │ │ │ │ │ └── zoom-out.svg │ │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ │ ├── 5.3.0 │ │ │ │ │ │ │ │ └── bootswatch.yeti.min.css │ │ │ │ │ │ │ └── 5.3.3 │ │ │ │ │ │ │ │ └── bootswatch.yeti.min.css │ │ │ │ │ │ ├── dselect │ │ │ │ │ │ │ └── 1.0.4 │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── dist │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ │ ├── dselect.css │ │ │ │ │ │ │ │ │ ├── dselect.css.map │ │ │ │ │ │ │ │ │ └── dselect.min.css │ │ │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ │ ├── dselect.js │ │ │ │ │ │ │ │ │ └── dselect.min.js │ │ │ │ │ │ │ │ ├── gulpfile.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── source │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── dselect.scss │ │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ └── dselect.js │ │ │ │ │ │ ├── html5-qrcode │ │ │ │ │ │ │ └── 2.3.8 │ │ │ │ │ │ │ │ └── html5-qrcode.min.js │ │ │ │ │ │ ├── luxon │ │ │ │ │ │ │ └── 3.3.0 │ │ │ │ │ │ │ │ └── luxon.min.js │ │ │ │ │ │ ├── spin.js │ │ │ │ │ │ │ ├── spin.css │ │ │ │ │ │ │ └── spin.umd.js │ │ │ │ │ │ └── treant-js │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── Treant.css │ │ │ │ │ │ │ ├── Treant.js │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── basic-example │ │ │ │ │ │ │ │ ├── basic-example.css │ │ │ │ │ │ │ │ ├── basic-example.js │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── collapsable │ │ │ │ │ │ │ │ ├── collapsable.css │ │ │ │ │ │ │ │ ├── collapsable.js │ │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ │ ├── cheryl.png │ │ │ │ │ │ │ │ │ ├── figgs.png │ │ │ │ │ │ │ │ │ ├── lana.png │ │ │ │ │ │ │ │ │ ├── malory.png │ │ │ │ │ │ │ │ │ ├── pam.png │ │ │ │ │ │ │ │ │ ├── sterling.png │ │ │ │ │ │ │ │ │ └── woodhouse.png │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── comments │ │ │ │ │ │ │ │ ├── avatar.jpg │ │ │ │ │ │ │ │ ├── example8.css │ │ │ │ │ │ │ │ ├── example8.js │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── connectors │ │ │ │ │ │ │ │ ├── connectors.css │ │ │ │ │ │ │ │ ├── connectors.js │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── custom-color-plus-scrollbar │ │ │ │ │ │ │ │ ├── custom-color-plus-scrollbar.css │ │ │ │ │ │ │ │ ├── custom-color-plus-scrollbar.js │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── custom-colored │ │ │ │ │ │ │ │ ├── custom-colored.css │ │ │ │ │ │ │ │ ├── custom-colored.js │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── evolution-tree │ │ │ │ │ │ │ │ ├── example6.css │ │ │ │ │ │ │ │ ├── example6.js │ │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ │ ├── archaebacteria.png │ │ │ │ │ │ │ │ │ ├── bonyfish.png │ │ │ │ │ │ │ │ │ ├── cartilaginousfish.png │ │ │ │ │ │ │ │ │ ├── chelirates.png │ │ │ │ │ │ │ │ │ ├── cnidarians.png │ │ │ │ │ │ │ │ │ ├── cvijece1.png │ │ │ │ │ │ │ │ │ ├── cvijece2.png │ │ │ │ │ │ │ │ │ ├── ferns.png │ │ │ │ │ │ │ │ │ ├── flatare.png │ │ │ │ │ │ │ │ │ ├── fungi.png │ │ │ │ │ │ │ │ │ ├── greenalgae.png │ │ │ │ │ │ │ │ │ ├── insekti.png │ │ │ │ │ │ │ │ │ ├── kornjaca.png │ │ │ │ │ │ │ │ │ ├── lophoprates.png │ │ │ │ │ │ │ │ │ ├── mosculs.png │ │ │ │ │ │ │ │ │ ├── mosses.png │ │ │ │ │ │ │ │ │ ├── ne_cvijece.png │ │ │ │ │ │ │ │ │ ├── protoctis.png │ │ │ │ │ │ │ │ │ ├── ptica.png │ │ │ │ │ │ │ │ │ ├── rak.png │ │ │ │ │ │ │ │ │ ├── rotfiers.png │ │ │ │ │ │ │ │ │ ├── roundworms.png │ │ │ │ │ │ │ │ │ ├── segmentedworms.png │ │ │ │ │ │ │ │ │ ├── slon.png │ │ │ │ │ │ │ │ │ ├── spuzva.png │ │ │ │ │ │ │ │ │ ├── truebacteria.png │ │ │ │ │ │ │ │ │ ├── zaba.png │ │ │ │ │ │ │ │ │ ├── zmijurina.png │ │ │ │ │ │ │ │ │ └── zvezda.png │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── headshots │ │ │ │ │ │ │ │ ├── 1.jpg │ │ │ │ │ │ │ │ ├── 10.jpg │ │ │ │ │ │ │ │ ├── 11.jpg │ │ │ │ │ │ │ │ ├── 2.jpg │ │ │ │ │ │ │ │ ├── 4.jpg │ │ │ │ │ │ │ │ ├── 5.jpg │ │ │ │ │ │ │ │ ├── 6.jpg │ │ │ │ │ │ │ │ ├── 7.jpg │ │ │ │ │ │ │ │ ├── 8.jpg │ │ │ │ │ │ │ │ └── 9.jpg │ │ │ │ │ │ │ ├── no-parent │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── no-parent.css │ │ │ │ │ │ │ │ └── no-parent.js │ │ │ │ │ │ │ ├── simple-scrollbar │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── simple-scrollbar.css │ │ │ │ │ │ │ │ └── simple-scrollbar.js │ │ │ │ │ │ │ ├── super-simple │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── super-simple.css │ │ │ │ │ │ │ │ └── super-simple.js │ │ │ │ │ │ │ ├── tennis-draw │ │ │ │ │ │ │ │ ├── example7.css │ │ │ │ │ │ │ │ ├── example7.js │ │ │ │ │ │ │ │ ├── flags │ │ │ │ │ │ │ │ │ ├── arg.jpg │ │ │ │ │ │ │ │ │ ├── aus.jpg │ │ │ │ │ │ │ │ │ ├── can.jpg │ │ │ │ │ │ │ │ │ ├── esp.jpg │ │ │ │ │ │ │ │ │ ├── fin.jpg │ │ │ │ │ │ │ │ │ ├── fra.jpg │ │ │ │ │ │ │ │ │ ├── lat.jpg │ │ │ │ │ │ │ │ │ ├── rus.jpg │ │ │ │ │ │ │ │ │ ├── slo.jpg │ │ │ │ │ │ │ │ │ ├── srb.jpg │ │ │ │ │ │ │ │ │ ├── ukr.jpg │ │ │ │ │ │ │ │ │ └── usa.jpg │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── trophy.png │ │ │ │ │ │ │ ├── test_ground │ │ │ │ │ │ │ │ ├── example_configs.js │ │ │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── slika-manja.jpg │ │ │ │ │ │ │ └── timeline │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── timeline.css │ │ │ │ │ │ │ │ └── timeline.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── jquery.easing.js │ │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ │ ├── jquery.mousewheel.js │ │ │ │ │ │ │ ├── perfect-scrollbar │ │ │ │ │ │ │ ├── perfect-scrollbar.css │ │ │ │ │ │ │ └── perfect-scrollbar.js │ │ │ │ │ │ │ └── raphael.js │ │ │ │ │ │ ├── media │ │ │ │ │ │ ├── baseStationBack.svg │ │ │ │ │ │ ├── bleep.mp3 │ │ │ │ │ │ ├── chevron_down.svg │ │ │ │ │ │ ├── chevron_up.svg │ │ │ │ │ │ ├── empty.svg │ │ │ │ │ │ └── logoSymbol.svg │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-adjust.css │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ ├── printout │ │ │ │ │ │ │ └── printout.css │ │ │ │ │ │ └── storageTree.css │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── CodeScanning.js │ │ │ │ │ │ ├── dselectHelpers.js │ │ │ │ │ │ ├── entityRef.js │ │ │ │ │ │ ├── getParamUtils.js │ │ │ │ │ │ ├── historySearch.js │ │ │ │ │ │ ├── item │ │ │ │ │ │ ├── ItemAddSubTrans.js │ │ │ │ │ │ └── extItemSearch.js │ │ │ │ │ │ ├── login.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── obj │ │ │ │ │ │ ├── getters.js │ │ │ │ │ │ ├── item │ │ │ │ │ │ │ ├── itemAddEdit.js │ │ │ │ │ │ │ ├── itemSearchSelect.js │ │ │ │ │ │ │ ├── itemView.js │ │ │ │ │ │ │ └── storedView.js │ │ │ │ │ │ ├── itemCategory │ │ │ │ │ │ │ └── itemCategoryTree.js │ │ │ │ │ │ ├── itemCategoryView.js │ │ │ │ │ │ ├── itemCheckout │ │ │ │ │ │ │ ├── itemCheckin.js │ │ │ │ │ │ │ ├── itemCheckout.js │ │ │ │ │ │ │ └── itemCheckoutView.js │ │ │ │ │ │ ├── itemList │ │ │ │ │ │ │ └── itemListView.js │ │ │ │ │ │ ├── media │ │ │ │ │ │ │ ├── imageAdd.js │ │ │ │ │ │ │ ├── imageAddFromSelect.js │ │ │ │ │ │ │ └── imageSearchSelect.js │ │ │ │ │ │ ├── objEdit.js │ │ │ │ │ │ ├── objView.js │ │ │ │ │ │ ├── storageBlock │ │ │ │ │ │ │ ├── capacities.js │ │ │ │ │ │ │ ├── storageBlockTree.js │ │ │ │ │ │ │ └── storageSearchSelect.js │ │ │ │ │ │ └── units.js │ │ │ │ │ │ ├── pageMessages.js │ │ │ │ │ │ ├── rest.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ ├── spinnerHelpers.js │ │ │ │ │ │ ├── storedTypeUtils.js │ │ │ │ │ │ ├── textCopy.js │ │ │ │ │ │ └── timeHelpers.js │ │ │ │ │ ├── application.yaml │ │ │ │ │ ├── templates │ │ │ │ │ └── pages │ │ │ │ │ │ └── main.html │ │ │ │ │ └── voice2json │ │ │ │ │ └── sentences.ini │ │ │ ├── native-test │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── ebp │ │ │ │ │ └── openQuarterMaster │ │ │ │ │ └── plugin │ │ │ │ │ └── GreetingResourceIT.java │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── tech │ │ │ │ │ └── ebp │ │ │ │ │ └── oqm │ │ │ │ │ └── plugin │ │ │ │ │ └── mssController │ │ │ │ │ ├── interfaces │ │ │ │ │ └── ui │ │ │ │ │ │ └── BasicUiTest.java │ │ │ │ │ └── testResources │ │ │ │ │ ├── lifecycle │ │ │ │ │ └── TestCleanup.java │ │ │ │ │ ├── profiles │ │ │ │ │ ├── NoModulesTestProfile.java │ │ │ │ │ └── SingleSerialPortTestProfile.java │ │ │ │ │ ├── testClasses │ │ │ │ │ ├── RunningServerTest.java │ │ │ │ │ ├── WebServerTest.java │ │ │ │ │ └── WebUiTest.java │ │ │ │ │ ├── testUsers │ │ │ │ │ ├── TestUser.java │ │ │ │ │ ├── TestUserService.java │ │ │ │ │ └── TestUserType.java │ │ │ │ │ └── ui │ │ │ │ │ └── PlaywrightSetup.java │ │ │ │ └── resources │ │ │ │ └── application.yaml │ │ └── test │ │ │ └── voice2jsonTest │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── snhInstallerSrc │ │ ├── 50-plugin-mss-controller.json │ │ ├── oqm-plugin-mss_controller.service │ │ ├── plugin-mss-controller-client.json │ │ ├── plugin-mss-controller-config.list │ │ └── properties.json │ ├── open-qm-plugin-demo │ ├── .dockerignore │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ ├── integrationTest │ │ └── java │ │ │ └── com │ │ │ └── ebp │ │ │ └── openQuarterMaster │ │ │ └── plugin │ │ │ └── demo │ │ │ └── quarkus │ │ │ └── ConfigTest.java │ │ ├── main │ │ ├── docker │ │ │ ├── Dockerfile.jvm │ │ │ ├── Dockerfile.legacy-jar │ │ │ ├── Dockerfile.native │ │ │ └── Dockerfile.native-distroless │ │ ├── java │ │ │ └── com │ │ │ │ └── ebp │ │ │ │ └── openQuarterMaster │ │ │ │ └── plugin │ │ │ │ └── demo │ │ │ │ └── quarkus │ │ │ │ ├── Demo.java │ │ │ │ ├── DemoServiceCaller.java │ │ │ │ └── ResponseCreator.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── resources │ │ │ │ └── index.html │ │ │ └── application.properties │ │ ├── native-test │ │ └── java │ │ │ └── com │ │ │ └── ebp │ │ │ └── openQuarterMaster │ │ │ └── plugin │ │ │ └── NativedemoIT.java │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── ebp │ │ │ └── openQuarterMaster │ │ │ └── plugin │ │ │ └── demo │ │ │ └── quarkus │ │ │ ├── DemoTest.java │ │ │ ├── DemoTestOtherProfile.java │ │ │ └── testResources │ │ │ ├── NonDefaultTestProfile.java │ │ │ ├── ProfileTwoTestProfile.java │ │ │ └── TestResourceLifecycleManager.java │ │ └── resources │ │ └── application.properties │ └── properties.json └── utilities ├── .gitignore ├── tests └── instanceTests │ ├── .gitignore │ ├── .idea │ └── .gitignore │ ├── .mvn │ └── wrapper │ │ └── maven-wrapper.properties │ ├── docs │ ├── README.md │ └── tags.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ ├── readme.md │ └── src │ └── test │ ├── java │ └── stationCaptainTest │ │ ├── RunCucumberTest.java │ │ ├── lifecycle │ │ └── LifecycleEvents.java │ │ ├── scenarioUtils │ │ └── AttachUtils.java │ │ ├── stepDefinitions │ │ └── features │ │ │ ├── health │ │ │ └── HealthSteps.java │ │ │ └── performance │ │ │ └── CoreApiPerformanceTests.java │ │ └── testResources │ │ ├── BaseStepDefinitions.java │ │ ├── TestContext.java │ │ ├── Utils.java │ │ ├── config │ │ ├── ConfigReader.java │ │ ├── InstanceConnectionConfig.java │ │ └── TestRunConfig.java │ │ ├── rest │ │ ├── NullX509TrustManager.java │ │ └── RestHelpers.java │ │ ├── shellUtils │ │ └── ShellProcessResults.java │ │ └── threads │ │ ├── PerformanceTestResult.java │ │ └── PerformanceTestThread.java │ └── resources │ ├── cucumber.properties │ ├── features │ ├── 1 - Basics │ │ └── 1.1-Health.feature │ └── 2 - Performance │ │ └── 2.1-Core Api.feature │ ├── junit-platform.properties │ └── log4j2.yaml ├── update-helm-repository.sh ├── update-main-repositories.sh └── update-test-repositories.sh /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/actions/wf-setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/actions/wf-setup/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 2 | Checklist: 3 | 4 | - [ ] Tested 5 | -------------------------------------------------------------------------------- /.github/workflows/core-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/workflows/core-api.yml -------------------------------------------------------------------------------- /.github/workflows/core-baseStation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/workflows/core-baseStation.yml -------------------------------------------------------------------------------- /.github/workflows/coreLib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/workflows/coreLib.yml -------------------------------------------------------------------------------- /.github/workflows/deployMainRepos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/workflows/deployMainRepos.yml -------------------------------------------------------------------------------- /.github/workflows/deployTestRepos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/workflows/deployTestRepos.yml -------------------------------------------------------------------------------- /.github/workflows/driverLib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/workflows/driverLib.yml -------------------------------------------------------------------------------- /.github/workflows/driverServer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/workflows/driverServer.yml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.github/workflows/plugin-alertMessenger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/workflows/plugin-alertMessenger.yml -------------------------------------------------------------------------------- /.github/workflows/plugin-demoQuarkus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/workflows/plugin-demoQuarkus.yml -------------------------------------------------------------------------------- /.github/workflows/plugin-extItemSearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/workflows/plugin-extItemSearch.yml -------------------------------------------------------------------------------- /.github/workflows/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/workflows/readme.md -------------------------------------------------------------------------------- /.github/workflows/stationCaptain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/workflows/stationCaptain.yml -------------------------------------------------------------------------------- /.github/workflows/wf-gradleBuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/workflows/wf-gradleBuild.yaml -------------------------------------------------------------------------------- /.github/workflows/wf-gradleQuarkusIntTest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/workflows/wf-gradleQuarkusIntTest.yaml -------------------------------------------------------------------------------- /.github/workflows/wf-gradleUnitTest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.github/workflows/wf-gradleUnitTest.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/SECURITY.md -------------------------------------------------------------------------------- /deployment/Compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Compose/README.md -------------------------------------------------------------------------------- /deployment/Kubernetes/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/.idea/.gitignore -------------------------------------------------------------------------------- /deployment/Kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/README.md -------------------------------------------------------------------------------- /deployment/Kubernetes/argocd/README.md: -------------------------------------------------------------------------------- 1 | # OQM Kubernetes with ArgoCD 2 | 3 | -------------------------------------------------------------------------------- /deployment/Kubernetes/argocd/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/argocd/docs/README.md -------------------------------------------------------------------------------- /deployment/Kubernetes/argocd/docs/devSetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/argocd/docs/devSetup.md -------------------------------------------------------------------------------- /deployment/Kubernetes/argocd/standard/core-depot-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/argocd/standard/core-depot-deployment.yaml -------------------------------------------------------------------------------- /deployment/Kubernetes/argocd/standard/core-depot-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/argocd/standard/core-depot-service.yaml -------------------------------------------------------------------------------- /deployment/Kubernetes/docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/docs/development.md -------------------------------------------------------------------------------- /deployment/Kubernetes/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/helm/README.md -------------------------------------------------------------------------------- /deployment/Kubernetes/helm/oqm-core/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/helm/oqm-core/.helmignore -------------------------------------------------------------------------------- /deployment/Kubernetes/helm/oqm-core/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/helm/oqm-core/Chart.yaml -------------------------------------------------------------------------------- /deployment/Kubernetes/helm/oqm-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/helm/oqm-core/README.md -------------------------------------------------------------------------------- /deployment/Kubernetes/helm/oqm-core/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/helm/oqm-core/templates/NOTES.txt -------------------------------------------------------------------------------- /deployment/Kubernetes/helm/oqm-core/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/helm/oqm-core/values.yaml -------------------------------------------------------------------------------- /deployment/Kubernetes/operator/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/operator/.dockerignore -------------------------------------------------------------------------------- /deployment/Kubernetes/operator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/operator/.gitignore -------------------------------------------------------------------------------- /deployment/Kubernetes/operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/operator/README.md -------------------------------------------------------------------------------- /deployment/Kubernetes/operator/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/operator/build.gradle -------------------------------------------------------------------------------- /deployment/Kubernetes/operator/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/operator/gradle.properties -------------------------------------------------------------------------------- /deployment/Kubernetes/operator/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/operator/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /deployment/Kubernetes/operator/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/operator/gradlew -------------------------------------------------------------------------------- /deployment/Kubernetes/operator/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/operator/gradlew.bat -------------------------------------------------------------------------------- /deployment/Kubernetes/operator/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/operator/settings.gradle -------------------------------------------------------------------------------- /deployment/Kubernetes/operator/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/operator/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /deployment/Kubernetes/operator/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/operator/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /deployment/Kubernetes/operator/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/Kubernetes/yaml/build-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/yaml/build-all.sh -------------------------------------------------------------------------------- /deployment/Kubernetes/yaml/openshift/deployments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/yaml/openshift/deployments.yml -------------------------------------------------------------------------------- /deployment/Kubernetes/yaml/openshift/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/yaml/openshift/install.sh -------------------------------------------------------------------------------- /deployment/Kubernetes/yaml/openshift/routes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/yaml/openshift/routes.yml -------------------------------------------------------------------------------- /deployment/Kubernetes/yaml/openshift/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/yaml/openshift/secrets.yml -------------------------------------------------------------------------------- /deployment/Kubernetes/yaml/openshift/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/yaml/openshift/services.yml -------------------------------------------------------------------------------- /deployment/Kubernetes/yaml/service_mesh/AuthorizationPolicy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/yaml/service_mesh/AuthorizationPolicy.yml -------------------------------------------------------------------------------- /deployment/Kubernetes/yaml/service_mesh/VirtualService.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/yaml/service_mesh/VirtualService.yml -------------------------------------------------------------------------------- /deployment/Kubernetes/yaml/service_mesh/gateway.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/yaml/service_mesh/gateway.yml -------------------------------------------------------------------------------- /deployment/Kubernetes/yaml/service_mesh/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/yaml/service_mesh/install.sh -------------------------------------------------------------------------------- /deployment/Kubernetes/yaml/service_mesh/networkpolicy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/yaml/service_mesh/networkpolicy.yml -------------------------------------------------------------------------------- /deployment/Kubernetes/yaml/service_mesh/requestauthentication.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/yaml/service_mesh/requestauthentication.yml -------------------------------------------------------------------------------- /deployment/Kubernetes/yaml/service_mesh/serviceentry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/yaml/service_mesh/serviceentry.yml -------------------------------------------------------------------------------- /deployment/Kubernetes/yaml/service_mesh/vs-external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Kubernetes/yaml/service_mesh/vs-external.yml -------------------------------------------------------------------------------- /deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/README.md -------------------------------------------------------------------------------- /deployment/Single Host/.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | .idea/* -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/README.md -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/homepage/10-homepage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/homepage/10-homepage.json -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/homepage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/homepage/README.md -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/homepage/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/homepage/properties.json -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/kafka-red-panda/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/kafka-red-panda/readme.md -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/keycloak/10-keycloak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/keycloak/10-keycloak.json -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/keycloak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/keycloak/README.md -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/keycloak/clientFileExplainer.md: -------------------------------------------------------------------------------- 1 | # OQM Keycloak Client Config 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/keycloak/kc-realm-manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/keycloak/kc-realm-manager.py -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/keycloak/kc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/keycloak/kc.svg -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/keycloak/oqm-realm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/keycloak/oqm-realm.json -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/keycloak/oqm-realm_OLD_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/keycloak/oqm-realm_OLD_.json -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/keycloak/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/keycloak/properties.json -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/keycloak/uiEntry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/keycloak/uiEntry.json -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/makeInstallers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/makeInstallers.sh -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/mongo/10-mongo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/mongo/10-mongo.json -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/mongo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/mongo/README.md -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/mongo/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/mongo/properties.json -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/postgres/10-postgres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/postgres/10-postgres.json -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/postgres/README.md -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/postgres/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/postgres/properties.json -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/properties.json -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/traefik/10-traefik.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/traefik/10-traefik.json -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/traefik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/traefik/README.md -------------------------------------------------------------------------------- /deployment/Single Host/Infrastructure/traefik/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Infrastructure/traefik/properties.json -------------------------------------------------------------------------------- /deployment/Single Host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/README.md -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/.gitignore -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/.idea/Station-Captain.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/.idea/Station-Captain.iml -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/.idea/misc.xml -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/.idea/modules.xml -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/.idea/vcs.xml -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/README.md -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/docs/Admin Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/docs/Admin Guide.md -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/docs/Features.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/docs/Features.adoc -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/docs/README.md -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/docs/User Guide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/docs/User Guide.adoc -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/docs/certs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/docs/certs.md -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/makeInstallers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/makeInstallers.sh -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/properties.json -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/account-assure-base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/account-assure-base.sh -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/certsReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/certsReadme.md -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/lib/CertsUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/lib/CertsUtils.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/lib/ConfigManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/lib/ConfigManager.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/lib/ContainerUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/lib/ContainerUtils.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/lib/CronUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/lib/CronUtils.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/lib/DataUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/lib/DataUtils.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/lib/EmailUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/lib/EmailUtils.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/lib/InputValidators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/lib/InputValidators.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/lib/LogManagement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/lib/LogManagement.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/lib/LogUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/lib/LogUtils.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/lib/OtherUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/lib/OtherUtils.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/lib/ScriptInfos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/lib/ScriptInfos.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/lib/ServiceUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/lib/ServiceUtils.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/lib/SnapshotShared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/lib/SnapshotShared.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/lib/SnapshotUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/lib/SnapshotUtils.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/lib/UserInteraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/lib/UserInteraction.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/mainConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/mainConfig.json -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/oqm-captain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/oqm-captain.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/src/oqm-config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/src/oqm-config.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/stationCaptainTest/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/stationCaptainTest/docs/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/stationCaptainTest/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/stationCaptainTest/mvnw -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/stationCaptainTest/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/stationCaptainTest/mvnw.cmd -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/stationCaptainTest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/stationCaptainTest/pom.xml -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/stationCaptainTest/src/test/resources/cucumber.properties: -------------------------------------------------------------------------------- 1 | cucumber.publish.quiet=true -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/unitTests/.gitignore: -------------------------------------------------------------------------------- 1 | testData -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/unitTests/testOtherUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/unitTests/testOtherUtils.py -------------------------------------------------------------------------------- /deployment/Single Host/Station-Captain/unitTests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/Station-Captain/unitTests/utils.py -------------------------------------------------------------------------------- /deployment/Single Host/aws-ami-builder/build-oqm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/aws-ami-builder/build-oqm.pkr.hcl -------------------------------------------------------------------------------- /deployment/Single Host/aws-ami-builder/get-metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/aws-ami-builder/get-metadata.sh -------------------------------------------------------------------------------- /deployment/Single Host/aws-ami-builder/oqm.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/aws-ami-builder/oqm.pkr.hcl -------------------------------------------------------------------------------- /deployment/Single Host/aws-ami-builder/variables.auto.pkrvars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/aws-ami-builder/variables.auto.pkrvars.hcl -------------------------------------------------------------------------------- /deployment/Single Host/aws-ami-builder/variables.pkr.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/aws-ami-builder/variables.pkr.hcl -------------------------------------------------------------------------------- /deployment/Single Host/docs/Architecture Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/docs/Architecture Overview.md -------------------------------------------------------------------------------- /deployment/Single Host/docs/Certs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/docs/Certs.md -------------------------------------------------------------------------------- /deployment/Single Host/docs/Quickstart Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/docs/Quickstart Guide.md -------------------------------------------------------------------------------- /deployment/Single Host/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/docs/README.md -------------------------------------------------------------------------------- /deployment/Single Host/docs/System Requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/docs/System Requirements.md -------------------------------------------------------------------------------- /deployment/Single Host/docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/docs/config.md -------------------------------------------------------------------------------- /deployment/Single Host/docs/guides/Kiosk Mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/docs/guides/Kiosk Mode.md -------------------------------------------------------------------------------- /deployment/Single Host/docs/guides/OS Installer Creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/docs/guides/OS Installer Creation.md -------------------------------------------------------------------------------- /deployment/Single Host/docs/networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/docs/networking.md -------------------------------------------------------------------------------- /deployment/Single Host/docs/tgf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/docs/tgf.md -------------------------------------------------------------------------------- /deployment/Single Host/metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/README.md -------------------------------------------------------------------------------- /deployment/Single Host/metrics/grafana/10-grafana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/grafana/10-grafana.json -------------------------------------------------------------------------------- /deployment/Single Host/metrics/grafana/oqm-infra-grafana.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/grafana/oqm-infra-grafana.service -------------------------------------------------------------------------------- /deployment/Single Host/metrics/grafana/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/grafana/properties.json -------------------------------------------------------------------------------- /deployment/Single Host/metrics/jaeger/10-jaeger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/jaeger/10-jaeger.json -------------------------------------------------------------------------------- /deployment/Single Host/metrics/jaeger/jaeger-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/jaeger/jaeger-icon.svg -------------------------------------------------------------------------------- /deployment/Single Host/metrics/jaeger/oqm-infra-jaeger.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/jaeger/oqm-infra-jaeger.service -------------------------------------------------------------------------------- /deployment/Single Host/metrics/jaeger/oqm-jaeger.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/jaeger/oqm-jaeger.desktop -------------------------------------------------------------------------------- /deployment/Single Host/metrics/jaeger/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/jaeger/properties.json -------------------------------------------------------------------------------- /deployment/Single Host/metrics/jaeger/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/jaeger/readme.md -------------------------------------------------------------------------------- /deployment/Single Host/metrics/jaeger/uiEntry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/jaeger/uiEntry.json -------------------------------------------------------------------------------- /deployment/Single Host/metrics/otel/10-otel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/otel/10-otel.json -------------------------------------------------------------------------------- /deployment/Single Host/metrics/otel/collector-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/otel/collector-config.yaml -------------------------------------------------------------------------------- /deployment/Single Host/metrics/otel/oqm-infra-otel.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/otel/oqm-infra-otel.service -------------------------------------------------------------------------------- /deployment/Single Host/metrics/otel/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/otel/properties.json -------------------------------------------------------------------------------- /deployment/Single Host/metrics/prometheus/10-prometheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/prometheus/10-prometheus.json -------------------------------------------------------------------------------- /deployment/Single Host/metrics/prometheus/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/prometheus/config.yaml -------------------------------------------------------------------------------- /deployment/Single Host/metrics/prometheus/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/metrics/prometheus/properties.json -------------------------------------------------------------------------------- /deployment/Single Host/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/tests/.gitignore -------------------------------------------------------------------------------- /deployment/Single Host/tests/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/tests/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /deployment/Single Host/tests/docs/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deployment/Single Host/tests/docs/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/tests/docs/tags.md -------------------------------------------------------------------------------- /deployment/Single Host/tests/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/tests/mvnw -------------------------------------------------------------------------------- /deployment/Single Host/tests/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/tests/mvnw.cmd -------------------------------------------------------------------------------- /deployment/Single Host/tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/tests/pom.xml -------------------------------------------------------------------------------- /deployment/Single Host/tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/tests/readme.md -------------------------------------------------------------------------------- /deployment/Single Host/tests/src/test/resources/cucumber.properties: -------------------------------------------------------------------------------- 1 | cucumber.publish.quiet=true -------------------------------------------------------------------------------- /deployment/Single Host/tests/src/test/resources/log4j2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/deployment/Single Host/tests/src/test/resources/log4j2.yaml -------------------------------------------------------------------------------- /devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/devfile.yaml -------------------------------------------------------------------------------- /docs/development/Versioning_Releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/docs/development/Versioning_Releases.md -------------------------------------------------------------------------------- /docs/development/developmentFlow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/docs/development/developmentFlow.md -------------------------------------------------------------------------------- /docs/development/gettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/docs/development/gettingStarted.md -------------------------------------------------------------------------------- /hardware/mss/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/.gitignore -------------------------------------------------------------------------------- /hardware/mss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/README.md -------------------------------------------------------------------------------- /hardware/mss/jsonSchemas/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/jsonSchemas/.idea/.gitignore -------------------------------------------------------------------------------- /hardware/mss/jsonSchemas/BlockLightSetting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/jsonSchemas/BlockLightSetting.json -------------------------------------------------------------------------------- /hardware/mss/jsonSchemas/BlockState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/jsonSchemas/BlockState.json -------------------------------------------------------------------------------- /hardware/mss/jsonSchemas/ClearHighlightCommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/jsonSchemas/ClearHighlightCommand.json -------------------------------------------------------------------------------- /hardware/mss/jsonSchemas/Command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/jsonSchemas/Command.json -------------------------------------------------------------------------------- /hardware/mss/jsonSchemas/CommandResponse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/jsonSchemas/CommandResponse.json -------------------------------------------------------------------------------- /hardware/mss/jsonSchemas/GetModuleInfoCommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/jsonSchemas/GetModuleInfoCommand.json -------------------------------------------------------------------------------- /hardware/mss/jsonSchemas/GetModuleStateCommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/jsonSchemas/GetModuleStateCommand.json -------------------------------------------------------------------------------- /hardware/mss/jsonSchemas/HighlightBlocksCommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/jsonSchemas/HighlightBlocksCommand.json -------------------------------------------------------------------------------- /hardware/mss/jsonSchemas/ModuleInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/jsonSchemas/ModuleInfo.json -------------------------------------------------------------------------------- /hardware/mss/jsonSchemas/ModuleState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/jsonSchemas/ModuleState.json -------------------------------------------------------------------------------- /hardware/mss/jsonSchemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/jsonSchemas/README.md -------------------------------------------------------------------------------- /hardware/mss/jsonSchemas/ResetBlockLightsCommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/jsonSchemas/ResetBlockLightsCommand.json -------------------------------------------------------------------------------- /hardware/mss/jsonSchemas/SetBlockStateCommand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/jsonSchemas/SetBlockStateCommand.json -------------------------------------------------------------------------------- /hardware/mss/ledTests/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/ledTests/.idea/.gitignore -------------------------------------------------------------------------------- /hardware/mss/ledTests/ledTests.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/ledTests/ledTests.ino -------------------------------------------------------------------------------- /hardware/mss/mss/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/mss/.idea/.gitignore -------------------------------------------------------------------------------- /hardware/mss/mss/AddToJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/mss/AddToJson.h -------------------------------------------------------------------------------- /hardware/mss/mss/BlockLightSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/mss/BlockLightSetting.h -------------------------------------------------------------------------------- /hardware/mss/mss/BlockState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/mss/BlockState.h -------------------------------------------------------------------------------- /hardware/mss/mss/ColorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/mss/ColorUtils.h -------------------------------------------------------------------------------- /hardware/mss/mss/HighlightBlocksCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/mss/HighlightBlocksCommand.h -------------------------------------------------------------------------------- /hardware/mss/mss/MssCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/mss/MssCommand.h -------------------------------------------------------------------------------- /hardware/mss/mss/MssCommandResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/mss/MssCommandResponse.h -------------------------------------------------------------------------------- /hardware/mss/mss/MssConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/mss/MssConnector.h -------------------------------------------------------------------------------- /hardware/mss/mss/MssEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/mss/MssEngine.h -------------------------------------------------------------------------------- /hardware/mss/mss/MssErringCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/mss/MssErringCommand.h -------------------------------------------------------------------------------- /hardware/mss/mss/MssModCapabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/mss/MssModCapabilities.h -------------------------------------------------------------------------------- /hardware/mss/mss/MssModInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/mss/MssModInfo.h -------------------------------------------------------------------------------- /hardware/mss/mss/MssSerialConnector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/mss/MssSerialConnector.h -------------------------------------------------------------------------------- /hardware/mss/mss/mss.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/mss/mss.ino -------------------------------------------------------------------------------- /hardware/mss/schematics/Arduino Uno Hat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/schematics/Arduino Uno Hat/.gitignore -------------------------------------------------------------------------------- /hardware/mss/schematics/Arduino Uno Hat/Arduino Uno Hat.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/schematics/Arduino Uno Hat/Arduino Uno Hat.kicad_pcb -------------------------------------------------------------------------------- /hardware/mss/schematics/Arduino Uno Hat/Arduino Uno Hat.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/schematics/Arduino Uno Hat/Arduino Uno Hat.kicad_prl -------------------------------------------------------------------------------- /hardware/mss/schematics/Arduino Uno Hat/Arduino Uno Hat.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/schematics/Arduino Uno Hat/Arduino Uno Hat.kicad_pro -------------------------------------------------------------------------------- /hardware/mss/schematics/Arduino Uno Hat/Arduino Uno Hat.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/schematics/Arduino Uno Hat/Arduino Uno Hat.kicad_sch -------------------------------------------------------------------------------- /hardware/mss/schematics/Arduino Uno Hat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/schematics/Arduino Uno Hat/README.md -------------------------------------------------------------------------------- /hardware/mss/schematics/MSS_Uno.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/schematics/MSS_Uno.fzz -------------------------------------------------------------------------------- /hardware/mss/schematics/MSS_Uno_bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/schematics/MSS_Uno_bb.svg -------------------------------------------------------------------------------- /hardware/mss/schematics/MSS_Uno_schem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/hardware/mss/schematics/MSS_Uno_schem.svg -------------------------------------------------------------------------------- /media/diagrams/Simple OQM Diagram.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/media/diagrams/Simple OQM Diagram.drawio -------------------------------------------------------------------------------- /media/diagrams/Simple OQM Diagram.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/media/diagrams/Simple OQM Diagram.drawio.svg -------------------------------------------------------------------------------- /media/logo/Quarter Master Black Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/media/logo/Quarter Master Black Logo.svg -------------------------------------------------------------------------------- /media/logo/Quarter Master Inverted Color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/media/logo/Quarter Master Inverted Color.svg -------------------------------------------------------------------------------- /media/logo/Quarter Master Logo Symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/media/logo/Quarter Master Logo Symbol.svg -------------------------------------------------------------------------------- /media/logo/Quarter Master Main Logo Outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/media/logo/Quarter Master Main Logo Outlined.svg -------------------------------------------------------------------------------- /media/logo/Quarter Master Main Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/media/logo/Quarter Master Main Logo.svg -------------------------------------------------------------------------------- /media/logo/Quarter Master White logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/media/logo/Quarter Master White logo.png -------------------------------------------------------------------------------- /media/logo/Quarter Master White logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/media/logo/Quarter Master White logo.svg -------------------------------------------------------------------------------- /media/logo/favicon_logoai/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/media/logo/favicon_logoai/android-chrome-192x192.png -------------------------------------------------------------------------------- /media/logo/favicon_logoai/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/media/logo/favicon_logoai/android-chrome-512x512.png -------------------------------------------------------------------------------- /media/logo/favicon_logoai/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/media/logo/favicon_logoai/apple-touch-icon.png -------------------------------------------------------------------------------- /media/logo/favicon_logoai/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/media/logo/favicon_logoai/favicon-16x16.png -------------------------------------------------------------------------------- /media/logo/favicon_logoai/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/media/logo/favicon_logoai/favicon-32x32.png -------------------------------------------------------------------------------- /media/logo/favicon_logoai/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/media/logo/favicon_logoai/favicon.ico -------------------------------------------------------------------------------- /media/logo/favicon_logoai/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/media/logo/favicon_logoai/site.webmanifest -------------------------------------------------------------------------------- /pagesSource/helm/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/helm/index.yaml -------------------------------------------------------------------------------- /pagesSource/helm/oqm-core-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/helm/oqm-core-0.1.0.tgz -------------------------------------------------------------------------------- /pagesSource/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/index.html -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/InRelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/InRelease -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/KEY.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/KEY.gpg -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/Packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/Packages -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/Packages.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/Packages.gz -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/README.md -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/Release -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/Release.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/Release.gpg -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/deb_list_file.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/deb_list_file.list -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_1.0.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_1.0.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_1.1.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_1.1.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_1.2.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_1.2.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_1.2.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_1.2.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_2.0.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_2.0.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_2.1.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_2.1.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_2.1.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_2.1.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_2.1.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_2.1.2_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_2.1.3_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_2.1.3_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_2.1.4_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_2.1.4_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_2.1.5_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_2.1.5_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_2.1.6_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_2.1.6_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_2.1.7_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_2.1.7_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_2.1.8_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_2.1.8_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_3.0.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_3.0.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_3.0.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_3.0.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_3.0.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_3.0.2_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_3.1.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_3.1.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_3.2.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_3.2.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_3.2.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_3.2.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_3.2.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_3.2.2_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_4.0.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_4.0.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-api_4.1.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-api_4.1.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.0.40_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.0.40_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.1.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.1.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.1.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.1.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.1.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.1.2_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.2.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.2.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.3.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.3.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.3.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.3.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.4.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.4.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.4.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.4.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.4.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.4.2_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.4.3_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.4.3_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.4.4_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.4.4_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.4.5_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.4.5_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.5.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.5.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.5.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.5.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.5.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.5.2_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.6.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.6.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.6.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.6.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.6.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.6.2_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.6.3_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.6.3_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.6.4_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.6.4_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.7.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.7.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.8.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.8.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.8.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.8.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.9.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.9.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.9.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.9.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-base+station_1.9.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-base+station_1.9.2_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-depot_1.0.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-depot_1.0.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-depot_1.1.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-depot_1.1.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-depot_1.1.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-depot_1.1.2_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-depot_1.1.3_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-depot_1.1.3_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-depot_1.2.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-depot_1.2.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-core-depot_1.2.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-core-depot_1.2.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-homepage_1.0.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-homepage_1.0.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-homepage_1.0.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-homepage_1.0.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-homepage_1.0.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-homepage_1.0.2_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-homepage_1.0.3_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-homepage_1.0.3_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-jaeger_1.1.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-jaeger_1.1.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-jaeger_1.1.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-jaeger_1.1.2_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-jaeger_1.2.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-jaeger_1.2.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-jaeger_1.2.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-jaeger_1.2.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-kafka+red+panda_1.0.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-kafka+red+panda_1.0.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-kafka+red+panda_1.0.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-kafka+red+panda_1.0.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-kafka+red+panda_1.0.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-kafka+red+panda_1.0.2_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-kafka+red+panda_1.0.3_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-kafka+red+panda_1.0.3_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-keycloak_1.1.4_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-keycloak_1.1.4_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.2_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.3_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.3_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.4_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.4_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.5_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.5_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.6_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.6_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.7_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.7_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.8_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-keycloak_1.2.8_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-mongodb_1.1.3_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-mongodb_1.1.3_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-mongodb_1.2.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-mongodb_1.2.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-mongodb_1.2.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-mongodb_1.2.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-mongodb_1.2.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-mongodb_1.2.2_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-mongodb_1.2.3_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-mongodb_1.2.3_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-mongodb_1.2.4_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-mongodb_1.2.4_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-postgres_1.1.3_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-postgres_1.1.3_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-postgres_1.2.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-postgres_1.2.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-postgres_1.2.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-postgres_1.2.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-postgres_1.2.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-postgres_1.2.2_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-postgres_1.2.3_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-postgres_1.2.3_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-postgres_1.2.4_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-postgres_1.2.4_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-traefik_1.0.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-traefik_1.0.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-traefik_1.0.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-traefik_1.0.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-traefik_1.0.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-traefik_1.0.2_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-traefik_1.0.3_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-traefik_1.0.3_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-traefik_1.0.4_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-traefik_1.0.4_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-traefik_1.0.5_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-traefik_1.0.5_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/oqm-infra-traefik_1.0.6_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/oqm-infra-traefik_1.0.6_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/main/deb/setup-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/main/deb/setup-repo.sh -------------------------------------------------------------------------------- /pagesSource/repos/test-dev/deb/InRelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-dev/deb/InRelease -------------------------------------------------------------------------------- /pagesSource/repos/test-dev/deb/KEY.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-dev/deb/KEY.gpg -------------------------------------------------------------------------------- /pagesSource/repos/test-dev/deb/Packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-dev/deb/Packages -------------------------------------------------------------------------------- /pagesSource/repos/test-dev/deb/Packages.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-dev/deb/Packages.gz -------------------------------------------------------------------------------- /pagesSource/repos/test-dev/deb/Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-dev/deb/Release -------------------------------------------------------------------------------- /pagesSource/repos/test-dev/deb/Release.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-dev/deb/Release.gpg -------------------------------------------------------------------------------- /pagesSource/repos/test-dev/deb/deb_list_file.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-dev/deb/deb_list_file.list -------------------------------------------------------------------------------- /pagesSource/repos/test-dev/deb/oqm-core-api_1.0.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-dev/deb/oqm-core-api_1.0.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/test-dev/deb/oqm-core-base+station_1.1.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-dev/deb/oqm-core-base+station_1.1.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/test-dev/deb/oqm-core-depot_1.0.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-dev/deb/oqm-core-depot_1.0.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/test-dev/deb/oqm-infra-jaeger_1.1.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-dev/deb/oqm-infra-jaeger_1.1.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/test-dev/deb/oqm-infra-keycloak_1.1.4_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-dev/deb/oqm-infra-keycloak_1.1.4_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/test-dev/deb/oqm-infra-mongodb_1.1.3_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-dev/deb/oqm-infra-mongodb_1.1.3_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/test-dev/deb/oqm-infra-postgres_1.1.3_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-dev/deb/oqm-infra-postgres_1.1.3_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/test-dev/deb/setup-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-dev/deb/setup-repo.sh -------------------------------------------------------------------------------- /pagesSource/repos/test-main/deb/InRelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-main/deb/InRelease -------------------------------------------------------------------------------- /pagesSource/repos/test-main/deb/KEY.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-main/deb/KEY.gpg -------------------------------------------------------------------------------- /pagesSource/repos/test-main/deb/Packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-main/deb/Packages -------------------------------------------------------------------------------- /pagesSource/repos/test-main/deb/Packages.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-main/deb/Packages.gz -------------------------------------------------------------------------------- /pagesSource/repos/test-main/deb/Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-main/deb/Release -------------------------------------------------------------------------------- /pagesSource/repos/test-main/deb/Release.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-main/deb/Release.gpg -------------------------------------------------------------------------------- /pagesSource/repos/test-main/deb/deb_list_file.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-main/deb/deb_list_file.list -------------------------------------------------------------------------------- /pagesSource/repos/test-main/deb/oqm-core-api_1.0.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-main/deb/oqm-core-api_1.0.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/test-main/deb/oqm-core-depot_1.0.0_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-main/deb/oqm-core-depot_1.0.0_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/test-main/deb/oqm-infra-jaeger_1.1.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-main/deb/oqm-infra-jaeger_1.1.1_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/test-main/deb/oqm-infra-keycloak_1.1.4_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-main/deb/oqm-infra-keycloak_1.1.4_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/test-main/deb/oqm-infra-mongodb_1.1.3_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-main/deb/oqm-infra-mongodb_1.1.3_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/test-main/deb/oqm-infra-postgres_1.1.3_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-main/deb/oqm-infra-postgres_1.1.3_all.deb -------------------------------------------------------------------------------- /pagesSource/repos/test-main/deb/setup-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/pagesSource/repos/test-main/deb/setup-repo.sh -------------------------------------------------------------------------------- /software/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/README.md -------------------------------------------------------------------------------- /software/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/README.md -------------------------------------------------------------------------------- /software/core/oqm-core-api/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/.dockerignore -------------------------------------------------------------------------------- /software/core/oqm-core-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/.gitignore -------------------------------------------------------------------------------- /software/core/oqm-core-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/README.md -------------------------------------------------------------------------------- /software/core/oqm-core-api/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/build.gradle -------------------------------------------------------------------------------- /software/core/oqm-core-api/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/dev/README.md -------------------------------------------------------------------------------- /software/core/oqm-core-api/dev/devTest-cert-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/dev/devTest-cert-cert.pem -------------------------------------------------------------------------------- /software/core/oqm-core-api/dev/devTest-cert-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/dev/devTest-cert-key.pem -------------------------------------------------------------------------------- /software/core/oqm-core-api/dev/developers.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/dev/developers.jpeg -------------------------------------------------------------------------------- /software/core/oqm-core-api/dev/oqm-realm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/dev/oqm-realm.json -------------------------------------------------------------------------------- /software/core/oqm-core-api/docs/AdminGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/docs/AdminGuide.md -------------------------------------------------------------------------------- /software/core/oqm-core-api/docs/DataModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/docs/DataModel.md -------------------------------------------------------------------------------- /software/core/oqm-core-api/docs/Features.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/docs/Features.adoc -------------------------------------------------------------------------------- /software/core/oqm-core-api/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/docs/README.md -------------------------------------------------------------------------------- /software/core/oqm-core-api/docs/UsersAndAuth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/docs/UsersAndAuth.md -------------------------------------------------------------------------------- /software/core/oqm-core-api/docs/customUnits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/docs/customUnits.md -------------------------------------------------------------------------------- /software/core/oqm-core-api/docs/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/docs/database.md -------------------------------------------------------------------------------- /software/core/oqm-core-api/docs/development/ClientGeneration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/docs/development/ClientGeneration.md -------------------------------------------------------------------------------- /software/core/oqm-core-api/docs/development/Devnotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/docs/development/Devnotes.md -------------------------------------------------------------------------------- /software/core/oqm-core-api/docs/development/Releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/docs/development/Releasing.md -------------------------------------------------------------------------------- /software/core/oqm-core-api/docs/messaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/docs/messaging.md -------------------------------------------------------------------------------- /software/core/oqm-core-api/docs/metricsAndObservability.md: -------------------------------------------------------------------------------- 1 | # Metrics and Observability 2 | 3 | TODO -------------------------------------------------------------------------------- /software/core/oqm-core-api/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/gradle.properties -------------------------------------------------------------------------------- /software/core/oqm-core-api/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /software/core/oqm-core-api/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/gradlew -------------------------------------------------------------------------------- /software/core/oqm-core-api/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/gradlew.bat -------------------------------------------------------------------------------- /software/core/oqm-core-api/helm/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/helm/.helmignore -------------------------------------------------------------------------------- /software/core/oqm-core-api/helm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/helm/Chart.yaml -------------------------------------------------------------------------------- /software/core/oqm-core-api/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/helm/README.md -------------------------------------------------------------------------------- /software/core/oqm-core-api/helm/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/helm/templates/NOTES.txt -------------------------------------------------------------------------------- /software/core/oqm-core-api/helm/templates/core-api-mongodb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/helm/templates/core-api-mongodb.yaml -------------------------------------------------------------------------------- /software/core/oqm-core-api/helm/templates/core-depot-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/helm/templates/core-depot-ingress.yaml -------------------------------------------------------------------------------- /software/core/oqm-core-api/helm/templates/core-depot-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/helm/templates/core-depot-service.yaml -------------------------------------------------------------------------------- /software/core/oqm-core-api/helm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/helm/values.yaml -------------------------------------------------------------------------------- /software/core/oqm-core-api/installerSrc/20-coreApi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/installerSrc/20-coreApi.json -------------------------------------------------------------------------------- /software/core/oqm-core-api/installerSrc/core-api-config.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/installerSrc/core-api-config.list -------------------------------------------------------------------------------- /software/core/oqm-core-api/installerSrc/core-api-proxy-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/installerSrc/core-api-proxy-config.json -------------------------------------------------------------------------------- /software/core/oqm-core-api/installerSrc/core-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/installerSrc/core-api.svg -------------------------------------------------------------------------------- /software/core/oqm-core-api/installerSrc/installerProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/installerSrc/installerProperties.json -------------------------------------------------------------------------------- /software/core/oqm-core-api/installerSrc/oqm-core-api.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/installerSrc/oqm-core-api.service -------------------------------------------------------------------------------- /software/core/oqm-core-api/installerSrc/uiEntry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/installerSrc/uiEntry.json -------------------------------------------------------------------------------- /software/core/oqm-core-api/lombok.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/lombok.config -------------------------------------------------------------------------------- /software/core/oqm-core-api/makeInstallers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/makeInstallers.sh -------------------------------------------------------------------------------- /software/core/oqm-core-api/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/settings.gradle -------------------------------------------------------------------------------- /software/core/oqm-core-api/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /software/core/oqm-core-api/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /software/core/oqm-core-api/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /software/core/oqm-core-api/src/main/docker/Dockerfile.native-micro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/src/main/docker/Dockerfile.native-micro -------------------------------------------------------------------------------- /software/core/oqm-core-api/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/core/oqm-core-api/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/src/main/resources/application.yaml -------------------------------------------------------------------------------- /software/core/oqm-core-api/src/test/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-api/src/test/resources/application.yaml -------------------------------------------------------------------------------- /software/core/oqm-core-api/src/test/resources/testcontainers.properties: -------------------------------------------------------------------------------- 1 | #ryuk.container.privileged=false -------------------------------------------------------------------------------- /software/core/oqm-core-api/src/test/resources/upgrading/2/case.json: -------------------------------------------------------------------------------- 1 | { 2 | "existing": { 3 | "StorageBlock": [] 4 | } 5 | } -------------------------------------------------------------------------------- /software/core/oqm-core-api/src/test/resources/upgrading/3/case.json: -------------------------------------------------------------------------------- 1 | { 2 | "existing": { 3 | "StorageBlock": [] 4 | } 5 | } -------------------------------------------------------------------------------- /software/core/oqm-core-api/src/test/resources/upgrading/4/case.json: -------------------------------------------------------------------------------- 1 | { 2 | "existing": { 3 | "StorageBlock": [] 4 | } 5 | } -------------------------------------------------------------------------------- /software/core/oqm-core-api/src/test/resources/upgrading/5/case.json: -------------------------------------------------------------------------------- 1 | { 2 | "existing": { 3 | "StorageBlock": [] 4 | } 5 | } -------------------------------------------------------------------------------- /software/core/oqm-core-api/src/test/resources/upgrading/6/case.json: -------------------------------------------------------------------------------- 1 | { 2 | "existing": { 3 | "StorageBlock": [] 4 | } 5 | } -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/.dockerignore -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/.gitignore -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/README.md -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/build.gradle -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/dev/developers.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/dev/developers.jpeg -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/dev/oqm-realm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/dev/oqm-realm.json -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/docs/Releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/docs/Releasing.md -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/docs/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/docs/img.png -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/docs/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/docs/img_1.png -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/docs/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/docs/img_2.png -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/docs/usersAndAuth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/docs/usersAndAuth.md -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/gradle.properties -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/gradlew -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/gradlew.bat -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/installerSrc/uiEntry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/installerSrc/uiEntry.json -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/lombok.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/lombok.config -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/makeInstallers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/makeInstallers.sh -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/settings.gradle -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/src/integrationTest/resources/application.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/core/oqm-core-base-station/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/core/oqm-core-base-station/src/main/resources/META-INF/resources/lib/Croppie-2.6.4/.gitattributes: -------------------------------------------------------------------------------- 1 | text eol=lf 2 | -------------------------------------------------------------------------------- /software/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/docs/README.md -------------------------------------------------------------------------------- /software/drivers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/README.md -------------------------------------------------------------------------------- /software/drivers/demoDriver/MacroPad/.MacroPad.ino.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/demoDriver/MacroPad/.MacroPad.ino.swp -------------------------------------------------------------------------------- /software/drivers/demoDriver/MacroPad/MacroPad.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/demoDriver/MacroPad/MacroPad.ino -------------------------------------------------------------------------------- /software/drivers/demoDriver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/demoDriver/Makefile -------------------------------------------------------------------------------- /software/drivers/demoDriver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/demoDriver/README.md -------------------------------------------------------------------------------- /software/drivers/demoDriver/demo-driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/demoDriver/demo-driver.c -------------------------------------------------------------------------------- /software/drivers/demoDriver/driverServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/demoDriver/driverServer/README.md -------------------------------------------------------------------------------- /software/drivers/demoDriver/driverServer/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/demoDriver/driverServer/app.py -------------------------------------------------------------------------------- /software/drivers/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/docs/README.md -------------------------------------------------------------------------------- /software/drivers/docs/Serial Communication Spec.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/docs/Serial Communication Spec.adoc -------------------------------------------------------------------------------- /software/drivers/open-qm-driver-server/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/open-qm-driver-server/.dockerignore -------------------------------------------------------------------------------- /software/drivers/open-qm-driver-server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/open-qm-driver-server/.gitignore -------------------------------------------------------------------------------- /software/drivers/open-qm-driver-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/open-qm-driver-server/README.md -------------------------------------------------------------------------------- /software/drivers/open-qm-driver-server/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/open-qm-driver-server/build.gradle -------------------------------------------------------------------------------- /software/drivers/open-qm-driver-server/docs/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/open-qm-driver-server/docs/notes.md -------------------------------------------------------------------------------- /software/drivers/open-qm-driver-server/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/open-qm-driver-server/gradle.properties -------------------------------------------------------------------------------- /software/drivers/open-qm-driver-server/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/open-qm-driver-server/gradlew -------------------------------------------------------------------------------- /software/drivers/open-qm-driver-server/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/open-qm-driver-server/gradlew.bat -------------------------------------------------------------------------------- /software/drivers/open-qm-driver-server/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/drivers/open-qm-driver-server/settings.gradle -------------------------------------------------------------------------------- /software/drivers/open-qm-driver-server/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/drivers/open-qm-driver-server/src/test/resources/application.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/README.md -------------------------------------------------------------------------------- /software/libs/core-api-lib-quarkus/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /software/libs/core-api-lib-quarkus/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/core-api-lib-quarkus/.idea/.gitignore -------------------------------------------------------------------------------- /software/libs/core-api-lib-quarkus/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/core-api-lib-quarkus/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /software/libs/core-api-lib-quarkus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/core-api-lib-quarkus/README.md -------------------------------------------------------------------------------- /software/libs/core-api-lib-quarkus/deployment/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /software/libs/core-api-lib-quarkus/deployment/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/core-api-lib-quarkus/deployment/pom.xml -------------------------------------------------------------------------------- /software/libs/core-api-lib-quarkus/integration-tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/core-api-lib-quarkus/integration-tests/pom.xml -------------------------------------------------------------------------------- /software/libs/core-api-lib-quarkus/integration-tests/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/libs/core-api-lib-quarkus/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/core-api-lib-quarkus/mvnw -------------------------------------------------------------------------------- /software/libs/core-api-lib-quarkus/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/core-api-lib-quarkus/mvnw.cmd -------------------------------------------------------------------------------- /software/libs/core-api-lib-quarkus/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/core-api-lib-quarkus/pom.xml -------------------------------------------------------------------------------- /software/libs/core-api-lib-quarkus/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /software/libs/core-api-lib-quarkus/runtime/lombok.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/core-api-lib-quarkus/runtime/lombok.config -------------------------------------------------------------------------------- /software/libs/core-api-lib-quarkus/runtime/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/core-api-lib-quarkus/runtime/pom.xml -------------------------------------------------------------------------------- /software/libs/core-api-lib-quarkus/runtime/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/libs/open-qm-core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/.gitignore -------------------------------------------------------------------------------- /software/libs/open-qm-core/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /software/libs/open-qm-core/.idea/.name: -------------------------------------------------------------------------------- 1 | open-qm-lib-core -------------------------------------------------------------------------------- /software/libs/open-qm-core/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/.idea/compiler.xml -------------------------------------------------------------------------------- /software/libs/open-qm-core/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/.idea/gradle.xml -------------------------------------------------------------------------------- /software/libs/open-qm-core/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /software/libs/open-qm-core/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/.idea/misc.xml -------------------------------------------------------------------------------- /software/libs/open-qm-core/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/.idea/modules.xml -------------------------------------------------------------------------------- /software/libs/open-qm-core/.idea/modules/open-qm-core.open-qm-lib-core.main.iml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/libs/open-qm-core/.idea/modules/open-qm-core.test.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/.idea/modules/open-qm-core.test.iml -------------------------------------------------------------------------------- /software/libs/open-qm-core/.idea/modules/open-qm-lib-core.main.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/.idea/modules/open-qm-lib-core.main.iml -------------------------------------------------------------------------------- /software/libs/open-qm-core/.idea/modules/tech.epic-breakfast-productions.openQuarterMaster.lib.open-qm-lib-core.test.iml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/libs/open-qm-core/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /software/libs/open-qm-core/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/.idea/vcs.xml -------------------------------------------------------------------------------- /software/libs/open-qm-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/README.md -------------------------------------------------------------------------------- /software/libs/open-qm-core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/build.gradle -------------------------------------------------------------------------------- /software/libs/open-qm-core/docs/How to Store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/docs/How to Store.md -------------------------------------------------------------------------------- /software/libs/open-qm-core/docs/Releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/docs/Releasing.md -------------------------------------------------------------------------------- /software/libs/open-qm-core/docs/nextVersionIdeas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/docs/nextVersionIdeas.md -------------------------------------------------------------------------------- /software/libs/open-qm-core/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /software/libs/open-qm-core/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/gradlew -------------------------------------------------------------------------------- /software/libs/open-qm-core/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/gradlew.bat -------------------------------------------------------------------------------- /software/libs/open-qm-core/lombok.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/lombok.config -------------------------------------------------------------------------------- /software/libs/open-qm-core/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'open-qm-lib-core' 2 | 3 | -------------------------------------------------------------------------------- /software/libs/open-qm-core/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/libs/open-qm-core/src/test/resources/test_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/src/test/resources/test_image.png -------------------------------------------------------------------------------- /software/libs/open-qm-core/src/test/resources/test_image_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-core/src/test/resources/test_image_big.png -------------------------------------------------------------------------------- /software/libs/open-qm-moduleDriver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-moduleDriver/.gitignore -------------------------------------------------------------------------------- /software/libs/open-qm-moduleDriver/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-moduleDriver/.idea/.gitignore -------------------------------------------------------------------------------- /software/libs/open-qm-moduleDriver/.idea/.name: -------------------------------------------------------------------------------- 1 | open-qm-lib-moduleDriver -------------------------------------------------------------------------------- /software/libs/open-qm-moduleDriver/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-moduleDriver/.idea/compiler.xml -------------------------------------------------------------------------------- /software/libs/open-qm-moduleDriver/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-moduleDriver/.idea/gradle.xml -------------------------------------------------------------------------------- /software/libs/open-qm-moduleDriver/.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-moduleDriver/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /software/libs/open-qm-moduleDriver/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-moduleDriver/.idea/misc.xml -------------------------------------------------------------------------------- /software/libs/open-qm-moduleDriver/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-moduleDriver/.idea/vcs.xml -------------------------------------------------------------------------------- /software/libs/open-qm-moduleDriver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-moduleDriver/README.md -------------------------------------------------------------------------------- /software/libs/open-qm-moduleDriver/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-moduleDriver/build.gradle -------------------------------------------------------------------------------- /software/libs/open-qm-moduleDriver/docs/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/libs/open-qm-moduleDriver/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-moduleDriver/gradlew -------------------------------------------------------------------------------- /software/libs/open-qm-moduleDriver/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-moduleDriver/gradlew.bat -------------------------------------------------------------------------------- /software/libs/open-qm-moduleDriver/lombok.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/libs/open-qm-moduleDriver/lombok.config -------------------------------------------------------------------------------- /software/libs/open-qm-moduleDriver/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'open-qm-lib-moduleDriver' 2 | 3 | -------------------------------------------------------------------------------- /software/libs/open-qm-moduleDriver/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/plugins/.gitignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /software/plugins/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/.idea/.gitignore -------------------------------------------------------------------------------- /software/plugins/README.md: -------------------------------------------------------------------------------- 1 | # Open QuarterMaster Plugins 2 | 3 | [Back](../README.md) 4 | 5 | 6 | -------------------------------------------------------------------------------- /software/plugins/alert-messenger/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alert-messenger/.dockerignore -------------------------------------------------------------------------------- /software/plugins/alert-messenger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alert-messenger/.gitignore -------------------------------------------------------------------------------- /software/plugins/alert-messenger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alert-messenger/README.md -------------------------------------------------------------------------------- /software/plugins/alert-messenger/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alert-messenger/build.gradle -------------------------------------------------------------------------------- /software/plugins/alert-messenger/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alert-messenger/dev/README.md -------------------------------------------------------------------------------- /software/plugins/alert-messenger/dev/devTest-cert-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alert-messenger/dev/devTest-cert-cert.pem -------------------------------------------------------------------------------- /software/plugins/alert-messenger/dev/devTest-cert-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alert-messenger/dev/devTest-cert-key.pem -------------------------------------------------------------------------------- /software/plugins/alert-messenger/dev/developers.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alert-messenger/dev/developers.jpeg -------------------------------------------------------------------------------- /software/plugins/alert-messenger/dev/oqm-realm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alert-messenger/dev/oqm-realm.json -------------------------------------------------------------------------------- /software/plugins/alert-messenger/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alert-messenger/gradle.properties -------------------------------------------------------------------------------- /software/plugins/alert-messenger/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alert-messenger/gradlew -------------------------------------------------------------------------------- /software/plugins/alert-messenger/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alert-messenger/gradlew.bat -------------------------------------------------------------------------------- /software/plugins/alert-messenger/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alert-messenger/settings.gradle -------------------------------------------------------------------------------- /software/plugins/alert-messenger/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alert-messenger/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /software/plugins/alt-formats/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alt-formats/.dockerignore -------------------------------------------------------------------------------- /software/plugins/alt-formats/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alt-formats/.gitignore -------------------------------------------------------------------------------- /software/plugins/alt-formats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alt-formats/README.md -------------------------------------------------------------------------------- /software/plugins/alt-formats/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alt-formats/build.gradle -------------------------------------------------------------------------------- /software/plugins/alt-formats/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alt-formats/gradle.properties -------------------------------------------------------------------------------- /software/plugins/alt-formats/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alt-formats/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /software/plugins/alt-formats/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alt-formats/gradlew -------------------------------------------------------------------------------- /software/plugins/alt-formats/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alt-formats/gradlew.bat -------------------------------------------------------------------------------- /software/plugins/alt-formats/installerSrc/uiEntry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alt-formats/installerSrc/uiEntry.json -------------------------------------------------------------------------------- /software/plugins/alt-formats/lombok.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alt-formats/lombok.config -------------------------------------------------------------------------------- /software/plugins/alt-formats/makeInstallers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alt-formats/makeInstallers.sh -------------------------------------------------------------------------------- /software/plugins/alt-formats/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alt-formats/settings.gradle -------------------------------------------------------------------------------- /software/plugins/alt-formats/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alt-formats/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /software/plugins/alt-formats/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alt-formats/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /software/plugins/alt-formats/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alt-formats/src/main/resources/application.yml -------------------------------------------------------------------------------- /software/plugins/alt-formats/src/test/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/alt-formats/src/test/resources/application.yaml -------------------------------------------------------------------------------- /software/plugins/cloud-context/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/cloud-context/.idea/.gitignore -------------------------------------------------------------------------------- /software/plugins/cloud-context/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/cloud-context/readme.md -------------------------------------------------------------------------------- /software/plugins/cloud-context/snhInstallerSrc/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/cloud-context/snhInstallerSrc/properties.json -------------------------------------------------------------------------------- /software/plugins/cloud-context/src/oqm-cloud-context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/cloud-context/src/oqm-cloud-context.py -------------------------------------------------------------------------------- /software/plugins/docs/NewPluginIdeas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/docs/NewPluginIdeas.md -------------------------------------------------------------------------------- /software/plugins/docs/Plugin Integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/docs/Plugin Integration.md -------------------------------------------------------------------------------- /software/plugins/docs/README.md: -------------------------------------------------------------------------------- 1 | # Open QuarterMaster Plugins 2 | 3 | 4 | -------------------------------------------------------------------------------- /software/plugins/external-item-search/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/external-item-search/.dockerignore -------------------------------------------------------------------------------- /software/plugins/external-item-search/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/external-item-search/.gitignore -------------------------------------------------------------------------------- /software/plugins/external-item-search/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/external-item-search/.idea/.gitignore -------------------------------------------------------------------------------- /software/plugins/external-item-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/external-item-search/README.md -------------------------------------------------------------------------------- /software/plugins/external-item-search/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/external-item-search/build.gradle -------------------------------------------------------------------------------- /software/plugins/external-item-search/docs/itemSources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/external-item-search/docs/itemSources.md -------------------------------------------------------------------------------- /software/plugins/external-item-search/docs/readme.md: -------------------------------------------------------------------------------- 1 | # Docs 2 | 3 | -------------------------------------------------------------------------------- /software/plugins/external-item-search/docs/releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/external-item-search/docs/releasing.md -------------------------------------------------------------------------------- /software/plugins/external-item-search/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/external-item-search/gradle.properties -------------------------------------------------------------------------------- /software/plugins/external-item-search/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/external-item-search/gradlew -------------------------------------------------------------------------------- /software/plugins/external-item-search/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/external-item-search/gradlew.bat -------------------------------------------------------------------------------- /software/plugins/external-item-search/installerSrc/uiEntry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/external-item-search/installerSrc/uiEntry.json -------------------------------------------------------------------------------- /software/plugins/external-item-search/lombok.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/external-item-search/lombok.config -------------------------------------------------------------------------------- /software/plugins/external-item-search/makeInstallers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/external-item-search/makeInstallers.sh -------------------------------------------------------------------------------- /software/plugins/external-item-search/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/external-item-search/settings.gradle -------------------------------------------------------------------------------- /software/plugins/image-search/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/.dockerignore -------------------------------------------------------------------------------- /software/plugins/image-search/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/.gitignore -------------------------------------------------------------------------------- /software/plugins/image-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/README.md -------------------------------------------------------------------------------- /software/plugins/image-search/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/build.gradle -------------------------------------------------------------------------------- /software/plugins/image-search/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/gradle.properties -------------------------------------------------------------------------------- /software/plugins/image-search/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /software/plugins/image-search/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/gradlew -------------------------------------------------------------------------------- /software/plugins/image-search/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/gradlew.bat -------------------------------------------------------------------------------- /software/plugins/image-search/poc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/.gitignore -------------------------------------------------------------------------------- /software/plugins/image-search/poc/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/.idea/.gitignore -------------------------------------------------------------------------------- /software/plugins/image-search/poc/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/.idea/gradle.xml -------------------------------------------------------------------------------- /software/plugins/image-search/poc/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/.idea/misc.xml -------------------------------------------------------------------------------- /software/plugins/image-search/poc/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/.idea/vcs.xml -------------------------------------------------------------------------------- /software/plugins/image-search/poc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/README.md -------------------------------------------------------------------------------- /software/plugins/image-search/poc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/build.gradle -------------------------------------------------------------------------------- /software/plugins/image-search/poc/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/gradlew -------------------------------------------------------------------------------- /software/plugins/image-search/poc/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/gradlew.bat -------------------------------------------------------------------------------- /software/plugins/image-search/poc/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/settings.gradle -------------------------------------------------------------------------------- /software/plugins/image-search/poc/src/main/java/ImageData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/src/main/java/ImageData.java -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/FAIESSGRE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/FAIESSGRE.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/Pliers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/Pliers.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/Screw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/Screw.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/Screw2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/Screw2.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/Shovel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/Shovel.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/Wirestrippers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/Wirestrippers.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/banana2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/banana2.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/bin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/bin.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/bin2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/bin2.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/bolt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/bolt.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/box.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/box.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/box2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/box2.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/box3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/box3.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/cayenne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/cayenne.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/courgette.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/courgette.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/fork.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/fork.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/gloves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/gloves.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/hammer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/hammer.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/hammer_tool_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/hammer_tool_1.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/hammer_tool_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/hammer_tool_5.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/handheldrake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/handheldrake.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/hoe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/hoe.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/hose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/hose.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/hoses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/hoses.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/hoses2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/hoses2.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/knife.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/knife.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/knife2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/knife2.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/lantern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/lantern.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/lantern2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/lantern2.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/lantern3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/lantern3.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/ledduce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/ledduce.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/lightbulb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/lightbulb.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/lights.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/lights.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/manguo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/manguo.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/mustard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/mustard.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/nut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/nut.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/oregano.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/oregano.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/paintroller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/paintroller.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/paintroller2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/paintroller2.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/paprika.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/paprika.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/pepper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/pepper.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/pineappple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/pineappple.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/rake2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/rake2.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/screwdriver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/screwdriver.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/seasoning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/seasoning.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/spoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/spoon.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/tournevis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/tournevis.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/trowel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/trowel.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/vherry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/vherry.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/washer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/washer.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/watch.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/watermelon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/watermelon.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/wirecutters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/wirecutters.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/woodscrew.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/woodscrew.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/poc/testImages/wrench.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/poc/testImages/wrench.jpg -------------------------------------------------------------------------------- /software/plugins/image-search/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/settings.gradle -------------------------------------------------------------------------------- /software/plugins/image-search/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /software/plugins/image-search/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /software/plugins/image-search/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/image-search/src/main/resources/application.yml -------------------------------------------------------------------------------- /software/plugins/image-search/src/main/resources/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/plugins/makeInstallers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/makeInstallers.sh -------------------------------------------------------------------------------- /software/plugins/mapper/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/mapper/.idea/.gitignore -------------------------------------------------------------------------------- /software/plugins/miffie-llm/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/miffie-llm/.idea/.gitignore -------------------------------------------------------------------------------- /software/plugins/mss-controller/.gitignore: -------------------------------------------------------------------------------- 1 | target/ -------------------------------------------------------------------------------- /software/plugins/mss-controller/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/mss-controller/.idea/.gitignore -------------------------------------------------------------------------------- /software/plugins/mss-controller/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/mss-controller/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /software/plugins/mss-controller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/mss-controller/README.md -------------------------------------------------------------------------------- /software/plugins/mss-controller/mss-controller-plugin-devtools/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /software/plugins/mss-controller/mss-controller-plugin-devtools/deployment/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /software/plugins/mss-controller/mss-controller-plugin-devtools/integration-tests/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/plugins/mss-controller/mss-controller-plugin-devtools/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /software/plugins/mss-controller/mss-controller-plugin-devtools/runtime/src/main/resources/META-INF/beans.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/plugins/mss-controller/mss-controller-plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/mss-controller/mss-controller-plugin/.gitignore -------------------------------------------------------------------------------- /software/plugins/mss-controller/mss-controller-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/mss-controller/mss-controller-plugin/pom.xml -------------------------------------------------------------------------------- /software/plugins/mss-controller/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/mss-controller/mvnw -------------------------------------------------------------------------------- /software/plugins/mss-controller/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/mss-controller/mvnw.cmd -------------------------------------------------------------------------------- /software/plugins/mss-controller/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/mss-controller/pom.xml -------------------------------------------------------------------------------- /software/plugins/mss-controller/snhInstallerSrc/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/mss-controller/snhInstallerSrc/properties.json -------------------------------------------------------------------------------- /software/plugins/open-qm-plugin-demo/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/open-qm-plugin-demo/.dockerignore -------------------------------------------------------------------------------- /software/plugins/open-qm-plugin-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/open-qm-plugin-demo/.gitignore -------------------------------------------------------------------------------- /software/plugins/open-qm-plugin-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/open-qm-plugin-demo/README.md -------------------------------------------------------------------------------- /software/plugins/open-qm-plugin-demo/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/open-qm-plugin-demo/build.gradle -------------------------------------------------------------------------------- /software/plugins/open-qm-plugin-demo/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/open-qm-plugin-demo/gradle.properties -------------------------------------------------------------------------------- /software/plugins/open-qm-plugin-demo/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/open-qm-plugin-demo/gradlew -------------------------------------------------------------------------------- /software/plugins/open-qm-plugin-demo/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/open-qm-plugin-demo/gradlew.bat -------------------------------------------------------------------------------- /software/plugins/open-qm-plugin-demo/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/open-qm-plugin-demo/settings.gradle -------------------------------------------------------------------------------- /software/plugins/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/software/plugins/properties.json -------------------------------------------------------------------------------- /utilities/.gitignore: -------------------------------------------------------------------------------- 1 | temp.json 2 | 3 | -------------------------------------------------------------------------------- /utilities/tests/instanceTests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/utilities/tests/instanceTests/.gitignore -------------------------------------------------------------------------------- /utilities/tests/instanceTests/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/utilities/tests/instanceTests/.idea/.gitignore -------------------------------------------------------------------------------- /utilities/tests/instanceTests/docs/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/tests/instanceTests/docs/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/utilities/tests/instanceTests/docs/tags.md -------------------------------------------------------------------------------- /utilities/tests/instanceTests/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/utilities/tests/instanceTests/mvnw -------------------------------------------------------------------------------- /utilities/tests/instanceTests/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/utilities/tests/instanceTests/mvnw.cmd -------------------------------------------------------------------------------- /utilities/tests/instanceTests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/utilities/tests/instanceTests/pom.xml -------------------------------------------------------------------------------- /utilities/tests/instanceTests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/utilities/tests/instanceTests/readme.md -------------------------------------------------------------------------------- /utilities/tests/instanceTests/src/test/resources/cucumber.properties: -------------------------------------------------------------------------------- 1 | cucumber.publish.quiet=true -------------------------------------------------------------------------------- /utilities/tests/instanceTests/src/test/resources/log4j2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/utilities/tests/instanceTests/src/test/resources/log4j2.yaml -------------------------------------------------------------------------------- /utilities/update-helm-repository.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/utilities/update-helm-repository.sh -------------------------------------------------------------------------------- /utilities/update-main-repositories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/utilities/update-main-repositories.sh -------------------------------------------------------------------------------- /utilities/update-test-repositories.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Epic-Breakfast-Productions/OpenQuarterMaster/HEAD/utilities/update-test-repositories.sh --------------------------------------------------------------------------------