gitextract_db6hdddw/ ├── .bowerrc ├── .dockerignore ├── .editorconfig ├── .github/ │ ├── issue_template.md │ └── workflows/ │ └── tests.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile.example ├── LICENSE ├── MIGRATION.md ├── Makefile ├── README.md ├── app.js ├── bower.json ├── config/ │ ├── development.sample.json │ ├── production.sample.json │ └── test.sample.json ├── config.js ├── data/ │ ├── standards.js │ └── techniques.js ├── eslint.config.js ├── index.js ├── package.json ├── public/ │ ├── js/ │ │ ├── site.js │ │ └── vendor/ │ │ ├── bootstrap/ │ │ │ ├── .bower.json │ │ │ ├── CNAME │ │ │ ├── CONTRIBUTING.md │ │ │ ├── DOCS-LICENSE │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── LICENSE-MIT │ │ │ ├── README.md │ │ │ ├── _config.yml │ │ │ ├── _includes/ │ │ │ │ ├── ads.html │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── nav-about.html │ │ │ │ ├── nav-components.html │ │ │ │ ├── nav-css.html │ │ │ │ ├── nav-customize.html │ │ │ │ ├── nav-getting-started.html │ │ │ │ ├── nav-javascript.html │ │ │ │ ├── nav-main.html │ │ │ │ ├── old-bs-docs.html │ │ │ │ └── social-buttons.html │ │ │ ├── _layouts/ │ │ │ │ ├── default.html │ │ │ │ └── home.html │ │ │ ├── about.html │ │ │ ├── bower.json │ │ │ ├── browserstack.json │ │ │ ├── components.html │ │ │ ├── composer.json │ │ │ ├── css.html │ │ │ ├── customize.html │ │ │ ├── dist/ │ │ │ │ ├── css/ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ └── bootstrap.css │ │ │ │ └── js/ │ │ │ │ └── bootstrap.js │ │ │ ├── docs-assets/ │ │ │ │ ├── css/ │ │ │ │ │ ├── docs.css │ │ │ │ │ └── pygments-manni.css │ │ │ │ └── js/ │ │ │ │ ├── application.js │ │ │ │ ├── customizer.js │ │ │ │ ├── filesaver.js │ │ │ │ ├── holder.js │ │ │ │ ├── ie8-responsive-file-warning.js │ │ │ │ ├── jszip.js │ │ │ │ ├── less.js │ │ │ │ ├── raw-files.js │ │ │ │ └── uglify.js │ │ │ ├── examples/ │ │ │ │ ├── carousel/ │ │ │ │ │ ├── carousel.css │ │ │ │ │ └── index.html │ │ │ │ ├── grid/ │ │ │ │ │ ├── grid.css │ │ │ │ │ └── index.html │ │ │ │ ├── jumbotron/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── jumbotron.css │ │ │ │ ├── jumbotron-narrow/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── jumbotron-narrow.css │ │ │ │ ├── justified-nav/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── justified-nav.css │ │ │ │ ├── navbar/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar.css │ │ │ │ ├── navbar-fixed-top/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar-fixed-top.css │ │ │ │ ├── navbar-static-top/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── navbar-static-top.css │ │ │ │ ├── non-responsive/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── non-responsive.css │ │ │ │ ├── offcanvas/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── offcanvas.css │ │ │ │ │ └── offcanvas.js │ │ │ │ ├── signin/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── signin.css │ │ │ │ ├── starter-template/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── starter-template.css │ │ │ │ ├── sticky-footer/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── sticky-footer.css │ │ │ │ ├── sticky-footer-navbar/ │ │ │ │ │ ├── index.html │ │ │ │ │ └── sticky-footer-navbar.css │ │ │ │ └── theme/ │ │ │ │ ├── index.html │ │ │ │ └── theme.css │ │ │ ├── getting-started.html │ │ │ ├── index.html │ │ │ ├── javascript.html │ │ │ ├── js/ │ │ │ │ ├── affix.js │ │ │ │ ├── alert.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── tests/ │ │ │ │ │ ├── index.html │ │ │ │ │ ├── unit/ │ │ │ │ │ │ ├── affix.js │ │ │ │ │ │ ├── alert.js │ │ │ │ │ │ ├── button.js │ │ │ │ │ │ ├── carousel.js │ │ │ │ │ │ ├── collapse.js │ │ │ │ │ │ ├── dropdown.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ ├── phantom.js │ │ │ │ │ │ ├── popover.js │ │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ │ ├── tab.js │ │ │ │ │ │ ├── tooltip.js │ │ │ │ │ │ └── transition.js │ │ │ │ │ └── vendor/ │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── qunit.css │ │ │ │ │ └── qunit.js │ │ │ │ ├── tooltip.js │ │ │ │ └── transition.js │ │ │ ├── less/ │ │ │ │ ├── alerts.less │ │ │ │ ├── badges.less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── breadcrumbs.less │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── carousel.less │ │ │ │ ├── close.less │ │ │ │ ├── code.less │ │ │ │ ├── component-animations.less │ │ │ │ ├── dropdowns.less │ │ │ │ ├── forms.less │ │ │ │ ├── glyphicons.less │ │ │ │ ├── grid.less │ │ │ │ ├── input-groups.less │ │ │ │ ├── jumbotron.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── media.less │ │ │ │ ├── mixins.less │ │ │ │ ├── modals.less │ │ │ │ ├── navbar.less │ │ │ │ ├── navs.less │ │ │ │ ├── normalize.less │ │ │ │ ├── pager.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── popovers.less │ │ │ │ ├── print.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── responsive-utilities.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── tables.less │ │ │ │ ├── theme.less │ │ │ │ ├── thumbnails.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── type.less │ │ │ │ ├── utilities.less │ │ │ │ ├── variables.less │ │ │ │ └── wells.less │ │ │ └── package.json │ │ ├── flot/ │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── API.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── FAQ.md │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── NEWS.md │ │ │ ├── PLUGINS.md │ │ │ ├── README.md │ │ │ ├── component.json │ │ │ ├── examples/ │ │ │ │ ├── ajax/ │ │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ │ └── index.html │ │ │ │ ├── annotating/ │ │ │ │ │ └── index.html │ │ │ │ ├── axes-interacting/ │ │ │ │ │ └── index.html │ │ │ │ ├── axes-multiple/ │ │ │ │ │ └── index.html │ │ │ │ ├── axes-time/ │ │ │ │ │ └── index.html │ │ │ │ ├── axes-time-zones/ │ │ │ │ │ ├── date.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── tz/ │ │ │ │ │ ├── africa │ │ │ │ │ ├── antarctica │ │ │ │ │ ├── asia │ │ │ │ │ ├── australasia │ │ │ │ │ ├── backward │ │ │ │ │ ├── etcetera │ │ │ │ │ ├── europe │ │ │ │ │ ├── factory │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ ├── leapseconds │ │ │ │ │ ├── northamerica │ │ │ │ │ ├── pacificnew │ │ │ │ │ ├── solar87 │ │ │ │ │ ├── solar88 │ │ │ │ │ ├── solar89 │ │ │ │ │ ├── southamerica │ │ │ │ │ ├── systemv │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ └── zone.tab │ │ │ │ ├── basic-options/ │ │ │ │ │ └── index.html │ │ │ │ ├── basic-usage/ │ │ │ │ │ └── index.html │ │ │ │ ├── canvas/ │ │ │ │ │ └── index.html │ │ │ │ ├── categories/ │ │ │ │ │ └── index.html │ │ │ │ ├── examples.css │ │ │ │ ├── image/ │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── interacting/ │ │ │ │ │ └── index.html │ │ │ │ ├── navigate/ │ │ │ │ │ └── index.html │ │ │ │ ├── percentiles/ │ │ │ │ │ └── index.html │ │ │ │ ├── realtime/ │ │ │ │ │ └── index.html │ │ │ │ ├── resize/ │ │ │ │ │ └── index.html │ │ │ │ ├── selection/ │ │ │ │ │ └── index.html │ │ │ │ ├── series-errorbars/ │ │ │ │ │ └── index.html │ │ │ │ ├── series-pie/ │ │ │ │ │ └── index.html │ │ │ │ ├── series-toggle/ │ │ │ │ │ └── index.html │ │ │ │ ├── series-types/ │ │ │ │ │ └── index.html │ │ │ │ ├── stacking/ │ │ │ │ │ └── index.html │ │ │ │ ├── symbols/ │ │ │ │ │ └── index.html │ │ │ │ ├── threshold/ │ │ │ │ │ └── index.html │ │ │ │ ├── tracking/ │ │ │ │ │ └── index.html │ │ │ │ ├── visitors/ │ │ │ │ │ └── index.html │ │ │ │ └── zooming/ │ │ │ │ └── index.html │ │ │ ├── excanvas.js │ │ │ ├── excanvas.min.js │ │ │ ├── flot.jquery.json │ │ │ ├── jquery.colorhelpers.js │ │ │ ├── jquery.flot.canvas.js │ │ │ ├── jquery.flot.categories.js │ │ │ ├── jquery.flot.crosshair.js │ │ │ ├── jquery.flot.dashes.js │ │ │ ├── jquery.flot.errorbars.js │ │ │ ├── jquery.flot.fillbetween.js │ │ │ ├── jquery.flot.image.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.navigate.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.resize.js │ │ │ ├── jquery.flot.selection.js │ │ │ ├── jquery.flot.stack.js │ │ │ ├── jquery.flot.symbol.js │ │ │ ├── jquery.flot.threshold.js │ │ │ ├── jquery.flot.time.js │ │ │ ├── jquery.js │ │ │ └── package.json │ │ └── jquery/ │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── jquery-migrate.js │ │ ├── jquery.js │ │ └── package.json │ └── less/ │ ├── alerts.less │ ├── badges.less │ ├── bootswatch.less │ ├── breadcrumbs.less │ ├── button-groups.less │ ├── buttons.less │ ├── carousel.less │ ├── close.less │ ├── code.less │ ├── component-animations.less │ ├── dropdowns.less │ ├── forms.less │ ├── glyphicons.less │ ├── grid.less │ ├── ie8and.less │ ├── input-groups.less │ ├── jumbotron.less │ ├── labels.less │ ├── list-group.less │ ├── main.less │ ├── media.less │ ├── mixins.less │ ├── modals.less │ ├── navbar.less │ ├── navs.less │ ├── normalize.less │ ├── pager.less │ ├── pagination.less │ ├── panels.less │ ├── popovers.less │ ├── print.less │ ├── progress-bars.less │ ├── responsive-utilities.less │ ├── scaffolding.less │ ├── site-ie8and.less │ ├── site-nojavascript.less │ ├── site-responsive.less │ ├── site.less │ ├── tables.less │ ├── theme.less │ ├── thumbnails.less │ ├── tooltip.less │ ├── type.less │ ├── utilities.less │ ├── variables-flatly.less │ ├── variables.less │ └── wells.less ├── route/ │ ├── health.js │ ├── index.js │ ├── new.js │ ├── result/ │ │ ├── download.js │ │ └── index.js │ └── task/ │ ├── delete.js │ ├── edit.js │ ├── ignore.js │ ├── index.js │ ├── run.js │ └── unignore.js ├── test/ │ └── integration/ │ ├── helper/ │ │ └── navigate.js │ ├── route/ │ │ ├── health.js │ │ ├── index.js │ │ ├── new.js │ │ ├── result/ │ │ │ ├── download.js │ │ │ └── index.js │ │ └── task/ │ │ ├── delete.js │ │ ├── edit.js │ │ ├── index.js │ │ └── run.js │ └── setup.js └── view/ ├── 404.html ├── 500.html ├── helper/ │ ├── conditionals.js │ ├── date.js │ ├── string.js │ └── url.js ├── index.html ├── layout/ │ └── default.html ├── new.html ├── partial/ │ ├── breadcrumb.html │ ├── graph.html │ ├── page-footer.html │ ├── page-header.html │ ├── result-header.html │ ├── result.html │ ├── task-header.html │ └── tasks.html ├── presenter/ │ ├── ignore.js │ ├── result-list.js │ ├── result.js │ └── task.js ├── result/ │ └── index.html └── task/ ├── delete.html ├── edit.html └── index.html