update to support deno 2 correctly

This commit is contained in:
Ean Milligan 2025-07-24 03:14:40 -04:00
parent 42cb621bf6
commit 2b2806bb76
18 changed files with 994 additions and 482 deletions

View File

@ -1,6 +1,6 @@
# Sweeper Bot | V0.4.5 - 2022/09/30
[![SonarCloud](https://sonarcloud.io/images/project_badges/sonarcloud-orange.svg)](https://sonarcloud.io/summary/new_code?id=SweeperBot)
# Sweeper Bot | V0.5.0 - 2022/09/30
[![SonarCloud](https://sonarcloud.io/images/project_badges/sonarcloud-orange.svg)](https://sonarcloud.io/summary/new_code?id=SweeperBot)\
[![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=SweeperBot&metric=sqale_rating)](https://sonarcloud.io/summary/new_code?id=SweeperBot) [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=SweeperBot&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=SweeperBot) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=SweeperBot&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=SweeperBot) [![Bugs](https://sonarcloud.io/api/project_badges/measure?project=SweeperBot&metric=bugs)](https://sonarcloud.io/summary/new_code?id=SweeperBot) [![Duplicated Lines (%)](https://sonarcloud.io/api/project_badges/measure?project=SweeperBot&metric=duplicated_lines_density)](https://sonarcloud.io/summary/new_code?id=SweeperBot) [![Lines of Code](https://sonarcloud.io/api/project_badges/measure?project=SweeperBot&metric=ncloc)](https://sonarcloud.io/summary/new_code?id=SweeperBot)
A Utility Bot for the Destiny 2 clan, -Midnight Coup-

View File

@ -1,23 +1,24 @@
export const config = {
'name': 'Sweeper Bot', // Name of the bot
'version': '0.4.5', // Version of the bot
'token': 'the_bot_token', // Discord API Token for this bot
'localtoken': 'local_testing_token', // Discord API Token for a secondary OPTIONAL testing bot, THIS MUST BE DIFFERENT FROM "token"
'prefix': 's!', // Prefix for all commands
'db': { // Settings for the MySQL database, this is required for use with the API, if you do not want to set this up, you will need to rip all code relating to the DB out of the bot
'host': '', // IP address for the db, usually localhost
'localhost': '', // IP address for a secondary OPTIONAL local testing DB, usually also is localhost, but depends on your dev environment
'port': 3306, // Port for the db
'username': '', // Username for the account that will access your DB, this account will need "DB Manager" admin rights and "REFERENCES" Global Privalages
'password': '', // Password for the account, user account may need to be authenticated with the "Standard" Authentication Type if this does not work out of the box
'name': '', // Name of the database Schema to use for the bot
name: 'Sweeper Bot', // Name of the bot
version: '0.5.0', // Version of the bot
token: 'the_bot_token', // Discord API Token for this bot
localtoken: 'local_testing_token', // Discord API Token for a secondary OPTIONAL testing bot, THIS MUST BE DIFFERENT FROM "token"
prefix: 's!', // Prefix for all commands
db: {
// Settings for the MySQL database, this is required for use with the API, if you do not want to set this up, you will need to rip all code relating to the DB out of the bot
host: '', // IP address for the db, usually localhost
localhost: '', // IP address for a secondary OPTIONAL local testing DB, usually also is localhost, but depends on your dev environment
port: 3306, // Port for the db
username: '', // Username for the account that will access your DB, this account will need "DB Manager" admin rights and "REFERENCES" Global Privalages
password: '', // Password for the account, user account may need to be authenticated with the "Standard" Authentication Type if this does not work out of the box
name: '', // Name of the database Schema to use for the bot
},
'logChannel': 0n, // Discord channel ID where the bot should put startup messages and other error messages needed
'reportChannel': 0n, // Discord channel ID where reports will be sent when using the built-in report command
'devServer': 0n, // Discord guild ID where testing of indev features/commands will be handled, used in conjuction with the DEVMODE bool in mod.ts
'ownerId': 0n, // Discord user ID of the bot owner
'pollChannels': [], // List of Discord channel IDs that are to be managed by the pollReaction system
'raidCheckpointChannel': [], // List of Discord channel IDs that are to be managed by the cleanRaidCheckpoints system
logChannel: 0n, // Discord channel ID where the bot should put startup messages and other error messages needed
reportChannel: 0n, // Discord channel ID where reports will be sent when using the built-in report command
devServer: 0n, // Discord guild ID where testing of indev features/commands will be handled, used in conjuction with the DEVMODE bool in mod.ts
ownerId: 0n, // Discord user ID of the bot owner
pollChannels: [], // List of Discord channel IDs that are to be managed by the pollReaction system
raidCheckpointChannel: [], // List of Discord channel IDs that are to be managed by the cleanRaidCheckpoints system
};
export default config;

View File

@ -1,14 +1,11 @@
{
"compilerOptions": {
"allowJs": true,
"lib": ["deno.worker"],
"strict": true
},
"lint": {
"files": {
"include": ["src/", "db/", "mod.ts", "deps.ts", "config.ts", "config.example.ts"],
"exclude": []
},
"exclude": [],
"rules": {
"tags": ["recommended"],
"include": ["ban-untagged-todo"],
@ -16,16 +13,12 @@
}
},
"fmt": {
"files": {
"include": ["src/", "db/", "mod.ts", "deps.ts", "config.ts", "config.example.ts"],
"exclude": []
},
"options": {
"exclude": [],
"useTabs": true,
"lineWidth": 200,
"indentWidth": 2,
"singleQuote": true,
"proseWrap": "preserve"
}
}
}

497
deno.lock Normal file
View File

@ -0,0 +1,497 @@
{
"version": "4",
"specifiers": {
"jsr:@std/io@0.225.2": "0.225.2"
},
"jsr": {
"@std/io@0.225.2": {
"integrity": "3c740cd4ee4c082e6cfc86458f47e2ab7cb353dc6234d5e9b1f91a2de5f4d6c7"
}
},
"redirects": {
"https://deno.land/std/hash/mod.ts": "https://deno.land/std@0.224.0/hash/mod.ts"
},
"remote": {
"https://deno.land/std@0.104.0/_util/assert.ts": "2f868145a042a11d5ad0a3c748dcf580add8a0dbc0e876eaa0026303a5488f58",
"https://deno.land/std@0.104.0/async/deadline.ts": "1d6ac7aeaee22f75eb86e4e105d6161118aad7b41ae2dd14f4cfd3bf97472b93",
"https://deno.land/std@0.104.0/async/debounce.ts": "b2f693e4baa16b62793fd618de6c003b63228db50ecfe3bd51fc5f6dc0bc264b",
"https://deno.land/std@0.104.0/async/deferred.ts": "ce81070ad3ba3294f3f34c032af884ccde1a20922b648f6eaee54bd8fd951a1e",
"https://deno.land/std@0.104.0/async/delay.ts": "9de1d8d07d1927767ab7f82434b883f3d8294fb19cad819691a2ad81a728cf3d",
"https://deno.land/std@0.104.0/async/mod.ts": "78425176fabea7bd1046ce3819fd69ce40da85c83e0f174d17e8e224a91f7d10",
"https://deno.land/std@0.104.0/async/mux_async_iterator.ts": "62abff3af9ff619e8f2adc96fc70d4ca020fa48a50c23c13f12d02ed2b760dbe",
"https://deno.land/std@0.104.0/async/pool.ts": "353ce4f91865da203a097aa6f33de8966340c91b6f4a055611c8c5d534afd12f",
"https://deno.land/std@0.104.0/async/tee.ts": "6b8f1322b6dd2396202cfbe9cde9cab158d1e962cfd9197b0a97c6657bee79ce",
"https://deno.land/std@0.104.0/bytes/bytes_list.ts": "a13287edb03f19d27ba4927dec6d6de3e5bd46254cd4aee6f7e5815810122673",
"https://deno.land/std@0.104.0/bytes/mod.ts": "1ae1ccfe98c4b979f12b015982c7444f81fcb921bea7aa215bf37d84f46e1e13",
"https://deno.land/std@0.104.0/encoding/base64.ts": "eecae390f1f1d1cae6f6c6d732ede5276bf4b9cd29b1d281678c054dc5cc009e",
"https://deno.land/std@0.104.0/encoding/hex.ts": "5bc7df19af498c315cdaba69e2fce1b2aef5fc57344e8c21c08991aa8505a260",
"https://deno.land/std@0.104.0/fmt/colors.ts": "d2f8355f00a74404668fc5a1e4a92983ce1a9b0a6ac1d40efbd681cb8f519586",
"https://deno.land/std@0.104.0/fs/exists.ts": "b0d2e31654819cc2a8d37df45d6b14686c0cc1d802e9ff09e902a63e98b85a00",
"https://deno.land/std@0.104.0/hash/_wasm/hash.ts": "313a4820227f1c45fa7204d9c28731b4f8ce97cdcc5f1e7e4efcdf2d70540d32",
"https://deno.land/std@0.104.0/hash/_wasm/wasm.js": "792f612fbb9998e267f9ae3f82ed72444305cb9c77b5bbf7ff6517fd3b606ed1",
"https://deno.land/std@0.104.0/hash/hasher.ts": "57a9ec05dd48a9eceed319ac53463d9873490feea3832d58679df6eec51c176b",
"https://deno.land/std@0.104.0/hash/mod.ts": "dd339a26b094032f38d71311b85745e8d19f2085364794c1877057e057902dd9",
"https://deno.land/std@0.104.0/io/buffer.ts": "3ead6bb11276ebcf093c403f74f67fd2205a515dbbb9061862c468ca56f37cd8",
"https://deno.land/std@0.104.0/io/bufio.ts": "6024117aa37f8d21a116654bd5ca5191d803f6492bbc744e3cee5054d0e900d1",
"https://deno.land/std@0.104.0/io/util.ts": "85c33d61b20fd706acc094fe80d4c8ae618b04abcf3a96ca2b47071842c1c8ac",
"https://deno.land/std@0.104.0/log/handlers.ts": "8c7221a2408b4097e186b018f3f1a18865d20b98761aa1dccaf1ee3d57298355",
"https://deno.land/std@0.104.0/log/levels.ts": "088a883039ece5fa0da5f74bc7688654045ea7cb01bf200b438191a28d728eae",
"https://deno.land/std@0.104.0/log/logger.ts": "6b2dd8cbe6f407100b9becfe61595d7681f8ce3692412fad843de84d617a038e",
"https://deno.land/std@0.104.0/log/mod.ts": "91711789b28803082b1bdfb123d2c9685a7e01767f2e79c0a82706063ad964d8",
"https://deno.land/std@0.104.0/testing/_diff.ts": "5d3693155f561d1a5443ac751ac70aab9f5d67b4819a621d4b96b8a1a1c89620",
"https://deno.land/std@0.104.0/testing/asserts.ts": "e4311d45d956459d4423bc267208fe154b5294989da2ed93257b6a85cae0427e",
"https://deno.land/std@0.77.0/fmt/colors.ts": "c5665c66f1a67228f21c5989bbb04b36d369b98dd7ceac06f5e26856c81c2531",
"https://deno.land/x/bytes_formater@v1.4.0/deps.ts": "4f98f74e21145423b873a5ca6ead66dc3e674fa81e230a0a395f9b86aafeceea",
"https://deno.land/x/bytes_formater@v1.4.0/format.ts": "657c41b9f180c3ed0f934dcf75f77b09b6a610be98bb07525bffe2acfd5af4d5",
"https://deno.land/x/bytes_formater@v1.4.0/mod.ts": "c6bf35303f53d74e9134eb13f666fb388fb4c62c6b12b17542bbadade250a864",
"https://deno.land/x/discordeno@16.0.1/bot.ts": "2c25a025326b40af18ebc7e16497b49efe84fac5121ab706f9312670583c29c5",
"https://deno.land/x/discordeno@16.0.1/gateway/manager/calculateTotalShards.ts": "2d2ebe860861d58524416446426d78e5b881c17b3a565ea4822c67f5534214bc",
"https://deno.land/x/discordeno@16.0.1/gateway/manager/calculateWorkerId.ts": "44c46f2977104a5f92cc21cf31d6b2bc5dcfcefba23495cd619dbdf074a00af1",
"https://deno.land/x/discordeno@16.0.1/gateway/manager/gatewayManager.ts": "d82dedc56ef044e1aff108400cad647f3d5c6eb5b574e7ed7b812dc85a260d7b",
"https://deno.land/x/discordeno@16.0.1/gateway/manager/mod.ts": "11f0721de12ab2d923320d877673f617bb77a2222452dd284bf4aff66df25674",
"https://deno.land/x/discordeno@16.0.1/gateway/manager/prepareBuckets.ts": "a92b60fbcf7fb67051504f568932db525e29a6e7c202216ca8583d60ecb8ac11",
"https://deno.land/x/discordeno@16.0.1/gateway/manager/shardManager.ts": "6cfaeae1f367d7978f7b6b505066755a76a29bc46af8643fd5393d757d807fef",
"https://deno.land/x/discordeno@16.0.1/gateway/manager/spawnShards.ts": "687163c5a8d5f057864a9b2803df2b664ae5fef9301718925edc81a4397fbe8d",
"https://deno.land/x/discordeno@16.0.1/gateway/manager/stop.ts": "448cb12cc5f5653bca13fe6fb7b1dfb1da7524c60efab80a4f71233ee76b173e",
"https://deno.land/x/discordeno@16.0.1/gateway/manager/tellWorkerToIdentify.ts": "453ed3d92a6ae23438b4e85c735ed751d89888fa05e36b5d0e43dab73f6fe1e9",
"https://deno.land/x/discordeno@16.0.1/gateway/mod.ts": "d884e34fb4e3e39a7925e0f160af33fad57c9012fa36a5de3e0e5f23600e8aa4",
"https://deno.land/x/discordeno@16.0.1/gateway/shard/calculateSafeRequests.ts": "f70e9eec53db888ae0a2afee4073743d883acd58de153f17298dfbe082136ae7",
"https://deno.land/x/discordeno@16.0.1/gateway/shard/close.ts": "e2e7bc1435c0c13a6e17491463f1b755a81d87b6291711f27ad8b9a89215a758",
"https://deno.land/x/discordeno@16.0.1/gateway/shard/connect.ts": "89b827bb1a36182730b3349f4ebbd0f81d5447e48bed5c339d21cf1931e3e517",
"https://deno.land/x/discordeno@16.0.1/gateway/shard/createShard.ts": "6cf8c45bd1e2c1c1c532be2353f7f590249d6d541f897fe9c9f4634749bfd232",
"https://deno.land/x/discordeno@16.0.1/gateway/shard/deps.ts": "e96984eb90ac1d22f9a6f215d0263d87fc758ca04d6fd03ba519d8196f347354",
"https://deno.land/x/discordeno@16.0.1/gateway/shard/handleClose.ts": "7a93f5dc12236504b99464876d18ebaf8e0472f942f2c571ea0e8913826a3c11",
"https://deno.land/x/discordeno@16.0.1/gateway/shard/handleMessage.ts": "145682505b8ccb4441f7305a3c8b2c1bbc937e7904e4762f58f6fd0d438f6805",
"https://deno.land/x/discordeno@16.0.1/gateway/shard/identify.ts": "bf82e87e70b588d747f10700fcc614ae072adbc008549171729e85112f1ce012",
"https://deno.land/x/discordeno@16.0.1/gateway/shard/isOpen.ts": "abb14f52b50a523d56678be9b5b901698604d8c791aa63078ef51ae88f02bd00",
"https://deno.land/x/discordeno@16.0.1/gateway/shard/mod.ts": "8a58a564317d9f84bc11a492b6b6ad857a6f3a652e46c6ad6a4c2d0e0edb369d",
"https://deno.land/x/discordeno@16.0.1/gateway/shard/resume.ts": "4713f3c76b5cb9d46a5e839532f0332f530cd2aa035a580f01b8478a3858237b",
"https://deno.land/x/discordeno@16.0.1/gateway/shard/send.ts": "653158bc0522651962f4b2b3a2b9e02c2fbb18540d5432b2f5c1007d160c989a",
"https://deno.land/x/discordeno@16.0.1/gateway/shard/shutdown.ts": "6d9a7479754bac8021a80766b9b73930af52bc22e38e15569346ea3a6315d9c3",
"https://deno.land/x/discordeno@16.0.1/gateway/shard/startHeartbeating.ts": "cbb0bff61f3fb617ea11189e76233e085baa2ec952c66ed9bfa1896f871f01e5",
"https://deno.land/x/discordeno@16.0.1/gateway/shard/stopHeartbeating.ts": "e7b0feb488029720dc21ba5183d0594263b58e2a573af47aaeda95dbbf378364",
"https://deno.land/x/discordeno@16.0.1/gateway/shard/types.ts": "3ebfe46aa11f3c294865722a0eaac862e17a80538ce43b871577234d00bd2a05",
"https://deno.land/x/discordeno@16.0.1/handlers/channels/CHANNEL_CREATE.ts": "3b31e183076d49b5f6a005b7b976e14139f3ca52d69659f6fb68039b80e9ac96",
"https://deno.land/x/discordeno@16.0.1/handlers/channels/CHANNEL_DELETE.ts": "655ce49f189016768a10eaeca26835292bc8336d37fcf495013836d3ce557505",
"https://deno.land/x/discordeno@16.0.1/handlers/channels/CHANNEL_PINS_UPDATE.ts": "580a8dd76b052f00a1b8b8e8cdd0ab5eed603cd8372987fd0e7f37710b933a23",
"https://deno.land/x/discordeno@16.0.1/handlers/channels/CHANNEL_UPDATE.ts": "56e716355c503e2877cb1413be331e34fec36d6487fb542840eb7d5db1b79b41",
"https://deno.land/x/discordeno@16.0.1/handlers/channels/STAGE_INSTANCE_CREATE.ts": "d8051cd818ab569b53617dda0e77b12a4a4d0c8c7b8ffee620f0ed9900d06eb1",
"https://deno.land/x/discordeno@16.0.1/handlers/channels/STAGE_INSTANCE_DELETE.ts": "f8fccae29afec36c9cf0ec86e9d8e3aab06e3fbd2d19eec00dc939d37528e305",
"https://deno.land/x/discordeno@16.0.1/handlers/channels/STAGE_INSTANCE_UPDATE.ts": "297f0f5604e429d28db558b93373f912f1ea636dd7cbdbccbd5a9f4e6ceaf9d4",
"https://deno.land/x/discordeno@16.0.1/handlers/channels/THREAD_CREATE.ts": "c7f2190b84255def74cde520c9743ee24cdb68804567abf0db8b75e8a0b4c228",
"https://deno.land/x/discordeno@16.0.1/handlers/channels/THREAD_DELETE.ts": "6d608c49a4d4bc3618c3a01f0bce0b2b87ddd0f5e8696612ec6974c6dc7a0960",
"https://deno.land/x/discordeno@16.0.1/handlers/channels/THREAD_LIST_SYNC.ts": "d3af47b41e9e0c648861f4b85e3a0933c180fbb6ee32af983288f47ef982b36d",
"https://deno.land/x/discordeno@16.0.1/handlers/channels/THREAD_MEMBERS_UPDATE.ts": "12d75e4296535f9af9cfe2ec527c35b144cb6ebc01df87b017fe8680cf5b6588",
"https://deno.land/x/discordeno@16.0.1/handlers/channels/THREAD_UPDATE.ts": "82ffae3c6e031c1485700872caafd29367401bf952c99d7207234e3f3bf8517d",
"https://deno.land/x/discordeno@16.0.1/handlers/channels/mod.ts": "91e2381859886ed05029d57e9ce0d11c6499fe86a1aac04c4c6744fb29bdecc9",
"https://deno.land/x/discordeno@16.0.1/handlers/emojis/GUILD_EMOJIS_UPDATE.ts": "3a86ea7a35ce09ca4e21d0d712c61d129687eb5a44a92b2109f5d4847c0a1daa",
"https://deno.land/x/discordeno@16.0.1/handlers/emojis/mod.ts": "fb22fde276e903e6242ca89d97b59aaed6f60e6839f6444913acaf3f389f0571",
"https://deno.land/x/discordeno@16.0.1/handlers/guilds/GUILD_BAN_ADD.ts": "cba1779e0770128cb350a51b44ed89db4ccb919cf6d67ed8d760e7935932230f",
"https://deno.land/x/discordeno@16.0.1/handlers/guilds/GUILD_BAN_REMOVE.ts": "03a4821425d938f76cf7296d860cb97f49ff045c171fd19c4278ef64434a6d74",
"https://deno.land/x/discordeno@16.0.1/handlers/guilds/GUILD_CREATE.ts": "9e7391ea65653117a8115fdfbbad0a9f4d07fc48e4b078313dcf0c4909c7ef77",
"https://deno.land/x/discordeno@16.0.1/handlers/guilds/GUILD_DELETE.ts": "1ba57603c0ddb3d50b90acddc1148100f5acc9f6c4b52f37b5b5ad8bda469e99",
"https://deno.land/x/discordeno@16.0.1/handlers/guilds/GUILD_INTEGRATIONS_UPDATE.ts": "fdac5b8ccd75f9a57a27731107d7a75a933b9b4ba33e0c824f118592fd691654",
"https://deno.land/x/discordeno@16.0.1/handlers/guilds/GUILD_UPDATE.ts": "164fb507ce4544979966d90ee2cbf3c99c7abcabd6ab76fbafec80f15ee37b9a",
"https://deno.land/x/discordeno@16.0.1/handlers/guilds/mod.ts": "332d85c6ea3c50e43e57d3e8b4b7004b7de1633fa1bb42723f4af180df7058bb",
"https://deno.land/x/discordeno@16.0.1/handlers/guilds/scheduledEvents/GUILD_SCHEDULED_EVENT_CREATE.ts": "aed7232fa7bc1e4dc0d31b3484aabdc9dea09fc7fd06dafb2ba8fee050613adc",
"https://deno.land/x/discordeno@16.0.1/handlers/guilds/scheduledEvents/GUILD_SCHEDULED_EVENT_DELETE.ts": "e7965fb15e87add066d5dddb4ca5c7dd9e44d3ca268571259cd09c137a555e74",
"https://deno.land/x/discordeno@16.0.1/handlers/guilds/scheduledEvents/GUILD_SCHEDULED_EVENT_UPDATE.ts": "c63d7073c5b2433afae545baf824931272b3ba2b76b79b35e23482bf1d9d1590",
"https://deno.land/x/discordeno@16.0.1/handlers/guilds/scheduledEvents/GUILD_SCHEDULED_EVENT_USER_ADD.ts": "f8f50e9c50e4c0e05ea6e49bef6db4423c01ef23b5029041ba6d816d0afdf9af",
"https://deno.land/x/discordeno@16.0.1/handlers/guilds/scheduledEvents/GUILD_SCHEDULED_EVENT_USER_REMOVE.ts": "7cc8e0eef7336e1ea4774204ce9b375db5ecfeaeed4c2e50bae10c5910b9d70c",
"https://deno.land/x/discordeno@16.0.1/handlers/guilds/scheduledEvents/mod.ts": "f0a28cd8b0fcf0909ad2b027234b91edcba97b05135de4b49637143302170af3",
"https://deno.land/x/discordeno@16.0.1/handlers/integrations/INTEGRATION_CREATE.ts": "2d6d4d2d01bab786191297f2c7edd24173263b8de550d8bb190c41d523611629",
"https://deno.land/x/discordeno@16.0.1/handlers/integrations/INTEGRATION_DELETE.ts": "bb87b79956bd353018836714fb8c60966b74518d19fec821b17ca2371afcd7d0",
"https://deno.land/x/discordeno@16.0.1/handlers/integrations/INTEGRATION_UPDATE.ts": "be74f47ab9258c4a30d5054877be7b0ee73648214972ba40cd9f7189e4cf5b07",
"https://deno.land/x/discordeno@16.0.1/handlers/integrations/mod.ts": "6b7588d8963c0f98cbccb07ae1b6043de50a3528784f2fa3d4fc6aa70e7573b7",
"https://deno.land/x/discordeno@16.0.1/handlers/interactions/INTERACTION_CREATE.ts": "081f55732d8d86ee420804523aba5c674589af5eb54ce25e5a22239e433be278",
"https://deno.land/x/discordeno@16.0.1/handlers/interactions/mod.ts": "57005c5079d1cbd6e9f93bfe60e4c97829651884f7d0bb5de46642d8568ddca3",
"https://deno.land/x/discordeno@16.0.1/handlers/invites/INVITE_CREATE.ts": "c0435a2a60ef473ac212abc12b97ee84001a6b67c47c646f69f30b69269dcd24",
"https://deno.land/x/discordeno@16.0.1/handlers/invites/INVITE_DELETE.ts": "c7f3b3e28a90acca37835b1c8f89cb96e2d227785941c2de789fd45515a15dad",
"https://deno.land/x/discordeno@16.0.1/handlers/invites/mod.ts": "b226b3e4f5b16147adfbf9660228f0d353e5a8950eb296357e90659ea7230d7a",
"https://deno.land/x/discordeno@16.0.1/handlers/members/GUILD_MEMBERS_CHUNK.ts": "36661ca5c2d12b9f9ae87d3a797a52a0f30ac4017390c066c5f1645cf74165b0",
"https://deno.land/x/discordeno@16.0.1/handlers/members/GUILD_MEMBER_ADD.ts": "4fcc0daed4c1e9e9ca91c778db7cfb759ec499e6af444d1b5a593e985d0f8afa",
"https://deno.land/x/discordeno@16.0.1/handlers/members/GUILD_MEMBER_REMOVE.ts": "608eb5d110e7d8f36497a9ecf14a990358896879655c678d95f7ff52a30b1dd1",
"https://deno.land/x/discordeno@16.0.1/handlers/members/GUILD_MEMBER_UPDATE.ts": "645406a06ee71fa7cf9c712fb310eb5f8cc16ebbec2c8f88e3b5721237e2f201",
"https://deno.land/x/discordeno@16.0.1/handlers/members/mod.ts": "77976a7904c7ab820c029d76debcc2453dd884a55573884d0f488474b7a88ee6",
"https://deno.land/x/discordeno@16.0.1/handlers/messages/MESSAGE_CREATE.ts": "15ce7ba5d7ed42de886471fa6a92dd9f8a0cf2cf5b3e5c5b0660814b8663d364",
"https://deno.land/x/discordeno@16.0.1/handlers/messages/MESSAGE_DELETE.ts": "bf24f87388b055d0ccfe9169f23e1788d6788f540ff5cb631b295bbe213bfe1c",
"https://deno.land/x/discordeno@16.0.1/handlers/messages/MESSAGE_DELETE_BULK.ts": "397f72939f3d2d5b9456e9318fafe241e421c41de83d408f2f052f941a0517ef",
"https://deno.land/x/discordeno@16.0.1/handlers/messages/MESSAGE_REACTION_ADD.ts": "2a335d2c6a89342d124e7ca0905b667afd194ab42294ef52df23d28a687e739e",
"https://deno.land/x/discordeno@16.0.1/handlers/messages/MESSAGE_REACTION_REMOVE.ts": "f8f7cc7886bb08e2baa4a77b42f1139cf4af4c4d32cdfb2962521f24b25d6fe8",
"https://deno.land/x/discordeno@16.0.1/handlers/messages/MESSAGE_REACTION_REMOVE_ALL.ts": "cac06a4d738e86ec72a2fbb83402982d7fb9eec396e3a4383a53b190f911bd44",
"https://deno.land/x/discordeno@16.0.1/handlers/messages/MESSAGE_REACTION_REMOVE_EMOJI.ts": "4241f53d9f5eab021bc976a2749fae5799bbd4ae1a59e70f5dc2e920fa4b718c",
"https://deno.land/x/discordeno@16.0.1/handlers/messages/MESSAGE_UPDATE.ts": "2093206a9c22eff287b6a8989fc3d291dac7791d11670c68d0a6adcce70efb25",
"https://deno.land/x/discordeno@16.0.1/handlers/messages/mod.ts": "9b760a5a32f2491464ebd5eef55a88c0f214488dc641bfefe3c65816b8a1c87d",
"https://deno.land/x/discordeno@16.0.1/handlers/misc/PRESENCE_UPDATE.ts": "19bc72ded73e938973a47e2010fa88ed257682b7b40f4ff9272908b6a92dccc5",
"https://deno.land/x/discordeno@16.0.1/handlers/misc/READY.ts": "954f0ed0a292c7c8eba8320cc632345e02df24cfaf4ec14ca832bd35c41153ea",
"https://deno.land/x/discordeno@16.0.1/handlers/misc/TYPING_START.ts": "9a5b4dcd9a8dbd08a17f8d884a5ea2d7df3d7134ef0350aef39cd10763579f3a",
"https://deno.land/x/discordeno@16.0.1/handlers/misc/USER_UPDATE.ts": "964f4b51c003be4c09cbda1887fdd1c0c841e852d6f95377e62b703c4bf47cf8",
"https://deno.land/x/discordeno@16.0.1/handlers/misc/mod.ts": "9b60823b169254e472c7f57075e15bee29d32627c123a9037bdded0aa2bdb6d4",
"https://deno.land/x/discordeno@16.0.1/handlers/mod.ts": "b7616067cc062fd4a903dd95a0622cb4f253932955bffc5e7f96d3e039d34156",
"https://deno.land/x/discordeno@16.0.1/handlers/roles/GUILD_ROLE_CREATE.ts": "0cedfdda9fccec57eeadf0c26042e612f820a6315cfada72fc5d16ac71f9e6a6",
"https://deno.land/x/discordeno@16.0.1/handlers/roles/GUILD_ROLE_DELETE.ts": "47bab68f49cf9941edd62b7007b34c0beb575a4d896123761129da2b558fd98d",
"https://deno.land/x/discordeno@16.0.1/handlers/roles/GUILD_ROLE_UPDATE.ts": "a3fd5443422949245fb24023205302ead102484822d1fc17eb21638abc232e74",
"https://deno.land/x/discordeno@16.0.1/handlers/roles/mod.ts": "04731e168f2c896cfca5b0ce9a47679eae3dbdfed9d3c78f1f3f7c4e59b58b4c",
"https://deno.land/x/discordeno@16.0.1/handlers/voice/VOICE_SERVER_UPDATE.ts": "b18886db601ee02e58737f175f335f286ef3f0de558e4465985e7136761cd23b",
"https://deno.land/x/discordeno@16.0.1/handlers/voice/VOICE_STATE_UPDATE.ts": "2b52f6d1928df4099cc03a0f0946fcbdc18df8c17098dbb72ef70258b9ffae2a",
"https://deno.land/x/discordeno@16.0.1/handlers/voice/mod.ts": "5fbf23ba2bf6f921b2f72a660dbf84bd7c10c2d17f26bc50bda366c5218fdb9c",
"https://deno.land/x/discordeno@16.0.1/handlers/webhooks/WEBHOOKS_UPDATE.ts": "d995a409e18c6a209de0b0734373288d57dd1341fa461f04c97f574b3e05ccc9",
"https://deno.land/x/discordeno@16.0.1/handlers/webhooks/mod.ts": "7b974b6515cb6701be25eccb1e4f8c403fe2d925628df43dd356bd7bed7f8a6f",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/announcements/followAnnouncementChannel.ts": "aae23b70be826238b07d612e1d57d78a498849a2428111969bde9554e31aab3b",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/announcements/mod.ts": "948f4ee5a341dae0094636736c7e05f60f559c6168b60b162cb4f5554d2cb4fe",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/createChannel.ts": "3a0321efaf8b32a917b7a20c819ce9c24dbea4d9d5c0cbb8f08f443754a05978",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/deleteChannel.ts": "810b6476c2a1825c069832b0c56443677299c9b097d20306cfd46164afc7e15c",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/deleteChannelPermissionOverride.ts": "4b82b8ea40bdd27f8cbc6064879c03cc5cc85894b4d4d71c362653921f5e98a2",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/editChannel.ts": "7588b663979570f80d2c273e5dacea3e2239587c9a382a201b93c00e7fa45100",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/editChannelPermissionOverrides.ts": "61c8f99bc6f54cb7424be49b6e61431ae2b3cb1892ba2caa68780be7eefd5b82",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/editChannelPositions.ts": "368f7a517b00a23db8dd04d83fcf47b54e630256d3886b4c09c8324c66f10e2a",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/forums/createForumThread.ts": "19a407d69fee54c0566bdd604bf20d9ed0bae81562e4db20d14fd9c73ffc70d3",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/forums/mod.ts": "b969a6eb5f97199f5efd69915114bcf9ebdd54c7c1c28f67a7575d3d92c73bbc",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/getChannel.ts": "cc65b4ac424a5124671d902362c40bed3e9e83070c2a398c9c48328a1215948b",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/getChannelInvites.ts": "175de2476805e1908c8444c6bfad496487ec53fe67e637cb882c6d7264d0c5ac",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/getChannelWebhooks.ts": "e7aaddcb3b5315061dbd820747c184c6b5e3ddba0b777aee4c94287768d8aa19",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/getChannels.ts": "dde4d5af0c2ac2d0d8189dfb273ce20a6b27f1dda1ecd13ebad575811e1b03bc",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/mod.ts": "cada00d18da3c3822a3d4d8a0cbb2f086cec0e7a7c6cc46e14e46f2c3d3e369e",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/stages/createStageInstance.ts": "a4b8e5f4f91c49b902b79b693b8433ec87116640ea5ac50930639c0c5159caba",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/stages/deleteStageInstance.ts": "a85ee26a96352bbf9547437139efc8f73602fd36f7fca5fe70c8a9d8efa19148",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/stages/editStageInstance.ts": "3f5867db229d1d4fdaea58191dd4badf2769dcea786b8797371087c5267afd08",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/stages/getStageInstance.ts": "5b0e0df81d5607bbfcd954b8d6be3fc50f42d2ee5fc50dffb1b0f3235f52e596",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/stages/mod.ts": "1a57f96eadaab12dbb1cea18a6e52fcabea2e8771ae8eed17650702b416fafc1",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/threads/addThreadMember.ts": "d7b9bcc230dee323686aaa4ee59f9aeb7d38851127a939ef9ec36304934fdaa8",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/threads/getActiveThreads.ts": "3c97a8bcf1a9fe2e804964540fbb9e108820f6fcc18663de136d5c82e4b7dbf6",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/threads/getPrivateArchivedThreads.ts": "8f7a46421897e07f1397d01d56a48c1e01e082151c7127e9d749668c7dab3aa2",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/threads/getPrivateJoinedArchivedThreads.ts": "caa8c91e9999f79c0cceaaeb641066216db649faae8958de8e5e8a7c203159ff",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/threads/getPublicArchivedThreads.ts": "09e6729950816e726db852c83412d1b1275bf44b7f552f203c8e5c304003ec5b",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/threads/getThreadMember.ts": "f2b80396f2272fd155a9ce92e5faf4ec454da97a4ad9a152816da155dd59e899",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/threads/getThreadMembers.ts": "5e7f26a59bd037e2aa0c85e2d0e14f5cf9480bac470c46bbe30dd158344d8515",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/threads/joinThread.ts": "52edec63af84954786f55c1916d2ce8904dcac51d3416cc448d61032ca0dc9d8",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/threads/leaveThread.ts": "6f868e87b599e7c6e26eadc0d5ccd5d95e628998b16bbe8e4c7348d6565a5c05",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/threads/mod.ts": "70a936adea1c2d1da88bfa92da75aeae59f8f5a382f8de8682fc1cb1e9ce5140",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/threads/removeThreadMember.ts": "528b689ab05403073d8389ad0aed4576f3e86de90e1ca8794ee1681ae7acac28",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/threads/startThreadWithMessage.ts": "d8865cee8b6f786c82f1a402ebcac2b58ca1ff399b8419530a6580667088aa2f",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/threads/startThreadWithoutMessage.ts": "b5fab248fa8075e58c8518c109518ff07a4915fedee05e29593a64431721de38",
"https://deno.land/x/discordeno@16.0.1/helpers/channels/triggerTypingIndicator.ts": "34f06f635c12548629fc79c6348dd09a713385a4aa07fcd09749e1fbd93fa7bb",
"https://deno.land/x/discordeno@16.0.1/helpers/emojis/createEmoji.ts": "fc6718b1f19d70e0eef9e48a3862f5feadeab42caa2504426789dbf6103d461f",
"https://deno.land/x/discordeno@16.0.1/helpers/emojis/deleteEmoji.ts": "d212193fcd34ea47d437870a9ca36f454698ab5551e482b952260abecf1a856d",
"https://deno.land/x/discordeno@16.0.1/helpers/emojis/editEmoji.ts": "5b163a72335ad50fa4345bbcb9e77cb8efdd5a3cebc8a40d8f4c3edf7a003f3f",
"https://deno.land/x/discordeno@16.0.1/helpers/emojis/getEmoji.ts": "4fbe403ddf6069c1ac8c2d65f68f4597917d5499774b4323a3b123cb4c994206",
"https://deno.land/x/discordeno@16.0.1/helpers/emojis/getEmojiUrl.ts": "0d0b8da6275d55228d0144cc93c579fcea51e0c7f502fa21391d3b47eda15761",
"https://deno.land/x/discordeno@16.0.1/helpers/emojis/getEmojis.ts": "776eab9413d0cb8364d7bc0e6b1fdf38b63451a81162ea97784ded0b2bb43a72",
"https://deno.land/x/discordeno@16.0.1/helpers/emojis/mod.ts": "0c9b2e86b392aa3d698702dc04e350b4d35c9173fdf868bb3e3a0dd7d89a30ca",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/automod/createAutomodRule.ts": "e0f1fe34f92e3fb0c9a6e636e671853bea08132e4963287665486ab99cad710c",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/automod/deleteAutomodRule.ts": "b5b3262ec3a47e7bfca2418082a005adbd2832a70e77777af5cc558278648f5f",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/automod/editAutomodRule.ts": "0655662b1a8b030d4a1c51d04507b5fd42a88e74a3d7046befb253c6c73a0ce1",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/automod/getAutomodRule.ts": "8579fbc14fa7d222c0fb8e0f9a7ddc025870657190b22c63f7f3a187b1c34001",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/automod/getAutomodRules.ts": "79ac5eb57d140919a115f25edb2c9f2e94e41fcb55839e56781d093aedce0e1d",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/automod/mod.ts": "5d1eb9f8501d1f9e929025be86028c8714bbd93f5f2a79bd6506596c0c1dbc1e",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/createGuild.ts": "5361278b053acb5081e79d40f11f975e0ec69e6a2b6f673d5fd708ec3d6c9186",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/deleteGuild.ts": "5b2d6b581817981528b8be85faeae42f6e098e241fc36e2069374a348f3ec543",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/editGuild.ts": "78bc0e66d0b953521b0fa2bbc3d6d0459ed2385ed2aafd8bb7cf7529cce5bf35",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/editGuildMfaLevel.ts": "14b10e70eb731b57ca169656bac2c13d8b97ed7028fc20fcdf2230fd843a09fc",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/editWelcomeScreen.ts": "dd25c4470acf75149bf18ab34b4b35871920b430ceb709654aeaa6c1b28eec1f",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/events/createScheduledEvent.ts": "ae526707edc545f98ce23cf951d10a9ef205a64dce391a3669a832d5973de821",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/events/deleteScheduledEvent.ts": "e556878c5fbfbe0c2c794ef8d9cf2815574a6372a82a58cb8cfa0c75253f2ec8",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/events/editScheduledEvent.ts": "639e70d431b599b812da9f35f595baa7c9706cbb5aae781c8d26e471a8e4bae2",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/events/getScheduledEvent.ts": "6d909db7808a8a2f96a824106e79db7aaff392e8c24cd2e47fac9b6538b067d1",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/events/getScheduledEventUsers.ts": "2bdea83518bd86f64dd0b997de375fd1840d3cb60256f15b8be55f6545c5f7ba",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/events/getScheduledEvents.ts": "5f98bb604e439690c5d6e5b93e6962255a89f0e3d58292dcdf0c58063c68b976",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/events/mod.ts": "ae3428a9164ee36a14243900dc4fe699a1b9b85c9e3cc5c073882e957f92db90",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/getAuditLog.ts": "16cd657d472484ef8eaa6ec520dda8e800203593a2f8cea449276101b0022aca",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/getBan.ts": "d071e9f0ac8dd372ae777b4b759c79d9b1bd1dabdaf1f1de71ca951cf29c4950",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/getBans.ts": "45a72714dbcfcec84df81fb8e920d9c373080600365ac7a1e7fa71e888533fa0",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/getGuild.ts": "2726a90b09e1b20b24e41e0eb53dfef8e2c804a59dc3114adb09b6c4d91ab235",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/getGuildBannerUrl.ts": "d8f54da9d84a6446ef4d8ff04c4317f16bf139ce663ab2e95655238c17ef9743",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/getGuildIconUrl.ts": "31d7fec2fa0b5008e216cebeb623216df9a2fb890602ba7db56e1501dc1813ed",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/getGuildPreview.ts": "97b2f5e30084e066f65bd86ec31e9f79a4602d23f6b351cc30a4cf62fd786415",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/getGuildSplashUrl.ts": "b350b62886cded7ef2ede24b8e11da72d2c67829fe171b2c599070231635999b",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/getPruneCount.ts": "c1b42a2bfd11b6e8514c76d61420eb5ef2e95d36b87ab4fe0c3b16538a0eb949",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/getVanityUrl.ts": "a392a31a6d0e1f88373dffd6bd28f8713b2c5245e6389cf9ff6f38bdae039f30",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/getWelcomeScreen.ts": "fc7abc71de5c19087192c8000e1ffd45307d6be8019467e751ee2e57af855c5a",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/integrations/deleteIntegration.ts": "c2a829750b2626e3ab88c36dc9e4d4cb292e14bf182b4fbd132644979ad3d240",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/integrations/getIntegrations.ts": "75baf8e19ac3250b824df055bbbd49aa17ec93938776e99f9dab6799236426cd",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/integrations/mod.ts": "971be8c462243af6db336545e78d46d5b573b6b978eb30ccadea345920de0c34",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/invites/createInvite.ts": "e281f574c4cd8672c73aa28e26b14c9b2de182a39a0967e2fd8d7214cd11e2ac",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/invites/deleteInvite.ts": "7d58565b833fbb7bf002417e7050398f648abb611415060748d512f1d0547c71",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/invites/getInvite.ts": "000e46d77ac8ca8f1c433c516467cb9a3ab1c6ce143a30c276b217a476c5bbeb",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/invites/getInvites.ts": "3f3fe66ae3da0ae07bc2d89ed95f8097640c286a95f3d0fb00bb6665d8314245",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/invites/mod.ts": "bc8f68c4f2da324104c44b598f661480aa3e6512dd6dec1ffab780afb1fdf0c8",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/leaveGuild.ts": "70785da8de9809326075598ff79eb6fc8066c90469a4943401ac146137070a56",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/mod.ts": "5a087689e8f5dfc359f7856fad177466b18c0c4814cac55c47919dfaca69158b",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/voice/connectToVoiceChannel.ts": "a656d1921f6d592ecc89e6b44f57856161e0d0c6c89e0bf2e9dbc91842d3a193",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/voice/editVoiceState.ts": "e01ee60cacb79311c0504d21cab017ddbf8f848ed0085daedb2748c77f4a7d54",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/voice/getAvailableVoiceRegions.ts": "342f89b1aea5492ac015131a42352da565f02181647e065e6e3f8968e9230d6d",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/voice/getVoiceRegions.ts": "dd7c5b1f92a9305a8e0f483d3e1828b12049d9f4e414623bf3c4d4fbce41e09a",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/voice/leaveVoiceChannel.ts": "e58cb1a3e4de76af5aff173e09bac8d1f4897d24defc81164def9f39356748cc",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/voice/mod.ts": "66740600945538976f33cc93567a1d56b25813d2e68f38c4adf39ce6feeb4236",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/widget/editWidgetSettings.ts": "9e782483c30c5cf763ca877eaffbe981af63a9ccd83a88847595add5410d5a13",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/widget/getWidget.ts": "95dc9515e126e4d0c6c9ec61049201874acd129dd52431c909d0cf2e4065d635",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/widget/getWidgetImageUrl.ts": "bfb5fb302fa4c7ed245b2b8e31e1ccb67d40a5cc8c700b86aa4ea574a81f1c63",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/widget/getWidgetSettings.ts": "02af061e32959e95de9bf9a7dcab2b4455fe263f4952888b6a622029f6940c2d",
"https://deno.land/x/discordeno@16.0.1/helpers/guilds/widget/mod.ts": "ee930d39d2d54d251ad85c0f77ccd7fb9629b25aa18fa30bbcdbe11c2855d1d4",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/commands/createGlobalApplicationCommand.ts": "49e8460e7469561839f54f42176bb3259f3c61005581f6c9fd6be43813a4d6ca",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/commands/createGuildApplicationCommand.ts": "be30bd72480dd8b2f8b8140b55763a33a92764835dbc6268355c6f5cb5257002",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/commands/deleteGlobalApplicationCommand.ts": "437d84b1a641281c4bd3a0dd60b71ab139dff118a3b62059c97e24b253df7fb5",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/commands/deleteGuildApplicationCommand.ts": "84f0844215952231e22ab24cc69e68fad00b565dbbc05efafc165f2a35e98c7e",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/commands/editApplicationCommandPermissions.ts": "cd50cca4eaea9a62dce04cedcceb03ef7fdaef1f053e178a382793fae55e0f83",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/commands/editGlobalApplicationCommand.ts": "0ab7bc1e399f1e5bd60e28f8f289c9c30fe2001ae81232c0889ad8927487c9e5",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/commands/editGuildApplicationCommand.ts": "c3ff698832e5f5a9d844fa96a3df0268a83f3ad4fdb8d9840fec682b145809c9",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/commands/getApplicationCommandPermission.ts": "8f2d493937389354cfbbfe654721784c966be45ce34a37ab79e203017b6248a8",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/commands/getApplicationCommandPermissions.ts": "a8778945c47d3c5e14dfa52daa9651e937da73324cbf11864ae32da86bd41d33",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/commands/getGlobalApplicationCommand.ts": "1efdf81d7fa24289890e65332ef26da4b66978471c2bf58a08a62c7b11268cf8",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/commands/getGlobalApplicationCommands.ts": "cbb2c4bef74b9768d521bd134fc967c356475596783dcebe475da6c90f7924c1",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/commands/getGuildApplicationCommand.ts": "137b09b1b2335f604970b7cd39b3fea84a8405a3fb52f0812f1b1e9b591a344b",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/commands/getGuildApplicationCommands.ts": "01199f85482619639be729061bf43df31f7914e52ac9abce8fca47c7e9bd8867",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/commands/mod.ts": "819587332aa0900a9289cb955dad2f438e3b586cf3e3a62fd8dd1f54e4bb4b15",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/commands/upsertGlobalApplicationCommands.ts": "f8db384f9ce2850e3fbb3d2bf90ee1cd40253c5109e32b496106c4b189f15144",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/commands/upsertGuildApplicationCommands.ts": "4c2233fee33d221c38e75d4b30c229c9c86ddc6288ce691fe802feb931908394",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/mod.ts": "734a879422865899f5e87912af0e4dff83de7132d4c875cb2c021f07997ef163",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/responses/deleteFollowupMessage.ts": "8f0ae6f11e64c6c8cd048856c5404eed00521be7ed135f033062206aa2474544",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/responses/deleteOriginalInteractionResponse.ts": "2d3f59169c06f5241024dd7f5687cf8eaae119ddab37308cd75a70a077f315f4",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/responses/editFollowupMessage.ts": "8fcc8278027e58c121d5b7d37ce45808d8e47ea354a6b66f30c1e327a263c61f",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/responses/editOriginalInteractionResponse.ts": "7407140fbe54f8438e82bf410810f3df1e478e31e1ec3e1f9eb377eddf3825b2",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/responses/getFollowupMessage.ts": "5cc166cfced967e7dec57526c6bde3cc3ff66c14497d00595adb6f832ba8cf5b",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/responses/getOriginalInteractionResponse.ts": "fd754d2d6a41d33affb7756b04b7fe176c2e00e08f45648b4dbc1fbcf3fcb134",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/responses/mod.ts": "b1e9d06f552aa0c880e7dd3491878af405cd0b9b55da5cfb28f1dcb4d8bf11d1",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/responses/sendFollowupMessage.ts": "56692227ba540dd0eb910833b32bf9b620c5353e98f191df76c7859dbaa67aab",
"https://deno.land/x/discordeno@16.0.1/helpers/interactions/responses/sendInteractionResponse.ts": "ffd7b30e80a276eff7e8e685ae7399d6a44d04c803c144b3c14d7bf4f10ff0be",
"https://deno.land/x/discordeno@16.0.1/helpers/members/banMember.ts": "3dc6fe3608e4c9e6ae07edf049ce683e61f54532e9e3f5072b7ae918a4a3a705",
"https://deno.land/x/discordeno@16.0.1/helpers/members/editBotMember.ts": "09f3c8437a4c51690dfccc9114199e9544d5fc43804f33206aa172162b87b444",
"https://deno.land/x/discordeno@16.0.1/helpers/members/editMember.ts": "49659cd5696c76d8765f66186f014bd824b3f3a6588c71f74745d2765dceb7d4",
"https://deno.land/x/discordeno@16.0.1/helpers/members/fetchMembers.ts": "640f136dcd68facef890f2d2e913bfbb2988235615916dc7c3a0f0f2a521e47e",
"https://deno.land/x/discordeno@16.0.1/helpers/members/getAvatarUrl.ts": "da5e05e2a70ce09b27867c3e6adfdedcb665cc073a4a1fc50175864514f836b8",
"https://deno.land/x/discordeno@16.0.1/helpers/members/getDmChannel.ts": "8e1d0c44adb5a30fc2817a034d535348546262861b706335c423da63b55a4be7",
"https://deno.land/x/discordeno@16.0.1/helpers/members/getMember.ts": "b519fdf2d7a2a0f7ababfe3465141477e4f294cd84caf561c49d712b915da18d",
"https://deno.land/x/discordeno@16.0.1/helpers/members/getMembers.ts": "e93536f1cdd233ea12305172d5193c7152f47e5f638652eb8225dff75feef5f9",
"https://deno.land/x/discordeno@16.0.1/helpers/members/kickMember.ts": "9fc2e8611543bd170b748086543d3807ddc549ba97c373a04b341b2746548333",
"https://deno.land/x/discordeno@16.0.1/helpers/members/mod.ts": "6e2165e135f6e7d34d847bcf870143ec574f230c26391ad6e9516d92b380884f",
"https://deno.land/x/discordeno@16.0.1/helpers/members/pruneMembers.ts": "62fd7aa7eb03474ad30bdf9c8891aff69976575a0278a17ba8a7bd6f27b69857",
"https://deno.land/x/discordeno@16.0.1/helpers/members/searchMembers.ts": "bc2436e47b8beb316ca38e1d11cea5305a25f923cb1ee7386583bf7706e4f567",
"https://deno.land/x/discordeno@16.0.1/helpers/members/unbanMember.ts": "f188379c1add49b2c928eda59fbdbc4604cc7b6d126020fb39ebfaea799b2094",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/crosspostMessage.ts": "681fd0aeed7593c1ba43c04ffaa4ae6fb2e3a5cabffe4dc22a042a7b4ebb7558",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/deleteMessage.ts": "ba7b712dd29a777e94e004a218e82bdfcaf6c3ea4774210fbe87e5bc1e864b9d",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/deleteMessages.ts": "d7172a936cf89632ed1068bf3ed61947643060b4d32dd497630e45423176295c",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/editMessage.ts": "bab1cedb8271eab872ea496543164fe2e5664272d9e6ec770b595690aa270709",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/getMessage.ts": "d2b176701c26e01310c4a7c5e61c7cb9d9eb4f33608944befb8dd06fea460cfa",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/getMessages.ts": "2f3258a8c00f67bda48182e8f000d4e902520880158540c5c719c9abd85812c8",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/getPinnedMessages.ts": "df4e213740ed9c4710f5d65371f414614df60b348a20ed6c7ef83a1ddebde08f",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/mod.ts": "1fb89a5a70cb1b9e927c5bbc3d746cfee1795874cadf7ed94daa5e74138d7cb4",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/pinMessage.ts": "0a9c24b6aeb9f8e9c024fce2db3e3d4191f594990b8ee5b8d37012332d04a2c1",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/reactions/addReaction.ts": "2e9b82c3e738bd55bfa6bd38ae8cc99ffcfc23e33d435e70cd248ee3cdadd5f0",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/reactions/addReactions.ts": "9c3dc066b146c968b8ba39680ffb63d23796df148ff657cf5eb41ab04a38cfec",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/reactions/deleteReaction.ts": "3274cd5312fab0463a5bf101bf0dc9f4af6f5a9ddeae5e961499a88eaea3d697",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/reactions/deleteReactionsAll.ts": "8e15ddf88c50342ff84539a8c9c298fc0aa8380550ba35d0f4c4a6bbe10680f2",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/reactions/deleteReactionsEmoji.ts": "d4c2c0fad2a9448ce1d28797353f8a08793d5bb7b86eafbeeb889c5829567f57",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/reactions/getReactions.ts": "11c505c7ca4c7938605f4075a70786a1f7f92c73919bf884d1e8fe99a2aee785",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/reactions/mod.ts": "aacc08f1fe8deb08787fc114d4c2657baa08fbfa1fccd7cd7b867df554938a1e",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/sendMessage.ts": "ad0e5453a7b7c1637e1fc466030d958adb6d47d4cbd369b8f69a1dc180acfbd6",
"https://deno.land/x/discordeno@16.0.1/helpers/messages/unpinMessage.ts": "471a45e1cb77726c2c9be7c938216e6c6b7ba17e0d09d1907f306dd66e9bedfd",
"https://deno.land/x/discordeno@16.0.1/helpers/misc/editBotProfile.ts": "ecbeb13cef06ce8c1a6f445774f80ae3515934ebf0da953fb32339c68e046b24",
"https://deno.land/x/discordeno@16.0.1/helpers/misc/editBotStatus.ts": "ea2b89437ac396af2d78fb8fd182ab6537c64ecf62a59634305cb617f7f97bc9",
"https://deno.land/x/discordeno@16.0.1/helpers/misc/editShardStatus.ts": "525befc88f8f2dda7c9564ddf5451aff2f8acace6a62e8a22fb1f974ed6cd663",
"https://deno.land/x/discordeno@16.0.1/helpers/misc/getApplicationInfo.ts": "b5afd7d7c6a42dd810864bb14c2a486bb216368c31c1f1704668603b7223ce2f",
"https://deno.land/x/discordeno@16.0.1/helpers/misc/getGatewayBot.ts": "cd80410fc62e9eda9b374278bdbb7b5a6d3d8da5c13969ff231ee576cc39156f",
"https://deno.land/x/discordeno@16.0.1/helpers/misc/getNitroStickerPacks.ts": "bdcd85ab17551d6437e211c03fe5878f26186af28f013f69c3f06f405e45581a",
"https://deno.land/x/discordeno@16.0.1/helpers/misc/getUser.ts": "3833adca7024ba3ef9d84e53fa8695f7f028590ff29bed6ec99ca2714db7fe8a",
"https://deno.land/x/discordeno@16.0.1/helpers/misc/mod.ts": "74c73a1828f29cbdf5bf36821276b168ad0334065e6210a0ebb66619b17a992e",
"https://deno.land/x/discordeno@16.0.1/helpers/mod.ts": "0db589b1f100db816c6091a92d8558d3a81969ffc6697e6869d81fea46e72fec",
"https://deno.land/x/discordeno@16.0.1/helpers/roles/addRole.ts": "f44efc4425c5494a2e8441287195fba968c30d2a61b275b34eab4cbf951cdf68",
"https://deno.land/x/discordeno@16.0.1/helpers/roles/createRole.ts": "1658b88dd7901181d812a8dc2bb11725687c4716925728f2dc11127f527e2803",
"https://deno.land/x/discordeno@16.0.1/helpers/roles/deleteRole.ts": "51b5b62d33b3d6d3e5fd6f4037cd0fca891ce608d2b7bc0d79981aaeada1ad91",
"https://deno.land/x/discordeno@16.0.1/helpers/roles/editRole.ts": "89a6e622a55c5b95ce4d580aec9bd1557cb50a98dfa4c9a62ca453490299ad95",
"https://deno.land/x/discordeno@16.0.1/helpers/roles/editRolePositions.ts": "69359d651c800779ac7775cfb2178e577dbb4ea3511ccc58af9262abd409058a",
"https://deno.land/x/discordeno@16.0.1/helpers/roles/getRoles.ts": "1bf991efb5c9d6d9dfe87c720d24f47b5b1a9f7fb92c7b0a2c2037c3a8cc409c",
"https://deno.land/x/discordeno@16.0.1/helpers/roles/mod.ts": "b9dec4f420c57dde0a096d615b68b55682dcbf7aac50048e8df909d354df5a87",
"https://deno.land/x/discordeno@16.0.1/helpers/roles/removeRole.ts": "ae3cf5e39b711800c41fc74b4ce1bb7a9d97b23e436b544c577d3887e865bbfa",
"https://deno.land/x/discordeno@16.0.1/helpers/templates/createGuildFromTemplate.ts": "96cbca166348b5b5ecd33cdea68f0d71b20152e60017b82ec8a11ada04c26afc",
"https://deno.land/x/discordeno@16.0.1/helpers/templates/createGuildTemplate.ts": "251644641d451a134efcd741d3317d36a36379e36ee3db87cd402bab2c1b1f5d",
"https://deno.land/x/discordeno@16.0.1/helpers/templates/deleteGuildTemplate.ts": "9264e941ad21a928d14941fe130cba45015efe2239b5cab0bcd83acad67152aa",
"https://deno.land/x/discordeno@16.0.1/helpers/templates/editGuildTemplate.ts": "700e295973cf2a5607a4cfafcb781793acddaca2743dfe4983f980480e9a9782",
"https://deno.land/x/discordeno@16.0.1/helpers/templates/getGuildTemplate.ts": "9975079b8acc6e91cdf548fa568a1913a3c92222c0deb5f9836d11a6f842b6d1",
"https://deno.land/x/discordeno@16.0.1/helpers/templates/getGuildTemplates.ts": "2097321ca6d15db97268b522ef4c0659a8327f8fc47c9a6d7e48369a283b6f16",
"https://deno.land/x/discordeno@16.0.1/helpers/templates/mod.ts": "d43d90c92258e98350fed109481eecc9c789cc068d425650e584edeffb8eb376",
"https://deno.land/x/discordeno@16.0.1/helpers/templates/syncGuildTemplate.ts": "a91610d0fa3c870f9c1397fc9968fe247c44bf04f923f69e9a95a17de72fe771",
"https://deno.land/x/discordeno@16.0.1/helpers/webhooks/createWebhook.ts": "cbda8371f73e1fddb4be3ec3ee3243f09fb6753b28df45cba0b76a01f468419d",
"https://deno.land/x/discordeno@16.0.1/helpers/webhooks/deleteWebhook.ts": "71cbc17d1f8265adf2fb964f4b0761bd3c0b273344dcf2a949b6e0d4cac6e3a9",
"https://deno.land/x/discordeno@16.0.1/helpers/webhooks/deleteWebhookMessage.ts": "6fb6064a0dd1a968d1717cb7d2a714479711063462d72f7f196f5e5430bc74ce",
"https://deno.land/x/discordeno@16.0.1/helpers/webhooks/deleteWebhookWithToken.ts": "0966d5b0841b167c313ca8ea2dd300e599824319fcb3dd6b48ceb5fe9e1ebff6",
"https://deno.land/x/discordeno@16.0.1/helpers/webhooks/editOriginalWebhookMessage.ts": "159129e405712966acfad026cd5790e15ec888b6c1ac7e40c4c726ca48e38c1b",
"https://deno.land/x/discordeno@16.0.1/helpers/webhooks/editWebhook.ts": "a2b718e52783aa3a11128d96624f97cc8e4ea18695e14f5b17c87e0d5fe279e8",
"https://deno.land/x/discordeno@16.0.1/helpers/webhooks/editWebhookMessage.ts": "1d152d53787b5fa6fea049f4456f81532fc64f0eebcaa54459ce62f7b0f2dc83",
"https://deno.land/x/discordeno@16.0.1/helpers/webhooks/editWebhookWithToken.ts": "c388f0a1e0323b0f88dc576b602362855f1a3e0b241cb2f5aa3e56255c4e9607",
"https://deno.land/x/discordeno@16.0.1/helpers/webhooks/executeWebhook.ts": "8c9f8dfa9c870e591680b2d7d79ea03da616c45a3dfa2e65e81f1c995227f625",
"https://deno.land/x/discordeno@16.0.1/helpers/webhooks/getWebhook.ts": "0592eccf3e632c02832e76f44e610666ee874ef35b773fa19a4b4a9233361610",
"https://deno.land/x/discordeno@16.0.1/helpers/webhooks/getWebhookMessage.ts": "8b38c1f9fd1ba0168e9e924f0a853b683233b986e93f63d82d1f51549578631e",
"https://deno.land/x/discordeno@16.0.1/helpers/webhooks/getWebhookWithToken.ts": "f5d314d0bc8ca8ab35f3ed6834bdc33cce0ced33761cc4d8ea6b2d01e2e57f45",
"https://deno.land/x/discordeno@16.0.1/helpers/webhooks/getWebhooks.ts": "adf493f26cb4ac70f77afa86603c1de545e8fb7f0dadb99e18eb6b51643987af",
"https://deno.land/x/discordeno@16.0.1/helpers/webhooks/mod.ts": "b5dfc4cf15cca6b6140cf04efda974aed41ab6817f735d91e04bfb7f848b0930",
"https://deno.land/x/discordeno@16.0.1/mod.ts": "f76db2786e39c24f58b221512a1386677e71a6163668de7219c16d971e4c9e77",
"https://deno.land/x/discordeno@16.0.1/rest/checkRateLimits.ts": "52e7b62c5d60ced4acf141d76c4366cf113caee807fcc6c7414cc9ce55ae6445",
"https://deno.land/x/discordeno@16.0.1/rest/cleanupQueues.ts": "a5897e6e2aaceb05e69a28253c86815a363698e676ba30286ad2b0fd021ba7d0",
"https://deno.land/x/discordeno@16.0.1/rest/convertRestError.ts": "77159dc9684732807ac1b3d86e089371f7b4522167dd67f3399c81d4a800c853",
"https://deno.land/x/discordeno@16.0.1/rest/createRequestBody.ts": "51130bc2d50a9efc56db73d75e64c3dd7a3556f3c07f256127da11b23941a0ee",
"https://deno.land/x/discordeno@16.0.1/rest/mod.ts": "ba7b2696916f1c7d1a6d9b0cb9a534d49aa60e21811dbd28859048b950cca0b1",
"https://deno.land/x/discordeno@16.0.1/rest/processGlobalQueue.ts": "3eb172556a234c60689795a0a9d7568495f24acee571d21c87bd4f7008f9ad9f",
"https://deno.land/x/discordeno@16.0.1/rest/processQueue.ts": "423cc2b5ef19f79c6e7d19677ee49a444e414ab86c41eaed05a8f71d1db00b78",
"https://deno.land/x/discordeno@16.0.1/rest/processRateLimitedPaths.ts": "d7f8c464f76cfcb8fa761a4c3249a80fa156f090c57c0a1284d179b7cacae8a7",
"https://deno.land/x/discordeno@16.0.1/rest/processRequest.ts": "a5acbb3eaaf4469b7bb40a35ed7eee6495973e8e791c7e2e8267f5a5ac63c1c2",
"https://deno.land/x/discordeno@16.0.1/rest/processRequestHeaders.ts": "641198a40ccb6e452811cacec8ac37ed001a9c872bc861ba93abc0c0f3217097",
"https://deno.land/x/discordeno@16.0.1/rest/rest.ts": "3e47bfd31fe2901e581caf9dbee6f0bd428ac436a53b0eb37a4ad0329baf7488",
"https://deno.land/x/discordeno@16.0.1/rest/restManager.ts": "896d9454536bab147a0d421f19e70f04e133ec6812fb799867415a792e7d75fd",
"https://deno.land/x/discordeno@16.0.1/rest/runMethod.ts": "c8ad74d8c1585dce3087d3464d7d42df50ad1e992bdd43466f7d6a720a91612d",
"https://deno.land/x/discordeno@16.0.1/rest/sendRequest.ts": "c20ecbacaac7485972ca489e7ff1ac24d214693eb5b0e7146f9a3688cae234de",
"https://deno.land/x/discordeno@16.0.1/rest/simplifyUrl.ts": "1b2661a776bc5c2fb84ee73312926183f51f11532e7d8f62ce44ba823c992295",
"https://deno.land/x/discordeno@16.0.1/transformers/activity.ts": "bfb5245a7bd8c5fbdfbef8a7965f744368264f07b726244d65a578ba80542125",
"https://deno.land/x/discordeno@16.0.1/transformers/application.ts": "cd41c186b3e54d1060233514498b8ae0e4be05bc8e36d854f0ed011f4577c0ab",
"https://deno.land/x/discordeno@16.0.1/transformers/applicationCommand.ts": "ab793ac543e5f472396eed24a9c06704429dc8b60d70a0c6faebe9e595e01a25",
"https://deno.land/x/discordeno@16.0.1/transformers/applicationCommandOption.ts": "329112f7a60df518af0a835e46cc79d744c10ddd4971ea8d050ea3b4dcdc05ec",
"https://deno.land/x/discordeno@16.0.1/transformers/applicationCommandOptionChoice.ts": "2118fa6989af6006e7266ab9599f1402cfcb9211227e296bab019e92ee0e2875",
"https://deno.land/x/discordeno@16.0.1/transformers/applicationCommandPermission.ts": "8d13f217325ce9d67068464fe2c9d42a07d152fc70558e2c0092b49010419d9b",
"https://deno.land/x/discordeno@16.0.1/transformers/attachment.ts": "8963729b4fe321bc4d60d13d6ead7e815729dba42b28d3d3117c637d009545a0",
"https://deno.land/x/discordeno@16.0.1/transformers/auditLogEntry.ts": "fdf6e1d7e4ba1b1ea3fd2d8bd21968dc9026139c1701952f485c709b7702a319",
"https://deno.land/x/discordeno@16.0.1/transformers/automodActionExecution.ts": "cdbc1570678e8c0779972d6897755208fc73bdc6921db24817ad9b385fa2a3eb",
"https://deno.land/x/discordeno@16.0.1/transformers/automodRule.ts": "83ea7f0f51568e231e9f0a76816c6d33a5d82da11c366e72dde935ee1e0d1a1e",
"https://deno.land/x/discordeno@16.0.1/transformers/channel.ts": "707d570b297b0d4146e373d68a8f8ed7cfc637e716ad17afea3e9e7031e801a9",
"https://deno.land/x/discordeno@16.0.1/transformers/component.ts": "bd19315467b1c31f9639035b56117af7748a4acb3eb5524540af17bedcd93a4c",
"https://deno.land/x/discordeno@16.0.1/transformers/embed.ts": "abe227b8d2b9f062c526cdf279656703180c8e5f44c3691080ef5e32c0b3156b",
"https://deno.land/x/discordeno@16.0.1/transformers/emoji.ts": "58da6a8eb8c5cb9573bf43608e5a34ae2649f1d0a67fd4e74d99b5e8afe84d1b",
"https://deno.land/x/discordeno@16.0.1/transformers/gatewayBot.ts": "0c7dfebdaf142462fbd6cc94c61a64e8f2032834c4308b7ad06e493172c4fedc",
"https://deno.land/x/discordeno@16.0.1/transformers/guild.ts": "e58eeebddcf16996005d95b7d623f5385ff6652c81e97d247d01270f2c547c46",
"https://deno.land/x/discordeno@16.0.1/transformers/integration.ts": "0bda973c99949f906fe823e91d55b329a6da520eadb9eab8040946b14f8121f6",
"https://deno.land/x/discordeno@16.0.1/transformers/interaction.ts": "eb273d1fdb3240a8a40a5fad4a23a389582c5de0ae609913d1117f7f49458b20",
"https://deno.land/x/discordeno@16.0.1/transformers/invite.ts": "b9aeb5c51f653f11f2ca3974eab37fe28afc5e378e2f74ae975e0ccbb1f78027",
"https://deno.land/x/discordeno@16.0.1/transformers/member.ts": "ee82dc0c90d002d7f1ffdad8c86cb2ca05fa6d522173cf9f96f4912a63f695e4",
"https://deno.land/x/discordeno@16.0.1/transformers/message.ts": "cc5a068a00d497b98edfe83116486330636d026d73c06ec3dc7f978a3d2e38e8",
"https://deno.land/x/discordeno@16.0.1/transformers/mod.ts": "2298fb9d329a7766c0156500e82a135d15016131fa25cef40f67a13edc76c0f5",
"https://deno.land/x/discordeno@16.0.1/transformers/presence.ts": "c4e6e468be742665ca904cbf1377613256a6f940d133c92838cef7ec48b6c9a7",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/activity.ts": "4a3e30ffd3721c737e1697590cb9849b584a6ebdf28af13b973034289c134b42",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/allowedMentions.ts": "1978ecb464310d8f2bc1baf7e67ede45a29b67929c0b647463b65efc50d8ed1e",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/application.ts": "3ddccb0063a9ddbb907bea57a0318ad6d00fc1f34acbbb531fc686a10668e7f3",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/applicationCommand.ts": "647418c1f7f175f40557adcc3c22449e965f3813f505ef3f13c9444422f0cd9d",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/applicationCommandOption.ts": "4a8f10906d292a12c9aa22c144b0f54b1ad46e5e36f1bbb9f2c897b2a4ab3fdd",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/applicationCommandOptionChoice.ts": "f6f45eebe9964acb3183ab94c05c20710f25524d88e4cec5b8a39e39477c3cfe",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/applicationCommandPermission.ts": "fbccf9f08b5c0191c3066e1aff3d7b2ba52ff141a492b76a4bcc5a081cc2bb8e",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/attachment.ts": "80c839a176cfe5850eee76f935c5ecac63093ab98b527539a8b15f76023adf7d",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/auditLogEntry.ts": "f534162a5ead7f2af0a7dff10ebc62783fa2c2bb75f80e9f55eea2d7614445ba",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/component.ts": "81acc5dea4378815d27a41c8cb8db6afb9ccbf254020bf61c3f57d2e8050c811",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/createApplicationCommand.ts": "3cd6b1450dea84031a10544a577c69830683e81b7c16c759b560b2ced3b5839f",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/embed.ts": "3f670eed57d512104888a55b9d7f4b213b32d8624d992cc5a30bcbd656046d2e",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/emoji.ts": "5aa260f373d748206a1f56ed61530af9f8ddd761660b303f8c9e9adf64707ec8",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/gatewayBot.ts": "8ae9a6a7c432f3485206e0ccb50e114cfbf3ca7789a60a01c660139ce499c8a8",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/interactionResponse.ts": "2a2dae0e50d160e632c935473344d90beb8f8fe7ffddd3c1c18dde78f14f2ec8",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/member.ts": "81f2450b4d5c326988773d07271757c0be615e325de1564d1fd0519c3f8bb820",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/mod.ts": "ae8ba055d871c3c3c423d34ea7cec0a4e9a328f7d5666eb18774c256627440ef",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/presence.ts": "4a6a0cfd7b5e7012d735ce50ba3a307bc4be1886348cf32a54bf6abc0ce23cf5",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/team.ts": "e2b584c75d08259ac967a37ba70157e0e67a666f3f1e2a640168288335f56b7e",
"https://deno.land/x/discordeno@16.0.1/transformers/reverse/widgetSettings.ts": "69142807adba5bcdc11fc75371e6137265f8dd8150bd0b6edf74aa7c43b9beba",
"https://deno.land/x/discordeno@16.0.1/transformers/role.ts": "22b009e642da7a4ce60e2d7ecc2d1a9dbf9b2a62c4157e11e9ad47bd317bc1a2",
"https://deno.land/x/discordeno@16.0.1/transformers/scheduledEvent.ts": "d42a5705128c09c4d7ba9553aefb720b5dde45530d1321351952f1bb7e9c7fe7",
"https://deno.land/x/discordeno@16.0.1/transformers/stageInstance.ts": "32feef2844d958f0b2d72a35b78b9ec1d0898b7c8eae6f4376327634cf7b4a1f",
"https://deno.land/x/discordeno@16.0.1/transformers/sticker.ts": "b8395b490610d113e9bfd2697aaad1ed4c80862937aa894b7bc1a1edeef4dd1c",
"https://deno.land/x/discordeno@16.0.1/transformers/team.ts": "bae401ece7629270b3d08699b7a50a948ee30874e7b3b53cf415af5802780ec0",
"https://deno.land/x/discordeno@16.0.1/transformers/template.ts": "f0bc99775bd27d83145c8a245e2b5b5d2c2095179eb1ef3c1bca21ff012f0f75",
"https://deno.land/x/discordeno@16.0.1/transformers/threadMember.ts": "698ba17d1bdcc927b83f373a0a9ea666623b9560a0009f0c366f17c4e10c92f5",
"https://deno.land/x/discordeno@16.0.1/transformers/toggles/ToggleBitfield.ts": "5192c9636cd9d6295970e357d40d00696d0cadca290db2ae052109fbc7f34294",
"https://deno.land/x/discordeno@16.0.1/transformers/toggles/emoji.ts": "89e819fb38f3d073078ccf8814550df19449a29dfee8dc6aa80575c88842ac2e",
"https://deno.land/x/discordeno@16.0.1/transformers/toggles/guild.ts": "f666e7ab01030cbffc3ba2197ccb2817102b999455a3e78a612f090deb377c43",
"https://deno.land/x/discordeno@16.0.1/transformers/toggles/member.ts": "af68318132cc4d4e1a37fc939a457bc7c7f3e6aab2a8fb60e54c76133208a94f",
"https://deno.land/x/discordeno@16.0.1/transformers/toggles/mod.ts": "258db99ff582782ce080648b7fe99b98addd535926d30b07846f1328711d178e",
"https://deno.land/x/discordeno@16.0.1/transformers/toggles/role.ts": "33367dd5c173d30205f888b99ce69f174edea85df03a88d20cb3367d30de7e27",
"https://deno.land/x/discordeno@16.0.1/transformers/toggles/user.ts": "d795e6363272eece6da55feaa6f5aecec2666ae6303d773a884f5b974c55bef0",
"https://deno.land/x/discordeno@16.0.1/transformers/toggles/voice.ts": "35dde10420c03b10a11c8790ae53823f403ca12f98c592de1ad6a7edc6c0aab1",
"https://deno.land/x/discordeno@16.0.1/transformers/voiceRegion.ts": "a2aafa0e6e8b5f93e872ed6ae9d39422612f05ee827735a8b67518dbe0aae33b",
"https://deno.land/x/discordeno@16.0.1/transformers/voiceState.ts": "8bcd18fbf5ac3f4c74d7e5a8fefc9a8387e20ef653933dd75789b1030a67dba1",
"https://deno.land/x/discordeno@16.0.1/transformers/webhook.ts": "554d5067bb062c2e3b7acd695524ad1623f718ec018b12e24baa19780d546750",
"https://deno.land/x/discordeno@16.0.1/transformers/welcomeScreen.ts": "752fd62e3fd02661731da8e99748dfa070ea47b40fcf60a99edcde0150c799d1",
"https://deno.land/x/discordeno@16.0.1/transformers/widget.ts": "4ac5d91e08397d02c0122864499e7b787b8a021aa188e6c33ea7049adbf2025c",
"https://deno.land/x/discordeno@16.0.1/transformers/widgetSettings.ts": "f6b18308e30225ff52fb685421e3fa3fee26e5cb08dfa937979221f8ecf54bb3",
"https://deno.land/x/discordeno@16.0.1/types/discord.ts": "a0a8b07fd5a2e51aa4600f30ca35b56f62b78daae4c3eee83e389ea5ca4faeb1",
"https://deno.land/x/discordeno@16.0.1/types/discordeno.ts": "ef3e9994b6db53bd704756965bfcf9a404a4a2d78a91b6800eac6e72b3c6a5c6",
"https://deno.land/x/discordeno@16.0.1/types/mod.ts": "fe28c2252f98d3e699be672a0503e5829ac03c22bcf28d50f5ea11ccbcb21e5e",
"https://deno.land/x/discordeno@16.0.1/types/shared.ts": "9ad785f51e6ed1556b09a195a612ddb56e549721acf047817223cbb69b0420f4",
"https://deno.land/x/discordeno@16.0.1/util/bigint.ts": "fa3942c20dc4e1fc22a2376bb937568cac39fd5c247844aa9f59b63dd22986da",
"https://deno.land/x/discordeno@16.0.1/util/bucket.ts": "86247c46a217eafe421ae3cb0a964d82136306f11031693ab72296f287c7a0fd",
"https://deno.land/x/discordeno@16.0.1/util/calculateShardId.ts": "897f63e613124c2f2aba77f9c909fe5e27f3a29759c813e39050e7945fce3e7a",
"https://deno.land/x/discordeno@16.0.1/util/collection.ts": "3ac580f642568416d74b70ae060f30a660aaf072c851e7fc59aadf8d6381d98b",
"https://deno.land/x/discordeno@16.0.1/util/constants.ts": "6ecf4b69d7788e3e02e9672575286b4a315bc05b6e14c64f49ab58ff7d782878",
"https://deno.land/x/discordeno@16.0.1/util/hash.ts": "23047c82bc271fb9ecf4744f37ac68adfbd97a910bee193e45987e4868a57db8",
"https://deno.land/x/discordeno@16.0.1/util/mod.ts": "066f668d4bfa07110c8de4f671de881d87242e05608982c863d7dc5b60d67a25",
"https://deno.land/x/discordeno@16.0.1/util/permissions.ts": "24af940cfecdc19931f1440ca1c9f4a3d4581129a80385d873018fb5ca4f4bb6",
"https://deno.land/x/discordeno@16.0.1/util/routes.ts": "a1367fb9cea61edf9283207bbcf6e11e59ece18336fe3e8e5c7ad5f549be8c8b",
"https://deno.land/x/discordeno@16.0.1/util/token.ts": "4b5f415ee8a462866c35d60551e7cdc361ad88172d63d124e5722f61e0e03c08",
"https://deno.land/x/discordeno@16.0.1/util/urlToBase64.ts": "80041d2d371702155fdb24d8ebea8689841a4d49df2db4917965b8ab47575a56",
"https://deno.land/x/discordeno@16.0.1/util/utils.ts": "b16797ea1918af635f0c04c345a7c9b57c078310ac18d0c86936ec8abfaeddeb",
"https://deno.land/x/discordeno@16.0.1/util/validateLength.ts": "7c610911d72082f9cfe2c455737cd37d8ce8f323483f0ef65fdfea6a993984b5",
"https://deno.land/x/discordeno@16.0.1/util/verifySignature.ts": "8ba1c3d2698f347b4f32a76bd33edeb67ee9d23c34f419a797c393926786bb97",
"https://deno.land/x/god_crypto@v0.2.0/mod.ts": "45a249678300e1d3af935c05f622288605788d5b2e14fea989c9fc4cb1eefd22",
"https://deno.land/x/god_crypto@v0.2.0/rsa.ts": "b9be695ea1a859e0591b514ad3eeda4a926cec3445f1da3c8382ee5801b1d3ef",
"https://deno.land/x/god_crypto@v0.2.0/src/basic_encoding_rule.ts": "722203fdcd263920b9841a039c21a89ac09196ba77235bfb75d3fe4a1c790c98",
"https://deno.land/x/god_crypto@v0.2.0/src/eme_oaep.ts": "063983a123709b9db1fbb99e34919d70864269da106efabaece4cfab35aecfe0",
"https://deno.land/x/god_crypto@v0.2.0/src/helper.ts": "f6fb1fa7d4a84e64ce9cee195b38a004c57be1d8e8e175918877e34b041c6cf7",
"https://deno.land/x/god_crypto@v0.2.0/src/math.ts": "d1dfdc8f84a77a07139de0542d5d20279f99e3cd1afc092b22a8cd8bb54e3696",
"https://deno.land/x/god_crypto@v0.2.0/src/primitives.ts": "16609ae5c228fea7eea74a9832aa321ac3b079ab6cd44b0ea143e0019f377856",
"https://deno.land/x/god_crypto@v0.2.0/src/rsa.ts": "315707c7c4cc32bb2085a06df8f84f90f1433d1a555082dab7e7d4171122d3e4",
"https://deno.land/x/mysql@v2.10.2/deps.ts": "a8b61ff81c7e55cc045a38a5a39f597454291cfc81a3739127d857611c4ad9da",
"https://deno.land/x/mysql@v2.10.2/mod.ts": "c751574b2b41bb0926f0eb4f29c70aa9a435dc039a370e1fb238dc495fea2dcf",
"https://deno.land/x/mysql@v2.10.2/src/auth.ts": "d4b9a4db2368ffde77b24fda35e8a52baedb4081f88ffa4e212264accc88b2f2",
"https://deno.land/x/mysql@v2.10.2/src/auth_plugin/caching_sha2_password.ts": "adaf27da89c242ab351351e9320b631b565dad85daff9a6c299382a3ed4ed526",
"https://deno.land/x/mysql@v2.10.2/src/auth_plugin/crypt.ts": "419f5616dcf2554bd5f37259d148af74525504512604823aae26daba53e50a57",
"https://deno.land/x/mysql@v2.10.2/src/auth_plugin/index.ts": "8617e520ad854e38470aeefd07becdb3397c4cde16c2397dd48d5c10fdd5ab09",
"https://deno.land/x/mysql@v2.10.2/src/buffer.ts": "0b9fe1d8d2fbf390e1db2a5e691a7633fb38a727bdef02911e6dc92bf0ed398f",
"https://deno.land/x/mysql@v2.10.2/src/client.ts": "9a486419dfeb5f4d15d9fa56705e3cfbab6134bbbe08783a515e7e38f5cbca65",
"https://deno.land/x/mysql@v2.10.2/src/connection.ts": "4a7e2348eda63119dcee8f1636210144c3c6796c0906bc10c8db1db398c8ed9d",
"https://deno.land/x/mysql@v2.10.2/src/constant/capabilities.ts": "bf6b357b793da4d6e3f192a45d2368767902d7cb92affde2b393c3e08ed530f9",
"https://deno.land/x/mysql@v2.10.2/src/constant/charset.ts": "253d7233679c774df623d1f974ebb358f3678c18fd6a623e25983311d97d959b",
"https://deno.land/x/mysql@v2.10.2/src/constant/errors.ts": "923bab27d524e43199fa21fdfcbe025580ca76d8b32254ad9505765c502f238a",
"https://deno.land/x/mysql@v2.10.2/src/constant/mysql_types.ts": "79c50de8eb5919b897e81e2ff2366ee1ffdbb4297f711e15003bdb787bbc8e6c",
"https://deno.land/x/mysql@v2.10.2/src/constant/packet.ts": "a1e7e00ce30c551c5f95c05d233b8d83f8e1fc865de97be3b317058e173630a9",
"https://deno.land/x/mysql@v2.10.2/src/deferred.ts": "35d087619d919961e849e382c33b2bfea15b4119f55eca2d9c9047f30512a2cb",
"https://deno.land/x/mysql@v2.10.2/src/logger.ts": "9fe85e361d3972f3105e33930dd4a069456c625b5b0cd7efc322418964edc470",
"https://deno.land/x/mysql@v2.10.2/src/packets/builders/auth.ts": "d9752c7e95aae3f3ace81df03c19907ed8a9dfe9c19399796e80a24cb83ab2ed",
"https://deno.land/x/mysql@v2.10.2/src/packets/builders/query.ts": "caf426a72ebe545ff5bab14c8b7b5e412dd8827c091322959cdf4e9aa89ef900",
"https://deno.land/x/mysql@v2.10.2/src/packets/packet.ts": "d7800cc142226f7dfd3c5f647f03cd3ef308f9d8551b4edb2e1bfb9c758d33b6",
"https://deno.land/x/mysql@v2.10.2/src/packets/parsers/err.ts": "4110c4ddc2ae8358d6661fa2522f8eda2e603900d1e433e3684765ed50e88ed8",
"https://deno.land/x/mysql@v2.10.2/src/packets/parsers/handshake.ts": "88f7ee34e9e0ef089bc5fdefacaccf256ef002b2f7a8ad684e35327682039e73",
"https://deno.land/x/mysql@v2.10.2/src/packets/parsers/result.ts": "8ab16f1adae67415eefcc17803b0eb828c1f4c6a24c55f25949f418e862d3ec8",
"https://deno.land/x/mysql@v2.10.2/src/pool.ts": "53d094f574d4685f6d884ab6f2680ba1704d69e0f37700bd976fb2cf0b4d59a6",
"https://deno.land/x/mysql@v2.10.2/src/util.ts": "83d38e87cc3901da00ac44bfcd53c0e8d24525262f5c7647c912dccf3ed2dbb5",
"https://deno.land/x/mysql@v2.12.1/deps.ts": "68635959a41bb08bc87db007679fb8449febc55d48202dff20b93cc23ef5820d",
"https://deno.land/x/mysql@v2.12.1/mod.ts": "3246c9c259434563be69cc95d5b792f8aac7ef5d10b8a6c6589aa54ebf1bd266",
"https://deno.land/x/mysql@v2.12.1/src/auth.ts": "129ea08b180d3e90e567c3f71e60432bb266304c224e17ea39d604bbcc1160d8",
"https://deno.land/x/mysql@v2.12.1/src/auth_plugin/caching_sha2_password.ts": "aab89e272382e6f408406f860ae6e79628275f4511e27a565049033543c4bdec",
"https://deno.land/x/mysql@v2.12.1/src/auth_plugin/crypt.ts": "8798819cce1171d95cfee8edda15fe6a652068cad4dc91f81b6e91cf90a13617",
"https://deno.land/x/mysql@v2.12.1/src/auth_plugin/index.ts": "8617e520ad854e38470aeefd07becdb3397c4cde16c2397dd48d5c10fdd5ab09",
"https://deno.land/x/mysql@v2.12.1/src/buffer.ts": "59f7e08e196f1b7e58cf5c3cf8ae8f4d0d47d1ae31430076fc468d974d3b59e7",
"https://deno.land/x/mysql@v2.12.1/src/client.ts": "30912964986667a2ce108c14f7153dd38e8089e55f8068e8d07697f75f2ac22f",
"https://deno.land/x/mysql@v2.12.1/src/connection.ts": "1d104c05441f8c94ee73123497fbbae28499f3badb0d9fef8cc82540688ada6e",
"https://deno.land/x/mysql@v2.12.1/src/constant/capabilities.ts": "2324c0e46ac43f59b7b03bdd878d7a14ecc5202b9e133c7e8769345a8290f2a1",
"https://deno.land/x/mysql@v2.12.1/src/constant/charset.ts": "253d7233679c774df623d1f974ebb358f3678c18fd6a623e25983311d97d959b",
"https://deno.land/x/mysql@v2.12.1/src/constant/errors.ts": "923bab27d524e43199fa21fdfcbe025580ca76d8b32254ad9505765c502f238a",
"https://deno.land/x/mysql@v2.12.1/src/constant/mysql_types.ts": "79c50de8eb5919b897e81e2ff2366ee1ffdbb4297f711e15003bdb787bbc8e6c",
"https://deno.land/x/mysql@v2.12.1/src/constant/packet.ts": "a1e7e00ce30c551c5f95c05d233b8d83f8e1fc865de97be3b317058e173630a9",
"https://deno.land/x/mysql@v2.12.1/src/deferred.ts": "35d087619d919961e849e382c33b2bfea15b4119f55eca2d9c9047f30512a2cb",
"https://deno.land/x/mysql@v2.12.1/src/logger.ts": "eb5feb3efdb9fd4887f6eccd5c06b5702591ac032af9857a12bbae86ceefe21b",
"https://deno.land/x/mysql@v2.12.1/src/packets/builders/auth.ts": "0b53dd5fa0269427aa54c3f6909bd830ffb426009061df89df262c504d6c9b70",
"https://deno.land/x/mysql@v2.12.1/src/packets/builders/client_capabilities.ts": "1000f2c1a20e0e119b9a416eb4ea4553cc1c5655d289a66e9077bf7a5993d52d",
"https://deno.land/x/mysql@v2.12.1/src/packets/builders/query.ts": "caf426a72ebe545ff5bab14c8b7b5e412dd8827c091322959cdf4e9aa89ef900",
"https://deno.land/x/mysql@v2.12.1/src/packets/builders/tls.ts": "2abb4a2fa74c47914372b221cb6f178f6015df54421daf0e10e54d80d7156498",
"https://deno.land/x/mysql@v2.12.1/src/packets/packet.ts": "d7800cc142226f7dfd3c5f647f03cd3ef308f9d8551b4edb2e1bfb9c758d33b6",
"https://deno.land/x/mysql@v2.12.1/src/packets/parsers/authswitch.ts": "aa34f21336c4907b3ae968108fcdad8f1c43a303088efd83d972e6c7b258c166",
"https://deno.land/x/mysql@v2.12.1/src/packets/parsers/err.ts": "4110c4ddc2ae8358d6661fa2522f8eda2e603900d1e433e3684765ed50e88ed8",
"https://deno.land/x/mysql@v2.12.1/src/packets/parsers/handshake.ts": "88f7ee34e9e0ef089bc5fdefacaccf256ef002b2f7a8ad684e35327682039e73",
"https://deno.land/x/mysql@v2.12.1/src/packets/parsers/result.ts": "8ab16f1adae67415eefcc17803b0eb828c1f4c6a24c55f25949f418e862d3ec8",
"https://deno.land/x/mysql@v2.12.1/src/pool.ts": "978ba2813b3886d68be007678360ad43c54dab14b1aea1c07fcdb41222fcc432",
"https://deno.land/x/mysql@v2.12.1/src/util.ts": "83d38e87cc3901da00ac44bfcd53c0e8d24525262f5c7647c912dccf3ed2dbb5",
"https://deno.land/x/nanoid@v3.0.0/customAlphabet.ts": "1cfd7cfd2f07ca8d78a7e7855fcc9f59abf01ef2a127484ef94328fadf940ead",
"https://deno.land/x/nanoid@v3.0.0/customRandom.ts": "af56e19038c891a4b4ef2be931554c27579bd407ee5bbea5cb64f6ee1347cbe3",
"https://deno.land/x/nanoid@v3.0.0/mod.ts": "3ead610e40c58d8fdca21d5da9ec661445a2b82526e19c34d05de5f90be8a1be",
"https://deno.land/x/nanoid@v3.0.0/nanoid.ts": "8d119bc89a0f34e7bbe0c2dbdc280d01753e431af553d189663492310a31085d",
"https://deno.land/x/nanoid@v3.0.0/random.ts": "4da71d5f72f2bfcc6a4ee79b5d4e72f48dcf4fe4c3835fd5ebab08b9f33cd598",
"https://deno.land/x/nanoid@v3.0.0/urlAlphabet.ts": "8b1511deb1ecb23c66202b6000dc10fb68f9a96b5550c6c8cef5009324793431",
"https://deno.land/x/sql_builder@v1.9.1/util.ts": "b9855dc435972704cf82655019f4ec168ac83550ab4db596c5f6b6d201466384",
"https://raw.githubusercontent.com/Burn-E99/Log4Deno/V2.1.1/deps.ts": "3ab026026d146ca5e7160b16146d5665e45487a62749a7970f8e00c0c934874d",
"https://raw.githubusercontent.com/Burn-E99/Log4Deno/V2.1.1/mod.ts": "d9c38a41a405cf5732c9233c2391a1d7f5a12d0e464aace6f8f596fabf5f21ba",
"https://raw.githubusercontent.com/Burn-E99/Log4Deno/V2.1.1/src/logger.ts": "b3a39724d58102dfbcdcd640a829cbfe1f083065060f68003f9c8fd49fdd658a",
"https://unpkg.com/@evan/wasm@0.0.93/target/ed25519/deno.js": "9728126890f17b71cee41afdab8a4bc362f6b9f409fe0a5c4f6ca9f3b510fd3a",
"https://unpkg.com/@evan/wasm@0.0.94/target/zlib/deno.js": "e65131e1c1f45e64960f2699a0b868927ea5c9201c4b986a7cfc57b18be5cc09"
}
}

View File

@ -9,6 +9,6 @@ export { ActivityTypes, createBot, editBotMember, editBotStatus, getReactions, I
export type { Bot, CreateMessage, Emoji, EventHandlers, Guild, Member, Message, User } from 'https://deno.land/x/discordeno@16.0.1/mod.ts';
export { Client } from 'https://deno.land/x/mysql@v2.10.2/mod.ts';
export { Client } from 'https://deno.land/x/mysql@v2.12.1/mod.ts';
export { initLog, log, LogTypes as LT } from 'https://raw.githubusercontent.com/Burn-E99/Log4Deno/V1.1.1/mod.ts';
export { initLog, log, LogTypes as LT } from 'https://raw.githubusercontent.com/Burn-E99/Log4Deno/V2.1.1/mod.ts';

View File

@ -3,4 +3,4 @@ export const DEVMODE = false;
// DEBUG is used to toggle the cmdPrompt
export const DEBUG = false;
// LOCALMODE is used to run a differnt bot token for local testing
export const LOCALMODE = true;
export const LOCALMODE = false;

View File

@ -13,19 +13,27 @@ export const sendMsg = (bot: Bot, message: Message, args: string[]) => {
if (args.join(' ') && channelId) {
sendMessage(bot, channelId, { content: args.join(' ') }).catch((e: Error) => utils.commonLoggers.messageSendError('report.ts:22', message, e));
bot.helpers.sendMessage(message.channelId, {
embeds: [{
bot.helpers
.sendMessage(message.channelId, {
embeds: [
{
color: successColor,
title: 'Attempted to send.',
}],
}).catch((e: Error) => utils.commonLoggers.messageSendError('report.ts:29', message, e));
},
],
})
.catch((e: Error) => utils.commonLoggers.messageSendError('report.ts:29', message, e));
}
} catch (err) {
bot.helpers.sendMessage(message.channelId, {
embeds: [{
} catch (_err) {
bot.helpers
.sendMessage(message.channelId, {
embeds: [
{
color: failColor,
title: 'Missing args.',
}],
}).catch((e: Error) => utils.commonLoggers.messageSendError('report.ts:37', message, e));
},
],
})
.catch((e: Error) => utils.commonLoggers.messageSendError('report.ts:37', message, e));
}
};

View File

@ -13,7 +13,7 @@ import commands from '../commands/_index.ts';
import functions from '../functions/_index.ts';
import utils from '../utils.ts';
export const messageCreate = async (bot: Bot, message: Message) => {
export const messageCreate = (bot: Bot, message: Message) => {
// Ignore all messages that are not commands
if (message.content.indexOf(config.prefix) !== 0) {
// Handle @bot messages
@ -39,7 +39,10 @@ export const messageCreate = async (bot: Bot, message: Message) => {
log(LT.LOG, `Handling ${config.prefix}command message: ${utils.jsonStringifyBig(message)}`);
// Split into standard command + args format
const args = message.content.slice(config.prefix.length).trim().split(/[ \n]+/g);
const args = message.content
.slice(config.prefix.length)
.trim()
.split(/[ \n]+/g);
const command = args.shift()?.toLowerCase();
// All commands below here

View File

@ -18,25 +18,29 @@ import utils from '../utils.ts';
export const ready = (bot: Bot) => {
log(LT.INFO, `${config.name} Logged in!`);
editBotStatus(bot, {
activities: [{
activities: [
{
name: 'Booting up . . .',
type: ActivityTypes.Game,
createdAt: new Date().getTime(),
}],
},
],
status: 'online',
});
// Interval to rotate the status text every 30 seconds to show off more commands
setInterval(async () => {
setInterval(() => {
log(LT.LOG, 'Changing bot status');
try {
// Wrapped in try-catch due to hard crash possible
editBotStatus(bot, {
activities: [{
activities: [
{
name: getRandomSweeperLine(),
type: ActivityTypes.Game,
createdAt: new Date().getTime(),
}],
},
],
status: 'online',
});
} catch (e) {
@ -48,15 +52,18 @@ export const ready = (bot: Bot) => {
setTimeout(() => {
LOCALMODE && editBotMember(bot, config.devServer, { nick: `LOCAL - ${config.name}` });
editBotStatus(bot, {
activities: [{
activities: [
{
name: 'Booting Complete',
type: ActivityTypes.Game,
createdAt: new Date().getTime(),
}],
},
],
status: 'online',
});
sendMessage(bot, config.logChannel, {
embeds: [{
embeds: [
{
title: `${config.name} is now Online`,
color: successColor,
fields: [
@ -66,7 +73,8 @@ export const ready = (bot: Bot) => {
inline: true,
},
],
}],
},
],
}).catch((e: Error) => utils.commonLoggers.messageSendError('mod.ts:88', 'Startup', e));
}, 1000);
};

View File

@ -12,7 +12,7 @@ const emojiName = (emoji: Emoji) => {
return `${emoji.name}${emojiId}`;
};
export const onlyOneReaction = async (bot: Bot, payload: ReactionAdd, message: Message) => {
export const onlyOneReaction = (bot: Bot, payload: ReactionAdd, message: Message) => {
const newEmoji = emojiName(payload.emoji);
if (message.reactions) {
@ -20,9 +20,9 @@ export const onlyOneReaction = async (bot: Bot, payload: ReactionAdd, message: M
const otherEmoji = emojiName(reaction.emoji);
if (newEmoji !== otherEmoji) {
bot.helpers.deleteUserReaction(message.channelId, message.id, payload.userId, otherEmoji).catch((e: Error) =>
utils.commonLoggers.reactionDeleteError('onlyOneReaction.ts:23', message, e, otherEmoji)
);
bot.helpers
.deleteUserReaction(message.channelId, message.id, payload.userId, otherEmoji)
.catch((e: Error) => utils.commonLoggers.reactionDeleteError('onlyOneReaction.ts:23', message, e, otherEmoji));
}
}
}

View File

@ -10,7 +10,8 @@ import utils from '../utils.ts';
export const pollReactions = async (bot: Bot, message: Message, update = false) => {
if (message.content.toLowerCase().includes('clan poll')) {
// Emoji RegExp
const unicodeEmojiRX = `(\\p{RI}\\p{RI}|\\p{Emoji}(\\p{EMod}+|\u{FE0F}\u{20E3}?|[\u{E0020}-\u{E007E}]+\u{E007F})?(\u{200D}\\p{Emoji}(\\p{EMod}+|\u{FE0F}\u{20E3}?|[\u{E0020}-\u{E007E}]+\u{E007F})?)+|\\p{EPres}(\\p{EMod}+|\u{FE0F}\u{20E3}?|[\u{E0020}-\u{E007E}]+\u{E007F})?|\\p{Emoji}(\\p{EMod}+|\u{FE0F}\u{20E3}?|[\u{E0020}-\u{E007E}]+\u{E007F}))`;
const unicodeEmojiRX =
`(\\p{RI}\\p{RI}|\\p{Emoji}(\\p{EMod}+|\u{FE0F}\u{20E3}?|[\u{E0020}-\u{E007E}]+\u{E007F})?(\u{200D}\\p{Emoji}(\\p{EMod}+|\u{FE0F}\u{20E3}?|[\u{E0020}-\u{E007E}]+\u{E007F})?)+|\\p{EPres}(\\p{EMod}+|\u{FE0F}\u{20E3}?|[\u{E0020}-\u{E007E}]+\u{E007F})?|\\p{Emoji}(\\p{EMod}+|\u{FE0F}\u{20E3}?|[\u{E0020}-\u{E007E}]+\u{E007F}))`;
const discordEmojiRX = '(a?:[a-zA-Z\\d_]+:\\d+)';
const allEmojiRX = new RegExp(`${unicodeEmojiRX}|${discordEmojiRX}`, 'gu');

View File

@ -6,8 +6,9 @@ import {
Message,
} from '../deps.ts';
// deno-lint-ignore no-explicit-any
const jsonStringifyBig = (input: any) => {
return JSON.stringify(input, (_key, value) => typeof value === 'bigint' ? value.toString() + 'n' : value);
return JSON.stringify(input, (_key, value) => (typeof value === 'bigint' ? value.toString() + 'n' : value));
};
const genericLogger = (level: LT, message: string) => log(level, message);

View File

@ -1 +1 @@
deno run --allow-write=./logs/ --allow-net .\mod.ts
deno run --allow-write=./logs/ --allow-net --allow-import ./mod.ts

View File

@ -14,7 +14,7 @@ sweeper_log="/var/log/sweeper.log"
sweeper_chdir="${sweeper_root}"
command="/usr/sbin/daemon"
command_args="-f -R 5 -P ${pidfile} -o ${sweeper_log} /usr/local/bin/deno run --allow-write=${sweeper_write} --allow-net ${sweeper_root}/mod.ts"
command_args="-f -R 5 -P ${pidfile} -o ${sweeper_log} /usr/local/bin/deno run --allow-write=${sweeper_write} --allow-net --allow-import ${sweeper_root}/mod.ts"
load_rc_config sweeper
run_rc_command "$1"

View File

@ -6,7 +6,7 @@ After=network.target
[Service]
Type=simple
PIDFile=/run/deno.pid
ExecStart=/root/.deno/bin/deno run --allow-write=./logs/ --allow-net .\mod.ts
ExecStart=/root/.deno/bin/deno run --allow-write=./logs/ --allow-net --allow-import .\mod.ts
RestartSec=60
Restart=on-failure