├── .gitignore ├── Procfile ├── README.md ├── app.py ├── helper_functions.py ├── problems.py ├── requirements.txt ├── runtime.txt ├── static ├── Bootstrap │ ├── css │ │ ├── addons │ │ │ ├── datatables-select.css │ │ │ ├── datatables-select.min.css │ │ │ ├── datatables.css │ │ │ ├── datatables.min.css │ │ │ ├── directives.css │ │ │ ├── directives.min.css │ │ │ ├── flag.css │ │ │ ├── flag.min.css │ │ │ ├── rating.css │ │ │ ├── rating.min.css │ │ │ ├── zmd.hierarchical-display.css │ │ │ └── zmd.hierarchical-display.min.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── mdb.css │ │ ├── mdb.lite.css │ │ ├── mdb.lite.min.css │ │ ├── mdb.min.css │ │ ├── modules │ │ │ ├── animations-extended.css │ │ │ └── animations-extended.min.css │ │ ├── style.css │ │ └── style.min.css │ ├── font │ │ └── roboto │ │ │ ├── Roboto-Bold.eot │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Bold.woff │ │ │ ├── Roboto-Bold.woff2 │ │ │ ├── Roboto-Light.eot │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Light.woff │ │ │ ├── Roboto-Light.woff2 │ │ │ ├── Roboto-Medium.eot │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Medium.woff │ │ │ ├── Roboto-Medium.woff2 │ │ │ ├── Roboto-Regular.eot │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.woff │ │ │ ├── Roboto-Regular.woff2 │ │ │ ├── Roboto-Thin.eot │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-Thin.woff │ │ │ └── Roboto-Thin.woff2 │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── img │ │ ├── flags.png │ │ ├── lightbox │ │ │ ├── default-skin.png │ │ │ ├── default-skin.svg │ │ │ └── preloader.gif │ │ ├── overlays │ │ │ ├── 01.png │ │ │ ├── 02.png │ │ │ ├── 03.png │ │ │ ├── 04.png │ │ │ ├── 05.png │ │ │ ├── 06.png │ │ │ ├── 07.png │ │ │ ├── 08.png │ │ │ └── 09.png │ │ ├── sample.jpg │ │ └── svg │ │ │ ├── arrow_left.svg │ │ │ ├── arrow_right.svg │ │ │ └── flags.png │ ├── js │ │ ├── addons │ │ │ ├── datatables-select.js │ │ │ ├── datatables-select.min.js │ │ │ ├── datatables.js │ │ │ ├── datatables.min.js │ │ │ ├── imagesloaded.pkgd.min.js │ │ │ ├── jquery.zmd.hierarchical-display.js │ │ │ ├── jquery.zmd.hierarchical-display.min.js │ │ │ ├── masonry.pkgd.min.js │ │ │ ├── progressBar.js │ │ │ ├── progressBar.min.js │ │ │ ├── rating.js │ │ │ └── rating.min.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-3.4.1.min.js │ │ ├── mdb.js │ │ ├── mdb.min.js │ │ ├── modules │ │ │ ├── bs-custom-file-input.js │ │ │ ├── chart.js │ │ │ ├── default-file-input.js │ │ │ ├── enhanced-modals.js │ │ │ ├── forms-free.js │ │ │ ├── jquery.easing.js │ │ │ ├── scrolling-navbar.js │ │ │ ├── treeview.js │ │ │ ├── velocity.js │ │ │ ├── velocity.min.js │ │ │ ├── waves.js │ │ │ └── wow.js │ │ └── popper.min.js │ └── scss │ │ ├── _custom-skin.scss │ │ ├── _custom-styles.scss │ │ ├── _custom-variables.scss │ │ ├── addons │ │ ├── _datatables-select.scss │ │ ├── _datatables.scss │ │ ├── _directives.scss │ │ ├── _flags.scss │ │ ├── _hierarchical-display.scss │ │ └── _rating.scss │ │ ├── core │ │ ├── _colors.scss │ │ ├── _global.scss │ │ ├── _helpers.scss │ │ ├── _masks.scss │ │ ├── _mixins.scss │ │ ├── _typography.scss │ │ ├── _variables.scss │ │ ├── _waves.scss │ │ └── bootstrap │ │ │ ├── _functions.scss │ │ │ ├── _rfs.scss │ │ │ └── _variables.scss │ │ ├── free │ │ ├── _animations-basic.scss │ │ ├── _badges.scss │ │ ├── _buttons.scss │ │ ├── _cards.scss │ │ ├── _carousels.scss │ │ ├── _depreciated.scss │ │ ├── _dropdowns.scss │ │ ├── _footers.scss │ │ ├── _forms.scss │ │ ├── _input-group.scss │ │ ├── _list-group.scss │ │ ├── _loader.scss │ │ ├── _modals.scss │ │ ├── _msc.scss │ │ ├── _navbars.scss │ │ ├── _pagination.scss │ │ ├── _steppers.scss │ │ ├── _switch.scss │ │ ├── _tables.scss │ │ ├── _treeview.scss │ │ └── modules │ │ │ └── animations-extended │ │ │ ├── _module.scss │ │ │ └── animations-extended.scss │ │ ├── mdb.lite.scss │ │ ├── mdb.scss │ │ └── style.scss └── images │ ├── codeforces-icon.png │ ├── favicon.png │ └── me.jpg └── templates ├── base.html ├── footer.html ├── home.html ├── messages.html ├── modal_about.html ├── modal_further_clarification.html ├── modal_recommended_clarification.html ├── navbar.html ├── problems.html ├── scripts.html └── team_mode.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/app.py -------------------------------------------------------------------------------- /helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/helper_functions.py -------------------------------------------------------------------------------- /problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/problems.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.8 -------------------------------------------------------------------------------- /static/Bootstrap/css/addons/datatables-select.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/addons/datatables-select.css -------------------------------------------------------------------------------- /static/Bootstrap/css/addons/datatables-select.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/addons/datatables-select.min.css -------------------------------------------------------------------------------- /static/Bootstrap/css/addons/datatables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/addons/datatables.css -------------------------------------------------------------------------------- /static/Bootstrap/css/addons/datatables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/addons/datatables.min.css -------------------------------------------------------------------------------- /static/Bootstrap/css/addons/directives.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/addons/directives.css -------------------------------------------------------------------------------- /static/Bootstrap/css/addons/directives.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/addons/directives.min.css -------------------------------------------------------------------------------- /static/Bootstrap/css/addons/flag.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/addons/flag.css -------------------------------------------------------------------------------- /static/Bootstrap/css/addons/flag.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/addons/flag.min.css -------------------------------------------------------------------------------- /static/Bootstrap/css/addons/rating.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/addons/rating.css -------------------------------------------------------------------------------- /static/Bootstrap/css/addons/rating.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/addons/rating.min.css -------------------------------------------------------------------------------- /static/Bootstrap/css/addons/zmd.hierarchical-display.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/addons/zmd.hierarchical-display.css -------------------------------------------------------------------------------- /static/Bootstrap/css/addons/zmd.hierarchical-display.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/addons/zmd.hierarchical-display.min.css -------------------------------------------------------------------------------- /static/Bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/Bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/Bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/Bootstrap/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /static/Bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /static/Bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/Bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/Bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/Bootstrap/css/mdb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/mdb.css -------------------------------------------------------------------------------- /static/Bootstrap/css/mdb.lite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/mdb.lite.css -------------------------------------------------------------------------------- /static/Bootstrap/css/mdb.lite.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/mdb.lite.min.css -------------------------------------------------------------------------------- /static/Bootstrap/css/mdb.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/mdb.min.css -------------------------------------------------------------------------------- /static/Bootstrap/css/modules/animations-extended.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/modules/animations-extended.css -------------------------------------------------------------------------------- /static/Bootstrap/css/modules/animations-extended.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/modules/animations-extended.min.css -------------------------------------------------------------------------------- /static/Bootstrap/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/style.css -------------------------------------------------------------------------------- /static/Bootstrap/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/css/style.min.css -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Bold.eot -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Light.eot -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Medium.eot -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Regular.eot -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Thin.eot -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /static/Bootstrap/font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /static/Bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/Bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/Bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/Bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/Bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/Bootstrap/img/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/flags.png -------------------------------------------------------------------------------- /static/Bootstrap/img/lightbox/default-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/lightbox/default-skin.png -------------------------------------------------------------------------------- /static/Bootstrap/img/lightbox/default-skin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/lightbox/default-skin.svg -------------------------------------------------------------------------------- /static/Bootstrap/img/lightbox/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/lightbox/preloader.gif -------------------------------------------------------------------------------- /static/Bootstrap/img/overlays/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/overlays/01.png -------------------------------------------------------------------------------- /static/Bootstrap/img/overlays/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/overlays/02.png -------------------------------------------------------------------------------- /static/Bootstrap/img/overlays/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/overlays/03.png -------------------------------------------------------------------------------- /static/Bootstrap/img/overlays/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/overlays/04.png -------------------------------------------------------------------------------- /static/Bootstrap/img/overlays/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/overlays/05.png -------------------------------------------------------------------------------- /static/Bootstrap/img/overlays/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/overlays/06.png -------------------------------------------------------------------------------- /static/Bootstrap/img/overlays/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/overlays/07.png -------------------------------------------------------------------------------- /static/Bootstrap/img/overlays/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/overlays/08.png -------------------------------------------------------------------------------- /static/Bootstrap/img/overlays/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/overlays/09.png -------------------------------------------------------------------------------- /static/Bootstrap/img/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/sample.jpg -------------------------------------------------------------------------------- /static/Bootstrap/img/svg/arrow_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/svg/arrow_left.svg -------------------------------------------------------------------------------- /static/Bootstrap/img/svg/arrow_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/svg/arrow_right.svg -------------------------------------------------------------------------------- /static/Bootstrap/img/svg/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/img/svg/flags.png -------------------------------------------------------------------------------- /static/Bootstrap/js/addons/datatables-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/addons/datatables-select.js -------------------------------------------------------------------------------- /static/Bootstrap/js/addons/datatables-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/addons/datatables-select.min.js -------------------------------------------------------------------------------- /static/Bootstrap/js/addons/datatables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/addons/datatables.js -------------------------------------------------------------------------------- /static/Bootstrap/js/addons/datatables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/addons/datatables.min.js -------------------------------------------------------------------------------- /static/Bootstrap/js/addons/imagesloaded.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/addons/imagesloaded.pkgd.min.js -------------------------------------------------------------------------------- /static/Bootstrap/js/addons/jquery.zmd.hierarchical-display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/addons/jquery.zmd.hierarchical-display.js -------------------------------------------------------------------------------- /static/Bootstrap/js/addons/jquery.zmd.hierarchical-display.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/addons/jquery.zmd.hierarchical-display.min.js -------------------------------------------------------------------------------- /static/Bootstrap/js/addons/masonry.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/addons/masonry.pkgd.min.js -------------------------------------------------------------------------------- /static/Bootstrap/js/addons/progressBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/addons/progressBar.js -------------------------------------------------------------------------------- /static/Bootstrap/js/addons/progressBar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/addons/progressBar.min.js -------------------------------------------------------------------------------- /static/Bootstrap/js/addons/rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/addons/rating.js -------------------------------------------------------------------------------- /static/Bootstrap/js/addons/rating.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/addons/rating.min.js -------------------------------------------------------------------------------- /static/Bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /static/Bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/Bootstrap/js/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /static/Bootstrap/js/mdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/mdb.js -------------------------------------------------------------------------------- /static/Bootstrap/js/mdb.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/mdb.min.js -------------------------------------------------------------------------------- /static/Bootstrap/js/modules/bs-custom-file-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/modules/bs-custom-file-input.js -------------------------------------------------------------------------------- /static/Bootstrap/js/modules/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/modules/chart.js -------------------------------------------------------------------------------- /static/Bootstrap/js/modules/default-file-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/modules/default-file-input.js -------------------------------------------------------------------------------- /static/Bootstrap/js/modules/enhanced-modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/modules/enhanced-modals.js -------------------------------------------------------------------------------- /static/Bootstrap/js/modules/forms-free.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/modules/forms-free.js -------------------------------------------------------------------------------- /static/Bootstrap/js/modules/jquery.easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/modules/jquery.easing.js -------------------------------------------------------------------------------- /static/Bootstrap/js/modules/scrolling-navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/modules/scrolling-navbar.js -------------------------------------------------------------------------------- /static/Bootstrap/js/modules/treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/modules/treeview.js -------------------------------------------------------------------------------- /static/Bootstrap/js/modules/velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/modules/velocity.js -------------------------------------------------------------------------------- /static/Bootstrap/js/modules/velocity.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/modules/velocity.min.js -------------------------------------------------------------------------------- /static/Bootstrap/js/modules/waves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/modules/waves.js -------------------------------------------------------------------------------- /static/Bootstrap/js/modules/wow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/modules/wow.js -------------------------------------------------------------------------------- /static/Bootstrap/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/js/popper.min.js -------------------------------------------------------------------------------- /static/Bootstrap/scss/_custom-skin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/_custom-skin.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/_custom-styles.scss: -------------------------------------------------------------------------------- 1 | // Your custom styles -------------------------------------------------------------------------------- /static/Bootstrap/scss/_custom-variables.scss: -------------------------------------------------------------------------------- 1 | // Your custom variables -------------------------------------------------------------------------------- /static/Bootstrap/scss/addons/_datatables-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/addons/_datatables-select.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/addons/_datatables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/addons/_datatables.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/addons/_directives.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/addons/_directives.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/addons/_flags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/addons/_flags.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/addons/_hierarchical-display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/addons/_hierarchical-display.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/addons/_rating.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/addons/_rating.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/core/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/core/_colors.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/core/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/core/_global.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/core/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/core/_helpers.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/core/_masks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/core/_masks.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/core/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/core/_mixins.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/core/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/core/_typography.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/core/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/core/_variables.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/core/_waves.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/core/_waves.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/core/bootstrap/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/core/bootstrap/_functions.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/core/bootstrap/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/core/bootstrap/_rfs.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/core/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/core/bootstrap/_variables.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_animations-basic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_animations-basic.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_badges.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_buttons.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_cards.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_carousels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_carousels.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_depreciated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_depreciated.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_dropdowns.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_footers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_footers.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_forms.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_input-group.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_list-group.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_loader.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_modals.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_msc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_msc.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_navbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_navbars.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_pagination.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_steppers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_steppers.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_switch.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_tables.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/_treeview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/_treeview.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/modules/animations-extended/_module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/modules/animations-extended/_module.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/free/modules/animations-extended/animations-extended.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/free/modules/animations-extended/animations-extended.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/mdb.lite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/mdb.lite.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/mdb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/mdb.scss -------------------------------------------------------------------------------- /static/Bootstrap/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/Bootstrap/scss/style.scss -------------------------------------------------------------------------------- /static/images/codeforces-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/images/codeforces-icon.png -------------------------------------------------------------------------------- /static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/images/favicon.png -------------------------------------------------------------------------------- /static/images/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/static/images/me.jpg -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/templates/footer.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/templates/messages.html -------------------------------------------------------------------------------- /templates/modal_about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/templates/modal_about.html -------------------------------------------------------------------------------- /templates/modal_further_clarification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/templates/modal_further_clarification.html -------------------------------------------------------------------------------- /templates/modal_recommended_clarification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/templates/modal_recommended_clarification.html -------------------------------------------------------------------------------- /templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/templates/navbar.html -------------------------------------------------------------------------------- /templates/problems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/templates/problems.html -------------------------------------------------------------------------------- /templates/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/templates/scripts.html -------------------------------------------------------------------------------- /templates/team_mode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pirateksh/codeforces-upsolving-helper/HEAD/templates/team_mode.html --------------------------------------------------------------------------------