├── .circleci └── config.yml ├── .dockerignore ├── .editorconfig ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── backend ├── .dockerignore ├── .env ├── .gitignore ├── Dockerfile ├── declarations.d.ts ├── package-lock.json ├── package.json ├── src │ ├── game │ │ ├── commands.ts │ │ ├── model.ts │ │ ├── routes.ts │ │ └── views │ │ │ └── results.html │ ├── index.ts │ ├── middleware │ │ └── monitoring.ts │ └── services │ │ └── translate.service.ts └── tsconfig.json ├── frontend ├── .dockerignore ├── .gitignore ├── README.md ├── angular.json ├── bin │ ├── build-lang-files.ts │ ├── register-icons.ts │ └── tsconfig.json ├── build │ ├── docker │ │ ├── Dockerfile │ │ └── nginx.conf │ └── version.ts ├── cypress.json ├── cypress │ ├── fixtures │ │ └── example.json │ ├── integration │ │ └── e2e │ │ │ └── persistence.spec.ts │ ├── plugins │ │ └── index.js │ ├── support │ │ ├── commands.ts │ │ └── index.js │ └── tsconfig.json ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── proxy.conf.json ├── src │ ├── app │ │ ├── app-routing.module.ts │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── directives │ │ │ └── autofocus.directive.ts │ │ ├── game │ │ │ ├── components │ │ │ │ ├── events-layout │ │ │ │ │ ├── events-layout.component.html │ │ │ │ │ ├── events-layout.component.scss │ │ │ │ │ ├── events-layout.component.spec.ts │ │ │ │ │ └── events-layout.component.ts │ │ │ │ ├── graphs │ │ │ │ │ ├── graphs.component.html │ │ │ │ │ ├── graphs.component.scss │ │ │ │ │ ├── graphs.component.spec.ts │ │ │ │ │ ├── graphs.component.ts │ │ │ │ │ ├── line-graph │ │ │ │ │ │ ├── line-graph.component.html │ │ │ │ │ │ ├── line-graph.component.scss │ │ │ │ │ │ ├── line-graph.component.spec.ts │ │ │ │ │ │ ├── line-graph.component.ts │ │ │ │ │ │ └── pan.ts │ │ │ │ │ └── scatter-graph │ │ │ │ │ │ ├── scatter-graph.component.html │ │ │ │ │ │ ├── scatter-graph.component.scss │ │ │ │ │ │ ├── scatter-graph.component.spec.ts │ │ │ │ │ │ └── scatter-graph.component.ts │ │ │ │ ├── mitigations-control │ │ │ │ │ ├── controls │ │ │ │ │ │ ├── mitigation-bool.component.scss │ │ │ │ │ │ ├── mitigation-bool.component.ts │ │ │ │ │ │ ├── mitigation-scale.component.ts │ │ │ │ │ │ ├── mitigation-slide.component.ts │ │ │ │ │ │ └── mitigation-toggle.component.ts │ │ │ │ │ ├── mitigation-config.directive.ts │ │ │ │ │ ├── mitigations-control.component.html │ │ │ │ │ ├── mitigations-control.component.scss │ │ │ │ │ ├── mitigations-control.component.spec.ts │ │ │ │ │ └── mitigations-control.component.ts │ │ │ │ ├── simulation-control │ │ │ │ │ ├── simulation-control.component.html │ │ │ │ │ ├── simulation-control.component.scss │ │ │ │ │ ├── simulation-control.component.spec.ts │ │ │ │ │ └── simulation-control.component.ts │ │ │ │ ├── speed-control │ │ │ │ │ ├── speed-control.component.html │ │ │ │ │ ├── speed-control.component.scss │ │ │ │ │ ├── speed-control.component.spec.ts │ │ │ │ │ └── speed-control.component.ts │ │ │ │ └── status-display │ │ │ │ │ ├── status-display.component.html │ │ │ │ │ ├── status-display.component.scss │ │ │ │ │ ├── status-display.component.spec.ts │ │ │ │ │ └── status-display.component.ts │ │ │ ├── game-material.module.ts │ │ │ ├── game.module.ts │ │ │ ├── game.service.ts │ │ │ └── pages │ │ │ │ ├── about │ │ │ │ ├── about.component.html │ │ │ │ ├── about.component.scss │ │ │ │ ├── about.component.spec.ts │ │ │ │ └── about.component.ts │ │ │ │ ├── credits │ │ │ │ ├── credits.component.html │ │ │ │ ├── credits.component.scss │ │ │ │ ├── credits.component.spec.ts │ │ │ │ └── credits.component.ts │ │ │ │ ├── game │ │ │ │ ├── can-activate-game.ts │ │ │ │ ├── can-deactivate-game.ts │ │ │ │ ├── data │ │ │ │ │ ├── cz-real-smooth.json │ │ │ │ │ ├── data-lost-stability.json │ │ │ │ │ ├── data-too-long.json │ │ │ │ │ └── data-valid-legacy.json │ │ │ │ ├── game.component.html │ │ │ │ ├── game.component.scss │ │ │ │ ├── game.component.spec.ts │ │ │ │ ├── game.component.ts │ │ │ │ └── game.spec.ts │ │ │ │ ├── intro │ │ │ │ ├── intro.component.html │ │ │ │ ├── intro.component.scss │ │ │ │ ├── intro.component.spec.ts │ │ │ │ └── intro.component.ts │ │ │ │ └── outro │ │ │ │ ├── outro.component.html │ │ │ │ ├── outro.component.scss │ │ │ │ ├── outro.component.spec.ts │ │ │ │ ├── outro.component.ts │ │ │ │ └── outro.service.ts │ │ ├── services │ │ │ ├── config.service.ts │ │ │ ├── debug-mode.service.ts │ │ │ ├── event-list.ts │ │ │ ├── events.ts │ │ │ ├── formatting.service.ts │ │ │ ├── game.ts │ │ │ ├── i18n.service.ts │ │ │ ├── meta.service.ts │ │ │ ├── mitigations.service.spec.ts │ │ │ ├── mitigations.service.ts │ │ │ ├── mitigations.ts │ │ │ ├── randomize.ts │ │ │ ├── router-utils.service.ts │ │ │ ├── scenario.ts │ │ │ ├── simulation.ts │ │ │ ├── social-network-share.service.ts │ │ │ ├── translate-loader.ts │ │ │ ├── utils.ts │ │ │ └── validate.ts │ │ ├── shared │ │ │ ├── button │ │ │ │ ├── button.component.html │ │ │ │ ├── button.component.scss │ │ │ │ ├── button.component.spec.ts │ │ │ │ └── button.component.ts │ │ │ ├── flex │ │ │ │ ├── col.component.ts │ │ │ │ ├── flex-item.directive.ts │ │ │ │ ├── row-group.component.ts │ │ │ │ ├── row.component.html │ │ │ │ ├── row.component.scss │ │ │ │ ├── row.component.spec.ts │ │ │ │ └── row.component.ts │ │ │ ├── footer │ │ │ │ ├── footer.component.html │ │ │ │ ├── footer.component.scss │ │ │ │ ├── footer.component.spec.ts │ │ │ │ └── footer.component.ts │ │ │ ├── format-number.pipe.ts │ │ │ ├── format-percentage.pipe.ts │ │ │ ├── header │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ ├── header.component.spec.ts │ │ │ │ └── header.component.ts │ │ │ ├── help-tooltip │ │ │ │ ├── help-tooltip.component.html │ │ │ │ ├── help-tooltip.component.scss │ │ │ │ ├── help-tooltip.component.spec.ts │ │ │ │ └── help-tooltip.component.ts │ │ │ ├── icon │ │ │ │ ├── icon.component.html │ │ │ │ ├── icon.component.scss │ │ │ │ ├── icon.component.spec.ts │ │ │ │ ├── icon.component.ts │ │ │ │ ├── icon.registry.ts │ │ │ │ └── icons.ts │ │ │ ├── language-picker │ │ │ │ ├── language-picker.component.html │ │ │ │ ├── language-picker.component.scss │ │ │ │ ├── language-picker.component.spec.ts │ │ │ │ └── language-picker.component.ts │ │ │ ├── limit.pipe.ts │ │ │ ├── navigate-back │ │ │ │ └── navigate-back.directive.ts │ │ │ ├── shared-material.module.ts │ │ │ ├── shared.module.ts │ │ │ └── testing │ │ │ │ ├── stubs │ │ │ │ └── game.service.stub.ts │ │ │ │ └── testing.module.ts │ │ └── utils │ │ │ ├── animations.ts │ │ │ └── ng.model.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── favicon │ │ │ ├── android-icon-controller-144x144.png │ │ │ ├── android-icon-controller-192x192.png │ │ │ ├── android-icon-virus-144x144.png │ │ │ ├── android-icon-virus-192x192.png │ │ │ ├── apple-icon-controller-180x180.png │ │ │ ├── apple-icon-virus-180x180.png │ │ │ ├── favicon-controller-16x16.png │ │ │ ├── favicon-controller-32x32.png │ │ │ ├── favicon-controller-96x96.png │ │ │ ├── favicon-controller.svg │ │ │ ├── favicon-virus-16x16.png │ │ │ ├── favicon-virus-32x32.png │ │ │ ├── favicon-virus-96x96.png │ │ │ ├── favicon-virus.svg │ │ │ ├── favicon.ico │ │ │ ├── site-controller.webmanifest │ │ │ └── site-virus.webmanifest │ │ ├── i18n │ │ │ ├── events │ │ │ │ ├── cs.json │ │ │ │ └── en.json │ │ │ ├── extract │ │ │ │ ├── cs.json │ │ │ │ └── en.json │ │ │ ├── images │ │ │ │ ├── SEIR.cs.svg │ │ │ │ ├── SEIR.en.svg │ │ │ │ ├── SIR.cs.svg │ │ │ │ ├── SIR.en.svg │ │ │ │ ├── model.cs.svg │ │ │ │ └── model.en.svg │ │ │ └── pages │ │ │ │ ├── about.cs.html │ │ │ │ ├── about.en.html │ │ │ │ ├── graphs.help.cs.html │ │ │ │ ├── graphs.help.en.html │ │ │ │ ├── intro.cs.html │ │ │ │ ├── intro.en.html │ │ │ │ ├── mitigations-control.help.cs.html │ │ │ │ ├── mitigations-control.help.en.html │ │ │ │ ├── outro.cs.html │ │ │ │ └── outro.en.html │ │ ├── icons │ │ │ ├── close.svg │ │ │ ├── cross.svg │ │ │ ├── facebook.svg │ │ │ ├── fast.svg │ │ │ ├── hospital.svg │ │ │ ├── linkedin.svg │ │ │ ├── money.svg │ │ │ ├── oneSpeed.svg │ │ │ ├── panEnd.svg │ │ │ ├── panLeft.svg │ │ │ ├── panRight.svg │ │ │ ├── pause.svg │ │ │ ├── play.svg │ │ │ ├── question.svg │ │ │ ├── skull.svg │ │ │ ├── slow.svg │ │ │ ├── stability.svg │ │ │ ├── threeSpeed.svg │ │ │ ├── twitter.svg │ │ │ ├── twoSpeed.svg │ │ │ ├── vaccine.svg │ │ │ └── virus.svg │ │ └── images │ │ │ ├── logos │ │ │ ├── fjfi.png │ │ │ ├── logo.en.png │ │ │ ├── logo.png │ │ │ ├── matematika_pro_zivot.png │ │ │ └── swehq.png │ │ │ ├── og.en.png │ │ │ └── og.png │ ├── definitions.scss │ ├── environments │ │ ├── defaults.ts │ │ ├── environment.dev.ts │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── material-definitions.scss │ ├── material-overwrite.scss │ ├── material-styles.scss │ ├── material-theme.scss │ ├── polyfills.ts │ ├── styles.scss │ └── test.ts ├── ts-node.config.json ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json ├── tslint.json └── webpack.config.js └── legacy ├── Behem_hry.jpg ├── Chart.js-2.9.4 └── Chart.js-2.9.4 │ ├── .codeclimate.yml │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.yml │ ├── .github │ ├── ISSUE_TEMPLATE.md │ ├── ISSUE_TEMPLATE │ │ ├── BUG.md │ │ ├── DOCS.md │ │ ├── FEATURE.md │ │ └── SUPPORT.md │ └── PULL_REQUEST_TEMPLATE.md │ ├── .gitignore │ ├── .htmllintrc │ ├── .travis.yml │ ├── LICENSE.md │ ├── MAINTAINING.md │ ├── README.md │ ├── book.json │ ├── composer.json │ ├── docs │ ├── README.md │ ├── SUMMARY.md │ ├── axes │ │ ├── README.md │ │ ├── cartesian │ │ │ ├── README.md │ │ │ ├── category.md │ │ │ ├── linear.md │ │ │ ├── logarithmic.md │ │ │ └── time.md │ │ ├── labelling.md │ │ ├── radial │ │ │ ├── README.md │ │ │ └── linear.md │ │ └── styling.md │ ├── charts │ │ ├── README.md │ │ ├── area.md │ │ ├── bar.md │ │ ├── bubble.md │ │ ├── doughnut.md │ │ ├── line.md │ │ ├── mixed.md │ │ ├── polar.md │ │ ├── radar.md │ │ └── scatter.md │ ├── configuration │ │ ├── README.md │ │ ├── animations.md │ │ ├── elements.md │ │ ├── layout.md │ │ ├── legend.md │ │ ├── title.md │ │ └── tooltip.md │ ├── developers │ │ ├── README.md │ │ ├── api.md │ │ ├── axes.md │ │ ├── charts.md │ │ ├── contributing.md │ │ ├── plugins.md │ │ └── updates.md │ ├── general │ │ ├── README.md │ │ ├── accessibility.md │ │ ├── colors.md │ │ ├── device-pixel-ratio.md │ │ ├── fonts.md │ │ ├── interactions │ │ │ ├── README.md │ │ │ ├── events.md │ │ │ └── modes.md │ │ ├── options.md │ │ ├── performance.md │ │ └── responsive.md │ ├── getting-started │ │ ├── README.md │ │ ├── installation.md │ │ ├── integration.md │ │ └── usage.md │ ├── notes │ │ ├── README.md │ │ ├── comparison.md │ │ ├── extensions.md │ │ └── license.md │ └── style.css │ ├── gulpfile.js │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ ├── rollup.plugins.js │ ├── samples │ ├── .eslintrc.yml │ ├── advanced │ │ ├── content-security-policy.css │ │ ├── content-security-policy.html │ │ ├── content-security-policy.js │ │ └── progress-bar.html │ ├── charts │ │ ├── area │ │ │ ├── analyser.js │ │ │ ├── line-boundaries.html │ │ │ ├── line-datasets.html │ │ │ ├── line-stacked.html │ │ │ └── radar.html │ │ ├── bar │ │ │ ├── horizontal.html │ │ │ ├── multi-axis.html │ │ │ ├── stacked-group.html │ │ │ ├── stacked.html │ │ │ └── vertical.html │ │ ├── bubble.html │ │ ├── combo-bar-line.html │ │ ├── doughnut.html │ │ ├── line │ │ │ ├── basic.html │ │ │ ├── interpolation-modes.html │ │ │ ├── line-styles.html │ │ │ ├── multi-axis.html │ │ │ ├── point-sizes.html │ │ │ ├── point-styles.html │ │ │ ├── skip-points.html │ │ │ └── stepped.html │ │ ├── pie.html │ │ ├── polar-area.html │ │ ├── radar-skip-points.html │ │ ├── radar.html │ │ └── scatter │ │ │ ├── basic.html │ │ │ └── multi-axis.html │ ├── favicon.ico │ ├── index.html │ ├── legend │ │ ├── callbacks.html │ │ ├── point-style.html │ │ └── positioning.html │ ├── logo.svg │ ├── samples.js │ ├── scales │ │ ├── filtering-labels.html │ │ ├── gridlines-display.html │ │ ├── gridlines-style.html │ │ ├── linear │ │ │ ├── min-max-suggested.html │ │ │ ├── min-max.html │ │ │ └── step-size.html │ │ ├── logarithmic │ │ │ ├── line.html │ │ │ └── scatter.html │ │ ├── multiline-labels.html │ │ ├── non-numeric-y.html │ │ ├── time │ │ │ ├── combo.html │ │ │ ├── financial.html │ │ │ ├── line-point-data.html │ │ │ └── line.html │ │ └── toggle-scale-type.html │ ├── scriptable │ │ ├── bar.html │ │ ├── bubble.html │ │ ├── line.html │ │ ├── pie.html │ │ ├── polar.html │ │ └── radar.html │ ├── style.css │ ├── tooltips │ │ ├── border.html │ │ ├── callbacks.html │ │ ├── custom-line.html │ │ ├── custom-pie.html │ │ ├── custom-points.html │ │ ├── interactions.html │ │ └── positioning.html │ └── utils.js │ ├── scripts │ ├── deploy.sh │ └── release.sh │ ├── src │ ├── adapters │ │ ├── adapter.moment.js │ │ └── index.js │ ├── controllers │ │ ├── controller.bar.js │ │ ├── controller.bubble.js │ │ ├── controller.doughnut.js │ │ ├── controller.horizontalBar.js │ │ ├── controller.line.js │ │ ├── controller.pie.js │ │ ├── controller.polarArea.js │ │ ├── controller.radar.js │ │ ├── controller.scatter.js │ │ └── index.js │ ├── core │ │ ├── core.adapters.js │ │ ├── core.animation.js │ │ ├── core.animations.js │ │ ├── core.controller.js │ │ ├── core.datasetController.js │ │ ├── core.defaults.js │ │ ├── core.element.js │ │ ├── core.helpers.js │ │ ├── core.interaction.js │ │ ├── core.layouts.js │ │ ├── core.plugins.js │ │ ├── core.scale.js │ │ ├── core.scaleService.js │ │ ├── core.ticks.js │ │ └── core.tooltip.js │ ├── elements │ │ ├── element.arc.js │ │ ├── element.line.js │ │ ├── element.point.js │ │ ├── element.rectangle.js │ │ └── index.js │ ├── helpers │ │ ├── helpers.canvas.js │ │ ├── helpers.core.js │ │ ├── helpers.easing.js │ │ ├── helpers.math.js │ │ ├── helpers.options.js │ │ ├── helpers.rtl.js │ │ └── index.js │ ├── index.js │ ├── platforms │ │ ├── platform.basic.js │ │ ├── platform.dom.css │ │ ├── platform.dom.js │ │ └── platform.js │ ├── plugins │ │ ├── index.js │ │ ├── plugin.filler.js │ │ ├── plugin.legend.js │ │ └── plugin.title.js │ └── scales │ │ ├── index.js │ │ ├── scale.category.js │ │ ├── scale.linear.js │ │ ├── scale.linearbase.js │ │ ├── scale.logarithmic.js │ │ ├── scale.radialLinear.js │ │ └── scale.time.js │ └── test │ ├── .eslintrc.yml │ ├── context.js │ ├── fixture.js │ ├── fixtures │ ├── controller.bar │ │ ├── backgroundColor │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── bar-thickness-absolute.json │ │ ├── bar-thickness-absolute.png │ │ ├── bar-thickness-flex-offset.json │ │ ├── bar-thickness-flex-offset.png │ │ ├── bar-thickness-flex-single-reverse.json │ │ ├── bar-thickness-flex-single-reverse.png │ │ ├── bar-thickness-flex-single.json │ │ ├── bar-thickness-flex-single.png │ │ ├── bar-thickness-flex.json │ │ ├── bar-thickness-flex.png │ │ ├── bar-thickness-max.json │ │ ├── bar-thickness-max.png │ │ ├── bar-thickness-min-interval.json │ │ ├── bar-thickness-min-interval.png │ │ ├── bar-thickness-multiple.json │ │ ├── bar-thickness-multiple.png │ │ ├── bar-thickness-no-overlap.json │ │ ├── bar-thickness-no-overlap.png │ │ ├── bar-thickness-offset.json │ │ ├── bar-thickness-offset.png │ │ ├── bar-thickness-per-dataset-stacked.json │ │ ├── bar-thickness-per-dataset-stacked.png │ │ ├── bar-thickness-per-dataset.json │ │ ├── bar-thickness-per-dataset.png │ │ ├── bar-thickness-reverse.json │ │ ├── bar-thickness-reverse.png │ │ ├── bar-thickness-single-xy.json │ │ ├── bar-thickness-single-xy.png │ │ ├── bar-thickness-single.json │ │ ├── bar-thickness-single.png │ │ ├── bar-thickness-stacked.json │ │ ├── bar-thickness-stacked.png │ │ ├── borderColor │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderSkipped │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderWidth │ │ │ ├── indexable-object.js │ │ │ ├── indexable-object.png │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── negative.js │ │ │ ├── negative.png │ │ │ ├── object.js │ │ │ ├── object.png │ │ │ ├── scriptable-object.js │ │ │ ├── scriptable-object.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── chart-area-clip.js │ │ ├── chart-area-clip.png │ │ ├── floatBar │ │ │ ├── float-bar-horizontal.json │ │ │ ├── float-bar-horizontal.png │ │ │ ├── float-bar-stacked-horizontal.json │ │ │ ├── float-bar-stacked-horizontal.png │ │ │ ├── float-bar-stacked.json │ │ │ ├── float-bar-stacked.png │ │ │ ├── float-bar.json │ │ │ └── float-bar.png │ │ ├── horizontal-borders.js │ │ ├── horizontal-borders.png │ │ └── stacking │ │ │ ├── order-default.json │ │ │ ├── order-default.png │ │ │ ├── order-specified.json │ │ │ └── order-specified.png │ ├── controller.bubble │ │ ├── point-style.json │ │ ├── point-style.png │ │ ├── radius-scriptable.js │ │ └── radius-scriptable.png │ ├── controller.doughnut │ │ ├── backgroundColor │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderAlign │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderColor │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderWidth │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── doughnut-border-align-center.json │ │ ├── doughnut-border-align-center.png │ │ ├── doughnut-border-align-inner.json │ │ ├── doughnut-border-align-inner.png │ │ ├── doughnut-circumference-over-2pi.json │ │ ├── doughnut-circumference-over-2pi.png │ │ ├── doughnut-circumference.json │ │ ├── doughnut-circumference.png │ │ ├── doughnut-weight.json │ │ ├── doughnut-weight.png │ │ ├── pie-border-align-center.json │ │ ├── pie-border-align-center.png │ │ ├── pie-border-align-inner.json │ │ ├── pie-border-align-inner.png │ │ ├── pie-circumference.json │ │ ├── pie-circumference.png │ │ ├── pie-weight.json │ │ └── pie-weight.png │ ├── controller.line │ │ ├── backgroundColor │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderCapStyle │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderColor │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderDash │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderDashOffset │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderJoinStyle │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderWidth │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── clip │ │ │ ├── default-x-max.json │ │ │ ├── default-x-max.png │ │ │ ├── default-x-min.json │ │ │ ├── default-x-min.png │ │ │ ├── default-x.json │ │ │ ├── default-x.png │ │ │ ├── default-y-max.json │ │ │ ├── default-y-max.png │ │ │ ├── default-y-min.json │ │ │ ├── default-y-min.png │ │ │ ├── default-y.json │ │ │ ├── default-y.png │ │ │ ├── specified.json │ │ │ └── specified.png │ │ ├── cubicInterpolationMode │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── fill │ │ │ ├── order-default.js │ │ │ ├── order-default.png │ │ │ ├── order.js │ │ │ ├── order.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── non-numeric-y.json │ │ ├── non-numeric-y.png │ │ ├── point-style.json │ │ ├── point-style.png │ │ ├── pointBackgroundColor │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── pointBorderColor │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── pointBorderWidth │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── pointStyle │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── radius │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── rotation │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ └── stacking │ │ │ ├── order-default.js │ │ │ ├── order-default.png │ │ │ ├── order-specified.js │ │ │ └── order-specified.png │ ├── controller.polarArea │ │ ├── angle-array.json │ │ ├── angle-array.png │ │ ├── angle-undefined.json │ │ ├── angle-undefined.png │ │ ├── backgroundColor │ │ │ ├── indexable-dataset.js │ │ │ ├── indexable-dataset.png │ │ │ ├── indexable-element-options.js │ │ │ ├── indexable-element-options.png │ │ │ ├── scriptable-dataset.js │ │ │ ├── scriptable-dataset.png │ │ │ ├── scriptable-element-options.js │ │ │ ├── scriptable-element-options.png │ │ │ ├── value-dataset.js │ │ │ ├── value-dataset.png │ │ │ ├── value-element-options.js │ │ │ └── value-element-options.png │ │ ├── border-align-center.json │ │ ├── border-align-center.png │ │ ├── border-align-inner.json │ │ ├── border-align-inner.png │ │ ├── borderAlign │ │ │ ├── indexable-dataset.js │ │ │ ├── indexable-dataset.png │ │ │ ├── indexable-element-options.js │ │ │ ├── indexable-element-options.png │ │ │ ├── scriptable-dataset.js │ │ │ ├── scriptable-dataset.png │ │ │ ├── scriptable-element-options.js │ │ │ ├── scriptable-element-options.png │ │ │ ├── value-dataset.js │ │ │ ├── value-dataset.png │ │ │ ├── value-element-options.js │ │ │ └── value-element-options.png │ │ ├── borderColor │ │ │ ├── indexable-dataset.js │ │ │ ├── indexable-dataset.png │ │ │ ├── indexable-element-options.js │ │ │ ├── indexable-element-options.png │ │ │ ├── scriptable-dataset.js │ │ │ ├── scriptable-dataset.png │ │ │ ├── scriptable-element-options.js │ │ │ ├── scriptable-element-options.png │ │ │ ├── value-dataset.js │ │ │ ├── value-dataset.png │ │ │ ├── value-element-options.js │ │ │ └── value-element-options.png │ │ └── borderWidth │ │ │ ├── indexable-dataset.js │ │ │ ├── indexable-dataset.png │ │ │ ├── indexable-element-options.js │ │ │ ├── indexable-element-options.png │ │ │ ├── scriptable-dataset.js │ │ │ ├── scriptable-dataset.png │ │ │ ├── scriptable-element-options.js │ │ │ ├── scriptable-element-options.png │ │ │ ├── value-dataset.js │ │ │ ├── value-dataset.png │ │ │ ├── value-element-options.js │ │ │ └── value-element-options.png │ ├── controller.radar │ │ ├── backgroundColor │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderCapStyle │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderColor │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderDash │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderDashOffset │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderJoinStyle │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── borderWidth │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── fill │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── point-style.json │ │ ├── point-style.png │ │ ├── pointBackgroundColor │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── pointBorderColor │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── pointBorderWidth │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── pointStyle │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ ├── radius │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ │ └── rotation │ │ │ ├── indexable.js │ │ │ ├── indexable.png │ │ │ ├── scriptable.js │ │ │ ├── scriptable.png │ │ │ ├── value.js │ │ │ └── value.png │ ├── core.scale │ │ ├── label-offset-vertical-axes.json │ │ ├── label-offset-vertical-axes.png │ │ ├── tick-drawing.json │ │ └── tick-drawing.png │ ├── core.tooltip │ │ ├── opacity.js │ │ └── opacity.png │ ├── element.point │ │ ├── point-style-circle.json │ │ ├── point-style-circle.png │ │ ├── point-style-cross-rot.json │ │ ├── point-style-cross-rot.png │ │ ├── point-style-cross.json │ │ ├── point-style-cross.png │ │ ├── point-style-dash.json │ │ ├── point-style-dash.png │ │ ├── point-style-image.js │ │ ├── point-style-image.png │ │ ├── point-style-line.json │ │ ├── point-style-line.png │ │ ├── point-style-rect-rot.json │ │ ├── point-style-rect-rot.png │ │ ├── point-style-rect-rounded.json │ │ ├── point-style-rect-rounded.png │ │ ├── point-style-rect.json │ │ ├── point-style-rect.png │ │ ├── point-style-star.json │ │ ├── point-style-star.png │ │ ├── point-style-triangle.json │ │ ├── point-style-triangle.png │ │ ├── rotation.js │ │ └── rotation.png │ ├── helpers.canvas │ │ ├── rounded-rect.js │ │ └── rounded-rect.png │ ├── plugin.filler │ │ ├── fill-line-boundary-end-span.json │ │ ├── fill-line-boundary-end-span.png │ │ ├── fill-line-boundary-end.json │ │ ├── fill-line-boundary-end.png │ │ ├── fill-line-boundary-origin-span.json │ │ ├── fill-line-boundary-origin-span.png │ │ ├── fill-line-boundary-origin-spline-span.json │ │ ├── fill-line-boundary-origin-spline-span.png │ │ ├── fill-line-boundary-origin-spline.json │ │ ├── fill-line-boundary-origin-spline.png │ │ ├── fill-line-boundary-origin-stepped-span.json │ │ ├── fill-line-boundary-origin-stepped-span.png │ │ ├── fill-line-boundary-origin-stepped.json │ │ ├── fill-line-boundary-origin-stepped.png │ │ ├── fill-line-boundary-origin.json │ │ ├── fill-line-boundary-origin.png │ │ ├── fill-line-boundary-start-span.json │ │ ├── fill-line-boundary-start-span.png │ │ ├── fill-line-boundary-start.json │ │ ├── fill-line-boundary-start.png │ │ ├── fill-line-dataset-border.json │ │ ├── fill-line-dataset-border.png │ │ ├── fill-line-dataset-span.json │ │ ├── fill-line-dataset-span.png │ │ ├── fill-line-dataset-spline-span.json │ │ ├── fill-line-dataset-spline-span.png │ │ ├── fill-line-dataset-spline.json │ │ ├── fill-line-dataset-spline.png │ │ ├── fill-line-dataset.json │ │ ├── fill-line-dataset.png │ │ ├── fill-radar-boundary-end-circular.json │ │ ├── fill-radar-boundary-end-circular.png │ │ ├── fill-radar-boundary-end-span.json │ │ ├── fill-radar-boundary-end-span.png │ │ ├── fill-radar-boundary-end.json │ │ ├── fill-radar-boundary-end.png │ │ ├── fill-radar-boundary-origin-circular.json │ │ ├── fill-radar-boundary-origin-circular.png │ │ ├── fill-radar-boundary-origin-span.json │ │ ├── fill-radar-boundary-origin-span.png │ │ ├── fill-radar-boundary-origin-spline-span.json │ │ ├── fill-radar-boundary-origin-spline-span.png │ │ ├── fill-radar-boundary-origin-spline.json │ │ ├── fill-radar-boundary-origin-spline.png │ │ ├── fill-radar-boundary-origin.json │ │ ├── fill-radar-boundary-origin.png │ │ ├── fill-radar-boundary-start-circular.json │ │ ├── fill-radar-boundary-start-circular.png │ │ ├── fill-radar-boundary-start-span.json │ │ ├── fill-radar-boundary-start-span.png │ │ ├── fill-radar-boundary-start.json │ │ ├── fill-radar-boundary-start.png │ │ ├── fill-radar-dataset-border.json │ │ ├── fill-radar-dataset-border.png │ │ ├── fill-radar-dataset-span.json │ │ ├── fill-radar-dataset-span.png │ │ ├── fill-radar-dataset-spline.json │ │ ├── fill-radar-dataset-spline.png │ │ ├── fill-radar-dataset.json │ │ └── fill-radar-dataset.png │ ├── plugin.legend │ │ ├── legend-doughnut-bottom-center-mulitiline.json │ │ ├── legend-doughnut-bottom-center-mulitiline.png │ │ ├── legend-doughnut-bottom-center-single.json │ │ ├── legend-doughnut-bottom-center-single.png │ │ ├── legend-doughnut-bottom-end-mulitiline.json │ │ ├── legend-doughnut-bottom-end-mulitiline.png │ │ ├── legend-doughnut-bottom-start-mulitiline.json │ │ ├── legend-doughnut-bottom-start-mulitiline.png │ │ ├── legend-doughnut-left-center-mulitiline.json │ │ ├── legend-doughnut-left-center-mulitiline.png │ │ ├── legend-doughnut-left-center-single.json │ │ ├── legend-doughnut-left-center-single.png │ │ ├── legend-doughnut-left-default-center.json │ │ ├── legend-doughnut-left-default-center.png │ │ ├── legend-doughnut-left-end-mulitiline.json │ │ ├── legend-doughnut-left-end-mulitiline.png │ │ ├── legend-doughnut-left-start-mulitiline.json │ │ ├── legend-doughnut-left-start-mulitiline.png │ │ ├── legend-doughnut-right-center-mulitiline.json │ │ ├── legend-doughnut-right-center-mulitiline.png │ │ ├── legend-doughnut-right-center-single.json │ │ ├── legend-doughnut-right-center-single.png │ │ ├── legend-doughnut-right-default-center.json │ │ ├── legend-doughnut-right-default-center.png │ │ ├── legend-doughnut-right-end-mulitiline.json │ │ ├── legend-doughnut-right-end-mulitiline.png │ │ ├── legend-doughnut-right-start-mulitiline.json │ │ ├── legend-doughnut-right-start-mulitiline.png │ │ ├── legend-doughnut-top-center-mulitiline.json │ │ ├── legend-doughnut-top-center-mulitiline.png │ │ ├── legend-doughnut-top-center-single.json │ │ ├── legend-doughnut-top-center-single.png │ │ ├── legend-doughnut-top-end-mulitiline.json │ │ ├── legend-doughnut-top-end-mulitiline.png │ │ ├── legend-doughnut-top-start-mulitiline.json │ │ └── legend-doughnut-top-start-mulitiline.png │ └── scale.radialLinear │ │ ├── anglelines-disable.json │ │ ├── anglelines-disable.png │ │ ├── border-dash.json │ │ ├── border-dash.png │ │ ├── circular-border-dash.json │ │ ├── circular-border-dash.png │ │ ├── gridlines-disable.json │ │ ├── gridlines-disable.png │ │ ├── gridlines-no-z.json │ │ ├── gridlines-no-z.png │ │ ├── gridlines-z.json │ │ ├── gridlines-z.png │ │ ├── indexable-gridlines.json │ │ └── indexable-gridlines.png │ ├── index.js │ ├── matchers.js │ ├── specs │ ├── controller.bar.tests.js │ ├── controller.bubble.tests.js │ ├── controller.doughnut.tests.js │ ├── controller.line.tests.js │ ├── controller.polarArea.tests.js │ ├── controller.radar.tests.js │ ├── controller.scatter.test.js │ ├── core.controller.tests.js │ ├── core.datasetController.tests.js │ ├── core.element.tests.js │ ├── core.helpers.tests.js │ ├── core.interaction.tests.js │ ├── core.layouts.tests.js │ ├── core.plugin.tests.js │ ├── core.scale.tests.js │ ├── core.scaleService.tests.js │ ├── core.ticks.tests.js │ ├── core.tooltip.tests.js │ ├── element.arc.tests.js │ ├── element.line.tests.js │ ├── element.point.tests.js │ ├── element.rectangle.tests.js │ ├── global.defaults.tests.js │ ├── global.deprecations.tests.js │ ├── global.namespace.tests.js │ ├── helpers.canvas.tests.js │ ├── helpers.core.tests.js │ ├── helpers.easing.tests.js │ ├── helpers.math.tests.js │ ├── helpers.options.tests.js │ ├── platform.dom.tests.js │ ├── plugin.filler.tests.js │ ├── plugin.legend.tests.js │ ├── plugin.title.tests.js │ ├── scale.category.tests.js │ ├── scale.linear.tests.js │ ├── scale.logarithmic.tests.js │ ├── scale.radialLinear.tests.js │ └── scale.time.tests.js │ └── utils.js ├── Chart.js-dist ├── Chart.bundle.js ├── Chart.bundle.min.js ├── Chart.css ├── Chart.js ├── Chart.min.css └── Chart.min.js ├── Game ├── events.js ├── game.js ├── images │ └── newspaper.jpeg ├── index.html ├── mitigation.js ├── simulation.js ├── style.css ├── ui.js └── util.js ├── MyDownloads ├── nakaza.csv ├── nakaza.csv-metadata.json └── testy.csv ├── RealData ├── dataOperations.js ├── datum.js ├── index.html ├── index.php ├── nakaza.min.json ├── php.ini ├── script.js ├── scriptv1.js └── style.css ├── Tuning ├── get_data.sh └── tuning.js ├── Untitled.png ├── Untitled0.png ├── Zacatek_hry.jpg └── v1.zip /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/README.md -------------------------------------------------------------------------------- /backend/.dockerignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | -------------------------------------------------------------------------------- /backend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/backend/.env -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/declarations.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'influxdb-nodejs'; 2 | -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/src/game/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/backend/src/game/commands.ts -------------------------------------------------------------------------------- /backend/src/game/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/backend/src/game/model.ts -------------------------------------------------------------------------------- /backend/src/game/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/backend/src/game/routes.ts -------------------------------------------------------------------------------- /backend/src/game/views/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/backend/src/game/views/results.html -------------------------------------------------------------------------------- /backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/backend/src/index.ts -------------------------------------------------------------------------------- /backend/src/middleware/monitoring.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/backend/src/middleware/monitoring.ts -------------------------------------------------------------------------------- /backend/src/services/translate.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/backend/src/services/translate.service.ts -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/angular.json -------------------------------------------------------------------------------- /frontend/bin/build-lang-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/bin/build-lang-files.ts -------------------------------------------------------------------------------- /frontend/bin/register-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/bin/register-icons.ts -------------------------------------------------------------------------------- /frontend/bin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/bin/tsconfig.json -------------------------------------------------------------------------------- /frontend/build/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/build/docker/Dockerfile -------------------------------------------------------------------------------- /frontend/build/docker/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/build/docker/nginx.conf -------------------------------------------------------------------------------- /frontend/build/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/build/version.ts -------------------------------------------------------------------------------- /frontend/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/cypress.json -------------------------------------------------------------------------------- /frontend/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/cypress/fixtures/example.json -------------------------------------------------------------------------------- /frontend/cypress/integration/e2e/persistence.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/cypress/integration/e2e/persistence.spec.ts -------------------------------------------------------------------------------- /frontend/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/cypress/plugins/index.js -------------------------------------------------------------------------------- /frontend/cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/cypress/support/commands.ts -------------------------------------------------------------------------------- /frontend/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/cypress/support/index.js -------------------------------------------------------------------------------- /frontend/cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/cypress/tsconfig.json -------------------------------------------------------------------------------- /frontend/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/e2e/protractor.conf.js -------------------------------------------------------------------------------- /frontend/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /frontend/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/e2e/src/app.po.ts -------------------------------------------------------------------------------- /frontend/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/e2e/tsconfig.json -------------------------------------------------------------------------------- /frontend/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/karma.conf.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/proxy.conf.json -------------------------------------------------------------------------------- /frontend/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /frontend/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/app.component.html -------------------------------------------------------------------------------- /frontend/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/app.component.scss -------------------------------------------------------------------------------- /frontend/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/app.component.ts -------------------------------------------------------------------------------- /frontend/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/app.module.ts -------------------------------------------------------------------------------- /frontend/src/app/directives/autofocus.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/directives/autofocus.directive.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/events-layout/events-layout.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/events-layout/events-layout.component.html -------------------------------------------------------------------------------- /frontend/src/app/game/components/events-layout/events-layout.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/events-layout/events-layout.component.scss -------------------------------------------------------------------------------- /frontend/src/app/game/components/events-layout/events-layout.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/events-layout/events-layout.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/events-layout/events-layout.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/events-layout/events-layout.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/graphs/graphs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/graphs/graphs.component.html -------------------------------------------------------------------------------- /frontend/src/app/game/components/graphs/graphs.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/graphs/graphs.component.scss -------------------------------------------------------------------------------- /frontend/src/app/game/components/graphs/graphs.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/graphs/graphs.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/graphs/graphs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/graphs/graphs.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/graphs/line-graph/line-graph.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/graphs/line-graph/line-graph.component.html -------------------------------------------------------------------------------- /frontend/src/app/game/components/graphs/line-graph/line-graph.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/graphs/line-graph/line-graph.component.scss -------------------------------------------------------------------------------- /frontend/src/app/game/components/graphs/line-graph/line-graph.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/graphs/line-graph/line-graph.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/graphs/line-graph/line-graph.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/graphs/line-graph/line-graph.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/graphs/line-graph/pan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/graphs/line-graph/pan.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/graphs/scatter-graph/scatter-graph.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/graphs/scatter-graph/scatter-graph.component.html -------------------------------------------------------------------------------- /frontend/src/app/game/components/graphs/scatter-graph/scatter-graph.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/graphs/scatter-graph/scatter-graph.component.scss -------------------------------------------------------------------------------- /frontend/src/app/game/components/graphs/scatter-graph/scatter-graph.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/graphs/scatter-graph/scatter-graph.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/graphs/scatter-graph/scatter-graph.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/graphs/scatter-graph/scatter-graph.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/mitigations-control/controls/mitigation-bool.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/mitigations-control/controls/mitigation-bool.component.scss -------------------------------------------------------------------------------- /frontend/src/app/game/components/mitigations-control/controls/mitigation-bool.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/mitigations-control/controls/mitigation-bool.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/mitigations-control/controls/mitigation-scale.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/mitigations-control/controls/mitigation-scale.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/mitigations-control/controls/mitigation-slide.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/mitigations-control/controls/mitigation-slide.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/mitigations-control/controls/mitigation-toggle.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/mitigations-control/controls/mitigation-toggle.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/mitigations-control/mitigation-config.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/mitigations-control/mitigation-config.directive.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/mitigations-control/mitigations-control.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/mitigations-control/mitigations-control.component.html -------------------------------------------------------------------------------- /frontend/src/app/game/components/mitigations-control/mitigations-control.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/mitigations-control/mitigations-control.component.scss -------------------------------------------------------------------------------- /frontend/src/app/game/components/mitigations-control/mitigations-control.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/mitigations-control/mitigations-control.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/mitigations-control/mitigations-control.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/mitigations-control/mitigations-control.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/simulation-control/simulation-control.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/simulation-control/simulation-control.component.html -------------------------------------------------------------------------------- /frontend/src/app/game/components/simulation-control/simulation-control.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/simulation-control/simulation-control.component.scss -------------------------------------------------------------------------------- /frontend/src/app/game/components/simulation-control/simulation-control.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/simulation-control/simulation-control.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/simulation-control/simulation-control.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/simulation-control/simulation-control.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/speed-control/speed-control.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/speed-control/speed-control.component.html -------------------------------------------------------------------------------- /frontend/src/app/game/components/speed-control/speed-control.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/app/game/components/speed-control/speed-control.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/speed-control/speed-control.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/speed-control/speed-control.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/speed-control/speed-control.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/status-display/status-display.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/status-display/status-display.component.html -------------------------------------------------------------------------------- /frontend/src/app/game/components/status-display/status-display.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/status-display/status-display.component.scss -------------------------------------------------------------------------------- /frontend/src/app/game/components/status-display/status-display.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/status-display/status-display.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/game/components/status-display/status-display.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/components/status-display/status-display.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/game-material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/game-material.module.ts -------------------------------------------------------------------------------- /frontend/src/app/game/game.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/game.module.ts -------------------------------------------------------------------------------- /frontend/src/app/game/game.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/game.service.ts -------------------------------------------------------------------------------- /frontend/src/app/game/pages/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/about/about.component.html -------------------------------------------------------------------------------- /frontend/src/app/game/pages/about/about.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/about/about.component.scss -------------------------------------------------------------------------------- /frontend/src/app/game/pages/about/about.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/about/about.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/game/pages/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/about/about.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/pages/credits/credits.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/credits/credits.component.html -------------------------------------------------------------------------------- /frontend/src/app/game/pages/credits/credits.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/credits/credits.component.scss -------------------------------------------------------------------------------- /frontend/src/app/game/pages/credits/credits.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/credits/credits.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/game/pages/credits/credits.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/credits/credits.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/pages/game/can-activate-game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/game/can-activate-game.ts -------------------------------------------------------------------------------- /frontend/src/app/game/pages/game/can-deactivate-game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/game/can-deactivate-game.ts -------------------------------------------------------------------------------- /frontend/src/app/game/pages/game/data/cz-real-smooth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/game/data/cz-real-smooth.json -------------------------------------------------------------------------------- /frontend/src/app/game/pages/game/data/data-lost-stability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/game/data/data-lost-stability.json -------------------------------------------------------------------------------- /frontend/src/app/game/pages/game/data/data-too-long.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/game/data/data-too-long.json -------------------------------------------------------------------------------- /frontend/src/app/game/pages/game/data/data-valid-legacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/game/data/data-valid-legacy.json -------------------------------------------------------------------------------- /frontend/src/app/game/pages/game/game.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/game/game.component.html -------------------------------------------------------------------------------- /frontend/src/app/game/pages/game/game.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/game/game.component.scss -------------------------------------------------------------------------------- /frontend/src/app/game/pages/game/game.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/game/game.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/game/pages/game/game.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/game/game.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/pages/game/game.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/game/game.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/game/pages/intro/intro.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/intro/intro.component.html -------------------------------------------------------------------------------- /frontend/src/app/game/pages/intro/intro.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/intro/intro.component.scss -------------------------------------------------------------------------------- /frontend/src/app/game/pages/intro/intro.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/intro/intro.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/game/pages/intro/intro.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/intro/intro.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/pages/outro/outro.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/outro/outro.component.html -------------------------------------------------------------------------------- /frontend/src/app/game/pages/outro/outro.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/outro/outro.component.scss -------------------------------------------------------------------------------- /frontend/src/app/game/pages/outro/outro.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/outro/outro.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/game/pages/outro/outro.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/outro/outro.component.ts -------------------------------------------------------------------------------- /frontend/src/app/game/pages/outro/outro.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/game/pages/outro/outro.service.ts -------------------------------------------------------------------------------- /frontend/src/app/services/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/config.service.ts -------------------------------------------------------------------------------- /frontend/src/app/services/debug-mode.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/debug-mode.service.ts -------------------------------------------------------------------------------- /frontend/src/app/services/event-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/event-list.ts -------------------------------------------------------------------------------- /frontend/src/app/services/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/events.ts -------------------------------------------------------------------------------- /frontend/src/app/services/formatting.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/formatting.service.ts -------------------------------------------------------------------------------- /frontend/src/app/services/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/game.ts -------------------------------------------------------------------------------- /frontend/src/app/services/i18n.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/i18n.service.ts -------------------------------------------------------------------------------- /frontend/src/app/services/meta.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/meta.service.ts -------------------------------------------------------------------------------- /frontend/src/app/services/mitigations.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/mitigations.service.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/services/mitigations.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/mitigations.service.ts -------------------------------------------------------------------------------- /frontend/src/app/services/mitigations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/mitigations.ts -------------------------------------------------------------------------------- /frontend/src/app/services/randomize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/randomize.ts -------------------------------------------------------------------------------- /frontend/src/app/services/router-utils.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/router-utils.service.ts -------------------------------------------------------------------------------- /frontend/src/app/services/scenario.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/scenario.ts -------------------------------------------------------------------------------- /frontend/src/app/services/simulation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/simulation.ts -------------------------------------------------------------------------------- /frontend/src/app/services/social-network-share.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/social-network-share.service.ts -------------------------------------------------------------------------------- /frontend/src/app/services/translate-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/translate-loader.ts -------------------------------------------------------------------------------- /frontend/src/app/services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/utils.ts -------------------------------------------------------------------------------- /frontend/src/app/services/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/services/validate.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/button/button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/button/button.component.html -------------------------------------------------------------------------------- /frontend/src/app/shared/button/button.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/button/button.component.scss -------------------------------------------------------------------------------- /frontend/src/app/shared/button/button.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/button/button.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/button/button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/button/button.component.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/flex/col.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/flex/col.component.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/flex/flex-item.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/flex/flex-item.directive.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/flex/row-group.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/flex/row-group.component.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/flex/row.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/flex/row.component.html -------------------------------------------------------------------------------- /frontend/src/app/shared/flex/row.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/flex/row.component.scss -------------------------------------------------------------------------------- /frontend/src/app/shared/flex/row.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/flex/row.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/flex/row.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/flex/row.component.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/footer/footer.component.html -------------------------------------------------------------------------------- /frontend/src/app/shared/footer/footer.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/footer/footer.component.scss -------------------------------------------------------------------------------- /frontend/src/app/shared/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/footer/footer.component.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/format-number.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/format-number.pipe.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/format-percentage.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/format-percentage.pipe.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/header/header.component.html -------------------------------------------------------------------------------- /frontend/src/app/shared/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/header/header.component.scss -------------------------------------------------------------------------------- /frontend/src/app/shared/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/header/header.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/header/header.component.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/help-tooltip/help-tooltip.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/help-tooltip/help-tooltip.component.html -------------------------------------------------------------------------------- /frontend/src/app/shared/help-tooltip/help-tooltip.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/help-tooltip/help-tooltip.component.scss -------------------------------------------------------------------------------- /frontend/src/app/shared/help-tooltip/help-tooltip.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/help-tooltip/help-tooltip.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/help-tooltip/help-tooltip.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/help-tooltip/help-tooltip.component.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/icon/icon.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/icon/icon.component.html -------------------------------------------------------------------------------- /frontend/src/app/shared/icon/icon.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/icon/icon.component.scss -------------------------------------------------------------------------------- /frontend/src/app/shared/icon/icon.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/icon/icon.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/icon/icon.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/icon/icon.component.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/icon/icon.registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/icon/icon.registry.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/icon/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/icon/icons.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/language-picker/language-picker.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/language-picker/language-picker.component.html -------------------------------------------------------------------------------- /frontend/src/app/shared/language-picker/language-picker.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/app/shared/language-picker/language-picker.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/language-picker/language-picker.component.spec.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/language-picker/language-picker.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/language-picker/language-picker.component.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/limit.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/limit.pipe.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/navigate-back/navigate-back.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/navigate-back/navigate-back.directive.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/shared-material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/shared-material.module.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/testing/stubs/game.service.stub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/testing/stubs/game.service.stub.ts -------------------------------------------------------------------------------- /frontend/src/app/shared/testing/testing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/shared/testing/testing.module.ts -------------------------------------------------------------------------------- /frontend/src/app/utils/animations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/utils/animations.ts -------------------------------------------------------------------------------- /frontend/src/app/utils/ng.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/app/utils/ng.model.ts -------------------------------------------------------------------------------- /frontend/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/assets/favicon/android-icon-controller-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/android-icon-controller-144x144.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/android-icon-controller-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/android-icon-controller-192x192.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/android-icon-virus-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/android-icon-virus-144x144.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/android-icon-virus-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/android-icon-virus-192x192.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/apple-icon-controller-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/apple-icon-controller-180x180.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/apple-icon-virus-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/apple-icon-virus-180x180.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/favicon-controller-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/favicon-controller-16x16.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/favicon-controller-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/favicon-controller-32x32.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/favicon-controller-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/favicon-controller-96x96.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/favicon-controller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/favicon-controller.svg -------------------------------------------------------------------------------- /frontend/src/assets/favicon/favicon-virus-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/favicon-virus-16x16.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/favicon-virus-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/favicon-virus-32x32.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/favicon-virus-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/favicon-virus-96x96.png -------------------------------------------------------------------------------- /frontend/src/assets/favicon/favicon-virus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/favicon-virus.svg -------------------------------------------------------------------------------- /frontend/src/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /frontend/src/assets/favicon/site-controller.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/site-controller.webmanifest -------------------------------------------------------------------------------- /frontend/src/assets/favicon/site-virus.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/favicon/site-virus.webmanifest -------------------------------------------------------------------------------- /frontend/src/assets/i18n/events/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/events/cs.json -------------------------------------------------------------------------------- /frontend/src/assets/i18n/events/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/events/en.json -------------------------------------------------------------------------------- /frontend/src/assets/i18n/extract/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/extract/cs.json -------------------------------------------------------------------------------- /frontend/src/assets/i18n/extract/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/extract/en.json -------------------------------------------------------------------------------- /frontend/src/assets/i18n/images/SEIR.cs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/images/SEIR.cs.svg -------------------------------------------------------------------------------- /frontend/src/assets/i18n/images/SEIR.en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/images/SEIR.en.svg -------------------------------------------------------------------------------- /frontend/src/assets/i18n/images/SIR.cs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/images/SIR.cs.svg -------------------------------------------------------------------------------- /frontend/src/assets/i18n/images/SIR.en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/images/SIR.en.svg -------------------------------------------------------------------------------- /frontend/src/assets/i18n/images/model.cs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/images/model.cs.svg -------------------------------------------------------------------------------- /frontend/src/assets/i18n/images/model.en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/images/model.en.svg -------------------------------------------------------------------------------- /frontend/src/assets/i18n/pages/about.cs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/pages/about.cs.html -------------------------------------------------------------------------------- /frontend/src/assets/i18n/pages/about.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/pages/about.en.html -------------------------------------------------------------------------------- /frontend/src/assets/i18n/pages/graphs.help.cs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/pages/graphs.help.cs.html -------------------------------------------------------------------------------- /frontend/src/assets/i18n/pages/graphs.help.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/pages/graphs.help.en.html -------------------------------------------------------------------------------- /frontend/src/assets/i18n/pages/intro.cs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/pages/intro.cs.html -------------------------------------------------------------------------------- /frontend/src/assets/i18n/pages/intro.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/pages/intro.en.html -------------------------------------------------------------------------------- /frontend/src/assets/i18n/pages/mitigations-control.help.cs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/pages/mitigations-control.help.cs.html -------------------------------------------------------------------------------- /frontend/src/assets/i18n/pages/mitigations-control.help.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/pages/mitigations-control.help.en.html -------------------------------------------------------------------------------- /frontend/src/assets/i18n/pages/outro.cs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/pages/outro.cs.html -------------------------------------------------------------------------------- /frontend/src/assets/i18n/pages/outro.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/i18n/pages/outro.en.html -------------------------------------------------------------------------------- /frontend/src/assets/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/close.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/cross.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/facebook.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/fast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/fast.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/hospital.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/hospital.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/linkedin.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/money.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/oneSpeed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/oneSpeed.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/panEnd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/panEnd.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/panLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/panLeft.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/panRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/panRight.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/pause.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/play.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/question.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/skull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/skull.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/slow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/slow.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/stability.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/stability.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/threeSpeed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/threeSpeed.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/twitter.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/twoSpeed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/twoSpeed.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/vaccine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/vaccine.svg -------------------------------------------------------------------------------- /frontend/src/assets/icons/virus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/icons/virus.svg -------------------------------------------------------------------------------- /frontend/src/assets/images/logos/fjfi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/images/logos/fjfi.png -------------------------------------------------------------------------------- /frontend/src/assets/images/logos/logo.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/images/logos/logo.en.png -------------------------------------------------------------------------------- /frontend/src/assets/images/logos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/images/logos/logo.png -------------------------------------------------------------------------------- /frontend/src/assets/images/logos/matematika_pro_zivot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/images/logos/matematika_pro_zivot.png -------------------------------------------------------------------------------- /frontend/src/assets/images/logos/swehq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/images/logos/swehq.png -------------------------------------------------------------------------------- /frontend/src/assets/images/og.en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/images/og.en.png -------------------------------------------------------------------------------- /frontend/src/assets/images/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/assets/images/og.png -------------------------------------------------------------------------------- /frontend/src/definitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/definitions.scss -------------------------------------------------------------------------------- /frontend/src/environments/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/environments/defaults.ts -------------------------------------------------------------------------------- /frontend/src/environments/environment.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/environments/environment.dev.ts -------------------------------------------------------------------------------- /frontend/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /frontend/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/environments/environment.ts -------------------------------------------------------------------------------- /frontend/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/favicon.ico -------------------------------------------------------------------------------- /frontend/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/index.html -------------------------------------------------------------------------------- /frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/main.ts -------------------------------------------------------------------------------- /frontend/src/material-definitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/material-definitions.scss -------------------------------------------------------------------------------- /frontend/src/material-overwrite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/material-overwrite.scss -------------------------------------------------------------------------------- /frontend/src/material-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/material-styles.scss -------------------------------------------------------------------------------- /frontend/src/material-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/material-theme.scss -------------------------------------------------------------------------------- /frontend/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/polyfills.ts -------------------------------------------------------------------------------- /frontend/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/styles.scss -------------------------------------------------------------------------------- /frontend/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/src/test.ts -------------------------------------------------------------------------------- /frontend/ts-node.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/ts-node.config.json -------------------------------------------------------------------------------- /frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/tsconfig.spec.json -------------------------------------------------------------------------------- /frontend/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/tslint.json -------------------------------------------------------------------------------- /frontend/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/frontend/webpack.config.js -------------------------------------------------------------------------------- /legacy/Behem_hry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Behem_hry.jpg -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/.codeclimate.yml -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/.editorconfig -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*{.,-}min.js 2 | -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/.eslintrc.yml -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/.github/ISSUE_TEMPLATE/BUG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/.github/ISSUE_TEMPLATE/BUG.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/.github/ISSUE_TEMPLATE/DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/.github/ISSUE_TEMPLATE/DOCS.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/.github/ISSUE_TEMPLATE/FEATURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/.github/ISSUE_TEMPLATE/FEATURE.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/.github/ISSUE_TEMPLATE/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/.github/ISSUE_TEMPLATE/SUPPORT.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/.gitignore -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/.htmllintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/.htmllintrc -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/.travis.yml -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/LICENSE.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/MAINTAINING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/MAINTAINING.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/README.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/book.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/composer.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/README.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/SUMMARY.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/README.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/cartesian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/cartesian/README.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/cartesian/category.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/cartesian/category.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/cartesian/linear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/cartesian/linear.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/cartesian/logarithmic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/cartesian/logarithmic.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/cartesian/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/cartesian/time.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/labelling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/labelling.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/radial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/radial/README.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/radial/linear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/radial/linear.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/styling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/axes/styling.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/README.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/area.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/bar.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/bubble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/bubble.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/doughnut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/doughnut.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/line.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/mixed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/mixed.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/polar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/polar.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/radar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/radar.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/scatter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/charts/scatter.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/configuration/README.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/configuration/animations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/configuration/animations.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/configuration/elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/configuration/elements.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/configuration/layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/configuration/layout.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/configuration/legend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/configuration/legend.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/configuration/title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/configuration/title.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/configuration/tooltip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/configuration/tooltip.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/developers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/developers/README.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/developers/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/developers/api.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/developers/axes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/developers/axes.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/developers/charts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/developers/charts.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/developers/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/developers/contributing.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/developers/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/developers/plugins.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/developers/updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/developers/updates.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/README.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/accessibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/accessibility.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/colors.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/device-pixel-ratio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/device-pixel-ratio.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/fonts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/fonts.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/interactions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/interactions/README.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/interactions/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/interactions/events.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/interactions/modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/interactions/modes.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/options.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/performance.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/responsive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/general/responsive.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/getting-started/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/getting-started/README.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/getting-started/installation.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/getting-started/integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/getting-started/integration.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/getting-started/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/getting-started/usage.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/notes/README.md: -------------------------------------------------------------------------------- 1 | # Additional Notes 2 | -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/notes/comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/notes/comparison.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/notes/extensions.md: -------------------------------------------------------------------------------- 1 | !REDIRECT "https://github.com/chartjs/awesome" 2 | -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/notes/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/notes/license.md -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/docs/style.css -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/gulpfile.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/karma.conf.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/package-lock.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/package.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/rollup.config.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/rollup.plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/rollup.plugins.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/.eslintrc.yml -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/advanced/content-security-policy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/advanced/content-security-policy.css -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/advanced/content-security-policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/advanced/content-security-policy.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/advanced/content-security-policy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/advanced/content-security-policy.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/advanced/progress-bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/advanced/progress-bar.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/area/analyser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/area/analyser.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/area/line-boundaries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/area/line-boundaries.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/area/line-datasets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/area/line-datasets.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/area/line-stacked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/area/line-stacked.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/area/radar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/area/radar.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/bar/horizontal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/bar/horizontal.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/bar/multi-axis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/bar/multi-axis.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/bar/stacked-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/bar/stacked-group.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/bar/stacked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/bar/stacked.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/bar/vertical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/bar/vertical.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/bubble.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/bubble.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/combo-bar-line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/combo-bar-line.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/doughnut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/doughnut.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/line/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/line/basic.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/line/interpolation-modes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/line/interpolation-modes.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/line/line-styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/line/line-styles.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/line/multi-axis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/line/multi-axis.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/line/point-sizes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/line/point-sizes.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/line/point-styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/line/point-styles.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/line/skip-points.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/line/skip-points.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/line/stepped.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/line/stepped.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/pie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/pie.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/polar-area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/polar-area.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/radar-skip-points.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/radar-skip-points.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/radar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/radar.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/scatter/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/scatter/basic.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/scatter/multi-axis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/charts/scatter/multi-axis.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/favicon.ico -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/index.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/legend/callbacks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/legend/callbacks.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/legend/point-style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/legend/point-style.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/legend/positioning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/legend/positioning.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/logo.svg -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/samples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/samples.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/filtering-labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/filtering-labels.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/gridlines-display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/gridlines-display.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/gridlines-style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/gridlines-style.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/linear/min-max-suggested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/linear/min-max-suggested.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/linear/min-max.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/linear/min-max.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/linear/step-size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/linear/step-size.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/logarithmic/line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/logarithmic/line.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/logarithmic/scatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/logarithmic/scatter.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/multiline-labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/multiline-labels.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/non-numeric-y.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/non-numeric-y.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/time/combo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/time/combo.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/time/financial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/time/financial.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/time/line-point-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/time/line-point-data.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/time/line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/time/line.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/toggle-scale-type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scales/toggle-scale-type.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scriptable/bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scriptable/bar.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scriptable/bubble.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scriptable/bubble.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scriptable/line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scriptable/line.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scriptable/pie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scriptable/pie.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scriptable/polar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scriptable/polar.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scriptable/radar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/scriptable/radar.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/style.css -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/tooltips/border.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/tooltips/border.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/tooltips/callbacks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/tooltips/callbacks.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/tooltips/custom-line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/tooltips/custom-line.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/tooltips/custom-pie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/tooltips/custom-pie.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/tooltips/custom-points.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/tooltips/custom-points.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/tooltips/interactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/tooltips/interactions.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/tooltips/positioning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/tooltips/positioning.html -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/samples/utils.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/scripts/deploy.sh -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/scripts/release.sh -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/adapters/adapter.moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/adapters/adapter.moment.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/adapters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/adapters/index.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.bar.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.bubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.bubble.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.doughnut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.doughnut.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.horizontalBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.horizontalBar.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.line.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.pie.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.polarArea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.polarArea.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.radar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.radar.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.scatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/controller.scatter.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/controllers/index.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.adapters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.adapters.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.animation.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.animations.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.controller.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.datasetController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.datasetController.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.defaults.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.element.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.helpers.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.interaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.interaction.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.layouts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.layouts.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.plugins.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.scale.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.scaleService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.scaleService.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.ticks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.ticks.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/core/core.tooltip.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/elements/element.arc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/elements/element.arc.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/elements/element.line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/elements/element.line.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/elements/element.point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/elements/element.point.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/elements/element.rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/elements/element.rectangle.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/elements/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/elements/index.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/helpers/helpers.canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/helpers/helpers.canvas.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/helpers/helpers.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/helpers/helpers.core.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/helpers/helpers.easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/helpers/helpers.easing.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/helpers/helpers.math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/helpers/helpers.math.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/helpers/helpers.options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/helpers/helpers.options.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/helpers/helpers.rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/helpers/helpers.rtl.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/helpers/index.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/index.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/platforms/platform.basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/platforms/platform.basic.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/platforms/platform.dom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/platforms/platform.dom.css -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/platforms/platform.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/platforms/platform.dom.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/platforms/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/platforms/platform.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/plugins/index.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/plugins/plugin.filler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/plugins/plugin.filler.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/plugins/plugin.legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/plugins/plugin.legend.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/plugins/plugin.title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/plugins/plugin.title.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/scales/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/scales/index.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/scales/scale.category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/scales/scale.category.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/scales/scale.linear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/scales/scale.linear.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/scales/scale.linearbase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/scales/scale.linearbase.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/scales/scale.logarithmic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/scales/scale.logarithmic.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/scales/scale.radialLinear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/scales/scale.radialLinear.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/scales/scale.time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/src/scales/scale.time.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/.eslintrc.yml -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/context.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixture.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/backgroundColor/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/backgroundColor/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/backgroundColor/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/backgroundColor/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-absolute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-absolute.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-flex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-flex.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-flex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-flex.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-max.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-max.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-max.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-multiple.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-offset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-offset.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-offset.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-reverse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-reverse.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-reverse.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-single.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-single.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-stacked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-stacked.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/bar-thickness-stacked.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderColor/indexable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderColor/indexable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderColor/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderColor/indexable.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderColor/scriptable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderColor/scriptable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderColor/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderColor/scriptable.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderColor/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderColor/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderColor/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderColor/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderSkipped/indexable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderSkipped/indexable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderSkipped/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderSkipped/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderSkipped/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderSkipped/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/indexable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/indexable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/indexable.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/negative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/negative.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/negative.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/object.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/object.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/scriptable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/scriptable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/scriptable.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/borderWidth/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/chart-area-clip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/chart-area-clip.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/chart-area-clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/chart-area-clip.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/floatBar/float-bar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/floatBar/float-bar.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/floatBar/float-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/floatBar/float-bar.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/horizontal-borders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/horizontal-borders.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/horizontal-borders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bar/horizontal-borders.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bubble/point-style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bubble/point-style.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bubble/point-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bubble/point-style.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bubble/radius-scriptable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bubble/radius-scriptable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bubble/radius-scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.bubble/radius-scriptable.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.doughnut/doughnut-weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.doughnut/doughnut-weight.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.doughnut/pie-weight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.doughnut/pie-weight.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.doughnut/pie-weight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.doughnut/pie-weight.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/borderCapStyle/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/borderCapStyle/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/borderColor/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/borderColor/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/borderColor/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/borderColor/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/borderDash/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/borderDash/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/borderDash/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/borderDash/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/borderWidth/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/borderWidth/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/borderWidth/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/borderWidth/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-x-max.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-x-max.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-x-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-x-max.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-x-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-x-min.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-x-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-x-min.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-x.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-x.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-y-max.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-y-max.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-y-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-y-max.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-y-min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-y-min.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-y-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-y-min.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-y.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-y.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/default-y.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/specified.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/specified.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/specified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/clip/specified.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/fill/order-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/fill/order-default.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/fill/order-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/fill/order-default.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/fill/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/fill/order.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/fill/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/fill/order.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/fill/scriptable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/fill/scriptable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/fill/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/fill/scriptable.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/fill/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/fill/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/fill/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/fill/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/non-numeric-y.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/non-numeric-y.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/non-numeric-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/non-numeric-y.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/point-style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/point-style.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/point-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/point-style.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/pointStyle/indexable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/pointStyle/indexable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/pointStyle/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/pointStyle/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/pointStyle/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/pointStyle/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/radius/indexable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/radius/indexable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/radius/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/radius/indexable.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/radius/scriptable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/radius/scriptable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/radius/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/radius/scriptable.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/radius/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/radius/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/radius/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/radius/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/rotation/indexable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/rotation/indexable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/rotation/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/rotation/indexable.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/rotation/scriptable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/rotation/scriptable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/rotation/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/rotation/scriptable.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/rotation/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/rotation/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/rotation/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.line/rotation/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.polarArea/angle-array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.polarArea/angle-array.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.polarArea/angle-array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.polarArea/angle-array.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/borderColor/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/borderColor/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/borderColor/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/borderColor/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/borderDash/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/borderDash/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/borderDash/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/borderDash/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/borderWidth/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/borderWidth/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/borderWidth/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/borderWidth/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/fill/scriptable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/fill/scriptable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/fill/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/fill/scriptable.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/fill/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/fill/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/fill/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/fill/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/point-style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/point-style.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/point-style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/point-style.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/pointStyle/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/pointStyle/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/pointStyle/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/pointStyle/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/radius/indexable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/radius/indexable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/radius/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/radius/indexable.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/radius/scriptable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/radius/scriptable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/radius/scriptable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/radius/scriptable.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/radius/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/radius/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/radius/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/radius/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/rotation/indexable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/rotation/indexable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/rotation/indexable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/rotation/indexable.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/rotation/scriptable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/rotation/scriptable.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/rotation/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/rotation/value.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/rotation/value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/controller.radar/rotation/value.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/core.scale/tick-drawing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/core.scale/tick-drawing.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/core.scale/tick-drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/core.scale/tick-drawing.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/core.tooltip/opacity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/core.tooltip/opacity.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/core.tooltip/opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/core.tooltip/opacity.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-circle.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-circle.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-cross-rot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-cross-rot.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-cross.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-cross.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-cross.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-dash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-dash.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-dash.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-image.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-image.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-line.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-line.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-line.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-rect-rot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-rect-rot.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-rect-rot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-rect-rot.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-rect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-rect.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-rect.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-star.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-star.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-star.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-triangle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-triangle.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/point-style-triangle.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/rotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/rotation.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/element.point/rotation.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/helpers.canvas/rounded-rect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/helpers.canvas/rounded-rect.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/helpers.canvas/rounded-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/helpers.canvas/rounded-rect.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/plugin.filler/fill-line-dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/plugin.filler/fill-line-dataset.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/plugin.filler/fill-line-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/plugin.filler/fill-line-dataset.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/plugin.filler/fill-radar-dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/plugin.filler/fill-radar-dataset.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/plugin.filler/fill-radar-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/plugin.filler/fill-radar-dataset.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/scale.radialLinear/border-dash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/scale.radialLinear/border-dash.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/scale.radialLinear/border-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/scale.radialLinear/border-dash.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/scale.radialLinear/gridlines-no-z.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/scale.radialLinear/gridlines-no-z.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/scale.radialLinear/gridlines-no-z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/scale.radialLinear/gridlines-no-z.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/scale.radialLinear/gridlines-z.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/scale.radialLinear/gridlines-z.json -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/scale.radialLinear/gridlines-z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/fixtures/scale.radialLinear/gridlines-z.png -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/index.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/matchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/matchers.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/controller.bar.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/controller.bar.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/controller.bubble.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/controller.bubble.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/controller.doughnut.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/controller.doughnut.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/controller.line.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/controller.line.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/controller.polarArea.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/controller.polarArea.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/controller.radar.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/controller.radar.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/controller.scatter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/controller.scatter.test.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.controller.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.controller.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.datasetController.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.datasetController.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.element.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.element.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.helpers.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.helpers.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.interaction.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.interaction.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.layouts.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.layouts.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.plugin.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.plugin.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.scale.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.scale.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.scaleService.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.scaleService.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.ticks.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.ticks.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.tooltip.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/core.tooltip.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/element.arc.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/element.arc.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/element.line.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/element.line.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/element.point.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/element.point.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/element.rectangle.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/element.rectangle.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/global.defaults.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/global.defaults.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/global.deprecations.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/global.deprecations.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/global.namespace.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/global.namespace.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/helpers.canvas.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/helpers.canvas.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/helpers.core.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/helpers.core.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/helpers.easing.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/helpers.easing.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/helpers.math.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/helpers.math.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/helpers.options.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/helpers.options.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/platform.dom.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/platform.dom.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/plugin.filler.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/plugin.filler.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/plugin.legend.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/plugin.legend.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/plugin.title.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/plugin.title.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/scale.category.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/scale.category.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/scale.linear.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/scale.linear.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/scale.logarithmic.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/scale.logarithmic.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/scale.radialLinear.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/scale.radialLinear.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/scale.time.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/specs/scale.time.tests.js -------------------------------------------------------------------------------- /legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-2.9.4/Chart.js-2.9.4/test/utils.js -------------------------------------------------------------------------------- /legacy/Chart.js-dist/Chart.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-dist/Chart.bundle.js -------------------------------------------------------------------------------- /legacy/Chart.js-dist/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-dist/Chart.bundle.min.js -------------------------------------------------------------------------------- /legacy/Chart.js-dist/Chart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-dist/Chart.css -------------------------------------------------------------------------------- /legacy/Chart.js-dist/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-dist/Chart.js -------------------------------------------------------------------------------- /legacy/Chart.js-dist/Chart.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-dist/Chart.min.css -------------------------------------------------------------------------------- /legacy/Chart.js-dist/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Chart.js-dist/Chart.min.js -------------------------------------------------------------------------------- /legacy/Game/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Game/events.js -------------------------------------------------------------------------------- /legacy/Game/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Game/game.js -------------------------------------------------------------------------------- /legacy/Game/images/newspaper.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Game/images/newspaper.jpeg -------------------------------------------------------------------------------- /legacy/Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Game/index.html -------------------------------------------------------------------------------- /legacy/Game/mitigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Game/mitigation.js -------------------------------------------------------------------------------- /legacy/Game/simulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Game/simulation.js -------------------------------------------------------------------------------- /legacy/Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Game/style.css -------------------------------------------------------------------------------- /legacy/Game/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Game/ui.js -------------------------------------------------------------------------------- /legacy/Game/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Game/util.js -------------------------------------------------------------------------------- /legacy/MyDownloads/nakaza.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/MyDownloads/nakaza.csv -------------------------------------------------------------------------------- /legacy/MyDownloads/nakaza.csv-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/MyDownloads/nakaza.csv-metadata.json -------------------------------------------------------------------------------- /legacy/MyDownloads/testy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/MyDownloads/testy.csv -------------------------------------------------------------------------------- /legacy/RealData/dataOperations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/RealData/dataOperations.js -------------------------------------------------------------------------------- /legacy/RealData/datum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/RealData/datum.js -------------------------------------------------------------------------------- /legacy/RealData/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/RealData/index.html -------------------------------------------------------------------------------- /legacy/RealData/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/RealData/index.php -------------------------------------------------------------------------------- /legacy/RealData/nakaza.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/RealData/nakaza.min.json -------------------------------------------------------------------------------- /legacy/RealData/php.ini: -------------------------------------------------------------------------------- 1 | extension=php_openssl.dll -------------------------------------------------------------------------------- /legacy/RealData/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/RealData/script.js -------------------------------------------------------------------------------- /legacy/RealData/scriptv1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/RealData/scriptv1.js -------------------------------------------------------------------------------- /legacy/RealData/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/RealData/style.css -------------------------------------------------------------------------------- /legacy/Tuning/get_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Tuning/get_data.sh -------------------------------------------------------------------------------- /legacy/Tuning/tuning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Tuning/tuning.js -------------------------------------------------------------------------------- /legacy/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Untitled.png -------------------------------------------------------------------------------- /legacy/Untitled0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Untitled0.png -------------------------------------------------------------------------------- /legacy/Zacatek_hry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/Zacatek_hry.jpg -------------------------------------------------------------------------------- /legacy/v1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swehq/corona-game/HEAD/legacy/v1.zip --------------------------------------------------------------------------------