gitextract_f5y6cz_r/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yml │ └── workflows/ │ ├── black.yml │ ├── codeql-analysis.yml │ └── isort.yml ├── .gitignore ├── .isort.cfg ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── api/ │ ├── dependencies.py │ ├── exceptions.py │ ├── main.py │ └── routers/ │ ├── oauth.py │ └── webhooks.py ├── bot/ │ ├── __main__.py │ ├── bot.py │ ├── cogs/ │ │ ├── admin.py │ │ ├── brainfeed.py │ │ ├── coc.py │ │ ├── code_exec.py │ │ ├── fun.py │ │ ├── github.py │ │ ├── help_command.py │ │ ├── joke.py │ │ ├── packages.py │ │ ├── quiz.py │ │ ├── rtfm.py │ │ ├── stackexchange.py │ │ ├── thank.py │ │ └── utils.py │ ├── core.py │ └── utils/ │ ├── embed_flag_input.py │ ├── fuzzy.py │ ├── process_files.py │ └── rtfm.py ├── bot.Dockerfile ├── config/ │ ├── __init__.py │ ├── bot.py │ ├── common.py │ ├── oauth.py │ ├── reddit.py │ └── webhook.py ├── heroku.yml ├── models.py ├── public/ │ └── templates/ │ ├── 404.html │ ├── oauth_error.html │ └── oauth_success.html ├── requirements-bot.txt ├── requirements-dev.txt ├── requirements.txt ├── tortoise_config.py ├── utils/ │ ├── db_backup.py │ ├── embed.py │ └── webhook.py └── vercel.json