├── .deepsource.toml ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── main.yml │ └── python-app.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── PrimeMega ├── __init__.py ├── __main__.py ├── config.py ├── confing.py ├── elevated_users.json ├── events.py ├── ex_plugins │ ├── ImageEditor │ │ ├── edit_1.py │ │ ├── edit_2.py │ │ ├── edit_3.py │ │ ├── edit_4.py │ │ └── edit_5.py │ ├── chatbot.py │ ├── dbfunctions.py │ └── errors.py ├── modules │ ├── __init__.py │ ├── admin.py │ ├── afk.py │ ├── animation.py │ ├── anime.py │ ├── animequotes.py │ ├── antichannel.py │ ├── antiflood.py │ ├── antinsfw.py │ ├── apakah.py │ ├── approve.py │ ├── asupan.py │ ├── backups.py │ ├── bans.py │ ├── blacklist.py │ ├── blacklist_stickers.py │ ├── blacklistusers.py │ ├── bug.py │ ├── carbon.py │ ├── cash.py │ ├── cleaner.py │ ├── connection.py │ ├── core.py │ ├── country.py │ ├── currency_converter.py │ ├── cust_filters.py │ ├── dbcleanup.py │ ├── debug.py │ ├── dev.py │ ├── disable.py │ ├── disasters.py │ ├── encrypt.py │ ├── eror_handler.py │ ├── eval.py │ ├── feds.py │ ├── forcesubs.py │ ├── fun.py │ ├── fun_strings.py │ ├── gettime.py │ ├── global_bans.py │ ├── google.py │ ├── gshield.py │ ├── gtranslator.py │ ├── helper_funcs │ │ ├── __init__.py │ │ ├── admin_rights.py │ │ ├── alternate.py │ │ ├── channel_mode.py │ │ ├── chat_status.py │ │ ├── decorators.py │ │ ├── extraction.py │ │ ├── filters.py │ │ ├── handlers.py │ │ ├── misc.py │ │ ├── msg_types.py │ │ ├── readable_time.py │ │ ├── regex_helper.py │ │ ├── string_handling.py │ │ └── telethn │ │ │ ├── __init__.py │ │ │ └── chatstatus.py │ ├── heroku.py │ ├── imdb.py │ ├── imgeditor.py │ ├── info.py │ ├── inlinebot.py │ ├── json.py │ ├── kamuii.py │ ├── karma.py │ ├── locks.py │ ├── log_channel.py │ ├── logomaker.py │ ├── math.py │ ├── memify.py │ ├── mentionall.py │ ├── misc.py │ ├── modules.py │ ├── music.py │ ├── muting.py │ ├── myanimelist.py │ ├── nightmode.py │ ├── notes.py │ ├── nsfw.py │ ├── paste.py │ ├── ping.py │ ├── pokedex.py │ ├── purge.py │ ├── pyrogithub.py │ ├── quotly.py │ ├── randomapi.py │ ├── reactions.py │ ├── reddit.py │ ├── remote_cmds.py │ ├── reporting.py │ ├── reverse.py │ ├── rmbg.py │ ├── rules.py │ ├── sangmata.py │ ├── sed.py │ ├── shell.py │ ├── shippering.py │ ├── speachtotext.py │ ├── speed_test.py │ ├── sql │ │ ├── __init__.py │ │ ├── afk_sql.py │ │ ├── antichannel_sql.py │ │ ├── antiflood_sql.py │ │ ├── approve_sql.py │ │ ├── blacklist_sql.py │ │ ├── blacklistusers_sql.py │ │ ├── blsticker_sql.py │ │ ├── cleaner_sql.py │ │ ├── connection_sql.py │ │ ├── cust_filters_sql.py │ │ ├── disable_sql.py │ │ ├── feds_sql.py │ │ ├── forceSubscribe_sql.py │ │ ├── global_bans_sql.py │ │ ├── locks_sql.py │ │ ├── log_channel_sql.py │ │ ├── night_mode_sql.py │ │ ├── notes_sql.py │ │ ├── nsfw_sql.py │ │ ├── nsfw_watch_sql.py │ │ ├── reporting_sql.py │ │ ├── rules_sql.py │ │ ├── userinfo_sql.py │ │ ├── users_sql.py │ │ ├── warns_sql.py │ │ └── welcome_sql.py │ ├── staff.py │ ├── stickers.py │ ├── styletext.py │ ├── telegraph.py │ ├── term_and_eval.py │ ├── texttospeech.py │ ├── tiny.py │ ├── tools.py │ ├── upload.py │ ├── urbandictionary.py │ ├── urluploader.py │ ├── userinfo.py │ ├── users.py │ ├── wallpaper.py │ ├── warns.py │ ├── weather.py │ ├── webshot.py │ ├── welcome.py │ ├── whatanime.py │ ├── wiki.py │ ├── zipping.py │ └── zombies.py ├── mongo.py ├── resources │ ├── Prime.jpg │ ├── Prime.png │ ├── default.ttf │ └── fonts │ │ ├── 0.ttf │ │ ├── 1.ttf │ │ ├── 11.otf │ │ ├── 12.otf │ │ ├── 2.ttf │ │ ├── 3.ttf │ │ ├── 4.ttf │ │ ├── 5.ttf │ │ ├── 6.ttf │ │ ├── 7.ttf │ │ ├── 9.ttf │ │ └── default.ttf ├── services │ ├── dark.py │ ├── keyboard.py │ ├── sections.py │ ├── tasks.py │ ├── telethonbasics.py │ └── types │ │ ├── InlineQueryResult.py │ │ └── __init__.py └── utils │ ├── adminperms.py │ ├── arqapi.py │ ├── errors.py │ ├── filter_groups.py │ ├── functions.py │ ├── http.py │ ├── inlinefuncs.py │ ├── paste.py │ ├── pastebin.py │ ├── permissions.py │ ├── pluginhelper.py │ └── uputils.py ├── Procfile ├── README.md ├── app.json ├── prime.env ├── profanity_wordlist.txt ├── requirements.txt ├── runtime.txt └── start /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @Tonic990 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/LICENSE -------------------------------------------------------------------------------- /PrimeMega/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/__init__.py -------------------------------------------------------------------------------- /PrimeMega/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/__main__.py -------------------------------------------------------------------------------- /PrimeMega/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/config.py -------------------------------------------------------------------------------- /PrimeMega/confing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/confing.py -------------------------------------------------------------------------------- /PrimeMega/elevated_users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/elevated_users.json -------------------------------------------------------------------------------- /PrimeMega/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/events.py -------------------------------------------------------------------------------- /PrimeMega/ex_plugins/ImageEditor/edit_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/ex_plugins/ImageEditor/edit_1.py -------------------------------------------------------------------------------- /PrimeMega/ex_plugins/ImageEditor/edit_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/ex_plugins/ImageEditor/edit_2.py -------------------------------------------------------------------------------- /PrimeMega/ex_plugins/ImageEditor/edit_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/ex_plugins/ImageEditor/edit_3.py -------------------------------------------------------------------------------- /PrimeMega/ex_plugins/ImageEditor/edit_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/ex_plugins/ImageEditor/edit_4.py -------------------------------------------------------------------------------- /PrimeMega/ex_plugins/ImageEditor/edit_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/ex_plugins/ImageEditor/edit_5.py -------------------------------------------------------------------------------- /PrimeMega/ex_plugins/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/ex_plugins/chatbot.py -------------------------------------------------------------------------------- /PrimeMega/ex_plugins/dbfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/ex_plugins/dbfunctions.py -------------------------------------------------------------------------------- /PrimeMega/ex_plugins/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/ex_plugins/errors.py -------------------------------------------------------------------------------- /PrimeMega/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/__init__.py -------------------------------------------------------------------------------- /PrimeMega/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/admin.py -------------------------------------------------------------------------------- /PrimeMega/modules/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/afk.py -------------------------------------------------------------------------------- /PrimeMega/modules/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/animation.py -------------------------------------------------------------------------------- /PrimeMega/modules/anime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/anime.py -------------------------------------------------------------------------------- /PrimeMega/modules/animequotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/animequotes.py -------------------------------------------------------------------------------- /PrimeMega/modules/antichannel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/antichannel.py -------------------------------------------------------------------------------- /PrimeMega/modules/antiflood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/antiflood.py -------------------------------------------------------------------------------- /PrimeMega/modules/antinsfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/antinsfw.py -------------------------------------------------------------------------------- /PrimeMega/modules/apakah.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/apakah.py -------------------------------------------------------------------------------- /PrimeMega/modules/approve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/approve.py -------------------------------------------------------------------------------- /PrimeMega/modules/asupan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/asupan.py -------------------------------------------------------------------------------- /PrimeMega/modules/backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/backups.py -------------------------------------------------------------------------------- /PrimeMega/modules/bans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/bans.py -------------------------------------------------------------------------------- /PrimeMega/modules/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/blacklist.py -------------------------------------------------------------------------------- /PrimeMega/modules/blacklist_stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/blacklist_stickers.py -------------------------------------------------------------------------------- /PrimeMega/modules/blacklistusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/blacklistusers.py -------------------------------------------------------------------------------- /PrimeMega/modules/bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/bug.py -------------------------------------------------------------------------------- /PrimeMega/modules/carbon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/carbon.py -------------------------------------------------------------------------------- /PrimeMega/modules/cash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/cash.py -------------------------------------------------------------------------------- /PrimeMega/modules/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/cleaner.py -------------------------------------------------------------------------------- /PrimeMega/modules/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/connection.py -------------------------------------------------------------------------------- /PrimeMega/modules/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/core.py -------------------------------------------------------------------------------- /PrimeMega/modules/country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/country.py -------------------------------------------------------------------------------- /PrimeMega/modules/currency_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/currency_converter.py -------------------------------------------------------------------------------- /PrimeMega/modules/cust_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/cust_filters.py -------------------------------------------------------------------------------- /PrimeMega/modules/dbcleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/dbcleanup.py -------------------------------------------------------------------------------- /PrimeMega/modules/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/debug.py -------------------------------------------------------------------------------- /PrimeMega/modules/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/dev.py -------------------------------------------------------------------------------- /PrimeMega/modules/disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/disable.py -------------------------------------------------------------------------------- /PrimeMega/modules/disasters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/disasters.py -------------------------------------------------------------------------------- /PrimeMega/modules/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/encrypt.py -------------------------------------------------------------------------------- /PrimeMega/modules/eror_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/eror_handler.py -------------------------------------------------------------------------------- /PrimeMega/modules/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/eval.py -------------------------------------------------------------------------------- /PrimeMega/modules/feds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/feds.py -------------------------------------------------------------------------------- /PrimeMega/modules/forcesubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/forcesubs.py -------------------------------------------------------------------------------- /PrimeMega/modules/fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/fun.py -------------------------------------------------------------------------------- /PrimeMega/modules/fun_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/fun_strings.py -------------------------------------------------------------------------------- /PrimeMega/modules/gettime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/gettime.py -------------------------------------------------------------------------------- /PrimeMega/modules/global_bans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/global_bans.py -------------------------------------------------------------------------------- /PrimeMega/modules/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/google.py -------------------------------------------------------------------------------- /PrimeMega/modules/gshield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/gshield.py -------------------------------------------------------------------------------- /PrimeMega/modules/gtranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/gtranslator.py -------------------------------------------------------------------------------- /PrimeMega/modules/helper_funcs/__init__.py: -------------------------------------------------------------------------------- 1 | """Helpers, also known as Utilities.""" 2 | -------------------------------------------------------------------------------- /PrimeMega/modules/helper_funcs/admin_rights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/helper_funcs/admin_rights.py -------------------------------------------------------------------------------- /PrimeMega/modules/helper_funcs/alternate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/helper_funcs/alternate.py -------------------------------------------------------------------------------- /PrimeMega/modules/helper_funcs/channel_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/helper_funcs/channel_mode.py -------------------------------------------------------------------------------- /PrimeMega/modules/helper_funcs/chat_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/helper_funcs/chat_status.py -------------------------------------------------------------------------------- /PrimeMega/modules/helper_funcs/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/helper_funcs/decorators.py -------------------------------------------------------------------------------- /PrimeMega/modules/helper_funcs/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/helper_funcs/extraction.py -------------------------------------------------------------------------------- /PrimeMega/modules/helper_funcs/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/helper_funcs/filters.py -------------------------------------------------------------------------------- /PrimeMega/modules/helper_funcs/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/helper_funcs/handlers.py -------------------------------------------------------------------------------- /PrimeMega/modules/helper_funcs/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/helper_funcs/misc.py -------------------------------------------------------------------------------- /PrimeMega/modules/helper_funcs/msg_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/helper_funcs/msg_types.py -------------------------------------------------------------------------------- /PrimeMega/modules/helper_funcs/readable_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/helper_funcs/readable_time.py -------------------------------------------------------------------------------- /PrimeMega/modules/helper_funcs/regex_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/helper_funcs/regex_helper.py -------------------------------------------------------------------------------- /PrimeMega/modules/helper_funcs/string_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/helper_funcs/string_handling.py -------------------------------------------------------------------------------- /PrimeMega/modules/helper_funcs/telethn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/helper_funcs/telethn/__init__.py -------------------------------------------------------------------------------- /PrimeMega/modules/helper_funcs/telethn/chatstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/helper_funcs/telethn/chatstatus.py -------------------------------------------------------------------------------- /PrimeMega/modules/heroku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/heroku.py -------------------------------------------------------------------------------- /PrimeMega/modules/imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/imdb.py -------------------------------------------------------------------------------- /PrimeMega/modules/imgeditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/imgeditor.py -------------------------------------------------------------------------------- /PrimeMega/modules/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/info.py -------------------------------------------------------------------------------- /PrimeMega/modules/inlinebot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/inlinebot.py -------------------------------------------------------------------------------- /PrimeMega/modules/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/json.py -------------------------------------------------------------------------------- /PrimeMega/modules/kamuii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/kamuii.py -------------------------------------------------------------------------------- /PrimeMega/modules/karma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/karma.py -------------------------------------------------------------------------------- /PrimeMega/modules/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/locks.py -------------------------------------------------------------------------------- /PrimeMega/modules/log_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/log_channel.py -------------------------------------------------------------------------------- /PrimeMega/modules/logomaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/logomaker.py -------------------------------------------------------------------------------- /PrimeMega/modules/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/math.py -------------------------------------------------------------------------------- /PrimeMega/modules/memify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/memify.py -------------------------------------------------------------------------------- /PrimeMega/modules/mentionall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/mentionall.py -------------------------------------------------------------------------------- /PrimeMega/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/misc.py -------------------------------------------------------------------------------- /PrimeMega/modules/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/modules.py -------------------------------------------------------------------------------- /PrimeMega/modules/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/music.py -------------------------------------------------------------------------------- /PrimeMega/modules/muting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/muting.py -------------------------------------------------------------------------------- /PrimeMega/modules/myanimelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/myanimelist.py -------------------------------------------------------------------------------- /PrimeMega/modules/nightmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/nightmode.py -------------------------------------------------------------------------------- /PrimeMega/modules/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/notes.py -------------------------------------------------------------------------------- /PrimeMega/modules/nsfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/nsfw.py -------------------------------------------------------------------------------- /PrimeMega/modules/paste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/paste.py -------------------------------------------------------------------------------- /PrimeMega/modules/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/ping.py -------------------------------------------------------------------------------- /PrimeMega/modules/pokedex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/pokedex.py -------------------------------------------------------------------------------- /PrimeMega/modules/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/purge.py -------------------------------------------------------------------------------- /PrimeMega/modules/pyrogithub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/pyrogithub.py -------------------------------------------------------------------------------- /PrimeMega/modules/quotly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/quotly.py -------------------------------------------------------------------------------- /PrimeMega/modules/randomapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/randomapi.py -------------------------------------------------------------------------------- /PrimeMega/modules/reactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/reactions.py -------------------------------------------------------------------------------- /PrimeMega/modules/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/reddit.py -------------------------------------------------------------------------------- /PrimeMega/modules/remote_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/remote_cmds.py -------------------------------------------------------------------------------- /PrimeMega/modules/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/reporting.py -------------------------------------------------------------------------------- /PrimeMega/modules/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/reverse.py -------------------------------------------------------------------------------- /PrimeMega/modules/rmbg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/rmbg.py -------------------------------------------------------------------------------- /PrimeMega/modules/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/rules.py -------------------------------------------------------------------------------- /PrimeMega/modules/sangmata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sangmata.py -------------------------------------------------------------------------------- /PrimeMega/modules/sed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sed.py -------------------------------------------------------------------------------- /PrimeMega/modules/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/shell.py -------------------------------------------------------------------------------- /PrimeMega/modules/shippering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/shippering.py -------------------------------------------------------------------------------- /PrimeMega/modules/speachtotext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/speachtotext.py -------------------------------------------------------------------------------- /PrimeMega/modules/speed_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/speed_test.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/__init__.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/afk_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/afk_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/antichannel_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/antichannel_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/antiflood_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/antiflood_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/approve_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/approve_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/blacklist_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/blacklist_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/blacklistusers_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/blacklistusers_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/blsticker_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/blsticker_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/cleaner_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/cleaner_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/connection_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/connection_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/cust_filters_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/cust_filters_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/disable_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/disable_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/feds_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/feds_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/forceSubscribe_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/forceSubscribe_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/global_bans_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/global_bans_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/locks_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/locks_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/log_channel_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/log_channel_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/night_mode_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/night_mode_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/notes_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/notes_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/nsfw_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/nsfw_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/nsfw_watch_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/nsfw_watch_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/reporting_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/reporting_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/rules_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/rules_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/userinfo_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/userinfo_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/users_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/users_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/warns_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/warns_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/sql/welcome_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/sql/welcome_sql.py -------------------------------------------------------------------------------- /PrimeMega/modules/staff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/staff.py -------------------------------------------------------------------------------- /PrimeMega/modules/stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/stickers.py -------------------------------------------------------------------------------- /PrimeMega/modules/styletext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/styletext.py -------------------------------------------------------------------------------- /PrimeMega/modules/telegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/telegraph.py -------------------------------------------------------------------------------- /PrimeMega/modules/term_and_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/term_and_eval.py -------------------------------------------------------------------------------- /PrimeMega/modules/texttospeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/texttospeech.py -------------------------------------------------------------------------------- /PrimeMega/modules/tiny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/tiny.py -------------------------------------------------------------------------------- /PrimeMega/modules/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/tools.py -------------------------------------------------------------------------------- /PrimeMega/modules/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/upload.py -------------------------------------------------------------------------------- /PrimeMega/modules/urbandictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/urbandictionary.py -------------------------------------------------------------------------------- /PrimeMega/modules/urluploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/urluploader.py -------------------------------------------------------------------------------- /PrimeMega/modules/userinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/userinfo.py -------------------------------------------------------------------------------- /PrimeMega/modules/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/users.py -------------------------------------------------------------------------------- /PrimeMega/modules/wallpaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/wallpaper.py -------------------------------------------------------------------------------- /PrimeMega/modules/warns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/warns.py -------------------------------------------------------------------------------- /PrimeMega/modules/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/weather.py -------------------------------------------------------------------------------- /PrimeMega/modules/webshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/webshot.py -------------------------------------------------------------------------------- /PrimeMega/modules/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/welcome.py -------------------------------------------------------------------------------- /PrimeMega/modules/whatanime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/whatanime.py -------------------------------------------------------------------------------- /PrimeMega/modules/wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/wiki.py -------------------------------------------------------------------------------- /PrimeMega/modules/zipping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/zipping.py -------------------------------------------------------------------------------- /PrimeMega/modules/zombies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/modules/zombies.py -------------------------------------------------------------------------------- /PrimeMega/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/mongo.py -------------------------------------------------------------------------------- /PrimeMega/resources/Prime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/resources/Prime.jpg -------------------------------------------------------------------------------- /PrimeMega/resources/Prime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/resources/Prime.png -------------------------------------------------------------------------------- /PrimeMega/resources/default.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/resources/default.ttf -------------------------------------------------------------------------------- /PrimeMega/resources/fonts/0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/resources/fonts/0.ttf -------------------------------------------------------------------------------- /PrimeMega/resources/fonts/1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/resources/fonts/1.ttf -------------------------------------------------------------------------------- /PrimeMega/resources/fonts/11.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/resources/fonts/11.otf -------------------------------------------------------------------------------- /PrimeMega/resources/fonts/12.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/resources/fonts/12.otf -------------------------------------------------------------------------------- /PrimeMega/resources/fonts/2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/resources/fonts/2.ttf -------------------------------------------------------------------------------- /PrimeMega/resources/fonts/3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/resources/fonts/3.ttf -------------------------------------------------------------------------------- /PrimeMega/resources/fonts/4.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/resources/fonts/4.ttf -------------------------------------------------------------------------------- /PrimeMega/resources/fonts/5.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/resources/fonts/5.ttf -------------------------------------------------------------------------------- /PrimeMega/resources/fonts/6.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/resources/fonts/6.ttf -------------------------------------------------------------------------------- /PrimeMega/resources/fonts/7.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/resources/fonts/7.ttf -------------------------------------------------------------------------------- /PrimeMega/resources/fonts/9.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/resources/fonts/9.ttf -------------------------------------------------------------------------------- /PrimeMega/resources/fonts/default.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/resources/fonts/default.ttf -------------------------------------------------------------------------------- /PrimeMega/services/dark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/services/dark.py -------------------------------------------------------------------------------- /PrimeMega/services/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/services/keyboard.py -------------------------------------------------------------------------------- /PrimeMega/services/sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/services/sections.py -------------------------------------------------------------------------------- /PrimeMega/services/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/services/tasks.py -------------------------------------------------------------------------------- /PrimeMega/services/telethonbasics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/services/telethonbasics.py -------------------------------------------------------------------------------- /PrimeMega/services/types/InlineQueryResult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/services/types/InlineQueryResult.py -------------------------------------------------------------------------------- /PrimeMega/services/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/services/types/__init__.py -------------------------------------------------------------------------------- /PrimeMega/utils/adminperms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/utils/adminperms.py -------------------------------------------------------------------------------- /PrimeMega/utils/arqapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/utils/arqapi.py -------------------------------------------------------------------------------- /PrimeMega/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/utils/errors.py -------------------------------------------------------------------------------- /PrimeMega/utils/filter_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/utils/filter_groups.py -------------------------------------------------------------------------------- /PrimeMega/utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/utils/functions.py -------------------------------------------------------------------------------- /PrimeMega/utils/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/utils/http.py -------------------------------------------------------------------------------- /PrimeMega/utils/inlinefuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/utils/inlinefuncs.py -------------------------------------------------------------------------------- /PrimeMega/utils/paste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/utils/paste.py -------------------------------------------------------------------------------- /PrimeMega/utils/pastebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/utils/pastebin.py -------------------------------------------------------------------------------- /PrimeMega/utils/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/utils/permissions.py -------------------------------------------------------------------------------- /PrimeMega/utils/pluginhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/utils/pluginhelper.py -------------------------------------------------------------------------------- /PrimeMega/utils/uputils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/PrimeMega/utils/uputils.py -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: bash start 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/app.json -------------------------------------------------------------------------------- /prime.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/prime.env -------------------------------------------------------------------------------- /profanity_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/profanity_wordlist.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Toni880/PrimeMega/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.13 2 | -------------------------------------------------------------------------------- /start: -------------------------------------------------------------------------------- 1 | python3 -m PrimeMega 2 | --------------------------------------------------------------------------------