diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..2b9b79e --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +* text=auto eol=lf + diff --git a/.gitignore b/.gitignore index e2b49e0..4dbd9d3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,7 @@ patches/*/*-custom.patch patches/*/*.patch-failed +resources/distok/versionlogs/* +!resources/distok/versionlogs/.gitkeep +resources/fdroid/repo/icons/*.xml +resources/fonts/*.ttf +*.apk diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9c3ef47 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,68 @@ +FROM ubuntu:21.04 + +# Install needed packages +RUN apt-get update +RUN DEBIAN_FRONTEND=noninteractive apt-get -y install python3 android-sdk-build-tools wget unzip imagemagick git patch software-properties-common +# Mirror is being weird currently so install this seperatly +RUN apt-get update +RUN DEBIAN_FRONTEND=noninteractive apt-get -y install zipmerge + +# Install fdroid +RUN add-apt-repository ppa:fdroid/fdroidserver +RUN apt-get update +RUN apt-get -y install fdroidserver + +# Create resources folder for tools/images etc +ENV CTC_FOLDER=/opt/ctc +RUN mkdir ${CTC_FOLDER} + +# Grab modified apktool +RUN mkdir ${CTC_FOLDER}/tools +RUN wget -O ${CTC_FOLDER}/tools/apktool.jar https://f001.backblazeb2.com/file/avepub/apktool-cli-all.jar + +# Grab xml-patch (https://github.com/dnault/xml-patch) +RUN wget -O ${CTC_FOLDER}/tools/xml-patch.jar https://jcenter.bintray.com/com/github/dnault/xml-patch/0.3.1/xml-patch-0.3.1.jar + +# Grab dex2jar (https://github.com/Aliucord/dex2jar) +RUN wget -O ${CTC_FOLDER}/tools/dex2jar.jar https://github.com/Aliucord/dex2jar/releases/download/v19-fork2/dex2jar.jar + +# Grab emoji sets +ENV EMOJI_PATH=${CTC_FOLDER}/emojis +ENV EMOJI_MUTANT_PATH=${EMOJI_PATH}/mutant +ENV EMOJI_BLOBMOJIS_PATH=${EMOJI_PATH}/blobmojis +RUN mkdir ${EMOJI_PATH} + +# Mutant emojis +RUN mkdir ${EMOJI_MUTANT_PATH} +WORKDIR ${EMOJI_MUTANT_PATH} +RUN wget https://mutant.lavatech.top/72x72.zip +RUN unzip 72x72.zip +RUN mv 72x72/*.png . +RUN rm -rf 72x72 +RUN rm 72x72.zip + +# Blobmojis +RUN mkdir ${EMOJI_BLOBMOJIS_PATH} +RUN mkdir /tmp/blobmoji +WORKDIR /tmp/blobmoji +RUN wget https://github.com/C1710/blobmoji/archive/refs/heads/main.zip +RUN 7za x main.zip +WORKDIR /tmp/blobmoji/blobmoji-main/svg +RUN find ./*.svg -exec mogrify -format png -resize 72x72 -path ${EMOJI_BLOBMOJIS_PATH} {} \; ; exit 0 + +# Generate self signed KS +RUN mkdir ${CTC_FOLDER}/keystores +WORKDIR ${CTC_FOLDER}/keystores +RUN keytool -genkey -alias test \ + -keyalg RSA -keystore keystore.jks \ + -dname "CN=Test, OU=Test, O=Test, L=Test, S=Test, C=Test" \ + -storepass password -keypass password + +# Make folder for git repo +RUN mkdir ${CTC_FOLDER}/gitrepo +WORKDIR ${CTC_FOLDER}/gitrepo + +# paths in ctcconfig in docker +# container fs +# /opt/ctc/gitrepo +# /opt/ctc/keystores/keystore.jks not specified by default diff --git a/README.md b/README.md index e232175..fc55aca 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Modular Client Mod for Discord's Android app. For status updates and support on the project, join #cutthecord on https://libera.chat. WebIRC link: https://web.libera.chat/#cutthecord -**Latest supported Discord Android version:** 78.4 - Alpha (78204), released on 2021-05-31. +**Latest supported Discord Android version:** 87.2 - Alpha (87202), released on 2021-08-04. New patch development will be done for the latest supported version. diff --git a/patchport-state.json b/patchport-state.json deleted file mode 100644 index 74f10a5..0000000 --- a/patchport-state.json +++ /dev/null @@ -1 +0,0 @@ -{"versionname": "78.4 - Alpha", "versioncode": "78204"} \ No newline at end of file diff --git a/resources/distok/android/.gitignore b/resources/distok/android/.gitignore new file mode 100644 index 0000000..7510784 --- /dev/null +++ b/resources/distok/android/.gitignore @@ -0,0 +1,2 @@ +*.apk + diff --git a/resources/distok/android/.gitkeep b/resources/distok/android/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/resources/distok/versionlogs/.gitkeep b/resources/distok/versionlogs/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/resources/fdroid/repo/.gitkeep b/resources/fdroid/repo/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/resources/fonts/.gitkeep b/resources/fonts/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/icons/README.md b/resources/icons/README.md similarity index 100% rename from icons/README.md rename to resources/icons/README.md diff --git a/icons/ave/ctcave.xcf b/resources/icons/ave/ctcave.xcf similarity index 100% rename from icons/ave/ctcave.xcf rename to resources/icons/ave/ctcave.xcf diff --git a/icons/ave/fgave.png b/resources/icons/ave/fgave.png similarity index 100% rename from icons/ave/fgave.png rename to resources/icons/ave/fgave.png diff --git a/icons/ave/fullave.png b/resources/icons/ave/fullave.png similarity index 100% rename from icons/ave/fullave.png rename to resources/icons/ave/fullave.png diff --git a/icons/bg.png b/resources/icons/bg.png similarity index 100% rename from icons/bg.png rename to resources/icons/bg.png diff --git a/icons/ctc.xcf b/resources/icons/ctc.xcf similarity index 100% rename from icons/ctc.xcf rename to resources/icons/ctc.xcf diff --git a/icons/dzuk/dzuk_telegram_credit.png b/resources/icons/dzuk/dzuk_telegram_credit.png similarity index 100% rename from icons/dzuk/dzuk_telegram_credit.png rename to resources/icons/dzuk/dzuk_telegram_credit.png diff --git a/icons/dzuk/icons/cutthecord_bluepurple.svg b/resources/icons/dzuk/icons/cutthecord_bluepurple.svg similarity index 100% rename from icons/dzuk/icons/cutthecord_bluepurple.svg rename to resources/icons/dzuk/icons/cutthecord_bluepurple.svg diff --git a/icons/dzuk/icons/cutthecord_bluepurple_128.png b/resources/icons/dzuk/icons/cutthecord_bluepurple_128.png similarity index 100% rename from icons/dzuk/icons/cutthecord_bluepurple_128.png rename to resources/icons/dzuk/icons/cutthecord_bluepurple_128.png diff --git a/icons/dzuk/icons/cutthecord_bluepurple_256.png b/resources/icons/dzuk/icons/cutthecord_bluepurple_256.png similarity index 100% rename from icons/dzuk/icons/cutthecord_bluepurple_256.png rename to resources/icons/dzuk/icons/cutthecord_bluepurple_256.png diff --git a/icons/dzuk/icons/cutthecord_bluepurple_32.png b/resources/icons/dzuk/icons/cutthecord_bluepurple_32.png similarity index 100% rename from icons/dzuk/icons/cutthecord_bluepurple_32.png rename to resources/icons/dzuk/icons/cutthecord_bluepurple_32.png diff --git a/icons/dzuk/icons/cutthecord_bluepurple_512.png b/resources/icons/dzuk/icons/cutthecord_bluepurple_512.png similarity index 100% rename from icons/dzuk/icons/cutthecord_bluepurple_512.png rename to resources/icons/dzuk/icons/cutthecord_bluepurple_512.png diff --git a/icons/dzuk/icons/cutthecord_bluepurple_64.png b/resources/icons/dzuk/icons/cutthecord_bluepurple_64.png similarity index 100% rename from icons/dzuk/icons/cutthecord_bluepurple_64.png rename to resources/icons/dzuk/icons/cutthecord_bluepurple_64.png diff --git a/icons/dzuk/icons/cutthecord_purple.svg b/resources/icons/dzuk/icons/cutthecord_purple.svg similarity index 100% rename from icons/dzuk/icons/cutthecord_purple.svg rename to resources/icons/dzuk/icons/cutthecord_purple.svg diff --git a/icons/dzuk/icons/cutthecord_purple_128.png b/resources/icons/dzuk/icons/cutthecord_purple_128.png similarity index 100% rename from icons/dzuk/icons/cutthecord_purple_128.png rename to resources/icons/dzuk/icons/cutthecord_purple_128.png diff --git a/icons/dzuk/icons/cutthecord_purple_256.png b/resources/icons/dzuk/icons/cutthecord_purple_256.png similarity index 100% rename from icons/dzuk/icons/cutthecord_purple_256.png rename to resources/icons/dzuk/icons/cutthecord_purple_256.png diff --git a/icons/dzuk/icons/cutthecord_purple_32.png b/resources/icons/dzuk/icons/cutthecord_purple_32.png similarity index 100% rename from icons/dzuk/icons/cutthecord_purple_32.png rename to resources/icons/dzuk/icons/cutthecord_purple_32.png diff --git a/icons/dzuk/icons/cutthecord_purple_512.png b/resources/icons/dzuk/icons/cutthecord_purple_512.png similarity index 100% rename from icons/dzuk/icons/cutthecord_purple_512.png rename to resources/icons/dzuk/icons/cutthecord_purple_512.png diff --git a/icons/dzuk/icons/cutthecord_purple_64.png b/resources/icons/dzuk/icons/cutthecord_purple_64.png similarity index 100% rename from icons/dzuk/icons/cutthecord_purple_64.png rename to resources/icons/dzuk/icons/cutthecord_purple_64.png diff --git a/icons/dzuk/icons/cutthecord_red.svg b/resources/icons/dzuk/icons/cutthecord_red.svg similarity index 100% rename from icons/dzuk/icons/cutthecord_red.svg rename to resources/icons/dzuk/icons/cutthecord_red.svg diff --git a/icons/dzuk/icons/cutthecord_red_128.png b/resources/icons/dzuk/icons/cutthecord_red_128.png similarity index 100% rename from icons/dzuk/icons/cutthecord_red_128.png rename to resources/icons/dzuk/icons/cutthecord_red_128.png diff --git a/icons/dzuk/icons/cutthecord_red_256.png b/resources/icons/dzuk/icons/cutthecord_red_256.png similarity index 100% rename from icons/dzuk/icons/cutthecord_red_256.png rename to resources/icons/dzuk/icons/cutthecord_red_256.png diff --git a/icons/dzuk/icons/cutthecord_red_32.png b/resources/icons/dzuk/icons/cutthecord_red_32.png similarity index 100% rename from icons/dzuk/icons/cutthecord_red_32.png rename to resources/icons/dzuk/icons/cutthecord_red_32.png diff --git a/icons/dzuk/icons/cutthecord_red_512.png b/resources/icons/dzuk/icons/cutthecord_red_512.png similarity index 100% rename from icons/dzuk/icons/cutthecord_red_512.png rename to resources/icons/dzuk/icons/cutthecord_red_512.png diff --git a/icons/dzuk/icons/cutthecord_red_64.png b/resources/icons/dzuk/icons/cutthecord_red_64.png similarity index 100% rename from icons/dzuk/icons/cutthecord_red_64.png rename to resources/icons/dzuk/icons/cutthecord_red_64.png diff --git a/icons/dzuk/icons/cutthecord_yellow.svg b/resources/icons/dzuk/icons/cutthecord_yellow.svg similarity index 100% rename from icons/dzuk/icons/cutthecord_yellow.svg rename to resources/icons/dzuk/icons/cutthecord_yellow.svg diff --git a/icons/dzuk/icons/cutthecord_yellow_128.png b/resources/icons/dzuk/icons/cutthecord_yellow_128.png similarity index 100% rename from icons/dzuk/icons/cutthecord_yellow_128.png rename to resources/icons/dzuk/icons/cutthecord_yellow_128.png diff --git a/icons/dzuk/icons/cutthecord_yellow_256.png b/resources/icons/dzuk/icons/cutthecord_yellow_256.png similarity index 100% rename from icons/dzuk/icons/cutthecord_yellow_256.png rename to resources/icons/dzuk/icons/cutthecord_yellow_256.png diff --git a/icons/dzuk/icons/cutthecord_yellow_32.png b/resources/icons/dzuk/icons/cutthecord_yellow_32.png similarity index 100% rename from icons/dzuk/icons/cutthecord_yellow_32.png rename to resources/icons/dzuk/icons/cutthecord_yellow_32.png diff --git a/icons/dzuk/icons/cutthecord_yellow_512.png b/resources/icons/dzuk/icons/cutthecord_yellow_512.png similarity index 100% rename from icons/dzuk/icons/cutthecord_yellow_512.png rename to resources/icons/dzuk/icons/cutthecord_yellow_512.png diff --git a/icons/dzuk/icons/cutthecord_yellow_64.png b/resources/icons/dzuk/icons/cutthecord_yellow_64.png similarity index 100% rename from icons/dzuk/icons/cutthecord_yellow_64.png rename to resources/icons/dzuk/icons/cutthecord_yellow_64.png diff --git a/icons/dzuk/showcase_high.png b/resources/icons/dzuk/showcase_high.png similarity index 100% rename from icons/dzuk/showcase_high.png rename to resources/icons/dzuk/showcase_high.png diff --git a/icons/dzuk/showcase_low.png b/resources/icons/dzuk/showcase_low.png similarity index 100% rename from icons/dzuk/showcase_low.png rename to resources/icons/dzuk/showcase_low.png diff --git a/icons/fg.png b/resources/icons/fg.png similarity index 100% rename from icons/fg.png rename to resources/icons/fg.png diff --git a/icons/full.png b/resources/icons/full.png similarity index 100% rename from icons/full.png rename to resources/icons/full.png diff --git a/icons/old/ctc.xcf b/resources/icons/old/ctc.xcf similarity index 100% rename from icons/old/ctc.xcf rename to resources/icons/old/ctc.xcf diff --git a/icons/old/fg.png b/resources/icons/old/fg.png similarity index 100% rename from icons/old/fg.png rename to resources/icons/old/fg.png diff --git a/icons/old/full.png b/resources/icons/old/full.png similarity index 100% rename from icons/old/full.png rename to resources/icons/old/full.png diff --git a/icons/old/zhuzhu.svg b/resources/icons/old/zhuzhu.svg similarity index 100% rename from icons/old/zhuzhu.svg rename to resources/icons/old/zhuzhu.svg diff --git a/old-patches/README.md b/resources/old-patches/README.md similarity index 73% rename from old-patches/README.md rename to resources/old-patches/README.md index 0723a0e..d22c2a6 100644 --- a/old-patches/README.md +++ b/resources/old-patches/README.md @@ -11,3 +11,7 @@ Here's why these patches are no longer maintained in this form: - customdefaultemoji: There doesn't seem to be default emojis anymore? - noprofilestrip: UI changes removed the profile strip. - nonearby: Didn't add much anyways. +- squareavatars: Moved to xml-patchs +- betterrotation: Moved to xml-patchs +- noblocked: Moved to xml-patchs +- slashcommands: Moved to dynamic patch due to discord api supporting this now diff --git a/patches/betterrotation/1340.patch b/resources/old-patches/betterrotation/1340.patch similarity index 100% rename from patches/betterrotation/1340.patch rename to resources/old-patches/betterrotation/1340.patch diff --git a/patches/betterrotation/1355.patch b/resources/old-patches/betterrotation/1355.patch similarity index 100% rename from patches/betterrotation/1355.patch rename to resources/old-patches/betterrotation/1355.patch diff --git a/patches/betterrotation/1356.patch b/resources/old-patches/betterrotation/1356.patch similarity index 100% rename from patches/betterrotation/1356.patch rename to resources/old-patches/betterrotation/1356.patch diff --git a/patches/betterrotation/1358.patch b/resources/old-patches/betterrotation/1358.patch similarity index 100% rename from patches/betterrotation/1358.patch rename to resources/old-patches/betterrotation/1358.patch diff --git a/patches/betterrotation/1361.patch b/resources/old-patches/betterrotation/1361.patch similarity index 100% rename from patches/betterrotation/1361.patch rename to resources/old-patches/betterrotation/1361.patch diff --git a/patches/betterrotation/1362.patch b/resources/old-patches/betterrotation/1362.patch similarity index 100% rename from patches/betterrotation/1362.patch rename to resources/old-patches/betterrotation/1362.patch diff --git a/patches/betterrotation/1365.patch b/resources/old-patches/betterrotation/1365.patch similarity index 100% rename from patches/betterrotation/1365.patch rename to resources/old-patches/betterrotation/1365.patch diff --git a/patches/betterrotation/1367.patch b/resources/old-patches/betterrotation/1367.patch similarity index 100% rename from patches/betterrotation/1367.patch rename to resources/old-patches/betterrotation/1367.patch diff --git a/patches/betterrotation/1368.patch b/resources/old-patches/betterrotation/1368.patch similarity index 100% rename from patches/betterrotation/1368.patch rename to resources/old-patches/betterrotation/1368.patch diff --git a/patches/betterrotation/1370.patch b/resources/old-patches/betterrotation/1370.patch similarity index 100% rename from patches/betterrotation/1370.patch rename to resources/old-patches/betterrotation/1370.patch diff --git a/patches/betterrotation/1371.patch b/resources/old-patches/betterrotation/1371.patch similarity index 100% rename from patches/betterrotation/1371.patch rename to resources/old-patches/betterrotation/1371.patch diff --git a/patches/betterrotation/78204.patch b/resources/old-patches/betterrotation/78204.patch similarity index 100% rename from patches/betterrotation/78204.patch rename to resources/old-patches/betterrotation/78204.patch diff --git a/resources/old-patches/betterrotation/87202.patch b/resources/old-patches/betterrotation/87202.patch new file mode 100644 index 0000000..5f51f51 --- /dev/null +++ b/resources/old-patches/betterrotation/87202.patch @@ -0,0 +1,22 @@ +diff -crB fromAndroidManifest.xml to/AndroidManifest.xml +*** fromAndroidManifest.xml 2021-05-31 15:40:24.000000000 +0300 +--- to/AndroidManifest.xml 2021-05-31 15:40:24.000000000 +0300 +*************** +*** 37,44 **** + + + +! +! + + + +--- 37,44 ---- + + + +! +! + + + diff --git a/patches/betterrotation/README.md b/resources/old-patches/betterrotation/README.md similarity index 100% rename from patches/betterrotation/README.md rename to resources/old-patches/betterrotation/README.md diff --git a/old-patches/compact/835.patch b/resources/old-patches/compact/835.patch similarity index 100% rename from old-patches/compact/835.patch rename to resources/old-patches/compact/835.patch diff --git a/old-patches/compact/836.patch b/resources/old-patches/compact/836.patch similarity index 100% rename from old-patches/compact/836.patch rename to resources/old-patches/compact/836.patch diff --git a/old-patches/compact/839.patch b/resources/old-patches/compact/839.patch similarity index 100% rename from old-patches/compact/839.patch rename to resources/old-patches/compact/839.patch diff --git a/old-patches/compact/841.patch b/resources/old-patches/compact/841.patch similarity index 100% rename from old-patches/compact/841.patch rename to resources/old-patches/compact/841.patch diff --git a/old-patches/compact/842.patch b/resources/old-patches/compact/842.patch similarity index 100% rename from old-patches/compact/842.patch rename to resources/old-patches/compact/842.patch diff --git a/old-patches/compact/843.patch b/resources/old-patches/compact/843.patch similarity index 100% rename from old-patches/compact/843.patch rename to resources/old-patches/compact/843.patch diff --git a/old-patches/compact/844.patch b/resources/old-patches/compact/844.patch similarity index 100% rename from old-patches/compact/844.patch rename to resources/old-patches/compact/844.patch diff --git a/old-patches/compact/845.patch b/resources/old-patches/compact/845.patch similarity index 100% rename from old-patches/compact/845.patch rename to resources/old-patches/compact/845.patch diff --git a/old-patches/compact/848.patch b/resources/old-patches/compact/848.patch similarity index 100% rename from old-patches/compact/848.patch rename to resources/old-patches/compact/848.patch diff --git a/old-patches/compact/850.patch b/resources/old-patches/compact/850.patch similarity index 100% rename from old-patches/compact/850.patch rename to resources/old-patches/compact/850.patch diff --git a/old-patches/compact/851.patch b/resources/old-patches/compact/851.patch similarity index 100% rename from old-patches/compact/851.patch rename to resources/old-patches/compact/851.patch diff --git a/old-patches/compact/853.patch b/resources/old-patches/compact/853.patch similarity index 100% rename from old-patches/compact/853.patch rename to resources/old-patches/compact/853.patch diff --git a/old-patches/compact/854.patch b/resources/old-patches/compact/854.patch similarity index 100% rename from old-patches/compact/854.patch rename to resources/old-patches/compact/854.patch diff --git a/old-patches/compact/855.patch b/resources/old-patches/compact/855.patch similarity index 100% rename from old-patches/compact/855.patch rename to resources/old-patches/compact/855.patch diff --git a/old-patches/compact/856.patch b/resources/old-patches/compact/856.patch similarity index 100% rename from old-patches/compact/856.patch rename to resources/old-patches/compact/856.patch diff --git a/old-patches/compact/876.patch b/resources/old-patches/compact/876.patch similarity index 100% rename from old-patches/compact/876.patch rename to resources/old-patches/compact/876.patch diff --git a/old-patches/compact/884.patch b/resources/old-patches/compact/884.patch similarity index 100% rename from old-patches/compact/884.patch rename to resources/old-patches/compact/884.patch diff --git a/old-patches/compact/888.patch b/resources/old-patches/compact/888.patch similarity index 100% rename from old-patches/compact/888.patch rename to resources/old-patches/compact/888.patch diff --git a/old-patches/compact/896.patch b/resources/old-patches/compact/896.patch similarity index 100% rename from old-patches/compact/896.patch rename to resources/old-patches/compact/896.patch diff --git a/old-patches/compact/897.patch b/resources/old-patches/compact/897.patch similarity index 100% rename from old-patches/compact/897.patch rename to resources/old-patches/compact/897.patch diff --git a/old-patches/compact/898.patch b/resources/old-patches/compact/898.patch similarity index 100% rename from old-patches/compact/898.patch rename to resources/old-patches/compact/898.patch diff --git a/old-patches/compact/899.patch b/resources/old-patches/compact/899.patch similarity index 100% rename from old-patches/compact/899.patch rename to resources/old-patches/compact/899.patch diff --git a/old-patches/compact/900.patch b/resources/old-patches/compact/900.patch similarity index 100% rename from old-patches/compact/900.patch rename to resources/old-patches/compact/900.patch diff --git a/old-patches/compact/901.patch b/resources/old-patches/compact/901.patch similarity index 100% rename from old-patches/compact/901.patch rename to resources/old-patches/compact/901.patch diff --git a/old-patches/compact/902.patch b/resources/old-patches/compact/902.patch similarity index 100% rename from old-patches/compact/902.patch rename to resources/old-patches/compact/902.patch diff --git a/old-patches/compact/903.patch b/resources/old-patches/compact/903.patch similarity index 100% rename from old-patches/compact/903.patch rename to resources/old-patches/compact/903.patch diff --git a/old-patches/compact/904.patch b/resources/old-patches/compact/904.patch similarity index 100% rename from old-patches/compact/904.patch rename to resources/old-patches/compact/904.patch diff --git a/old-patches/compact/906.patch b/resources/old-patches/compact/906.patch similarity index 100% rename from old-patches/compact/906.patch rename to resources/old-patches/compact/906.patch diff --git a/old-patches/compact/909.patch b/resources/old-patches/compact/909.patch similarity index 100% rename from old-patches/compact/909.patch rename to resources/old-patches/compact/909.patch diff --git a/old-patches/compact/910.patch b/resources/old-patches/compact/910.patch similarity index 100% rename from old-patches/compact/910.patch rename to resources/old-patches/compact/910.patch diff --git a/old-patches/compact/938.patch b/resources/old-patches/compact/938.patch similarity index 100% rename from old-patches/compact/938.patch rename to resources/old-patches/compact/938.patch diff --git a/old-patches/compact/939.patch b/resources/old-patches/compact/939.patch similarity index 100% rename from old-patches/compact/939.patch rename to resources/old-patches/compact/939.patch diff --git a/old-patches/compact/940.patch b/resources/old-patches/compact/940.patch similarity index 100% rename from old-patches/compact/940.patch rename to resources/old-patches/compact/940.patch diff --git a/old-patches/compact/942.patch b/resources/old-patches/compact/942.patch similarity index 100% rename from old-patches/compact/942.patch rename to resources/old-patches/compact/942.patch diff --git a/old-patches/compact/943.patch b/resources/old-patches/compact/943.patch similarity index 100% rename from old-patches/compact/943.patch rename to resources/old-patches/compact/943.patch diff --git a/old-patches/compact/945.patch b/resources/old-patches/compact/945.patch similarity index 100% rename from old-patches/compact/945.patch rename to resources/old-patches/compact/945.patch diff --git a/old-patches/compact/946.patch b/resources/old-patches/compact/946.patch similarity index 100% rename from old-patches/compact/946.patch rename to resources/old-patches/compact/946.patch diff --git a/old-patches/compact/947.patch b/resources/old-patches/compact/947.patch similarity index 100% rename from old-patches/compact/947.patch rename to resources/old-patches/compact/947.patch diff --git a/old-patches/compact/948.patch b/resources/old-patches/compact/948.patch similarity index 100% rename from old-patches/compact/948.patch rename to resources/old-patches/compact/948.patch diff --git a/old-patches/compact/963.patch b/resources/old-patches/compact/963.patch similarity index 100% rename from old-patches/compact/963.patch rename to resources/old-patches/compact/963.patch diff --git a/old-patches/compact/964.patch b/resources/old-patches/compact/964.patch similarity index 100% rename from old-patches/compact/964.patch rename to resources/old-patches/compact/964.patch diff --git a/old-patches/compact/965.patch b/resources/old-patches/compact/965.patch similarity index 100% rename from old-patches/compact/965.patch rename to resources/old-patches/compact/965.patch diff --git a/old-patches/compact/966.patch b/resources/old-patches/compact/966.patch similarity index 100% rename from old-patches/compact/966.patch rename to resources/old-patches/compact/966.patch diff --git a/old-patches/compact/967.patch b/resources/old-patches/compact/967.patch similarity index 100% rename from old-patches/compact/967.patch rename to resources/old-patches/compact/967.patch diff --git a/old-patches/compact/968.patch b/resources/old-patches/compact/968.patch similarity index 100% rename from old-patches/compact/968.patch rename to resources/old-patches/compact/968.patch diff --git a/old-patches/compact/970.patch b/resources/old-patches/compact/970.patch similarity index 100% rename from old-patches/compact/970.patch rename to resources/old-patches/compact/970.patch diff --git a/old-patches/compact/980.patch b/resources/old-patches/compact/980.patch similarity index 100% rename from old-patches/compact/980.patch rename to resources/old-patches/compact/980.patch diff --git a/old-patches/compact/984.patch-failed b/resources/old-patches/compact/984.patch-failed similarity index 100% rename from old-patches/compact/984.patch-failed rename to resources/old-patches/compact/984.patch-failed diff --git a/old-patches/compact/README.md b/resources/old-patches/compact/README.md similarity index 100% rename from old-patches/compact/README.md rename to resources/old-patches/compact/README.md diff --git a/old-patches/customdefaultemoji/1006.patch b/resources/old-patches/customdefaultemoji/1006.patch similarity index 100% rename from old-patches/customdefaultemoji/1006.patch rename to resources/old-patches/customdefaultemoji/1006.patch diff --git a/old-patches/customdefaultemoji/1007.patch b/resources/old-patches/customdefaultemoji/1007.patch similarity index 100% rename from old-patches/customdefaultemoji/1007.patch rename to resources/old-patches/customdefaultemoji/1007.patch diff --git a/old-patches/customdefaultemoji/1011.patch b/resources/old-patches/customdefaultemoji/1011.patch similarity index 100% rename from old-patches/customdefaultemoji/1011.patch rename to resources/old-patches/customdefaultemoji/1011.patch diff --git a/old-patches/customdefaultemoji/1012.patch b/resources/old-patches/customdefaultemoji/1012.patch similarity index 100% rename from old-patches/customdefaultemoji/1012.patch rename to resources/old-patches/customdefaultemoji/1012.patch diff --git a/old-patches/customdefaultemoji/1013.patch-failed b/resources/old-patches/customdefaultemoji/1013.patch-failed similarity index 100% rename from old-patches/customdefaultemoji/1013.patch-failed rename to resources/old-patches/customdefaultemoji/1013.patch-failed diff --git a/old-patches/customdefaultemoji/884.patch b/resources/old-patches/customdefaultemoji/884.patch similarity index 100% rename from old-patches/customdefaultemoji/884.patch rename to resources/old-patches/customdefaultemoji/884.patch diff --git a/old-patches/customdefaultemoji/888.patch b/resources/old-patches/customdefaultemoji/888.patch similarity index 100% rename from old-patches/customdefaultemoji/888.patch rename to resources/old-patches/customdefaultemoji/888.patch diff --git a/old-patches/customdefaultemoji/896.patch b/resources/old-patches/customdefaultemoji/896.patch similarity index 100% rename from old-patches/customdefaultemoji/896.patch rename to resources/old-patches/customdefaultemoji/896.patch diff --git a/old-patches/customdefaultemoji/897.patch b/resources/old-patches/customdefaultemoji/897.patch similarity index 100% rename from old-patches/customdefaultemoji/897.patch rename to resources/old-patches/customdefaultemoji/897.patch diff --git a/old-patches/customdefaultemoji/898.patch b/resources/old-patches/customdefaultemoji/898.patch similarity index 100% rename from old-patches/customdefaultemoji/898.patch rename to resources/old-patches/customdefaultemoji/898.patch diff --git a/old-patches/customdefaultemoji/899.patch b/resources/old-patches/customdefaultemoji/899.patch similarity index 100% rename from old-patches/customdefaultemoji/899.patch rename to resources/old-patches/customdefaultemoji/899.patch diff --git a/old-patches/customdefaultemoji/900.patch b/resources/old-patches/customdefaultemoji/900.patch similarity index 100% rename from old-patches/customdefaultemoji/900.patch rename to resources/old-patches/customdefaultemoji/900.patch diff --git a/old-patches/customdefaultemoji/901.patch b/resources/old-patches/customdefaultemoji/901.patch similarity index 100% rename from old-patches/customdefaultemoji/901.patch rename to resources/old-patches/customdefaultemoji/901.patch diff --git a/old-patches/customdefaultemoji/902.patch b/resources/old-patches/customdefaultemoji/902.patch similarity index 100% rename from old-patches/customdefaultemoji/902.patch rename to resources/old-patches/customdefaultemoji/902.patch diff --git a/old-patches/customdefaultemoji/903.patch b/resources/old-patches/customdefaultemoji/903.patch similarity index 100% rename from old-patches/customdefaultemoji/903.patch rename to resources/old-patches/customdefaultemoji/903.patch diff --git a/old-patches/customdefaultemoji/904.patch b/resources/old-patches/customdefaultemoji/904.patch similarity index 100% rename from old-patches/customdefaultemoji/904.patch rename to resources/old-patches/customdefaultemoji/904.patch diff --git a/old-patches/customdefaultemoji/906.patch b/resources/old-patches/customdefaultemoji/906.patch similarity index 100% rename from old-patches/customdefaultemoji/906.patch rename to resources/old-patches/customdefaultemoji/906.patch diff --git a/old-patches/customdefaultemoji/909.patch b/resources/old-patches/customdefaultemoji/909.patch similarity index 100% rename from old-patches/customdefaultemoji/909.patch rename to resources/old-patches/customdefaultemoji/909.patch diff --git a/old-patches/customdefaultemoji/910.patch b/resources/old-patches/customdefaultemoji/910.patch similarity index 100% rename from old-patches/customdefaultemoji/910.patch rename to resources/old-patches/customdefaultemoji/910.patch diff --git a/old-patches/customdefaultemoji/938.patch b/resources/old-patches/customdefaultemoji/938.patch similarity index 100% rename from old-patches/customdefaultemoji/938.patch rename to resources/old-patches/customdefaultemoji/938.patch diff --git a/old-patches/customdefaultemoji/939.patch b/resources/old-patches/customdefaultemoji/939.patch similarity index 100% rename from old-patches/customdefaultemoji/939.patch rename to resources/old-patches/customdefaultemoji/939.patch diff --git a/old-patches/customdefaultemoji/940.patch b/resources/old-patches/customdefaultemoji/940.patch similarity index 100% rename from old-patches/customdefaultemoji/940.patch rename to resources/old-patches/customdefaultemoji/940.patch diff --git a/old-patches/customdefaultemoji/942.patch b/resources/old-patches/customdefaultemoji/942.patch similarity index 100% rename from old-patches/customdefaultemoji/942.patch rename to resources/old-patches/customdefaultemoji/942.patch diff --git a/old-patches/customdefaultemoji/943.patch b/resources/old-patches/customdefaultemoji/943.patch similarity index 100% rename from old-patches/customdefaultemoji/943.patch rename to resources/old-patches/customdefaultemoji/943.patch diff --git a/old-patches/customdefaultemoji/945.patch b/resources/old-patches/customdefaultemoji/945.patch similarity index 100% rename from old-patches/customdefaultemoji/945.patch rename to resources/old-patches/customdefaultemoji/945.patch diff --git a/old-patches/customdefaultemoji/946.patch b/resources/old-patches/customdefaultemoji/946.patch similarity index 100% rename from old-patches/customdefaultemoji/946.patch rename to resources/old-patches/customdefaultemoji/946.patch diff --git a/old-patches/customdefaultemoji/947.patch b/resources/old-patches/customdefaultemoji/947.patch similarity index 100% rename from old-patches/customdefaultemoji/947.patch rename to resources/old-patches/customdefaultemoji/947.patch diff --git a/old-patches/customdefaultemoji/948.patch b/resources/old-patches/customdefaultemoji/948.patch similarity index 100% rename from old-patches/customdefaultemoji/948.patch rename to resources/old-patches/customdefaultemoji/948.patch diff --git a/old-patches/customdefaultemoji/963.patch b/resources/old-patches/customdefaultemoji/963.patch similarity index 100% rename from old-patches/customdefaultemoji/963.patch rename to resources/old-patches/customdefaultemoji/963.patch diff --git a/old-patches/customdefaultemoji/964.patch b/resources/old-patches/customdefaultemoji/964.patch similarity index 100% rename from old-patches/customdefaultemoji/964.patch rename to resources/old-patches/customdefaultemoji/964.patch diff --git a/old-patches/customdefaultemoji/965.patch b/resources/old-patches/customdefaultemoji/965.patch similarity index 100% rename from old-patches/customdefaultemoji/965.patch rename to resources/old-patches/customdefaultemoji/965.patch diff --git a/old-patches/customdefaultemoji/966.patch b/resources/old-patches/customdefaultemoji/966.patch similarity index 100% rename from old-patches/customdefaultemoji/966.patch rename to resources/old-patches/customdefaultemoji/966.patch diff --git a/old-patches/customdefaultemoji/967.patch b/resources/old-patches/customdefaultemoji/967.patch similarity index 100% rename from old-patches/customdefaultemoji/967.patch rename to resources/old-patches/customdefaultemoji/967.patch diff --git a/old-patches/customdefaultemoji/968.patch b/resources/old-patches/customdefaultemoji/968.patch similarity index 100% rename from old-patches/customdefaultemoji/968.patch rename to resources/old-patches/customdefaultemoji/968.patch diff --git a/old-patches/customdefaultemoji/970.patch b/resources/old-patches/customdefaultemoji/970.patch similarity index 100% rename from old-patches/customdefaultemoji/970.patch rename to resources/old-patches/customdefaultemoji/970.patch diff --git a/old-patches/customdefaultemoji/980.patch b/resources/old-patches/customdefaultemoji/980.patch similarity index 100% rename from old-patches/customdefaultemoji/980.patch rename to resources/old-patches/customdefaultemoji/980.patch diff --git a/old-patches/customdefaultemoji/984.patch b/resources/old-patches/customdefaultemoji/984.patch similarity index 100% rename from old-patches/customdefaultemoji/984.patch rename to resources/old-patches/customdefaultemoji/984.patch diff --git a/old-patches/customdefaultemoji/986.patch b/resources/old-patches/customdefaultemoji/986.patch similarity index 100% rename from old-patches/customdefaultemoji/986.patch rename to resources/old-patches/customdefaultemoji/986.patch diff --git a/old-patches/customdefaultemoji/991.patch b/resources/old-patches/customdefaultemoji/991.patch similarity index 100% rename from old-patches/customdefaultemoji/991.patch rename to resources/old-patches/customdefaultemoji/991.patch diff --git a/old-patches/customdefaultemoji/991.patch-failed b/resources/old-patches/customdefaultemoji/991.patch-failed similarity index 100% rename from old-patches/customdefaultemoji/991.patch-failed rename to resources/old-patches/customdefaultemoji/991.patch-failed diff --git a/old-patches/customdefaultemoji/992.patch b/resources/old-patches/customdefaultemoji/992.patch similarity index 100% rename from old-patches/customdefaultemoji/992.patch rename to resources/old-patches/customdefaultemoji/992.patch diff --git a/old-patches/customdefaultemoji/993.patch b/resources/old-patches/customdefaultemoji/993.patch similarity index 100% rename from old-patches/customdefaultemoji/993.patch rename to resources/old-patches/customdefaultemoji/993.patch diff --git a/old-patches/customdefaultemoji/994.patch b/resources/old-patches/customdefaultemoji/994.patch similarity index 100% rename from old-patches/customdefaultemoji/994.patch rename to resources/old-patches/customdefaultemoji/994.patch diff --git a/old-patches/customdefaultemoji/996.patch b/resources/old-patches/customdefaultemoji/996.patch similarity index 100% rename from old-patches/customdefaultemoji/996.patch rename to resources/old-patches/customdefaultemoji/996.patch diff --git a/old-patches/customdefaultemoji/README.md b/resources/old-patches/customdefaultemoji/README.md similarity index 100% rename from old-patches/customdefaultemoji/README.md rename to resources/old-patches/customdefaultemoji/README.md diff --git a/patches/noblocked/1006.patch b/resources/old-patches/noblocked/1006.patch similarity index 100% rename from patches/noblocked/1006.patch rename to resources/old-patches/noblocked/1006.patch diff --git a/patches/noblocked/1007.patch b/resources/old-patches/noblocked/1007.patch similarity index 100% rename from patches/noblocked/1007.patch rename to resources/old-patches/noblocked/1007.patch diff --git a/patches/noblocked/1011.patch b/resources/old-patches/noblocked/1011.patch similarity index 100% rename from patches/noblocked/1011.patch rename to resources/old-patches/noblocked/1011.patch diff --git a/patches/noblocked/1012.patch b/resources/old-patches/noblocked/1012.patch similarity index 100% rename from patches/noblocked/1012.patch rename to resources/old-patches/noblocked/1012.patch diff --git a/patches/noblocked/1013.patch b/resources/old-patches/noblocked/1013.patch similarity index 100% rename from patches/noblocked/1013.patch rename to resources/old-patches/noblocked/1013.patch diff --git a/patches/noblocked/1015.patch b/resources/old-patches/noblocked/1015.patch similarity index 100% rename from patches/noblocked/1015.patch rename to resources/old-patches/noblocked/1015.patch diff --git a/patches/noblocked/1016.patch b/resources/old-patches/noblocked/1016.patch similarity index 100% rename from patches/noblocked/1016.patch rename to resources/old-patches/noblocked/1016.patch diff --git a/patches/noblocked/1019.patch b/resources/old-patches/noblocked/1019.patch similarity index 100% rename from patches/noblocked/1019.patch rename to resources/old-patches/noblocked/1019.patch diff --git a/patches/noblocked/1020.patch b/resources/old-patches/noblocked/1020.patch similarity index 100% rename from patches/noblocked/1020.patch rename to resources/old-patches/noblocked/1020.patch diff --git a/patches/noblocked/1021.patch b/resources/old-patches/noblocked/1021.patch similarity index 100% rename from patches/noblocked/1021.patch rename to resources/old-patches/noblocked/1021.patch diff --git a/patches/noblocked/1022.patch b/resources/old-patches/noblocked/1022.patch similarity index 100% rename from patches/noblocked/1022.patch rename to resources/old-patches/noblocked/1022.patch diff --git a/patches/noblocked/1023.patch b/resources/old-patches/noblocked/1023.patch similarity index 100% rename from patches/noblocked/1023.patch rename to resources/old-patches/noblocked/1023.patch diff --git a/patches/noblocked/1024.patch b/resources/old-patches/noblocked/1024.patch similarity index 100% rename from patches/noblocked/1024.patch rename to resources/old-patches/noblocked/1024.patch diff --git a/patches/noblocked/1025.patch b/resources/old-patches/noblocked/1025.patch similarity index 100% rename from patches/noblocked/1025.patch rename to resources/old-patches/noblocked/1025.patch diff --git a/patches/noblocked/1026.patch b/resources/old-patches/noblocked/1026.patch similarity index 100% rename from patches/noblocked/1026.patch rename to resources/old-patches/noblocked/1026.patch diff --git a/patches/noblocked/1029.patch b/resources/old-patches/noblocked/1029.patch similarity index 100% rename from patches/noblocked/1029.patch rename to resources/old-patches/noblocked/1029.patch diff --git a/patches/noblocked/1031.patch b/resources/old-patches/noblocked/1031.patch similarity index 100% rename from patches/noblocked/1031.patch rename to resources/old-patches/noblocked/1031.patch diff --git a/patches/noblocked/1032.patch b/resources/old-patches/noblocked/1032.patch similarity index 100% rename from patches/noblocked/1032.patch rename to resources/old-patches/noblocked/1032.patch diff --git a/patches/noblocked/1033.patch b/resources/old-patches/noblocked/1033.patch similarity index 100% rename from patches/noblocked/1033.patch rename to resources/old-patches/noblocked/1033.patch diff --git a/patches/noblocked/1036.patch b/resources/old-patches/noblocked/1036.patch similarity index 100% rename from patches/noblocked/1036.patch rename to resources/old-patches/noblocked/1036.patch diff --git a/patches/noblocked/1037.patch b/resources/old-patches/noblocked/1037.patch similarity index 100% rename from patches/noblocked/1037.patch rename to resources/old-patches/noblocked/1037.patch diff --git a/patches/noblocked/1040.patch b/resources/old-patches/noblocked/1040.patch similarity index 100% rename from patches/noblocked/1040.patch rename to resources/old-patches/noblocked/1040.patch diff --git a/patches/noblocked/1041.patch b/resources/old-patches/noblocked/1041.patch similarity index 100% rename from patches/noblocked/1041.patch rename to resources/old-patches/noblocked/1041.patch diff --git a/patches/noblocked/1045.patch b/resources/old-patches/noblocked/1045.patch similarity index 100% rename from patches/noblocked/1045.patch rename to resources/old-patches/noblocked/1045.patch diff --git a/patches/noblocked/1046.patch b/resources/old-patches/noblocked/1046.patch similarity index 100% rename from patches/noblocked/1046.patch rename to resources/old-patches/noblocked/1046.patch diff --git a/patches/noblocked/1047.patch b/resources/old-patches/noblocked/1047.patch similarity index 100% rename from patches/noblocked/1047.patch rename to resources/old-patches/noblocked/1047.patch diff --git a/patches/noblocked/1049.patch b/resources/old-patches/noblocked/1049.patch similarity index 100% rename from patches/noblocked/1049.patch rename to resources/old-patches/noblocked/1049.patch diff --git a/patches/noblocked/1052.patch b/resources/old-patches/noblocked/1052.patch similarity index 100% rename from patches/noblocked/1052.patch rename to resources/old-patches/noblocked/1052.patch diff --git a/patches/noblocked/1053.patch b/resources/old-patches/noblocked/1053.patch similarity index 100% rename from patches/noblocked/1053.patch rename to resources/old-patches/noblocked/1053.patch diff --git a/patches/noblocked/1054.patch b/resources/old-patches/noblocked/1054.patch similarity index 100% rename from patches/noblocked/1054.patch rename to resources/old-patches/noblocked/1054.patch diff --git a/patches/noblocked/1056.patch b/resources/old-patches/noblocked/1056.patch similarity index 100% rename from patches/noblocked/1056.patch rename to resources/old-patches/noblocked/1056.patch diff --git a/patches/noblocked/1057.patch b/resources/old-patches/noblocked/1057.patch similarity index 100% rename from patches/noblocked/1057.patch rename to resources/old-patches/noblocked/1057.patch diff --git a/patches/noblocked/1062.patch b/resources/old-patches/noblocked/1062.patch similarity index 100% rename from patches/noblocked/1062.patch rename to resources/old-patches/noblocked/1062.patch diff --git a/patches/noblocked/1065.patch b/resources/old-patches/noblocked/1065.patch similarity index 100% rename from patches/noblocked/1065.patch rename to resources/old-patches/noblocked/1065.patch diff --git a/patches/noblocked/1066.patch b/resources/old-patches/noblocked/1066.patch similarity index 100% rename from patches/noblocked/1066.patch rename to resources/old-patches/noblocked/1066.patch diff --git a/patches/noblocked/1069.patch b/resources/old-patches/noblocked/1069.patch similarity index 100% rename from patches/noblocked/1069.patch rename to resources/old-patches/noblocked/1069.patch diff --git a/patches/noblocked/1073.patch b/resources/old-patches/noblocked/1073.patch similarity index 100% rename from patches/noblocked/1073.patch rename to resources/old-patches/noblocked/1073.patch diff --git a/patches/noblocked/1074.patch b/resources/old-patches/noblocked/1074.patch similarity index 100% rename from patches/noblocked/1074.patch rename to resources/old-patches/noblocked/1074.patch diff --git a/patches/noblocked/1078.patch b/resources/old-patches/noblocked/1078.patch similarity index 100% rename from patches/noblocked/1078.patch rename to resources/old-patches/noblocked/1078.patch diff --git a/patches/noblocked/1084.patch b/resources/old-patches/noblocked/1084.patch similarity index 100% rename from patches/noblocked/1084.patch rename to resources/old-patches/noblocked/1084.patch diff --git a/patches/noblocked/1085.patch b/resources/old-patches/noblocked/1085.patch similarity index 100% rename from patches/noblocked/1085.patch rename to resources/old-patches/noblocked/1085.patch diff --git a/patches/noblocked/1087.patch b/resources/old-patches/noblocked/1087.patch similarity index 100% rename from patches/noblocked/1087.patch rename to resources/old-patches/noblocked/1087.patch diff --git a/patches/noblocked/1091.patch b/resources/old-patches/noblocked/1091.patch similarity index 100% rename from patches/noblocked/1091.patch rename to resources/old-patches/noblocked/1091.patch diff --git a/patches/noblocked/1092.patch b/resources/old-patches/noblocked/1092.patch similarity index 100% rename from patches/noblocked/1092.patch rename to resources/old-patches/noblocked/1092.patch diff --git a/patches/noblocked/1100.patch b/resources/old-patches/noblocked/1100.patch similarity index 100% rename from patches/noblocked/1100.patch rename to resources/old-patches/noblocked/1100.patch diff --git a/patches/noblocked/1103.patch b/resources/old-patches/noblocked/1103.patch similarity index 100% rename from patches/noblocked/1103.patch rename to resources/old-patches/noblocked/1103.patch diff --git a/patches/noblocked/1104.patch b/resources/old-patches/noblocked/1104.patch similarity index 100% rename from patches/noblocked/1104.patch rename to resources/old-patches/noblocked/1104.patch diff --git a/patches/noblocked/1105.patch b/resources/old-patches/noblocked/1105.patch similarity index 100% rename from patches/noblocked/1105.patch rename to resources/old-patches/noblocked/1105.patch diff --git a/patches/noblocked/1107.patch b/resources/old-patches/noblocked/1107.patch similarity index 100% rename from patches/noblocked/1107.patch rename to resources/old-patches/noblocked/1107.patch diff --git a/patches/noblocked/1123.patch b/resources/old-patches/noblocked/1123.patch similarity index 100% rename from patches/noblocked/1123.patch rename to resources/old-patches/noblocked/1123.patch diff --git a/patches/noblocked/1132.patch b/resources/old-patches/noblocked/1132.patch similarity index 100% rename from patches/noblocked/1132.patch rename to resources/old-patches/noblocked/1132.patch diff --git a/patches/noblocked/1134.patch b/resources/old-patches/noblocked/1134.patch similarity index 100% rename from patches/noblocked/1134.patch rename to resources/old-patches/noblocked/1134.patch diff --git a/patches/noblocked/1144.patch b/resources/old-patches/noblocked/1144.patch similarity index 100% rename from patches/noblocked/1144.patch rename to resources/old-patches/noblocked/1144.patch diff --git a/patches/noblocked/1145.patch b/resources/old-patches/noblocked/1145.patch similarity index 100% rename from patches/noblocked/1145.patch rename to resources/old-patches/noblocked/1145.patch diff --git a/patches/noblocked/1146.patch b/resources/old-patches/noblocked/1146.patch similarity index 100% rename from patches/noblocked/1146.patch rename to resources/old-patches/noblocked/1146.patch diff --git a/patches/noblocked/1148.patch b/resources/old-patches/noblocked/1148.patch similarity index 100% rename from patches/noblocked/1148.patch rename to resources/old-patches/noblocked/1148.patch diff --git a/patches/noblocked/1150.patch b/resources/old-patches/noblocked/1150.patch similarity index 100% rename from patches/noblocked/1150.patch rename to resources/old-patches/noblocked/1150.patch diff --git a/patches/noblocked/1167.patch b/resources/old-patches/noblocked/1167.patch similarity index 100% rename from patches/noblocked/1167.patch rename to resources/old-patches/noblocked/1167.patch diff --git a/patches/noblocked/1169.patch b/resources/old-patches/noblocked/1169.patch similarity index 100% rename from patches/noblocked/1169.patch rename to resources/old-patches/noblocked/1169.patch diff --git a/patches/noblocked/1171.patch b/resources/old-patches/noblocked/1171.patch similarity index 100% rename from patches/noblocked/1171.patch rename to resources/old-patches/noblocked/1171.patch diff --git a/patches/noblocked/1180.patch b/resources/old-patches/noblocked/1180.patch similarity index 100% rename from patches/noblocked/1180.patch rename to resources/old-patches/noblocked/1180.patch diff --git a/patches/noblocked/1181.patch b/resources/old-patches/noblocked/1181.patch similarity index 100% rename from patches/noblocked/1181.patch rename to resources/old-patches/noblocked/1181.patch diff --git a/patches/noblocked/1192.patch b/resources/old-patches/noblocked/1192.patch similarity index 100% rename from patches/noblocked/1192.patch rename to resources/old-patches/noblocked/1192.patch diff --git a/patches/noblocked/1196.patch b/resources/old-patches/noblocked/1196.patch similarity index 100% rename from patches/noblocked/1196.patch rename to resources/old-patches/noblocked/1196.patch diff --git a/patches/noblocked/1200.patch b/resources/old-patches/noblocked/1200.patch similarity index 100% rename from patches/noblocked/1200.patch rename to resources/old-patches/noblocked/1200.patch diff --git a/patches/noblocked/1201.patch b/resources/old-patches/noblocked/1201.patch similarity index 100% rename from patches/noblocked/1201.patch rename to resources/old-patches/noblocked/1201.patch diff --git a/patches/noblocked/1208.patch b/resources/old-patches/noblocked/1208.patch similarity index 100% rename from patches/noblocked/1208.patch rename to resources/old-patches/noblocked/1208.patch diff --git a/patches/noblocked/1213.patch b/resources/old-patches/noblocked/1213.patch similarity index 100% rename from patches/noblocked/1213.patch rename to resources/old-patches/noblocked/1213.patch diff --git a/patches/noblocked/1216.patch b/resources/old-patches/noblocked/1216.patch similarity index 100% rename from patches/noblocked/1216.patch rename to resources/old-patches/noblocked/1216.patch diff --git a/patches/noblocked/1218.patch b/resources/old-patches/noblocked/1218.patch similarity index 100% rename from patches/noblocked/1218.patch rename to resources/old-patches/noblocked/1218.patch diff --git a/patches/noblocked/1223.patch b/resources/old-patches/noblocked/1223.patch similarity index 100% rename from patches/noblocked/1223.patch rename to resources/old-patches/noblocked/1223.patch diff --git a/patches/noblocked/1243.patch b/resources/old-patches/noblocked/1243.patch similarity index 100% rename from patches/noblocked/1243.patch rename to resources/old-patches/noblocked/1243.patch diff --git a/patches/noblocked/1246.patch b/resources/old-patches/noblocked/1246.patch similarity index 100% rename from patches/noblocked/1246.patch rename to resources/old-patches/noblocked/1246.patch diff --git a/patches/noblocked/1249.patch b/resources/old-patches/noblocked/1249.patch similarity index 100% rename from patches/noblocked/1249.patch rename to resources/old-patches/noblocked/1249.patch diff --git a/patches/noblocked/1251.patch b/resources/old-patches/noblocked/1251.patch similarity index 100% rename from patches/noblocked/1251.patch rename to resources/old-patches/noblocked/1251.patch diff --git a/patches/noblocked/1252.patch b/resources/old-patches/noblocked/1252.patch similarity index 100% rename from patches/noblocked/1252.patch rename to resources/old-patches/noblocked/1252.patch diff --git a/patches/noblocked/1259.patch b/resources/old-patches/noblocked/1259.patch similarity index 100% rename from patches/noblocked/1259.patch rename to resources/old-patches/noblocked/1259.patch diff --git a/patches/noblocked/1266.patch b/resources/old-patches/noblocked/1266.patch similarity index 100% rename from patches/noblocked/1266.patch rename to resources/old-patches/noblocked/1266.patch diff --git a/patches/noblocked/1270.patch b/resources/old-patches/noblocked/1270.patch similarity index 100% rename from patches/noblocked/1270.patch rename to resources/old-patches/noblocked/1270.patch diff --git a/patches/noblocked/1273.patch b/resources/old-patches/noblocked/1273.patch similarity index 100% rename from patches/noblocked/1273.patch rename to resources/old-patches/noblocked/1273.patch diff --git a/patches/noblocked/1279.patch b/resources/old-patches/noblocked/1279.patch similarity index 100% rename from patches/noblocked/1279.patch rename to resources/old-patches/noblocked/1279.patch diff --git a/patches/noblocked/1280.patch b/resources/old-patches/noblocked/1280.patch similarity index 100% rename from patches/noblocked/1280.patch rename to resources/old-patches/noblocked/1280.patch diff --git a/patches/noblocked/1281.patch b/resources/old-patches/noblocked/1281.patch similarity index 100% rename from patches/noblocked/1281.patch rename to resources/old-patches/noblocked/1281.patch diff --git a/patches/noblocked/1282.patch b/resources/old-patches/noblocked/1282.patch similarity index 100% rename from patches/noblocked/1282.patch rename to resources/old-patches/noblocked/1282.patch diff --git a/patches/noblocked/1284.patch b/resources/old-patches/noblocked/1284.patch similarity index 100% rename from patches/noblocked/1284.patch rename to resources/old-patches/noblocked/1284.patch diff --git a/patches/noblocked/1290.patch b/resources/old-patches/noblocked/1290.patch similarity index 100% rename from patches/noblocked/1290.patch rename to resources/old-patches/noblocked/1290.patch diff --git a/patches/noblocked/1294.patch b/resources/old-patches/noblocked/1294.patch similarity index 100% rename from patches/noblocked/1294.patch rename to resources/old-patches/noblocked/1294.patch diff --git a/patches/noblocked/1295.patch b/resources/old-patches/noblocked/1295.patch similarity index 100% rename from patches/noblocked/1295.patch rename to resources/old-patches/noblocked/1295.patch diff --git a/patches/noblocked/1298.patch b/resources/old-patches/noblocked/1298.patch similarity index 100% rename from patches/noblocked/1298.patch rename to resources/old-patches/noblocked/1298.patch diff --git a/patches/noblocked/1300.patch b/resources/old-patches/noblocked/1300.patch similarity index 100% rename from patches/noblocked/1300.patch rename to resources/old-patches/noblocked/1300.patch diff --git a/patches/noblocked/1301.patch b/resources/old-patches/noblocked/1301.patch similarity index 100% rename from patches/noblocked/1301.patch rename to resources/old-patches/noblocked/1301.patch diff --git a/patches/noblocked/1304.patch b/resources/old-patches/noblocked/1304.patch similarity index 100% rename from patches/noblocked/1304.patch rename to resources/old-patches/noblocked/1304.patch diff --git a/patches/noblocked/1306.patch b/resources/old-patches/noblocked/1306.patch similarity index 100% rename from patches/noblocked/1306.patch rename to resources/old-patches/noblocked/1306.patch diff --git a/patches/noblocked/1307.patch b/resources/old-patches/noblocked/1307.patch similarity index 100% rename from patches/noblocked/1307.patch rename to resources/old-patches/noblocked/1307.patch diff --git a/patches/noblocked/1310.patch b/resources/old-patches/noblocked/1310.patch similarity index 100% rename from patches/noblocked/1310.patch rename to resources/old-patches/noblocked/1310.patch diff --git a/patches/noblocked/1315.patch b/resources/old-patches/noblocked/1315.patch similarity index 100% rename from patches/noblocked/1315.patch rename to resources/old-patches/noblocked/1315.patch diff --git a/patches/noblocked/1318.patch b/resources/old-patches/noblocked/1318.patch similarity index 100% rename from patches/noblocked/1318.patch rename to resources/old-patches/noblocked/1318.patch diff --git a/patches/noblocked/1330.patch b/resources/old-patches/noblocked/1330.patch similarity index 100% rename from patches/noblocked/1330.patch rename to resources/old-patches/noblocked/1330.patch diff --git a/patches/noblocked/1334.patch b/resources/old-patches/noblocked/1334.patch similarity index 100% rename from patches/noblocked/1334.patch rename to resources/old-patches/noblocked/1334.patch diff --git a/patches/noblocked/1339.patch b/resources/old-patches/noblocked/1339.patch similarity index 100% rename from patches/noblocked/1339.patch rename to resources/old-patches/noblocked/1339.patch diff --git a/patches/noblocked/1340.patch b/resources/old-patches/noblocked/1340.patch similarity index 100% rename from patches/noblocked/1340.patch rename to resources/old-patches/noblocked/1340.patch diff --git a/patches/noblocked/1355.patch b/resources/old-patches/noblocked/1355.patch similarity index 100% rename from patches/noblocked/1355.patch rename to resources/old-patches/noblocked/1355.patch diff --git a/patches/noblocked/1356.patch b/resources/old-patches/noblocked/1356.patch similarity index 100% rename from patches/noblocked/1356.patch rename to resources/old-patches/noblocked/1356.patch diff --git a/patches/noblocked/1358.patch b/resources/old-patches/noblocked/1358.patch similarity index 100% rename from patches/noblocked/1358.patch rename to resources/old-patches/noblocked/1358.patch diff --git a/patches/noblocked/1361.patch b/resources/old-patches/noblocked/1361.patch similarity index 100% rename from patches/noblocked/1361.patch rename to resources/old-patches/noblocked/1361.patch diff --git a/patches/noblocked/1362.patch b/resources/old-patches/noblocked/1362.patch similarity index 100% rename from patches/noblocked/1362.patch rename to resources/old-patches/noblocked/1362.patch diff --git a/patches/noblocked/1365.patch b/resources/old-patches/noblocked/1365.patch similarity index 100% rename from patches/noblocked/1365.patch rename to resources/old-patches/noblocked/1365.patch diff --git a/patches/noblocked/1367.patch b/resources/old-patches/noblocked/1367.patch similarity index 100% rename from patches/noblocked/1367.patch rename to resources/old-patches/noblocked/1367.patch diff --git a/patches/noblocked/1368.patch b/resources/old-patches/noblocked/1368.patch similarity index 100% rename from patches/noblocked/1368.patch rename to resources/old-patches/noblocked/1368.patch diff --git a/patches/noblocked/1370.patch b/resources/old-patches/noblocked/1370.patch similarity index 100% rename from patches/noblocked/1370.patch rename to resources/old-patches/noblocked/1370.patch diff --git a/patches/noblocked/1371.patch b/resources/old-patches/noblocked/1371.patch similarity index 100% rename from patches/noblocked/1371.patch rename to resources/old-patches/noblocked/1371.patch diff --git a/patches/noblocked/78204.patch b/resources/old-patches/noblocked/78204.patch similarity index 100% rename from patches/noblocked/78204.patch rename to resources/old-patches/noblocked/78204.patch diff --git a/patches/noblocked/835.patch b/resources/old-patches/noblocked/835.patch similarity index 100% rename from patches/noblocked/835.patch rename to resources/old-patches/noblocked/835.patch diff --git a/patches/noblocked/836.patch b/resources/old-patches/noblocked/836.patch similarity index 100% rename from patches/noblocked/836.patch rename to resources/old-patches/noblocked/836.patch diff --git a/patches/noblocked/839.patch b/resources/old-patches/noblocked/839.patch similarity index 100% rename from patches/noblocked/839.patch rename to resources/old-patches/noblocked/839.patch diff --git a/patches/noblocked/841.patch b/resources/old-patches/noblocked/841.patch similarity index 100% rename from patches/noblocked/841.patch rename to resources/old-patches/noblocked/841.patch diff --git a/patches/noblocked/842.patch b/resources/old-patches/noblocked/842.patch similarity index 100% rename from patches/noblocked/842.patch rename to resources/old-patches/noblocked/842.patch diff --git a/patches/noblocked/843.patch b/resources/old-patches/noblocked/843.patch similarity index 100% rename from patches/noblocked/843.patch rename to resources/old-patches/noblocked/843.patch diff --git a/patches/noblocked/844.patch b/resources/old-patches/noblocked/844.patch similarity index 100% rename from patches/noblocked/844.patch rename to resources/old-patches/noblocked/844.patch diff --git a/patches/noblocked/845.patch b/resources/old-patches/noblocked/845.patch similarity index 100% rename from patches/noblocked/845.patch rename to resources/old-patches/noblocked/845.patch diff --git a/patches/noblocked/848.patch b/resources/old-patches/noblocked/848.patch similarity index 100% rename from patches/noblocked/848.patch rename to resources/old-patches/noblocked/848.patch diff --git a/patches/noblocked/850.patch b/resources/old-patches/noblocked/850.patch similarity index 100% rename from patches/noblocked/850.patch rename to resources/old-patches/noblocked/850.patch diff --git a/patches/noblocked/851.patch b/resources/old-patches/noblocked/851.patch similarity index 100% rename from patches/noblocked/851.patch rename to resources/old-patches/noblocked/851.patch diff --git a/patches/noblocked/853.patch b/resources/old-patches/noblocked/853.patch similarity index 100% rename from patches/noblocked/853.patch rename to resources/old-patches/noblocked/853.patch diff --git a/patches/noblocked/854.patch b/resources/old-patches/noblocked/854.patch similarity index 100% rename from patches/noblocked/854.patch rename to resources/old-patches/noblocked/854.patch diff --git a/patches/noblocked/855.patch b/resources/old-patches/noblocked/855.patch similarity index 100% rename from patches/noblocked/855.patch rename to resources/old-patches/noblocked/855.patch diff --git a/patches/noblocked/856.patch b/resources/old-patches/noblocked/856.patch similarity index 100% rename from patches/noblocked/856.patch rename to resources/old-patches/noblocked/856.patch diff --git a/patches/noblocked/876.patch b/resources/old-patches/noblocked/87202.patch similarity index 100% rename from patches/noblocked/876.patch rename to resources/old-patches/noblocked/87202.patch diff --git a/patches/noblocked/884.patch b/resources/old-patches/noblocked/876.patch similarity index 100% rename from patches/noblocked/884.patch rename to resources/old-patches/noblocked/876.patch diff --git a/patches/noblocked/888.patch b/resources/old-patches/noblocked/884.patch similarity index 100% rename from patches/noblocked/888.patch rename to resources/old-patches/noblocked/884.patch diff --git a/patches/noblocked/896.patch b/resources/old-patches/noblocked/888.patch similarity index 100% rename from patches/noblocked/896.patch rename to resources/old-patches/noblocked/888.patch diff --git a/patches/noblocked/897.patch b/resources/old-patches/noblocked/896.patch similarity index 100% rename from patches/noblocked/897.patch rename to resources/old-patches/noblocked/896.patch diff --git a/patches/noblocked/898.patch b/resources/old-patches/noblocked/897.patch similarity index 100% rename from patches/noblocked/898.patch rename to resources/old-patches/noblocked/897.patch diff --git a/patches/noblocked/899.patch b/resources/old-patches/noblocked/898.patch similarity index 100% rename from patches/noblocked/899.patch rename to resources/old-patches/noblocked/898.patch diff --git a/patches/noblocked/900.patch b/resources/old-patches/noblocked/899.patch similarity index 100% rename from patches/noblocked/900.patch rename to resources/old-patches/noblocked/899.patch diff --git a/patches/noblocked/901.patch b/resources/old-patches/noblocked/900.patch similarity index 100% rename from patches/noblocked/901.patch rename to resources/old-patches/noblocked/900.patch diff --git a/patches/noblocked/902.patch b/resources/old-patches/noblocked/901.patch similarity index 100% rename from patches/noblocked/902.patch rename to resources/old-patches/noblocked/901.patch diff --git a/patches/noblocked/903.patch b/resources/old-patches/noblocked/902.patch similarity index 100% rename from patches/noblocked/903.patch rename to resources/old-patches/noblocked/902.patch diff --git a/patches/noblocked/904.patch b/resources/old-patches/noblocked/903.patch similarity index 100% rename from patches/noblocked/904.patch rename to resources/old-patches/noblocked/903.patch diff --git a/patches/noblocked/906.patch b/resources/old-patches/noblocked/904.patch similarity index 100% rename from patches/noblocked/906.patch rename to resources/old-patches/noblocked/904.patch diff --git a/patches/noblocked/909.patch b/resources/old-patches/noblocked/906.patch similarity index 100% rename from patches/noblocked/909.patch rename to resources/old-patches/noblocked/906.patch diff --git a/patches/noblocked/910.patch b/resources/old-patches/noblocked/909.patch similarity index 100% rename from patches/noblocked/910.patch rename to resources/old-patches/noblocked/909.patch diff --git a/patches/noblocked/938.patch b/resources/old-patches/noblocked/910.patch similarity index 100% rename from patches/noblocked/938.patch rename to resources/old-patches/noblocked/910.patch diff --git a/patches/noblocked/939.patch b/resources/old-patches/noblocked/938.patch similarity index 100% rename from patches/noblocked/939.patch rename to resources/old-patches/noblocked/938.patch diff --git a/patches/noblocked/940.patch b/resources/old-patches/noblocked/939.patch similarity index 100% rename from patches/noblocked/940.patch rename to resources/old-patches/noblocked/939.patch diff --git a/patches/noblocked/942.patch b/resources/old-patches/noblocked/940.patch similarity index 100% rename from patches/noblocked/942.patch rename to resources/old-patches/noblocked/940.patch diff --git a/patches/noblocked/943.patch b/resources/old-patches/noblocked/942.patch similarity index 100% rename from patches/noblocked/943.patch rename to resources/old-patches/noblocked/942.patch diff --git a/patches/noblocked/945.patch b/resources/old-patches/noblocked/943.patch similarity index 100% rename from patches/noblocked/945.patch rename to resources/old-patches/noblocked/943.patch diff --git a/patches/noblocked/946.patch b/resources/old-patches/noblocked/945.patch similarity index 100% rename from patches/noblocked/946.patch rename to resources/old-patches/noblocked/945.patch diff --git a/patches/noblocked/947.patch b/resources/old-patches/noblocked/946.patch similarity index 100% rename from patches/noblocked/947.patch rename to resources/old-patches/noblocked/946.patch diff --git a/patches/noblocked/948.patch b/resources/old-patches/noblocked/947.patch similarity index 100% rename from patches/noblocked/948.patch rename to resources/old-patches/noblocked/947.patch diff --git a/patches/noblocked/963.patch b/resources/old-patches/noblocked/948.patch similarity index 100% rename from patches/noblocked/963.patch rename to resources/old-patches/noblocked/948.patch diff --git a/patches/noblocked/964.patch b/resources/old-patches/noblocked/963.patch similarity index 100% rename from patches/noblocked/964.patch rename to resources/old-patches/noblocked/963.patch diff --git a/patches/noblocked/965.patch b/resources/old-patches/noblocked/964.patch similarity index 100% rename from patches/noblocked/965.patch rename to resources/old-patches/noblocked/964.patch diff --git a/patches/noblocked/966.patch b/resources/old-patches/noblocked/965.patch similarity index 100% rename from patches/noblocked/966.patch rename to resources/old-patches/noblocked/965.patch diff --git a/patches/noblocked/967.patch b/resources/old-patches/noblocked/966.patch similarity index 100% rename from patches/noblocked/967.patch rename to resources/old-patches/noblocked/966.patch diff --git a/patches/noblocked/968.patch b/resources/old-patches/noblocked/967.patch similarity index 100% rename from patches/noblocked/968.patch rename to resources/old-patches/noblocked/967.patch diff --git a/patches/noblocked/970.patch b/resources/old-patches/noblocked/968.patch similarity index 100% rename from patches/noblocked/970.patch rename to resources/old-patches/noblocked/968.patch diff --git a/patches/noblocked/980.patch b/resources/old-patches/noblocked/970.patch similarity index 100% rename from patches/noblocked/980.patch rename to resources/old-patches/noblocked/970.patch diff --git a/patches/noblocked/984.patch b/resources/old-patches/noblocked/980.patch similarity index 100% rename from patches/noblocked/984.patch rename to resources/old-patches/noblocked/980.patch diff --git a/patches/noblocked/986.patch b/resources/old-patches/noblocked/984.patch similarity index 100% rename from patches/noblocked/986.patch rename to resources/old-patches/noblocked/984.patch diff --git a/patches/noblocked/991.patch b/resources/old-patches/noblocked/986.patch similarity index 100% rename from patches/noblocked/991.patch rename to resources/old-patches/noblocked/986.patch diff --git a/patches/noblocked/992.patch b/resources/old-patches/noblocked/991.patch similarity index 100% rename from patches/noblocked/992.patch rename to resources/old-patches/noblocked/991.patch diff --git a/patches/noblocked/993.patch b/resources/old-patches/noblocked/992.patch similarity index 100% rename from patches/noblocked/993.patch rename to resources/old-patches/noblocked/992.patch diff --git a/patches/noblocked/994.patch b/resources/old-patches/noblocked/993.patch similarity index 100% rename from patches/noblocked/994.patch rename to resources/old-patches/noblocked/993.patch diff --git a/patches/noblocked/996.patch b/resources/old-patches/noblocked/994.patch similarity index 100% rename from patches/noblocked/996.patch rename to resources/old-patches/noblocked/994.patch diff --git a/resources/old-patches/noblocked/996.patch b/resources/old-patches/noblocked/996.patch new file mode 100644 index 0000000..985a85f --- /dev/null +++ b/resources/old-patches/noblocked/996.patch @@ -0,0 +1,18 @@ +diff -crB -x dist -x build com.discord-835-base/res/layout/widget_chat_list_adapter_item_blocked.xml com.discord-835/res/layout/widget_chat_list_adapter_item_blocked.xml +*** com.discord-835-base/res/layout/widget_chat_list_adapter_item_blocked.xml 2019-01-25 10:57:34.359248256 +0300 +--- com.discord-835/res/layout/widget_chat_list_adapter_item_blocked.xml 2019-01-27 00:08:22.929085528 +0300 +*************** +*** 1,5 **** + +! +! + +\ No newline at end of file +--- 1,5 ---- + +! +! + +\ No newline at end of file \ No newline at end of file diff --git a/patches/noblocked/README.md b/resources/old-patches/noblocked/README.md similarity index 100% rename from patches/noblocked/README.md rename to resources/old-patches/noblocked/README.md diff --git a/old-patches/nohiddenchannels/903.patch b/resources/old-patches/nohiddenchannels/903.patch similarity index 100% rename from old-patches/nohiddenchannels/903.patch rename to resources/old-patches/nohiddenchannels/903.patch diff --git a/old-patches/nohiddenchannels/README.md b/resources/old-patches/nohiddenchannels/README.md similarity index 100% rename from old-patches/nohiddenchannels/README.md rename to resources/old-patches/nohiddenchannels/README.md diff --git a/old-patches/nonearby/1006.patch b/resources/old-patches/nonearby/1006.patch similarity index 100% rename from old-patches/nonearby/1006.patch rename to resources/old-patches/nonearby/1006.patch diff --git a/old-patches/nonearby/1007.patch b/resources/old-patches/nonearby/1007.patch similarity index 100% rename from old-patches/nonearby/1007.patch rename to resources/old-patches/nonearby/1007.patch diff --git a/old-patches/nonearby/1011.patch b/resources/old-patches/nonearby/1011.patch similarity index 100% rename from old-patches/nonearby/1011.patch rename to resources/old-patches/nonearby/1011.patch diff --git a/old-patches/nonearby/1012.patch b/resources/old-patches/nonearby/1012.patch similarity index 100% rename from old-patches/nonearby/1012.patch rename to resources/old-patches/nonearby/1012.patch diff --git a/old-patches/nonearby/1013.patch b/resources/old-patches/nonearby/1013.patch similarity index 100% rename from old-patches/nonearby/1013.patch rename to resources/old-patches/nonearby/1013.patch diff --git a/old-patches/nonearby/1015.patch b/resources/old-patches/nonearby/1015.patch similarity index 100% rename from old-patches/nonearby/1015.patch rename to resources/old-patches/nonearby/1015.patch diff --git a/old-patches/nonearby/1016.patch b/resources/old-patches/nonearby/1016.patch similarity index 100% rename from old-patches/nonearby/1016.patch rename to resources/old-patches/nonearby/1016.patch diff --git a/old-patches/nonearby/1019.patch b/resources/old-patches/nonearby/1019.patch similarity index 100% rename from old-patches/nonearby/1019.patch rename to resources/old-patches/nonearby/1019.patch diff --git a/old-patches/nonearby/1020.patch b/resources/old-patches/nonearby/1020.patch similarity index 100% rename from old-patches/nonearby/1020.patch rename to resources/old-patches/nonearby/1020.patch diff --git a/old-patches/nonearby/1021.patch b/resources/old-patches/nonearby/1021.patch similarity index 100% rename from old-patches/nonearby/1021.patch rename to resources/old-patches/nonearby/1021.patch diff --git a/old-patches/nonearby/1022.patch b/resources/old-patches/nonearby/1022.patch similarity index 100% rename from old-patches/nonearby/1022.patch rename to resources/old-patches/nonearby/1022.patch diff --git a/old-patches/nonearby/1023.patch b/resources/old-patches/nonearby/1023.patch similarity index 100% rename from old-patches/nonearby/1023.patch rename to resources/old-patches/nonearby/1023.patch diff --git a/old-patches/nonearby/1024.patch b/resources/old-patches/nonearby/1024.patch similarity index 100% rename from old-patches/nonearby/1024.patch rename to resources/old-patches/nonearby/1024.patch diff --git a/old-patches/nonearby/1025.patch b/resources/old-patches/nonearby/1025.patch similarity index 100% rename from old-patches/nonearby/1025.patch rename to resources/old-patches/nonearby/1025.patch diff --git a/old-patches/nonearby/1026.patch b/resources/old-patches/nonearby/1026.patch similarity index 100% rename from old-patches/nonearby/1026.patch rename to resources/old-patches/nonearby/1026.patch diff --git a/old-patches/nonearby/1029.patch b/resources/old-patches/nonearby/1029.patch similarity index 100% rename from old-patches/nonearby/1029.patch rename to resources/old-patches/nonearby/1029.patch diff --git a/old-patches/nonearby/1031.patch b/resources/old-patches/nonearby/1031.patch similarity index 100% rename from old-patches/nonearby/1031.patch rename to resources/old-patches/nonearby/1031.patch diff --git a/old-patches/nonearby/1032.patch b/resources/old-patches/nonearby/1032.patch similarity index 100% rename from old-patches/nonearby/1032.patch rename to resources/old-patches/nonearby/1032.patch diff --git a/old-patches/nonearby/1033.patch b/resources/old-patches/nonearby/1033.patch similarity index 100% rename from old-patches/nonearby/1033.patch rename to resources/old-patches/nonearby/1033.patch diff --git a/old-patches/nonearby/1036.patch b/resources/old-patches/nonearby/1036.patch similarity index 100% rename from old-patches/nonearby/1036.patch rename to resources/old-patches/nonearby/1036.patch diff --git a/old-patches/nonearby/1037.patch b/resources/old-patches/nonearby/1037.patch similarity index 100% rename from old-patches/nonearby/1037.patch rename to resources/old-patches/nonearby/1037.patch diff --git a/old-patches/nonearby/1040.patch b/resources/old-patches/nonearby/1040.patch similarity index 100% rename from old-patches/nonearby/1040.patch rename to resources/old-patches/nonearby/1040.patch diff --git a/old-patches/nonearby/1041.patch b/resources/old-patches/nonearby/1041.patch similarity index 100% rename from old-patches/nonearby/1041.patch rename to resources/old-patches/nonearby/1041.patch diff --git a/old-patches/nonearby/1045.patch b/resources/old-patches/nonearby/1045.patch similarity index 100% rename from old-patches/nonearby/1045.patch rename to resources/old-patches/nonearby/1045.patch diff --git a/old-patches/nonearby/1046.patch b/resources/old-patches/nonearby/1046.patch similarity index 100% rename from old-patches/nonearby/1046.patch rename to resources/old-patches/nonearby/1046.patch diff --git a/old-patches/nonearby/1047.patch b/resources/old-patches/nonearby/1047.patch similarity index 100% rename from old-patches/nonearby/1047.patch rename to resources/old-patches/nonearby/1047.patch diff --git a/old-patches/nonearby/1049.patch b/resources/old-patches/nonearby/1049.patch similarity index 100% rename from old-patches/nonearby/1049.patch rename to resources/old-patches/nonearby/1049.patch diff --git a/old-patches/nonearby/1052.patch b/resources/old-patches/nonearby/1052.patch similarity index 100% rename from old-patches/nonearby/1052.patch rename to resources/old-patches/nonearby/1052.patch diff --git a/old-patches/nonearby/1053.patch b/resources/old-patches/nonearby/1053.patch similarity index 100% rename from old-patches/nonearby/1053.patch rename to resources/old-patches/nonearby/1053.patch diff --git a/old-patches/nonearby/1054.patch b/resources/old-patches/nonearby/1054.patch similarity index 100% rename from old-patches/nonearby/1054.patch rename to resources/old-patches/nonearby/1054.patch diff --git a/old-patches/nonearby/1056.patch b/resources/old-patches/nonearby/1056.patch similarity index 100% rename from old-patches/nonearby/1056.patch rename to resources/old-patches/nonearby/1056.patch diff --git a/old-patches/nonearby/1057.patch b/resources/old-patches/nonearby/1057.patch similarity index 100% rename from old-patches/nonearby/1057.patch rename to resources/old-patches/nonearby/1057.patch diff --git a/old-patches/nonearby/1062.patch b/resources/old-patches/nonearby/1062.patch similarity index 100% rename from old-patches/nonearby/1062.patch rename to resources/old-patches/nonearby/1062.patch diff --git a/old-patches/nonearby/1065.patch b/resources/old-patches/nonearby/1065.patch similarity index 100% rename from old-patches/nonearby/1065.patch rename to resources/old-patches/nonearby/1065.patch diff --git a/old-patches/nonearby/1066.patch b/resources/old-patches/nonearby/1066.patch similarity index 100% rename from old-patches/nonearby/1066.patch rename to resources/old-patches/nonearby/1066.patch diff --git a/old-patches/nonearby/1069.patch b/resources/old-patches/nonearby/1069.patch similarity index 100% rename from old-patches/nonearby/1069.patch rename to resources/old-patches/nonearby/1069.patch diff --git a/old-patches/nonearby/1073.patch b/resources/old-patches/nonearby/1073.patch similarity index 100% rename from old-patches/nonearby/1073.patch rename to resources/old-patches/nonearby/1073.patch diff --git a/old-patches/nonearby/1074.patch b/resources/old-patches/nonearby/1074.patch similarity index 100% rename from old-patches/nonearby/1074.patch rename to resources/old-patches/nonearby/1074.patch diff --git a/old-patches/nonearby/1078.patch b/resources/old-patches/nonearby/1078.patch similarity index 100% rename from old-patches/nonearby/1078.patch rename to resources/old-patches/nonearby/1078.patch diff --git a/old-patches/nonearby/1084.patch b/resources/old-patches/nonearby/1084.patch similarity index 100% rename from old-patches/nonearby/1084.patch rename to resources/old-patches/nonearby/1084.patch diff --git a/old-patches/nonearby/1085.patch b/resources/old-patches/nonearby/1085.patch similarity index 100% rename from old-patches/nonearby/1085.patch rename to resources/old-patches/nonearby/1085.patch diff --git a/old-patches/nonearby/1087.patch b/resources/old-patches/nonearby/1087.patch similarity index 100% rename from old-patches/nonearby/1087.patch rename to resources/old-patches/nonearby/1087.patch diff --git a/old-patches/nonearby/1091.patch b/resources/old-patches/nonearby/1091.patch similarity index 100% rename from old-patches/nonearby/1091.patch rename to resources/old-patches/nonearby/1091.patch diff --git a/old-patches/nonearby/1092.patch b/resources/old-patches/nonearby/1092.patch similarity index 100% rename from old-patches/nonearby/1092.patch rename to resources/old-patches/nonearby/1092.patch diff --git a/old-patches/nonearby/1100.patch b/resources/old-patches/nonearby/1100.patch similarity index 100% rename from old-patches/nonearby/1100.patch rename to resources/old-patches/nonearby/1100.patch diff --git a/old-patches/nonearby/1103.patch b/resources/old-patches/nonearby/1103.patch similarity index 100% rename from old-patches/nonearby/1103.patch rename to resources/old-patches/nonearby/1103.patch diff --git a/old-patches/nonearby/1104.patch b/resources/old-patches/nonearby/1104.patch similarity index 100% rename from old-patches/nonearby/1104.patch rename to resources/old-patches/nonearby/1104.patch diff --git a/old-patches/nonearby/1105.patch b/resources/old-patches/nonearby/1105.patch similarity index 100% rename from old-patches/nonearby/1105.patch rename to resources/old-patches/nonearby/1105.patch diff --git a/old-patches/nonearby/1107.patch b/resources/old-patches/nonearby/1107.patch similarity index 100% rename from old-patches/nonearby/1107.patch rename to resources/old-patches/nonearby/1107.patch diff --git a/old-patches/nonearby/1123.patch b/resources/old-patches/nonearby/1123.patch similarity index 100% rename from old-patches/nonearby/1123.patch rename to resources/old-patches/nonearby/1123.patch diff --git a/old-patches/nonearby/1132.patch b/resources/old-patches/nonearby/1132.patch similarity index 100% rename from old-patches/nonearby/1132.patch rename to resources/old-patches/nonearby/1132.patch diff --git a/old-patches/nonearby/1134.patch b/resources/old-patches/nonearby/1134.patch similarity index 100% rename from old-patches/nonearby/1134.patch rename to resources/old-patches/nonearby/1134.patch diff --git a/old-patches/nonearby/1144.patch b/resources/old-patches/nonearby/1144.patch similarity index 100% rename from old-patches/nonearby/1144.patch rename to resources/old-patches/nonearby/1144.patch diff --git a/old-patches/nonearby/1145.patch b/resources/old-patches/nonearby/1145.patch similarity index 100% rename from old-patches/nonearby/1145.patch rename to resources/old-patches/nonearby/1145.patch diff --git a/old-patches/nonearby/1146.patch b/resources/old-patches/nonearby/1146.patch similarity index 100% rename from old-patches/nonearby/1146.patch rename to resources/old-patches/nonearby/1146.patch diff --git a/old-patches/nonearby/1148.patch b/resources/old-patches/nonearby/1148.patch similarity index 100% rename from old-patches/nonearby/1148.patch rename to resources/old-patches/nonearby/1148.patch diff --git a/old-patches/nonearby/1150.patch b/resources/old-patches/nonearby/1150.patch similarity index 100% rename from old-patches/nonearby/1150.patch rename to resources/old-patches/nonearby/1150.patch diff --git a/old-patches/nonearby/1167.patch b/resources/old-patches/nonearby/1167.patch similarity index 100% rename from old-patches/nonearby/1167.patch rename to resources/old-patches/nonearby/1167.patch diff --git a/old-patches/nonearby/1169.patch b/resources/old-patches/nonearby/1169.patch similarity index 100% rename from old-patches/nonearby/1169.patch rename to resources/old-patches/nonearby/1169.patch diff --git a/old-patches/nonearby/1171.patch b/resources/old-patches/nonearby/1171.patch similarity index 100% rename from old-patches/nonearby/1171.patch rename to resources/old-patches/nonearby/1171.patch diff --git a/old-patches/nonearby/1180.patch b/resources/old-patches/nonearby/1180.patch similarity index 100% rename from old-patches/nonearby/1180.patch rename to resources/old-patches/nonearby/1180.patch diff --git a/old-patches/nonearby/1181.patch b/resources/old-patches/nonearby/1181.patch similarity index 100% rename from old-patches/nonearby/1181.patch rename to resources/old-patches/nonearby/1181.patch diff --git a/old-patches/nonearby/1192.patch b/resources/old-patches/nonearby/1192.patch similarity index 100% rename from old-patches/nonearby/1192.patch rename to resources/old-patches/nonearby/1192.patch diff --git a/old-patches/nonearby/1196.patch b/resources/old-patches/nonearby/1196.patch similarity index 100% rename from old-patches/nonearby/1196.patch rename to resources/old-patches/nonearby/1196.patch diff --git a/old-patches/nonearby/1200.patch b/resources/old-patches/nonearby/1200.patch similarity index 100% rename from old-patches/nonearby/1200.patch rename to resources/old-patches/nonearby/1200.patch diff --git a/old-patches/nonearby/1201.patch b/resources/old-patches/nonearby/1201.patch similarity index 100% rename from old-patches/nonearby/1201.patch rename to resources/old-patches/nonearby/1201.patch diff --git a/old-patches/nonearby/1208.patch b/resources/old-patches/nonearby/1208.patch similarity index 100% rename from old-patches/nonearby/1208.patch rename to resources/old-patches/nonearby/1208.patch diff --git a/old-patches/nonearby/1213.patch b/resources/old-patches/nonearby/1213.patch similarity index 100% rename from old-patches/nonearby/1213.patch rename to resources/old-patches/nonearby/1213.patch diff --git a/old-patches/nonearby/1216.patch b/resources/old-patches/nonearby/1216.patch similarity index 100% rename from old-patches/nonearby/1216.patch rename to resources/old-patches/nonearby/1216.patch diff --git a/old-patches/nonearby/1218.patch b/resources/old-patches/nonearby/1218.patch similarity index 100% rename from old-patches/nonearby/1218.patch rename to resources/old-patches/nonearby/1218.patch diff --git a/old-patches/nonearby/1223.patch b/resources/old-patches/nonearby/1223.patch similarity index 100% rename from old-patches/nonearby/1223.patch rename to resources/old-patches/nonearby/1223.patch diff --git a/old-patches/nonearby/1243.patch b/resources/old-patches/nonearby/1243.patch similarity index 100% rename from old-patches/nonearby/1243.patch rename to resources/old-patches/nonearby/1243.patch diff --git a/old-patches/nonearby/1246.patch b/resources/old-patches/nonearby/1246.patch similarity index 100% rename from old-patches/nonearby/1246.patch rename to resources/old-patches/nonearby/1246.patch diff --git a/old-patches/nonearby/1249.patch b/resources/old-patches/nonearby/1249.patch similarity index 100% rename from old-patches/nonearby/1249.patch rename to resources/old-patches/nonearby/1249.patch diff --git a/old-patches/nonearby/1251.patch b/resources/old-patches/nonearby/1251.patch similarity index 100% rename from old-patches/nonearby/1251.patch rename to resources/old-patches/nonearby/1251.patch diff --git a/old-patches/nonearby/1252.patch b/resources/old-patches/nonearby/1252.patch similarity index 100% rename from old-patches/nonearby/1252.patch rename to resources/old-patches/nonearby/1252.patch diff --git a/old-patches/nonearby/1259.patch b/resources/old-patches/nonearby/1259.patch similarity index 100% rename from old-patches/nonearby/1259.patch rename to resources/old-patches/nonearby/1259.patch diff --git a/old-patches/nonearby/1266.patch b/resources/old-patches/nonearby/1266.patch similarity index 100% rename from old-patches/nonearby/1266.patch rename to resources/old-patches/nonearby/1266.patch diff --git a/old-patches/nonearby/1270.patch b/resources/old-patches/nonearby/1270.patch similarity index 100% rename from old-patches/nonearby/1270.patch rename to resources/old-patches/nonearby/1270.patch diff --git a/old-patches/nonearby/1273.patch b/resources/old-patches/nonearby/1273.patch similarity index 100% rename from old-patches/nonearby/1273.patch rename to resources/old-patches/nonearby/1273.patch diff --git a/old-patches/nonearby/1279.patch b/resources/old-patches/nonearby/1279.patch similarity index 100% rename from old-patches/nonearby/1279.patch rename to resources/old-patches/nonearby/1279.patch diff --git a/old-patches/nonearby/1280.patch b/resources/old-patches/nonearby/1280.patch similarity index 100% rename from old-patches/nonearby/1280.patch rename to resources/old-patches/nonearby/1280.patch diff --git a/old-patches/nonearby/1281.patch b/resources/old-patches/nonearby/1281.patch similarity index 100% rename from old-patches/nonearby/1281.patch rename to resources/old-patches/nonearby/1281.patch diff --git a/old-patches/nonearby/1282.patch b/resources/old-patches/nonearby/1282.patch similarity index 100% rename from old-patches/nonearby/1282.patch rename to resources/old-patches/nonearby/1282.patch diff --git a/old-patches/nonearby/1284.patch b/resources/old-patches/nonearby/1284.patch similarity index 100% rename from old-patches/nonearby/1284.patch rename to resources/old-patches/nonearby/1284.patch diff --git a/old-patches/nonearby/1290.patch b/resources/old-patches/nonearby/1290.patch similarity index 100% rename from old-patches/nonearby/1290.patch rename to resources/old-patches/nonearby/1290.patch diff --git a/old-patches/nonearby/1294.patch b/resources/old-patches/nonearby/1294.patch similarity index 100% rename from old-patches/nonearby/1294.patch rename to resources/old-patches/nonearby/1294.patch diff --git a/old-patches/nonearby/1295.patch b/resources/old-patches/nonearby/1295.patch similarity index 100% rename from old-patches/nonearby/1295.patch rename to resources/old-patches/nonearby/1295.patch diff --git a/old-patches/nonearby/1298.patch b/resources/old-patches/nonearby/1298.patch similarity index 100% rename from old-patches/nonearby/1298.patch rename to resources/old-patches/nonearby/1298.patch diff --git a/old-patches/nonearby/1300.patch b/resources/old-patches/nonearby/1300.patch similarity index 100% rename from old-patches/nonearby/1300.patch rename to resources/old-patches/nonearby/1300.patch diff --git a/old-patches/nonearby/1301.patch b/resources/old-patches/nonearby/1301.patch similarity index 100% rename from old-patches/nonearby/1301.patch rename to resources/old-patches/nonearby/1301.patch diff --git a/old-patches/nonearby/1304.patch b/resources/old-patches/nonearby/1304.patch similarity index 100% rename from old-patches/nonearby/1304.patch rename to resources/old-patches/nonearby/1304.patch diff --git a/old-patches/nonearby/1306.patch b/resources/old-patches/nonearby/1306.patch similarity index 100% rename from old-patches/nonearby/1306.patch rename to resources/old-patches/nonearby/1306.patch diff --git a/old-patches/nonearby/1307.patch b/resources/old-patches/nonearby/1307.patch similarity index 100% rename from old-patches/nonearby/1307.patch rename to resources/old-patches/nonearby/1307.patch diff --git a/old-patches/nonearby/1310.patch b/resources/old-patches/nonearby/1310.patch similarity index 100% rename from old-patches/nonearby/1310.patch rename to resources/old-patches/nonearby/1310.patch diff --git a/old-patches/nonearby/1315.patch b/resources/old-patches/nonearby/1315.patch similarity index 100% rename from old-patches/nonearby/1315.patch rename to resources/old-patches/nonearby/1315.patch diff --git a/old-patches/nonearby/1318.patch b/resources/old-patches/nonearby/1318.patch similarity index 100% rename from old-patches/nonearby/1318.patch rename to resources/old-patches/nonearby/1318.patch diff --git a/old-patches/nonearby/1330.patch b/resources/old-patches/nonearby/1330.patch similarity index 100% rename from old-patches/nonearby/1330.patch rename to resources/old-patches/nonearby/1330.patch diff --git a/old-patches/nonearby/1334.patch b/resources/old-patches/nonearby/1334.patch similarity index 100% rename from old-patches/nonearby/1334.patch rename to resources/old-patches/nonearby/1334.patch diff --git a/old-patches/nonearby/1339.patch b/resources/old-patches/nonearby/1339.patch similarity index 100% rename from old-patches/nonearby/1339.patch rename to resources/old-patches/nonearby/1339.patch diff --git a/old-patches/nonearby/1340.patch b/resources/old-patches/nonearby/1340.patch similarity index 100% rename from old-patches/nonearby/1340.patch rename to resources/old-patches/nonearby/1340.patch diff --git a/old-patches/nonearby/1355.patch b/resources/old-patches/nonearby/1355.patch similarity index 100% rename from old-patches/nonearby/1355.patch rename to resources/old-patches/nonearby/1355.patch diff --git a/old-patches/nonearby/1356.patch b/resources/old-patches/nonearby/1356.patch similarity index 100% rename from old-patches/nonearby/1356.patch rename to resources/old-patches/nonearby/1356.patch diff --git a/old-patches/nonearby/1358.patch b/resources/old-patches/nonearby/1358.patch similarity index 100% rename from old-patches/nonearby/1358.patch rename to resources/old-patches/nonearby/1358.patch diff --git a/old-patches/nonearby/1361.patch b/resources/old-patches/nonearby/1361.patch similarity index 100% rename from old-patches/nonearby/1361.patch rename to resources/old-patches/nonearby/1361.patch diff --git a/old-patches/nonearby/1362.patch b/resources/old-patches/nonearby/1362.patch similarity index 100% rename from old-patches/nonearby/1362.patch rename to resources/old-patches/nonearby/1362.patch diff --git a/old-patches/nonearby/1365.patch b/resources/old-patches/nonearby/1365.patch similarity index 100% rename from old-patches/nonearby/1365.patch rename to resources/old-patches/nonearby/1365.patch diff --git a/old-patches/nonearby/1367.patch b/resources/old-patches/nonearby/1367.patch similarity index 100% rename from old-patches/nonearby/1367.patch rename to resources/old-patches/nonearby/1367.patch diff --git a/old-patches/nonearby/1368.patch b/resources/old-patches/nonearby/1368.patch similarity index 100% rename from old-patches/nonearby/1368.patch rename to resources/old-patches/nonearby/1368.patch diff --git a/old-patches/nonearby/1370.patch b/resources/old-patches/nonearby/1370.patch similarity index 100% rename from old-patches/nonearby/1370.patch rename to resources/old-patches/nonearby/1370.patch diff --git a/old-patches/nonearby/1371.patch b/resources/old-patches/nonearby/1371.patch similarity index 100% rename from old-patches/nonearby/1371.patch rename to resources/old-patches/nonearby/1371.patch diff --git a/old-patches/nonearby/78204.patch-failed b/resources/old-patches/nonearby/78204.patch-failed similarity index 100% rename from old-patches/nonearby/78204.patch-failed rename to resources/old-patches/nonearby/78204.patch-failed diff --git a/old-patches/nonearby/832.patch b/resources/old-patches/nonearby/832.patch similarity index 100% rename from old-patches/nonearby/832.patch rename to resources/old-patches/nonearby/832.patch diff --git a/old-patches/nonearby/833.patch b/resources/old-patches/nonearby/833.patch similarity index 100% rename from old-patches/nonearby/833.patch rename to resources/old-patches/nonearby/833.patch diff --git a/old-patches/nonearby/834.patch b/resources/old-patches/nonearby/834.patch similarity index 100% rename from old-patches/nonearby/834.patch rename to resources/old-patches/nonearby/834.patch diff --git a/old-patches/nonearby/835.patch b/resources/old-patches/nonearby/835.patch similarity index 100% rename from old-patches/nonearby/835.patch rename to resources/old-patches/nonearby/835.patch diff --git a/old-patches/nonearby/836.patch b/resources/old-patches/nonearby/836.patch similarity index 100% rename from old-patches/nonearby/836.patch rename to resources/old-patches/nonearby/836.patch diff --git a/old-patches/nonearby/839.patch b/resources/old-patches/nonearby/839.patch similarity index 100% rename from old-patches/nonearby/839.patch rename to resources/old-patches/nonearby/839.patch diff --git a/old-patches/nonearby/841.patch b/resources/old-patches/nonearby/841.patch similarity index 100% rename from old-patches/nonearby/841.patch rename to resources/old-patches/nonearby/841.patch diff --git a/old-patches/nonearby/842.patch b/resources/old-patches/nonearby/842.patch similarity index 100% rename from old-patches/nonearby/842.patch rename to resources/old-patches/nonearby/842.patch diff --git a/old-patches/nonearby/843.patch b/resources/old-patches/nonearby/843.patch similarity index 100% rename from old-patches/nonearby/843.patch rename to resources/old-patches/nonearby/843.patch diff --git a/old-patches/nonearby/844.patch b/resources/old-patches/nonearby/844.patch similarity index 100% rename from old-patches/nonearby/844.patch rename to resources/old-patches/nonearby/844.patch diff --git a/old-patches/nonearby/845.patch b/resources/old-patches/nonearby/845.patch similarity index 100% rename from old-patches/nonearby/845.patch rename to resources/old-patches/nonearby/845.patch diff --git a/old-patches/nonearby/848.patch b/resources/old-patches/nonearby/848.patch similarity index 100% rename from old-patches/nonearby/848.patch rename to resources/old-patches/nonearby/848.patch diff --git a/old-patches/nonearby/850.patch b/resources/old-patches/nonearby/850.patch similarity index 100% rename from old-patches/nonearby/850.patch rename to resources/old-patches/nonearby/850.patch diff --git a/old-patches/nonearby/851.patch b/resources/old-patches/nonearby/851.patch similarity index 100% rename from old-patches/nonearby/851.patch rename to resources/old-patches/nonearby/851.patch diff --git a/old-patches/nonearby/853.patch b/resources/old-patches/nonearby/853.patch similarity index 100% rename from old-patches/nonearby/853.patch rename to resources/old-patches/nonearby/853.patch diff --git a/old-patches/nonearby/854.patch b/resources/old-patches/nonearby/854.patch similarity index 100% rename from old-patches/nonearby/854.patch rename to resources/old-patches/nonearby/854.patch diff --git a/old-patches/nonearby/855.patch b/resources/old-patches/nonearby/855.patch similarity index 100% rename from old-patches/nonearby/855.patch rename to resources/old-patches/nonearby/855.patch diff --git a/old-patches/nonearby/856.patch b/resources/old-patches/nonearby/856.patch similarity index 100% rename from old-patches/nonearby/856.patch rename to resources/old-patches/nonearby/856.patch diff --git a/old-patches/nonearby/876.patch b/resources/old-patches/nonearby/876.patch similarity index 100% rename from old-patches/nonearby/876.patch rename to resources/old-patches/nonearby/876.patch diff --git a/old-patches/nonearby/884.patch b/resources/old-patches/nonearby/884.patch similarity index 100% rename from old-patches/nonearby/884.patch rename to resources/old-patches/nonearby/884.patch diff --git a/old-patches/nonearby/888.patch b/resources/old-patches/nonearby/888.patch similarity index 100% rename from old-patches/nonearby/888.patch rename to resources/old-patches/nonearby/888.patch diff --git a/old-patches/nonearby/896.patch b/resources/old-patches/nonearby/896.patch similarity index 100% rename from old-patches/nonearby/896.patch rename to resources/old-patches/nonearby/896.patch diff --git a/old-patches/nonearby/897.patch b/resources/old-patches/nonearby/897.patch similarity index 100% rename from old-patches/nonearby/897.patch rename to resources/old-patches/nonearby/897.patch diff --git a/old-patches/nonearby/898.patch b/resources/old-patches/nonearby/898.patch similarity index 100% rename from old-patches/nonearby/898.patch rename to resources/old-patches/nonearby/898.patch diff --git a/old-patches/nonearby/899.patch b/resources/old-patches/nonearby/899.patch similarity index 100% rename from old-patches/nonearby/899.patch rename to resources/old-patches/nonearby/899.patch diff --git a/old-patches/nonearby/900.patch b/resources/old-patches/nonearby/900.patch similarity index 100% rename from old-patches/nonearby/900.patch rename to resources/old-patches/nonearby/900.patch diff --git a/old-patches/nonearby/901.patch b/resources/old-patches/nonearby/901.patch similarity index 100% rename from old-patches/nonearby/901.patch rename to resources/old-patches/nonearby/901.patch diff --git a/old-patches/nonearby/902.patch b/resources/old-patches/nonearby/902.patch similarity index 100% rename from old-patches/nonearby/902.patch rename to resources/old-patches/nonearby/902.patch diff --git a/old-patches/nonearby/903.patch b/resources/old-patches/nonearby/903.patch similarity index 100% rename from old-patches/nonearby/903.patch rename to resources/old-patches/nonearby/903.patch diff --git a/old-patches/nonearby/904.patch b/resources/old-patches/nonearby/904.patch similarity index 100% rename from old-patches/nonearby/904.patch rename to resources/old-patches/nonearby/904.patch diff --git a/old-patches/nonearby/906.patch b/resources/old-patches/nonearby/906.patch similarity index 100% rename from old-patches/nonearby/906.patch rename to resources/old-patches/nonearby/906.patch diff --git a/old-patches/nonearby/909.patch b/resources/old-patches/nonearby/909.patch similarity index 100% rename from old-patches/nonearby/909.patch rename to resources/old-patches/nonearby/909.patch diff --git a/old-patches/nonearby/910.patch b/resources/old-patches/nonearby/910.patch similarity index 100% rename from old-patches/nonearby/910.patch rename to resources/old-patches/nonearby/910.patch diff --git a/old-patches/nonearby/938.patch b/resources/old-patches/nonearby/938.patch similarity index 100% rename from old-patches/nonearby/938.patch rename to resources/old-patches/nonearby/938.patch diff --git a/old-patches/nonearby/939.patch b/resources/old-patches/nonearby/939.patch similarity index 100% rename from old-patches/nonearby/939.patch rename to resources/old-patches/nonearby/939.patch diff --git a/old-patches/nonearby/940.patch b/resources/old-patches/nonearby/940.patch similarity index 100% rename from old-patches/nonearby/940.patch rename to resources/old-patches/nonearby/940.patch diff --git a/old-patches/nonearby/942.patch b/resources/old-patches/nonearby/942.patch similarity index 100% rename from old-patches/nonearby/942.patch rename to resources/old-patches/nonearby/942.patch diff --git a/old-patches/nonearby/943.patch b/resources/old-patches/nonearby/943.patch similarity index 100% rename from old-patches/nonearby/943.patch rename to resources/old-patches/nonearby/943.patch diff --git a/old-patches/nonearby/945.patch b/resources/old-patches/nonearby/945.patch similarity index 100% rename from old-patches/nonearby/945.patch rename to resources/old-patches/nonearby/945.patch diff --git a/old-patches/nonearby/946.patch b/resources/old-patches/nonearby/946.patch similarity index 100% rename from old-patches/nonearby/946.patch rename to resources/old-patches/nonearby/946.patch diff --git a/old-patches/nonearby/947.patch b/resources/old-patches/nonearby/947.patch similarity index 100% rename from old-patches/nonearby/947.patch rename to resources/old-patches/nonearby/947.patch diff --git a/old-patches/nonearby/948.patch b/resources/old-patches/nonearby/948.patch similarity index 100% rename from old-patches/nonearby/948.patch rename to resources/old-patches/nonearby/948.patch diff --git a/old-patches/nonearby/963.patch b/resources/old-patches/nonearby/963.patch similarity index 100% rename from old-patches/nonearby/963.patch rename to resources/old-patches/nonearby/963.patch diff --git a/old-patches/nonearby/964.patch b/resources/old-patches/nonearby/964.patch similarity index 100% rename from old-patches/nonearby/964.patch rename to resources/old-patches/nonearby/964.patch diff --git a/old-patches/nonearby/965.patch b/resources/old-patches/nonearby/965.patch similarity index 100% rename from old-patches/nonearby/965.patch rename to resources/old-patches/nonearby/965.patch diff --git a/old-patches/nonearby/966.patch b/resources/old-patches/nonearby/966.patch similarity index 100% rename from old-patches/nonearby/966.patch rename to resources/old-patches/nonearby/966.patch diff --git a/old-patches/nonearby/967.patch b/resources/old-patches/nonearby/967.patch similarity index 100% rename from old-patches/nonearby/967.patch rename to resources/old-patches/nonearby/967.patch diff --git a/old-patches/nonearby/968.patch b/resources/old-patches/nonearby/968.patch similarity index 100% rename from old-patches/nonearby/968.patch rename to resources/old-patches/nonearby/968.patch diff --git a/old-patches/nonearby/970.patch b/resources/old-patches/nonearby/970.patch similarity index 100% rename from old-patches/nonearby/970.patch rename to resources/old-patches/nonearby/970.patch diff --git a/old-patches/nonearby/980.patch b/resources/old-patches/nonearby/980.patch similarity index 100% rename from old-patches/nonearby/980.patch rename to resources/old-patches/nonearby/980.patch diff --git a/old-patches/nonearby/984.patch b/resources/old-patches/nonearby/984.patch similarity index 100% rename from old-patches/nonearby/984.patch rename to resources/old-patches/nonearby/984.patch diff --git a/old-patches/nonearby/986.patch b/resources/old-patches/nonearby/986.patch similarity index 100% rename from old-patches/nonearby/986.patch rename to resources/old-patches/nonearby/986.patch diff --git a/old-patches/nonearby/991.patch b/resources/old-patches/nonearby/991.patch similarity index 100% rename from old-patches/nonearby/991.patch rename to resources/old-patches/nonearby/991.patch diff --git a/old-patches/nonearby/992.patch b/resources/old-patches/nonearby/992.patch similarity index 100% rename from old-patches/nonearby/992.patch rename to resources/old-patches/nonearby/992.patch diff --git a/old-patches/nonearby/993.patch b/resources/old-patches/nonearby/993.patch similarity index 100% rename from old-patches/nonearby/993.patch rename to resources/old-patches/nonearby/993.patch diff --git a/old-patches/nonearby/994.patch b/resources/old-patches/nonearby/994.patch similarity index 100% rename from old-patches/nonearby/994.patch rename to resources/old-patches/nonearby/994.patch diff --git a/old-patches/nonearby/996.patch b/resources/old-patches/nonearby/996.patch similarity index 100% rename from old-patches/nonearby/996.patch rename to resources/old-patches/nonearby/996.patch diff --git a/old-patches/nonearby/README.md b/resources/old-patches/nonearby/README.md similarity index 100% rename from old-patches/nonearby/README.md rename to resources/old-patches/nonearby/README.md diff --git a/old-patches/noprofilestrip/1006.patch b/resources/old-patches/noprofilestrip/1006.patch similarity index 100% rename from old-patches/noprofilestrip/1006.patch rename to resources/old-patches/noprofilestrip/1006.patch diff --git a/old-patches/noprofilestrip/1007.patch b/resources/old-patches/noprofilestrip/1007.patch similarity index 100% rename from old-patches/noprofilestrip/1007.patch rename to resources/old-patches/noprofilestrip/1007.patch diff --git a/old-patches/noprofilestrip/1011.patch b/resources/old-patches/noprofilestrip/1011.patch similarity index 100% rename from old-patches/noprofilestrip/1011.patch rename to resources/old-patches/noprofilestrip/1011.patch diff --git a/old-patches/noprofilestrip/1012.patch b/resources/old-patches/noprofilestrip/1012.patch similarity index 100% rename from old-patches/noprofilestrip/1012.patch rename to resources/old-patches/noprofilestrip/1012.patch diff --git a/old-patches/noprofilestrip/1013.patch b/resources/old-patches/noprofilestrip/1013.patch similarity index 100% rename from old-patches/noprofilestrip/1013.patch rename to resources/old-patches/noprofilestrip/1013.patch diff --git a/old-patches/noprofilestrip/1015.patch b/resources/old-patches/noprofilestrip/1015.patch similarity index 100% rename from old-patches/noprofilestrip/1015.patch rename to resources/old-patches/noprofilestrip/1015.patch diff --git a/old-patches/noprofilestrip/1016.patch b/resources/old-patches/noprofilestrip/1016.patch similarity index 100% rename from old-patches/noprofilestrip/1016.patch rename to resources/old-patches/noprofilestrip/1016.patch diff --git a/old-patches/noprofilestrip/1019.patch b/resources/old-patches/noprofilestrip/1019.patch similarity index 100% rename from old-patches/noprofilestrip/1019.patch rename to resources/old-patches/noprofilestrip/1019.patch diff --git a/old-patches/noprofilestrip/1020.patch b/resources/old-patches/noprofilestrip/1020.patch similarity index 100% rename from old-patches/noprofilestrip/1020.patch rename to resources/old-patches/noprofilestrip/1020.patch diff --git a/old-patches/noprofilestrip/1021.patch b/resources/old-patches/noprofilestrip/1021.patch similarity index 100% rename from old-patches/noprofilestrip/1021.patch rename to resources/old-patches/noprofilestrip/1021.patch diff --git a/old-patches/noprofilestrip/1022.patch b/resources/old-patches/noprofilestrip/1022.patch similarity index 100% rename from old-patches/noprofilestrip/1022.patch rename to resources/old-patches/noprofilestrip/1022.patch diff --git a/old-patches/noprofilestrip/1023.patch b/resources/old-patches/noprofilestrip/1023.patch similarity index 100% rename from old-patches/noprofilestrip/1023.patch rename to resources/old-patches/noprofilestrip/1023.patch diff --git a/old-patches/noprofilestrip/1024.patch b/resources/old-patches/noprofilestrip/1024.patch similarity index 100% rename from old-patches/noprofilestrip/1024.patch rename to resources/old-patches/noprofilestrip/1024.patch diff --git a/old-patches/noprofilestrip/1025.patch b/resources/old-patches/noprofilestrip/1025.patch similarity index 100% rename from old-patches/noprofilestrip/1025.patch rename to resources/old-patches/noprofilestrip/1025.patch diff --git a/old-patches/noprofilestrip/1026.patch b/resources/old-patches/noprofilestrip/1026.patch similarity index 100% rename from old-patches/noprofilestrip/1026.patch rename to resources/old-patches/noprofilestrip/1026.patch diff --git a/old-patches/noprofilestrip/1029.patch b/resources/old-patches/noprofilestrip/1029.patch similarity index 100% rename from old-patches/noprofilestrip/1029.patch rename to resources/old-patches/noprofilestrip/1029.patch diff --git a/old-patches/noprofilestrip/1031.patch b/resources/old-patches/noprofilestrip/1031.patch similarity index 100% rename from old-patches/noprofilestrip/1031.patch rename to resources/old-patches/noprofilestrip/1031.patch diff --git a/old-patches/noprofilestrip/1032.patch b/resources/old-patches/noprofilestrip/1032.patch similarity index 100% rename from old-patches/noprofilestrip/1032.patch rename to resources/old-patches/noprofilestrip/1032.patch diff --git a/old-patches/noprofilestrip/1033.patch b/resources/old-patches/noprofilestrip/1033.patch similarity index 100% rename from old-patches/noprofilestrip/1033.patch rename to resources/old-patches/noprofilestrip/1033.patch diff --git a/old-patches/noprofilestrip/1036.patch b/resources/old-patches/noprofilestrip/1036.patch similarity index 100% rename from old-patches/noprofilestrip/1036.patch rename to resources/old-patches/noprofilestrip/1036.patch diff --git a/old-patches/noprofilestrip/1037.patch b/resources/old-patches/noprofilestrip/1037.patch similarity index 100% rename from old-patches/noprofilestrip/1037.patch rename to resources/old-patches/noprofilestrip/1037.patch diff --git a/old-patches/noprofilestrip/1040.patch b/resources/old-patches/noprofilestrip/1040.patch similarity index 100% rename from old-patches/noprofilestrip/1040.patch rename to resources/old-patches/noprofilestrip/1040.patch diff --git a/old-patches/noprofilestrip/1041.patch b/resources/old-patches/noprofilestrip/1041.patch similarity index 100% rename from old-patches/noprofilestrip/1041.patch rename to resources/old-patches/noprofilestrip/1041.patch diff --git a/old-patches/noprofilestrip/1045.patch b/resources/old-patches/noprofilestrip/1045.patch similarity index 100% rename from old-patches/noprofilestrip/1045.patch rename to resources/old-patches/noprofilestrip/1045.patch diff --git a/old-patches/noprofilestrip/1046.patch b/resources/old-patches/noprofilestrip/1046.patch similarity index 100% rename from old-patches/noprofilestrip/1046.patch rename to resources/old-patches/noprofilestrip/1046.patch diff --git a/old-patches/noprofilestrip/1047.patch b/resources/old-patches/noprofilestrip/1047.patch similarity index 100% rename from old-patches/noprofilestrip/1047.patch rename to resources/old-patches/noprofilestrip/1047.patch diff --git a/old-patches/noprofilestrip/1049.patch b/resources/old-patches/noprofilestrip/1049.patch similarity index 100% rename from old-patches/noprofilestrip/1049.patch rename to resources/old-patches/noprofilestrip/1049.patch diff --git a/old-patches/noprofilestrip/1052.patch b/resources/old-patches/noprofilestrip/1052.patch similarity index 100% rename from old-patches/noprofilestrip/1052.patch rename to resources/old-patches/noprofilestrip/1052.patch diff --git a/old-patches/noprofilestrip/1053.patch b/resources/old-patches/noprofilestrip/1053.patch similarity index 100% rename from old-patches/noprofilestrip/1053.patch rename to resources/old-patches/noprofilestrip/1053.patch diff --git a/old-patches/noprofilestrip/1054.patch b/resources/old-patches/noprofilestrip/1054.patch similarity index 100% rename from old-patches/noprofilestrip/1054.patch rename to resources/old-patches/noprofilestrip/1054.patch diff --git a/old-patches/noprofilestrip/1056.patch b/resources/old-patches/noprofilestrip/1056.patch similarity index 100% rename from old-patches/noprofilestrip/1056.patch rename to resources/old-patches/noprofilestrip/1056.patch diff --git a/old-patches/noprofilestrip/1057.patch b/resources/old-patches/noprofilestrip/1057.patch similarity index 100% rename from old-patches/noprofilestrip/1057.patch rename to resources/old-patches/noprofilestrip/1057.patch diff --git a/old-patches/noprofilestrip/1062.patch b/resources/old-patches/noprofilestrip/1062.patch similarity index 100% rename from old-patches/noprofilestrip/1062.patch rename to resources/old-patches/noprofilestrip/1062.patch diff --git a/old-patches/noprofilestrip/1065.patch b/resources/old-patches/noprofilestrip/1065.patch similarity index 100% rename from old-patches/noprofilestrip/1065.patch rename to resources/old-patches/noprofilestrip/1065.patch diff --git a/old-patches/noprofilestrip/1066.patch b/resources/old-patches/noprofilestrip/1066.patch similarity index 100% rename from old-patches/noprofilestrip/1066.patch rename to resources/old-patches/noprofilestrip/1066.patch diff --git a/old-patches/noprofilestrip/1069.patch b/resources/old-patches/noprofilestrip/1069.patch similarity index 100% rename from old-patches/noprofilestrip/1069.patch rename to resources/old-patches/noprofilestrip/1069.patch diff --git a/old-patches/noprofilestrip/1073.patch b/resources/old-patches/noprofilestrip/1073.patch similarity index 100% rename from old-patches/noprofilestrip/1073.patch rename to resources/old-patches/noprofilestrip/1073.patch diff --git a/old-patches/noprofilestrip/1074.patch b/resources/old-patches/noprofilestrip/1074.patch similarity index 100% rename from old-patches/noprofilestrip/1074.patch rename to resources/old-patches/noprofilestrip/1074.patch diff --git a/old-patches/noprofilestrip/1078.patch b/resources/old-patches/noprofilestrip/1078.patch similarity index 100% rename from old-patches/noprofilestrip/1078.patch rename to resources/old-patches/noprofilestrip/1078.patch diff --git a/old-patches/noprofilestrip/1084.patch b/resources/old-patches/noprofilestrip/1084.patch similarity index 100% rename from old-patches/noprofilestrip/1084.patch rename to resources/old-patches/noprofilestrip/1084.patch diff --git a/old-patches/noprofilestrip/1085.patch b/resources/old-patches/noprofilestrip/1085.patch similarity index 100% rename from old-patches/noprofilestrip/1085.patch rename to resources/old-patches/noprofilestrip/1085.patch diff --git a/old-patches/noprofilestrip/1087.patch b/resources/old-patches/noprofilestrip/1087.patch similarity index 100% rename from old-patches/noprofilestrip/1087.patch rename to resources/old-patches/noprofilestrip/1087.patch diff --git a/old-patches/noprofilestrip/1091.patch b/resources/old-patches/noprofilestrip/1091.patch similarity index 100% rename from old-patches/noprofilestrip/1091.patch rename to resources/old-patches/noprofilestrip/1091.patch diff --git a/old-patches/noprofilestrip/1092.patch b/resources/old-patches/noprofilestrip/1092.patch similarity index 100% rename from old-patches/noprofilestrip/1092.patch rename to resources/old-patches/noprofilestrip/1092.patch diff --git a/old-patches/noprofilestrip/1100.patch b/resources/old-patches/noprofilestrip/1100.patch similarity index 100% rename from old-patches/noprofilestrip/1100.patch rename to resources/old-patches/noprofilestrip/1100.patch diff --git a/old-patches/noprofilestrip/1103.patch b/resources/old-patches/noprofilestrip/1103.patch similarity index 100% rename from old-patches/noprofilestrip/1103.patch rename to resources/old-patches/noprofilestrip/1103.patch diff --git a/old-patches/noprofilestrip/1104.patch b/resources/old-patches/noprofilestrip/1104.patch similarity index 100% rename from old-patches/noprofilestrip/1104.patch rename to resources/old-patches/noprofilestrip/1104.patch diff --git a/old-patches/noprofilestrip/1105.patch b/resources/old-patches/noprofilestrip/1105.patch similarity index 100% rename from old-patches/noprofilestrip/1105.patch rename to resources/old-patches/noprofilestrip/1105.patch diff --git a/old-patches/noprofilestrip/1107.patch b/resources/old-patches/noprofilestrip/1107.patch similarity index 100% rename from old-patches/noprofilestrip/1107.patch rename to resources/old-patches/noprofilestrip/1107.patch diff --git a/old-patches/noprofilestrip/1123.patch b/resources/old-patches/noprofilestrip/1123.patch similarity index 100% rename from old-patches/noprofilestrip/1123.patch rename to resources/old-patches/noprofilestrip/1123.patch diff --git a/old-patches/noprofilestrip/1132.patch b/resources/old-patches/noprofilestrip/1132.patch similarity index 100% rename from old-patches/noprofilestrip/1132.patch rename to resources/old-patches/noprofilestrip/1132.patch diff --git a/old-patches/noprofilestrip/1134.patch b/resources/old-patches/noprofilestrip/1134.patch similarity index 100% rename from old-patches/noprofilestrip/1134.patch rename to resources/old-patches/noprofilestrip/1134.patch diff --git a/old-patches/noprofilestrip/1144.patch b/resources/old-patches/noprofilestrip/1144.patch similarity index 100% rename from old-patches/noprofilestrip/1144.patch rename to resources/old-patches/noprofilestrip/1144.patch diff --git a/old-patches/noprofilestrip/1145.patch b/resources/old-patches/noprofilestrip/1145.patch similarity index 100% rename from old-patches/noprofilestrip/1145.patch rename to resources/old-patches/noprofilestrip/1145.patch diff --git a/old-patches/noprofilestrip/1146.patch b/resources/old-patches/noprofilestrip/1146.patch similarity index 100% rename from old-patches/noprofilestrip/1146.patch rename to resources/old-patches/noprofilestrip/1146.patch diff --git a/old-patches/noprofilestrip/1148.patch b/resources/old-patches/noprofilestrip/1148.patch similarity index 100% rename from old-patches/noprofilestrip/1148.patch rename to resources/old-patches/noprofilestrip/1148.patch diff --git a/old-patches/noprofilestrip/1150.patch b/resources/old-patches/noprofilestrip/1150.patch similarity index 100% rename from old-patches/noprofilestrip/1150.patch rename to resources/old-patches/noprofilestrip/1150.patch diff --git a/old-patches/noprofilestrip/1167.patch b/resources/old-patches/noprofilestrip/1167.patch similarity index 100% rename from old-patches/noprofilestrip/1167.patch rename to resources/old-patches/noprofilestrip/1167.patch diff --git a/old-patches/noprofilestrip/1169.patch b/resources/old-patches/noprofilestrip/1169.patch similarity index 100% rename from old-patches/noprofilestrip/1169.patch rename to resources/old-patches/noprofilestrip/1169.patch diff --git a/old-patches/noprofilestrip/1171.patch b/resources/old-patches/noprofilestrip/1171.patch similarity index 100% rename from old-patches/noprofilestrip/1171.patch rename to resources/old-patches/noprofilestrip/1171.patch diff --git a/old-patches/noprofilestrip/1180.patch b/resources/old-patches/noprofilestrip/1180.patch similarity index 100% rename from old-patches/noprofilestrip/1180.patch rename to resources/old-patches/noprofilestrip/1180.patch diff --git a/old-patches/noprofilestrip/1181.patch b/resources/old-patches/noprofilestrip/1181.patch similarity index 100% rename from old-patches/noprofilestrip/1181.patch rename to resources/old-patches/noprofilestrip/1181.patch diff --git a/old-patches/noprofilestrip/1192.patch b/resources/old-patches/noprofilestrip/1192.patch similarity index 100% rename from old-patches/noprofilestrip/1192.patch rename to resources/old-patches/noprofilestrip/1192.patch diff --git a/old-patches/noprofilestrip/1196.patch b/resources/old-patches/noprofilestrip/1196.patch similarity index 100% rename from old-patches/noprofilestrip/1196.patch rename to resources/old-patches/noprofilestrip/1196.patch diff --git a/old-patches/noprofilestrip/1200.patch b/resources/old-patches/noprofilestrip/1200.patch similarity index 100% rename from old-patches/noprofilestrip/1200.patch rename to resources/old-patches/noprofilestrip/1200.patch diff --git a/old-patches/noprofilestrip/1201.patch b/resources/old-patches/noprofilestrip/1201.patch similarity index 100% rename from old-patches/noprofilestrip/1201.patch rename to resources/old-patches/noprofilestrip/1201.patch diff --git a/old-patches/noprofilestrip/1208.patch b/resources/old-patches/noprofilestrip/1208.patch similarity index 100% rename from old-patches/noprofilestrip/1208.patch rename to resources/old-patches/noprofilestrip/1208.patch diff --git a/old-patches/noprofilestrip/1213.patch b/resources/old-patches/noprofilestrip/1213.patch similarity index 100% rename from old-patches/noprofilestrip/1213.patch rename to resources/old-patches/noprofilestrip/1213.patch diff --git a/old-patches/noprofilestrip/1216.patch b/resources/old-patches/noprofilestrip/1216.patch similarity index 100% rename from old-patches/noprofilestrip/1216.patch rename to resources/old-patches/noprofilestrip/1216.patch diff --git a/old-patches/noprofilestrip/1218.patch b/resources/old-patches/noprofilestrip/1218.patch similarity index 100% rename from old-patches/noprofilestrip/1218.patch rename to resources/old-patches/noprofilestrip/1218.patch diff --git a/old-patches/noprofilestrip/1223.patch b/resources/old-patches/noprofilestrip/1223.patch similarity index 100% rename from old-patches/noprofilestrip/1223.patch rename to resources/old-patches/noprofilestrip/1223.patch diff --git a/old-patches/noprofilestrip/1243.patch b/resources/old-patches/noprofilestrip/1243.patch similarity index 100% rename from old-patches/noprofilestrip/1243.patch rename to resources/old-patches/noprofilestrip/1243.patch diff --git a/old-patches/noprofilestrip/1246.patch b/resources/old-patches/noprofilestrip/1246.patch similarity index 100% rename from old-patches/noprofilestrip/1246.patch rename to resources/old-patches/noprofilestrip/1246.patch diff --git a/old-patches/noprofilestrip/1249.patch b/resources/old-patches/noprofilestrip/1249.patch similarity index 100% rename from old-patches/noprofilestrip/1249.patch rename to resources/old-patches/noprofilestrip/1249.patch diff --git a/old-patches/noprofilestrip/1251.patch b/resources/old-patches/noprofilestrip/1251.patch similarity index 100% rename from old-patches/noprofilestrip/1251.patch rename to resources/old-patches/noprofilestrip/1251.patch diff --git a/old-patches/noprofilestrip/1252.patch b/resources/old-patches/noprofilestrip/1252.patch similarity index 100% rename from old-patches/noprofilestrip/1252.patch rename to resources/old-patches/noprofilestrip/1252.patch diff --git a/old-patches/noprofilestrip/1259.patch b/resources/old-patches/noprofilestrip/1259.patch similarity index 100% rename from old-patches/noprofilestrip/1259.patch rename to resources/old-patches/noprofilestrip/1259.patch diff --git a/old-patches/noprofilestrip/1266.patch b/resources/old-patches/noprofilestrip/1266.patch similarity index 100% rename from old-patches/noprofilestrip/1266.patch rename to resources/old-patches/noprofilestrip/1266.patch diff --git a/old-patches/noprofilestrip/1270.patch b/resources/old-patches/noprofilestrip/1270.patch similarity index 100% rename from old-patches/noprofilestrip/1270.patch rename to resources/old-patches/noprofilestrip/1270.patch diff --git a/old-patches/noprofilestrip/1273.patch b/resources/old-patches/noprofilestrip/1273.patch similarity index 100% rename from old-patches/noprofilestrip/1273.patch rename to resources/old-patches/noprofilestrip/1273.patch diff --git a/old-patches/noprofilestrip/1279.patch b/resources/old-patches/noprofilestrip/1279.patch similarity index 100% rename from old-patches/noprofilestrip/1279.patch rename to resources/old-patches/noprofilestrip/1279.patch diff --git a/old-patches/noprofilestrip/1280.patch b/resources/old-patches/noprofilestrip/1280.patch similarity index 100% rename from old-patches/noprofilestrip/1280.patch rename to resources/old-patches/noprofilestrip/1280.patch diff --git a/old-patches/noprofilestrip/1281.patch b/resources/old-patches/noprofilestrip/1281.patch similarity index 100% rename from old-patches/noprofilestrip/1281.patch rename to resources/old-patches/noprofilestrip/1281.patch diff --git a/old-patches/noprofilestrip/1282.patch b/resources/old-patches/noprofilestrip/1282.patch similarity index 100% rename from old-patches/noprofilestrip/1282.patch rename to resources/old-patches/noprofilestrip/1282.patch diff --git a/old-patches/noprofilestrip/1284.patch b/resources/old-patches/noprofilestrip/1284.patch similarity index 100% rename from old-patches/noprofilestrip/1284.patch rename to resources/old-patches/noprofilestrip/1284.patch diff --git a/old-patches/noprofilestrip/1290.patch b/resources/old-patches/noprofilestrip/1290.patch similarity index 100% rename from old-patches/noprofilestrip/1290.patch rename to resources/old-patches/noprofilestrip/1290.patch diff --git a/old-patches/noprofilestrip/1294.patch b/resources/old-patches/noprofilestrip/1294.patch similarity index 100% rename from old-patches/noprofilestrip/1294.patch rename to resources/old-patches/noprofilestrip/1294.patch diff --git a/old-patches/noprofilestrip/1295.patch b/resources/old-patches/noprofilestrip/1295.patch similarity index 100% rename from old-patches/noprofilestrip/1295.patch rename to resources/old-patches/noprofilestrip/1295.patch diff --git a/old-patches/noprofilestrip/1298.patch b/resources/old-patches/noprofilestrip/1298.patch similarity index 100% rename from old-patches/noprofilestrip/1298.patch rename to resources/old-patches/noprofilestrip/1298.patch diff --git a/old-patches/noprofilestrip/1300.patch b/resources/old-patches/noprofilestrip/1300.patch similarity index 100% rename from old-patches/noprofilestrip/1300.patch rename to resources/old-patches/noprofilestrip/1300.patch diff --git a/old-patches/noprofilestrip/1301.patch b/resources/old-patches/noprofilestrip/1301.patch similarity index 100% rename from old-patches/noprofilestrip/1301.patch rename to resources/old-patches/noprofilestrip/1301.patch diff --git a/old-patches/noprofilestrip/1304.patch b/resources/old-patches/noprofilestrip/1304.patch similarity index 100% rename from old-patches/noprofilestrip/1304.patch rename to resources/old-patches/noprofilestrip/1304.patch diff --git a/old-patches/noprofilestrip/1306.patch b/resources/old-patches/noprofilestrip/1306.patch similarity index 100% rename from old-patches/noprofilestrip/1306.patch rename to resources/old-patches/noprofilestrip/1306.patch diff --git a/old-patches/noprofilestrip/1307.patch b/resources/old-patches/noprofilestrip/1307.patch similarity index 100% rename from old-patches/noprofilestrip/1307.patch rename to resources/old-patches/noprofilestrip/1307.patch diff --git a/old-patches/noprofilestrip/1310.patch b/resources/old-patches/noprofilestrip/1310.patch similarity index 100% rename from old-patches/noprofilestrip/1310.patch rename to resources/old-patches/noprofilestrip/1310.patch diff --git a/old-patches/noprofilestrip/1315.patch b/resources/old-patches/noprofilestrip/1315.patch similarity index 100% rename from old-patches/noprofilestrip/1315.patch rename to resources/old-patches/noprofilestrip/1315.patch diff --git a/old-patches/noprofilestrip/1318.patch b/resources/old-patches/noprofilestrip/1318.patch similarity index 100% rename from old-patches/noprofilestrip/1318.patch rename to resources/old-patches/noprofilestrip/1318.patch diff --git a/old-patches/noprofilestrip/1330.patch b/resources/old-patches/noprofilestrip/1330.patch similarity index 100% rename from old-patches/noprofilestrip/1330.patch rename to resources/old-patches/noprofilestrip/1330.patch diff --git a/old-patches/noprofilestrip/1334.patch b/resources/old-patches/noprofilestrip/1334.patch similarity index 100% rename from old-patches/noprofilestrip/1334.patch rename to resources/old-patches/noprofilestrip/1334.patch diff --git a/old-patches/noprofilestrip/1339.patch b/resources/old-patches/noprofilestrip/1339.patch similarity index 100% rename from old-patches/noprofilestrip/1339.patch rename to resources/old-patches/noprofilestrip/1339.patch diff --git a/old-patches/noprofilestrip/1340.patch b/resources/old-patches/noprofilestrip/1340.patch similarity index 100% rename from old-patches/noprofilestrip/1340.patch rename to resources/old-patches/noprofilestrip/1340.patch diff --git a/old-patches/noprofilestrip/1355.patch b/resources/old-patches/noprofilestrip/1355.patch similarity index 100% rename from old-patches/noprofilestrip/1355.patch rename to resources/old-patches/noprofilestrip/1355.patch diff --git a/old-patches/noprofilestrip/1356.patch b/resources/old-patches/noprofilestrip/1356.patch similarity index 100% rename from old-patches/noprofilestrip/1356.patch rename to resources/old-patches/noprofilestrip/1356.patch diff --git a/old-patches/noprofilestrip/1358.patch b/resources/old-patches/noprofilestrip/1358.patch similarity index 100% rename from old-patches/noprofilestrip/1358.patch rename to resources/old-patches/noprofilestrip/1358.patch diff --git a/old-patches/noprofilestrip/1361.patch b/resources/old-patches/noprofilestrip/1361.patch similarity index 100% rename from old-patches/noprofilestrip/1361.patch rename to resources/old-patches/noprofilestrip/1361.patch diff --git a/old-patches/noprofilestrip/1362.patch b/resources/old-patches/noprofilestrip/1362.patch similarity index 100% rename from old-patches/noprofilestrip/1362.patch rename to resources/old-patches/noprofilestrip/1362.patch diff --git a/old-patches/noprofilestrip/1365.patch b/resources/old-patches/noprofilestrip/1365.patch similarity index 100% rename from old-patches/noprofilestrip/1365.patch rename to resources/old-patches/noprofilestrip/1365.patch diff --git a/old-patches/noprofilestrip/1367.patch b/resources/old-patches/noprofilestrip/1367.patch similarity index 100% rename from old-patches/noprofilestrip/1367.patch rename to resources/old-patches/noprofilestrip/1367.patch diff --git a/old-patches/noprofilestrip/1368.patch b/resources/old-patches/noprofilestrip/1368.patch similarity index 100% rename from old-patches/noprofilestrip/1368.patch rename to resources/old-patches/noprofilestrip/1368.patch diff --git a/old-patches/noprofilestrip/1370.patch b/resources/old-patches/noprofilestrip/1370.patch similarity index 100% rename from old-patches/noprofilestrip/1370.patch rename to resources/old-patches/noprofilestrip/1370.patch diff --git a/old-patches/noprofilestrip/1371.patch b/resources/old-patches/noprofilestrip/1371.patch similarity index 100% rename from old-patches/noprofilestrip/1371.patch rename to resources/old-patches/noprofilestrip/1371.patch diff --git a/old-patches/noprofilestrip/78204.patch-failed b/resources/old-patches/noprofilestrip/78204.patch-failed similarity index 100% rename from old-patches/noprofilestrip/78204.patch-failed rename to resources/old-patches/noprofilestrip/78204.patch-failed diff --git a/old-patches/noprofilestrip/842.patch b/resources/old-patches/noprofilestrip/842.patch similarity index 100% rename from old-patches/noprofilestrip/842.patch rename to resources/old-patches/noprofilestrip/842.patch diff --git a/old-patches/noprofilestrip/843.patch b/resources/old-patches/noprofilestrip/843.patch similarity index 100% rename from old-patches/noprofilestrip/843.patch rename to resources/old-patches/noprofilestrip/843.patch diff --git a/old-patches/noprofilestrip/844.patch b/resources/old-patches/noprofilestrip/844.patch similarity index 100% rename from old-patches/noprofilestrip/844.patch rename to resources/old-patches/noprofilestrip/844.patch diff --git a/old-patches/noprofilestrip/845.patch b/resources/old-patches/noprofilestrip/845.patch similarity index 100% rename from old-patches/noprofilestrip/845.patch rename to resources/old-patches/noprofilestrip/845.patch diff --git a/old-patches/noprofilestrip/848.patch b/resources/old-patches/noprofilestrip/848.patch similarity index 100% rename from old-patches/noprofilestrip/848.patch rename to resources/old-patches/noprofilestrip/848.patch diff --git a/old-patches/noprofilestrip/850.patch b/resources/old-patches/noprofilestrip/850.patch similarity index 100% rename from old-patches/noprofilestrip/850.patch rename to resources/old-patches/noprofilestrip/850.patch diff --git a/old-patches/noprofilestrip/851.patch b/resources/old-patches/noprofilestrip/851.patch similarity index 100% rename from old-patches/noprofilestrip/851.patch rename to resources/old-patches/noprofilestrip/851.patch diff --git a/old-patches/noprofilestrip/853.patch b/resources/old-patches/noprofilestrip/853.patch similarity index 100% rename from old-patches/noprofilestrip/853.patch rename to resources/old-patches/noprofilestrip/853.patch diff --git a/old-patches/noprofilestrip/854.patch b/resources/old-patches/noprofilestrip/854.patch similarity index 100% rename from old-patches/noprofilestrip/854.patch rename to resources/old-patches/noprofilestrip/854.patch diff --git a/old-patches/noprofilestrip/855.patch b/resources/old-patches/noprofilestrip/855.patch similarity index 100% rename from old-patches/noprofilestrip/855.patch rename to resources/old-patches/noprofilestrip/855.patch diff --git a/old-patches/noprofilestrip/856.patch b/resources/old-patches/noprofilestrip/856.patch similarity index 100% rename from old-patches/noprofilestrip/856.patch rename to resources/old-patches/noprofilestrip/856.patch diff --git a/old-patches/noprofilestrip/876.patch b/resources/old-patches/noprofilestrip/876.patch similarity index 100% rename from old-patches/noprofilestrip/876.patch rename to resources/old-patches/noprofilestrip/876.patch diff --git a/old-patches/noprofilestrip/884.patch b/resources/old-patches/noprofilestrip/884.patch similarity index 100% rename from old-patches/noprofilestrip/884.patch rename to resources/old-patches/noprofilestrip/884.patch diff --git a/old-patches/noprofilestrip/888.patch b/resources/old-patches/noprofilestrip/888.patch similarity index 100% rename from old-patches/noprofilestrip/888.patch rename to resources/old-patches/noprofilestrip/888.patch diff --git a/old-patches/noprofilestrip/896.patch b/resources/old-patches/noprofilestrip/896.patch similarity index 100% rename from old-patches/noprofilestrip/896.patch rename to resources/old-patches/noprofilestrip/896.patch diff --git a/old-patches/noprofilestrip/897.patch b/resources/old-patches/noprofilestrip/897.patch similarity index 100% rename from old-patches/noprofilestrip/897.patch rename to resources/old-patches/noprofilestrip/897.patch diff --git a/old-patches/noprofilestrip/898.patch b/resources/old-patches/noprofilestrip/898.patch similarity index 100% rename from old-patches/noprofilestrip/898.patch rename to resources/old-patches/noprofilestrip/898.patch diff --git a/old-patches/noprofilestrip/899.patch b/resources/old-patches/noprofilestrip/899.patch similarity index 100% rename from old-patches/noprofilestrip/899.patch rename to resources/old-patches/noprofilestrip/899.patch diff --git a/old-patches/noprofilestrip/900.patch b/resources/old-patches/noprofilestrip/900.patch similarity index 100% rename from old-patches/noprofilestrip/900.patch rename to resources/old-patches/noprofilestrip/900.patch diff --git a/old-patches/noprofilestrip/901.patch b/resources/old-patches/noprofilestrip/901.patch similarity index 100% rename from old-patches/noprofilestrip/901.patch rename to resources/old-patches/noprofilestrip/901.patch diff --git a/old-patches/noprofilestrip/902.patch b/resources/old-patches/noprofilestrip/902.patch similarity index 100% rename from old-patches/noprofilestrip/902.patch rename to resources/old-patches/noprofilestrip/902.patch diff --git a/old-patches/noprofilestrip/903.patch b/resources/old-patches/noprofilestrip/903.patch similarity index 100% rename from old-patches/noprofilestrip/903.patch rename to resources/old-patches/noprofilestrip/903.patch diff --git a/old-patches/noprofilestrip/904.patch b/resources/old-patches/noprofilestrip/904.patch similarity index 100% rename from old-patches/noprofilestrip/904.patch rename to resources/old-patches/noprofilestrip/904.patch diff --git a/old-patches/noprofilestrip/906.patch b/resources/old-patches/noprofilestrip/906.patch similarity index 100% rename from old-patches/noprofilestrip/906.patch rename to resources/old-patches/noprofilestrip/906.patch diff --git a/old-patches/noprofilestrip/909.patch b/resources/old-patches/noprofilestrip/909.patch similarity index 100% rename from old-patches/noprofilestrip/909.patch rename to resources/old-patches/noprofilestrip/909.patch diff --git a/old-patches/noprofilestrip/910.patch b/resources/old-patches/noprofilestrip/910.patch similarity index 100% rename from old-patches/noprofilestrip/910.patch rename to resources/old-patches/noprofilestrip/910.patch diff --git a/old-patches/noprofilestrip/938.patch b/resources/old-patches/noprofilestrip/938.patch similarity index 100% rename from old-patches/noprofilestrip/938.patch rename to resources/old-patches/noprofilestrip/938.patch diff --git a/old-patches/noprofilestrip/939.patch b/resources/old-patches/noprofilestrip/939.patch similarity index 100% rename from old-patches/noprofilestrip/939.patch rename to resources/old-patches/noprofilestrip/939.patch diff --git a/old-patches/noprofilestrip/940.patch b/resources/old-patches/noprofilestrip/940.patch similarity index 100% rename from old-patches/noprofilestrip/940.patch rename to resources/old-patches/noprofilestrip/940.patch diff --git a/old-patches/noprofilestrip/942.patch b/resources/old-patches/noprofilestrip/942.patch similarity index 100% rename from old-patches/noprofilestrip/942.patch rename to resources/old-patches/noprofilestrip/942.patch diff --git a/old-patches/noprofilestrip/943.patch b/resources/old-patches/noprofilestrip/943.patch similarity index 100% rename from old-patches/noprofilestrip/943.patch rename to resources/old-patches/noprofilestrip/943.patch diff --git a/old-patches/noprofilestrip/945.patch b/resources/old-patches/noprofilestrip/945.patch similarity index 100% rename from old-patches/noprofilestrip/945.patch rename to resources/old-patches/noprofilestrip/945.patch diff --git a/old-patches/noprofilestrip/946.patch b/resources/old-patches/noprofilestrip/946.patch similarity index 100% rename from old-patches/noprofilestrip/946.patch rename to resources/old-patches/noprofilestrip/946.patch diff --git a/old-patches/noprofilestrip/947.patch b/resources/old-patches/noprofilestrip/947.patch similarity index 100% rename from old-patches/noprofilestrip/947.patch rename to resources/old-patches/noprofilestrip/947.patch diff --git a/old-patches/noprofilestrip/948.patch b/resources/old-patches/noprofilestrip/948.patch similarity index 100% rename from old-patches/noprofilestrip/948.patch rename to resources/old-patches/noprofilestrip/948.patch diff --git a/old-patches/noprofilestrip/964.patch b/resources/old-patches/noprofilestrip/964.patch similarity index 100% rename from old-patches/noprofilestrip/964.patch rename to resources/old-patches/noprofilestrip/964.patch diff --git a/old-patches/noprofilestrip/965.patch b/resources/old-patches/noprofilestrip/965.patch similarity index 100% rename from old-patches/noprofilestrip/965.patch rename to resources/old-patches/noprofilestrip/965.patch diff --git a/old-patches/noprofilestrip/966.patch b/resources/old-patches/noprofilestrip/966.patch similarity index 100% rename from old-patches/noprofilestrip/966.patch rename to resources/old-patches/noprofilestrip/966.patch diff --git a/old-patches/noprofilestrip/967.patch b/resources/old-patches/noprofilestrip/967.patch similarity index 100% rename from old-patches/noprofilestrip/967.patch rename to resources/old-patches/noprofilestrip/967.patch diff --git a/old-patches/noprofilestrip/968.patch b/resources/old-patches/noprofilestrip/968.patch similarity index 100% rename from old-patches/noprofilestrip/968.patch rename to resources/old-patches/noprofilestrip/968.patch diff --git a/old-patches/noprofilestrip/970.patch b/resources/old-patches/noprofilestrip/970.patch similarity index 100% rename from old-patches/noprofilestrip/970.patch rename to resources/old-patches/noprofilestrip/970.patch diff --git a/old-patches/noprofilestrip/980.patch b/resources/old-patches/noprofilestrip/980.patch similarity index 100% rename from old-patches/noprofilestrip/980.patch rename to resources/old-patches/noprofilestrip/980.patch diff --git a/old-patches/noprofilestrip/984.patch b/resources/old-patches/noprofilestrip/984.patch similarity index 100% rename from old-patches/noprofilestrip/984.patch rename to resources/old-patches/noprofilestrip/984.patch diff --git a/old-patches/noprofilestrip/986.patch b/resources/old-patches/noprofilestrip/986.patch similarity index 100% rename from old-patches/noprofilestrip/986.patch rename to resources/old-patches/noprofilestrip/986.patch diff --git a/old-patches/noprofilestrip/991.patch b/resources/old-patches/noprofilestrip/991.patch similarity index 100% rename from old-patches/noprofilestrip/991.patch rename to resources/old-patches/noprofilestrip/991.patch diff --git a/old-patches/noprofilestrip/992.patch b/resources/old-patches/noprofilestrip/992.patch similarity index 100% rename from old-patches/noprofilestrip/992.patch rename to resources/old-patches/noprofilestrip/992.patch diff --git a/old-patches/noprofilestrip/993.patch b/resources/old-patches/noprofilestrip/993.patch similarity index 100% rename from old-patches/noprofilestrip/993.patch rename to resources/old-patches/noprofilestrip/993.patch diff --git a/old-patches/noprofilestrip/994.patch b/resources/old-patches/noprofilestrip/994.patch similarity index 100% rename from old-patches/noprofilestrip/994.patch rename to resources/old-patches/noprofilestrip/994.patch diff --git a/old-patches/noprofilestrip/996.patch b/resources/old-patches/noprofilestrip/996.patch similarity index 100% rename from old-patches/noprofilestrip/996.patch rename to resources/old-patches/noprofilestrip/996.patch diff --git a/old-patches/noprofilestrip/README.md b/resources/old-patches/noprofilestrip/README.md similarity index 100% rename from old-patches/noprofilestrip/README.md rename to resources/old-patches/noprofilestrip/README.md diff --git a/old-patches/notyping/836.patch b/resources/old-patches/notyping/836.patch similarity index 100% rename from old-patches/notyping/836.patch rename to resources/old-patches/notyping/836.patch diff --git a/old-patches/notyping/839.patch b/resources/old-patches/notyping/839.patch similarity index 100% rename from old-patches/notyping/839.patch rename to resources/old-patches/notyping/839.patch diff --git a/old-patches/notyping/841.patch b/resources/old-patches/notyping/841.patch similarity index 100% rename from old-patches/notyping/841.patch rename to resources/old-patches/notyping/841.patch diff --git a/old-patches/notyping/842.patch b/resources/old-patches/notyping/842.patch similarity index 100% rename from old-patches/notyping/842.patch rename to resources/old-patches/notyping/842.patch diff --git a/old-patches/notyping/843.patch b/resources/old-patches/notyping/843.patch similarity index 100% rename from old-patches/notyping/843.patch rename to resources/old-patches/notyping/843.patch diff --git a/old-patches/notyping/844.patch b/resources/old-patches/notyping/844.patch similarity index 100% rename from old-patches/notyping/844.patch rename to resources/old-patches/notyping/844.patch diff --git a/old-patches/notyping/845.patch b/resources/old-patches/notyping/845.patch similarity index 100% rename from old-patches/notyping/845.patch rename to resources/old-patches/notyping/845.patch diff --git a/old-patches/notyping/848.patch b/resources/old-patches/notyping/848.patch similarity index 100% rename from old-patches/notyping/848.patch rename to resources/old-patches/notyping/848.patch diff --git a/old-patches/notyping/850.patch b/resources/old-patches/notyping/850.patch similarity index 100% rename from old-patches/notyping/850.patch rename to resources/old-patches/notyping/850.patch diff --git a/old-patches/notyping/851.patch b/resources/old-patches/notyping/851.patch similarity index 100% rename from old-patches/notyping/851.patch rename to resources/old-patches/notyping/851.patch diff --git a/old-patches/notyping/853.patch b/resources/old-patches/notyping/853.patch similarity index 100% rename from old-patches/notyping/853.patch rename to resources/old-patches/notyping/853.patch diff --git a/old-patches/notyping/854.patch b/resources/old-patches/notyping/854.patch similarity index 100% rename from old-patches/notyping/854.patch rename to resources/old-patches/notyping/854.patch diff --git a/old-patches/notyping/855.patch b/resources/old-patches/notyping/855.patch similarity index 100% rename from old-patches/notyping/855.patch rename to resources/old-patches/notyping/855.patch diff --git a/old-patches/notyping/856.patch b/resources/old-patches/notyping/856.patch similarity index 100% rename from old-patches/notyping/856.patch rename to resources/old-patches/notyping/856.patch diff --git a/old-patches/notyping/876.patch b/resources/old-patches/notyping/876.patch similarity index 100% rename from old-patches/notyping/876.patch rename to resources/old-patches/notyping/876.patch diff --git a/old-patches/notyping/884.patch b/resources/old-patches/notyping/884.patch similarity index 100% rename from old-patches/notyping/884.patch rename to resources/old-patches/notyping/884.patch diff --git a/old-patches/notyping/888.patch b/resources/old-patches/notyping/888.patch similarity index 100% rename from old-patches/notyping/888.patch rename to resources/old-patches/notyping/888.patch diff --git a/old-patches/notyping/896.patch b/resources/old-patches/notyping/896.patch similarity index 100% rename from old-patches/notyping/896.patch rename to resources/old-patches/notyping/896.patch diff --git a/old-patches/notyping/897.patch b/resources/old-patches/notyping/897.patch similarity index 100% rename from old-patches/notyping/897.patch rename to resources/old-patches/notyping/897.patch diff --git a/old-patches/notyping/898.patch b/resources/old-patches/notyping/898.patch similarity index 100% rename from old-patches/notyping/898.patch rename to resources/old-patches/notyping/898.patch diff --git a/old-patches/notyping/899.patch b/resources/old-patches/notyping/899.patch similarity index 100% rename from old-patches/notyping/899.patch rename to resources/old-patches/notyping/899.patch diff --git a/old-patches/notyping/900.patch b/resources/old-patches/notyping/900.patch similarity index 100% rename from old-patches/notyping/900.patch rename to resources/old-patches/notyping/900.patch diff --git a/old-patches/notyping/901.patch b/resources/old-patches/notyping/901.patch similarity index 100% rename from old-patches/notyping/901.patch rename to resources/old-patches/notyping/901.patch diff --git a/old-patches/notyping/902.patch b/resources/old-patches/notyping/902.patch similarity index 100% rename from old-patches/notyping/902.patch rename to resources/old-patches/notyping/902.patch diff --git a/old-patches/notyping/903.patch b/resources/old-patches/notyping/903.patch similarity index 100% rename from old-patches/notyping/903.patch rename to resources/old-patches/notyping/903.patch diff --git a/old-patches/notyping/README.md b/resources/old-patches/notyping/README.md similarity index 100% rename from old-patches/notyping/README.md rename to resources/old-patches/notyping/README.md diff --git a/old-patches/pureevil/832.patch b/resources/old-patches/pureevil/832.patch similarity index 100% rename from old-patches/pureevil/832.patch rename to resources/old-patches/pureevil/832.patch diff --git a/old-patches/pureevil/833.patch b/resources/old-patches/pureevil/833.patch similarity index 100% rename from old-patches/pureevil/833.patch rename to resources/old-patches/pureevil/833.patch diff --git a/old-patches/pureevil/834.patch b/resources/old-patches/pureevil/834.patch similarity index 100% rename from old-patches/pureevil/834.patch rename to resources/old-patches/pureevil/834.patch diff --git a/old-patches/pureevil/835.patch b/resources/old-patches/pureevil/835.patch similarity index 100% rename from old-patches/pureevil/835.patch rename to resources/old-patches/pureevil/835.patch diff --git a/old-patches/pureevil/836.patch b/resources/old-patches/pureevil/836.patch similarity index 100% rename from old-patches/pureevil/836.patch rename to resources/old-patches/pureevil/836.patch diff --git a/old-patches/pureevil/839.patch b/resources/old-patches/pureevil/839.patch similarity index 100% rename from old-patches/pureevil/839.patch rename to resources/old-patches/pureevil/839.patch diff --git a/old-patches/pureevil/841.patch b/resources/old-patches/pureevil/841.patch similarity index 100% rename from old-patches/pureevil/841.patch rename to resources/old-patches/pureevil/841.patch diff --git a/old-patches/pureevil/842.patch b/resources/old-patches/pureevil/842.patch similarity index 100% rename from old-patches/pureevil/842.patch rename to resources/old-patches/pureevil/842.patch diff --git a/old-patches/pureevil/843.patch b/resources/old-patches/pureevil/843.patch similarity index 100% rename from old-patches/pureevil/843.patch rename to resources/old-patches/pureevil/843.patch diff --git a/old-patches/pureevil/844.patch b/resources/old-patches/pureevil/844.patch similarity index 100% rename from old-patches/pureevil/844.patch rename to resources/old-patches/pureevil/844.patch diff --git a/old-patches/pureevil/845.patch b/resources/old-patches/pureevil/845.patch similarity index 100% rename from old-patches/pureevil/845.patch rename to resources/old-patches/pureevil/845.patch diff --git a/old-patches/pureevil/848.patch b/resources/old-patches/pureevil/848.patch similarity index 100% rename from old-patches/pureevil/848.patch rename to resources/old-patches/pureevil/848.patch diff --git a/old-patches/pureevil/850.patch b/resources/old-patches/pureevil/850.patch similarity index 100% rename from old-patches/pureevil/850.patch rename to resources/old-patches/pureevil/850.patch diff --git a/old-patches/pureevil/851.patch b/resources/old-patches/pureevil/851.patch similarity index 100% rename from old-patches/pureevil/851.patch rename to resources/old-patches/pureevil/851.patch diff --git a/old-patches/pureevil/853.patch b/resources/old-patches/pureevil/853.patch similarity index 100% rename from old-patches/pureevil/853.patch rename to resources/old-patches/pureevil/853.patch diff --git a/old-patches/pureevil/854.patch b/resources/old-patches/pureevil/854.patch similarity index 100% rename from old-patches/pureevil/854.patch rename to resources/old-patches/pureevil/854.patch diff --git a/old-patches/pureevil/855.patch b/resources/old-patches/pureevil/855.patch similarity index 100% rename from old-patches/pureevil/855.patch rename to resources/old-patches/pureevil/855.patch diff --git a/old-patches/pureevil/856.patch b/resources/old-patches/pureevil/856.patch similarity index 100% rename from old-patches/pureevil/856.patch rename to resources/old-patches/pureevil/856.patch diff --git a/old-patches/pureevil/876.patch b/resources/old-patches/pureevil/876.patch similarity index 100% rename from old-patches/pureevil/876.patch rename to resources/old-patches/pureevil/876.patch diff --git a/old-patches/pureevil/884.patch b/resources/old-patches/pureevil/884.patch similarity index 100% rename from old-patches/pureevil/884.patch rename to resources/old-patches/pureevil/884.patch diff --git a/old-patches/pureevil/888.patch b/resources/old-patches/pureevil/888.patch similarity index 100% rename from old-patches/pureevil/888.patch rename to resources/old-patches/pureevil/888.patch diff --git a/old-patches/pureevil/896.patch b/resources/old-patches/pureevil/896.patch similarity index 100% rename from old-patches/pureevil/896.patch rename to resources/old-patches/pureevil/896.patch diff --git a/old-patches/pureevil/897.patch b/resources/old-patches/pureevil/897.patch similarity index 100% rename from old-patches/pureevil/897.patch rename to resources/old-patches/pureevil/897.patch diff --git a/old-patches/pureevil/898.patch b/resources/old-patches/pureevil/898.patch similarity index 100% rename from old-patches/pureevil/898.patch rename to resources/old-patches/pureevil/898.patch diff --git a/old-patches/pureevil/899.patch b/resources/old-patches/pureevil/899.patch similarity index 100% rename from old-patches/pureevil/899.patch rename to resources/old-patches/pureevil/899.patch diff --git a/old-patches/pureevil/900.patch b/resources/old-patches/pureevil/900.patch similarity index 100% rename from old-patches/pureevil/900.patch rename to resources/old-patches/pureevil/900.patch diff --git a/old-patches/pureevil/901.patch b/resources/old-patches/pureevil/901.patch similarity index 100% rename from old-patches/pureevil/901.patch rename to resources/old-patches/pureevil/901.patch diff --git a/old-patches/pureevil/902.patch b/resources/old-patches/pureevil/902.patch similarity index 100% rename from old-patches/pureevil/902.patch rename to resources/old-patches/pureevil/902.patch diff --git a/old-patches/pureevil/903.patch b/resources/old-patches/pureevil/903.patch similarity index 100% rename from old-patches/pureevil/903.patch rename to resources/old-patches/pureevil/903.patch diff --git a/old-patches/pureevil/904.patch b/resources/old-patches/pureevil/904.patch similarity index 100% rename from old-patches/pureevil/904.patch rename to resources/old-patches/pureevil/904.patch diff --git a/old-patches/pureevil/906.patch b/resources/old-patches/pureevil/906.patch similarity index 100% rename from old-patches/pureevil/906.patch rename to resources/old-patches/pureevil/906.patch diff --git a/old-patches/pureevil/909.patch b/resources/old-patches/pureevil/909.patch similarity index 100% rename from old-patches/pureevil/909.patch rename to resources/old-patches/pureevil/909.patch diff --git a/old-patches/pureevil/910.patch b/resources/old-patches/pureevil/910.patch similarity index 100% rename from old-patches/pureevil/910.patch rename to resources/old-patches/pureevil/910.patch diff --git a/old-patches/pureevil/938.patch b/resources/old-patches/pureevil/938.patch similarity index 100% rename from old-patches/pureevil/938.patch rename to resources/old-patches/pureevil/938.patch diff --git a/old-patches/pureevil/939.patch b/resources/old-patches/pureevil/939.patch similarity index 100% rename from old-patches/pureevil/939.patch rename to resources/old-patches/pureevil/939.patch diff --git a/old-patches/pureevil/940.patch b/resources/old-patches/pureevil/940.patch similarity index 100% rename from old-patches/pureevil/940.patch rename to resources/old-patches/pureevil/940.patch diff --git a/old-patches/pureevil/942.patch b/resources/old-patches/pureevil/942.patch similarity index 100% rename from old-patches/pureevil/942.patch rename to resources/old-patches/pureevil/942.patch diff --git a/old-patches/pureevil/943.patch b/resources/old-patches/pureevil/943.patch similarity index 100% rename from old-patches/pureevil/943.patch rename to resources/old-patches/pureevil/943.patch diff --git a/old-patches/pureevil/945.patch b/resources/old-patches/pureevil/945.patch similarity index 100% rename from old-patches/pureevil/945.patch rename to resources/old-patches/pureevil/945.patch diff --git a/old-patches/pureevil/946.patch b/resources/old-patches/pureevil/946.patch similarity index 100% rename from old-patches/pureevil/946.patch rename to resources/old-patches/pureevil/946.patch diff --git a/old-patches/pureevil/947.patch b/resources/old-patches/pureevil/947.patch similarity index 100% rename from old-patches/pureevil/947.patch rename to resources/old-patches/pureevil/947.patch diff --git a/old-patches/pureevil/948.patch b/resources/old-patches/pureevil/948.patch similarity index 100% rename from old-patches/pureevil/948.patch rename to resources/old-patches/pureevil/948.patch diff --git a/old-patches/pureevil/963.patch b/resources/old-patches/pureevil/963.patch similarity index 100% rename from old-patches/pureevil/963.patch rename to resources/old-patches/pureevil/963.patch diff --git a/old-patches/pureevil/964.patch b/resources/old-patches/pureevil/964.patch similarity index 100% rename from old-patches/pureevil/964.patch rename to resources/old-patches/pureevil/964.patch diff --git a/old-patches/pureevil/965.patch b/resources/old-patches/pureevil/965.patch similarity index 100% rename from old-patches/pureevil/965.patch rename to resources/old-patches/pureevil/965.patch diff --git a/old-patches/pureevil/966.patch b/resources/old-patches/pureevil/966.patch similarity index 100% rename from old-patches/pureevil/966.patch rename to resources/old-patches/pureevil/966.patch diff --git a/old-patches/pureevil/967.patch b/resources/old-patches/pureevil/967.patch similarity index 100% rename from old-patches/pureevil/967.patch rename to resources/old-patches/pureevil/967.patch diff --git a/old-patches/pureevil/968.patch b/resources/old-patches/pureevil/968.patch similarity index 100% rename from old-patches/pureevil/968.patch rename to resources/old-patches/pureevil/968.patch diff --git a/old-patches/pureevil/970.patch b/resources/old-patches/pureevil/970.patch similarity index 100% rename from old-patches/pureevil/970.patch rename to resources/old-patches/pureevil/970.patch diff --git a/old-patches/pureevil/980.patch b/resources/old-patches/pureevil/980.patch similarity index 100% rename from old-patches/pureevil/980.patch rename to resources/old-patches/pureevil/980.patch diff --git a/old-patches/pureevil/984.patch-failed b/resources/old-patches/pureevil/984.patch-failed similarity index 100% rename from old-patches/pureevil/984.patch-failed rename to resources/old-patches/pureevil/984.patch-failed diff --git a/old-patches/pureevil/README.md b/resources/old-patches/pureevil/README.md similarity index 100% rename from old-patches/pureevil/README.md rename to resources/old-patches/pureevil/README.md diff --git a/patches/slashcommands/1006.patch b/resources/old-patches/slashcommands/1006.patch similarity index 100% rename from patches/slashcommands/1006.patch rename to resources/old-patches/slashcommands/1006.patch diff --git a/patches/slashcommands/1007.patch b/resources/old-patches/slashcommands/1007.patch similarity index 100% rename from patches/slashcommands/1007.patch rename to resources/old-patches/slashcommands/1007.patch diff --git a/patches/slashcommands/1011.patch b/resources/old-patches/slashcommands/1011.patch similarity index 100% rename from patches/slashcommands/1011.patch rename to resources/old-patches/slashcommands/1011.patch diff --git a/patches/slashcommands/1012.patch b/resources/old-patches/slashcommands/1012.patch similarity index 100% rename from patches/slashcommands/1012.patch rename to resources/old-patches/slashcommands/1012.patch diff --git a/patches/slashcommands/1013.patch b/resources/old-patches/slashcommands/1013.patch similarity index 100% rename from patches/slashcommands/1013.patch rename to resources/old-patches/slashcommands/1013.patch diff --git a/patches/slashcommands/1015.patch b/resources/old-patches/slashcommands/1015.patch similarity index 100% rename from patches/slashcommands/1015.patch rename to resources/old-patches/slashcommands/1015.patch diff --git a/patches/slashcommands/1016.patch b/resources/old-patches/slashcommands/1016.patch similarity index 100% rename from patches/slashcommands/1016.patch rename to resources/old-patches/slashcommands/1016.patch diff --git a/patches/slashcommands/1019.patch b/resources/old-patches/slashcommands/1019.patch similarity index 100% rename from patches/slashcommands/1019.patch rename to resources/old-patches/slashcommands/1019.patch diff --git a/patches/slashcommands/1020.patch b/resources/old-patches/slashcommands/1020.patch similarity index 100% rename from patches/slashcommands/1020.patch rename to resources/old-patches/slashcommands/1020.patch diff --git a/patches/slashcommands/1021.patch b/resources/old-patches/slashcommands/1021.patch similarity index 100% rename from patches/slashcommands/1021.patch rename to resources/old-patches/slashcommands/1021.patch diff --git a/patches/slashcommands/1022.patch b/resources/old-patches/slashcommands/1022.patch similarity index 100% rename from patches/slashcommands/1022.patch rename to resources/old-patches/slashcommands/1022.patch diff --git a/patches/slashcommands/1023.patch b/resources/old-patches/slashcommands/1023.patch similarity index 100% rename from patches/slashcommands/1023.patch rename to resources/old-patches/slashcommands/1023.patch diff --git a/patches/slashcommands/1024.patch b/resources/old-patches/slashcommands/1024.patch similarity index 100% rename from patches/slashcommands/1024.patch rename to resources/old-patches/slashcommands/1024.patch diff --git a/patches/slashcommands/1025.patch b/resources/old-patches/slashcommands/1025.patch similarity index 100% rename from patches/slashcommands/1025.patch rename to resources/old-patches/slashcommands/1025.patch diff --git a/patches/slashcommands/1026.patch b/resources/old-patches/slashcommands/1026.patch similarity index 100% rename from patches/slashcommands/1026.patch rename to resources/old-patches/slashcommands/1026.patch diff --git a/patches/slashcommands/1029.patch b/resources/old-patches/slashcommands/1029.patch similarity index 100% rename from patches/slashcommands/1029.patch rename to resources/old-patches/slashcommands/1029.patch diff --git a/patches/slashcommands/1031.patch b/resources/old-patches/slashcommands/1031.patch similarity index 100% rename from patches/slashcommands/1031.patch rename to resources/old-patches/slashcommands/1031.patch diff --git a/patches/slashcommands/1032.patch b/resources/old-patches/slashcommands/1032.patch similarity index 100% rename from patches/slashcommands/1032.patch rename to resources/old-patches/slashcommands/1032.patch diff --git a/patches/slashcommands/1033.patch b/resources/old-patches/slashcommands/1033.patch similarity index 100% rename from patches/slashcommands/1033.patch rename to resources/old-patches/slashcommands/1033.patch diff --git a/patches/slashcommands/1036.patch b/resources/old-patches/slashcommands/1036.patch similarity index 100% rename from patches/slashcommands/1036.patch rename to resources/old-patches/slashcommands/1036.patch diff --git a/patches/slashcommands/1037.patch b/resources/old-patches/slashcommands/1037.patch similarity index 100% rename from patches/slashcommands/1037.patch rename to resources/old-patches/slashcommands/1037.patch diff --git a/patches/slashcommands/1040.patch b/resources/old-patches/slashcommands/1040.patch similarity index 100% rename from patches/slashcommands/1040.patch rename to resources/old-patches/slashcommands/1040.patch diff --git a/patches/slashcommands/1041.patch b/resources/old-patches/slashcommands/1041.patch similarity index 100% rename from patches/slashcommands/1041.patch rename to resources/old-patches/slashcommands/1041.patch diff --git a/patches/slashcommands/1045.patch b/resources/old-patches/slashcommands/1045.patch similarity index 100% rename from patches/slashcommands/1045.patch rename to resources/old-patches/slashcommands/1045.patch diff --git a/patches/slashcommands/1046.patch b/resources/old-patches/slashcommands/1046.patch similarity index 100% rename from patches/slashcommands/1046.patch rename to resources/old-patches/slashcommands/1046.patch diff --git a/patches/slashcommands/1047.patch b/resources/old-patches/slashcommands/1047.patch similarity index 100% rename from patches/slashcommands/1047.patch rename to resources/old-patches/slashcommands/1047.patch diff --git a/patches/slashcommands/1049.patch b/resources/old-patches/slashcommands/1049.patch similarity index 100% rename from patches/slashcommands/1049.patch rename to resources/old-patches/slashcommands/1049.patch diff --git a/patches/slashcommands/1052.patch b/resources/old-patches/slashcommands/1052.patch similarity index 100% rename from patches/slashcommands/1052.patch rename to resources/old-patches/slashcommands/1052.patch diff --git a/patches/slashcommands/1053.patch b/resources/old-patches/slashcommands/1053.patch similarity index 100% rename from patches/slashcommands/1053.patch rename to resources/old-patches/slashcommands/1053.patch diff --git a/patches/slashcommands/1054.patch b/resources/old-patches/slashcommands/1054.patch similarity index 100% rename from patches/slashcommands/1054.patch rename to resources/old-patches/slashcommands/1054.patch diff --git a/patches/slashcommands/1056.patch b/resources/old-patches/slashcommands/1056.patch similarity index 100% rename from patches/slashcommands/1056.patch rename to resources/old-patches/slashcommands/1056.patch diff --git a/patches/slashcommands/1057.patch b/resources/old-patches/slashcommands/1057.patch similarity index 100% rename from patches/slashcommands/1057.patch rename to resources/old-patches/slashcommands/1057.patch diff --git a/patches/slashcommands/1062.patch b/resources/old-patches/slashcommands/1062.patch similarity index 100% rename from patches/slashcommands/1062.patch rename to resources/old-patches/slashcommands/1062.patch diff --git a/patches/slashcommands/1065.patch b/resources/old-patches/slashcommands/1065.patch similarity index 100% rename from patches/slashcommands/1065.patch rename to resources/old-patches/slashcommands/1065.patch diff --git a/patches/slashcommands/1066.patch b/resources/old-patches/slashcommands/1066.patch similarity index 100% rename from patches/slashcommands/1066.patch rename to resources/old-patches/slashcommands/1066.patch diff --git a/patches/slashcommands/1069.patch b/resources/old-patches/slashcommands/1069.patch similarity index 100% rename from patches/slashcommands/1069.patch rename to resources/old-patches/slashcommands/1069.patch diff --git a/patches/slashcommands/1073.patch b/resources/old-patches/slashcommands/1073.patch similarity index 100% rename from patches/slashcommands/1073.patch rename to resources/old-patches/slashcommands/1073.patch diff --git a/patches/slashcommands/1074.patch b/resources/old-patches/slashcommands/1074.patch similarity index 100% rename from patches/slashcommands/1074.patch rename to resources/old-patches/slashcommands/1074.patch diff --git a/patches/slashcommands/1078.patch b/resources/old-patches/slashcommands/1078.patch similarity index 100% rename from patches/slashcommands/1078.patch rename to resources/old-patches/slashcommands/1078.patch diff --git a/patches/slashcommands/1084.patch b/resources/old-patches/slashcommands/1084.patch similarity index 100% rename from patches/slashcommands/1084.patch rename to resources/old-patches/slashcommands/1084.patch diff --git a/patches/slashcommands/1085.patch b/resources/old-patches/slashcommands/1085.patch similarity index 100% rename from patches/slashcommands/1085.patch rename to resources/old-patches/slashcommands/1085.patch diff --git a/patches/slashcommands/1087.patch b/resources/old-patches/slashcommands/1087.patch similarity index 100% rename from patches/slashcommands/1087.patch rename to resources/old-patches/slashcommands/1087.patch diff --git a/patches/slashcommands/1091.patch b/resources/old-patches/slashcommands/1091.patch similarity index 100% rename from patches/slashcommands/1091.patch rename to resources/old-patches/slashcommands/1091.patch diff --git a/patches/slashcommands/1092.patch b/resources/old-patches/slashcommands/1092.patch similarity index 100% rename from patches/slashcommands/1092.patch rename to resources/old-patches/slashcommands/1092.patch diff --git a/patches/slashcommands/1100.patch b/resources/old-patches/slashcommands/1100.patch similarity index 100% rename from patches/slashcommands/1100.patch rename to resources/old-patches/slashcommands/1100.patch diff --git a/patches/slashcommands/1103.patch b/resources/old-patches/slashcommands/1103.patch similarity index 100% rename from patches/slashcommands/1103.patch rename to resources/old-patches/slashcommands/1103.patch diff --git a/patches/slashcommands/1104.patch b/resources/old-patches/slashcommands/1104.patch similarity index 100% rename from patches/slashcommands/1104.patch rename to resources/old-patches/slashcommands/1104.patch diff --git a/patches/slashcommands/1105.patch b/resources/old-patches/slashcommands/1105.patch similarity index 100% rename from patches/slashcommands/1105.patch rename to resources/old-patches/slashcommands/1105.patch diff --git a/patches/slashcommands/1107.patch b/resources/old-patches/slashcommands/1107.patch similarity index 100% rename from patches/slashcommands/1107.patch rename to resources/old-patches/slashcommands/1107.patch diff --git a/patches/slashcommands/1123.patch b/resources/old-patches/slashcommands/1123.patch similarity index 100% rename from patches/slashcommands/1123.patch rename to resources/old-patches/slashcommands/1123.patch diff --git a/patches/slashcommands/1132.patch b/resources/old-patches/slashcommands/1132.patch similarity index 100% rename from patches/slashcommands/1132.patch rename to resources/old-patches/slashcommands/1132.patch diff --git a/patches/slashcommands/1134.patch b/resources/old-patches/slashcommands/1134.patch similarity index 100% rename from patches/slashcommands/1134.patch rename to resources/old-patches/slashcommands/1134.patch diff --git a/patches/slashcommands/1144.patch b/resources/old-patches/slashcommands/1144.patch similarity index 100% rename from patches/slashcommands/1144.patch rename to resources/old-patches/slashcommands/1144.patch diff --git a/patches/slashcommands/1145.patch b/resources/old-patches/slashcommands/1145.patch similarity index 100% rename from patches/slashcommands/1145.patch rename to resources/old-patches/slashcommands/1145.patch diff --git a/patches/slashcommands/1146.patch b/resources/old-patches/slashcommands/1146.patch similarity index 100% rename from patches/slashcommands/1146.patch rename to resources/old-patches/slashcommands/1146.patch diff --git a/patches/slashcommands/1148.patch b/resources/old-patches/slashcommands/1148.patch similarity index 100% rename from patches/slashcommands/1148.patch rename to resources/old-patches/slashcommands/1148.patch diff --git a/patches/slashcommands/1150.patch b/resources/old-patches/slashcommands/1150.patch similarity index 100% rename from patches/slashcommands/1150.patch rename to resources/old-patches/slashcommands/1150.patch diff --git a/patches/slashcommands/1167.patch b/resources/old-patches/slashcommands/1167.patch similarity index 100% rename from patches/slashcommands/1167.patch rename to resources/old-patches/slashcommands/1167.patch diff --git a/patches/slashcommands/1169.patch b/resources/old-patches/slashcommands/1169.patch similarity index 100% rename from patches/slashcommands/1169.patch rename to resources/old-patches/slashcommands/1169.patch diff --git a/patches/slashcommands/1171.patch b/resources/old-patches/slashcommands/1171.patch similarity index 100% rename from patches/slashcommands/1171.patch rename to resources/old-patches/slashcommands/1171.patch diff --git a/patches/slashcommands/1180.patch b/resources/old-patches/slashcommands/1180.patch similarity index 100% rename from patches/slashcommands/1180.patch rename to resources/old-patches/slashcommands/1180.patch diff --git a/patches/slashcommands/1181.patch b/resources/old-patches/slashcommands/1181.patch similarity index 100% rename from patches/slashcommands/1181.patch rename to resources/old-patches/slashcommands/1181.patch diff --git a/patches/slashcommands/1192.patch b/resources/old-patches/slashcommands/1192.patch similarity index 100% rename from patches/slashcommands/1192.patch rename to resources/old-patches/slashcommands/1192.patch diff --git a/patches/slashcommands/1196.patch b/resources/old-patches/slashcommands/1196.patch similarity index 100% rename from patches/slashcommands/1196.patch rename to resources/old-patches/slashcommands/1196.patch diff --git a/patches/slashcommands/1200.patch b/resources/old-patches/slashcommands/1200.patch similarity index 100% rename from patches/slashcommands/1200.patch rename to resources/old-patches/slashcommands/1200.patch diff --git a/patches/slashcommands/1201.patch b/resources/old-patches/slashcommands/1201.patch similarity index 100% rename from patches/slashcommands/1201.patch rename to resources/old-patches/slashcommands/1201.patch diff --git a/patches/slashcommands/1208.patch b/resources/old-patches/slashcommands/1208.patch similarity index 100% rename from patches/slashcommands/1208.patch rename to resources/old-patches/slashcommands/1208.patch diff --git a/patches/slashcommands/1213.patch b/resources/old-patches/slashcommands/1213.patch similarity index 100% rename from patches/slashcommands/1213.patch rename to resources/old-patches/slashcommands/1213.patch diff --git a/patches/slashcommands/1216.patch b/resources/old-patches/slashcommands/1216.patch similarity index 100% rename from patches/slashcommands/1216.patch rename to resources/old-patches/slashcommands/1216.patch diff --git a/patches/slashcommands/1218.patch b/resources/old-patches/slashcommands/1218.patch similarity index 100% rename from patches/slashcommands/1218.patch rename to resources/old-patches/slashcommands/1218.patch diff --git a/patches/slashcommands/1223.patch b/resources/old-patches/slashcommands/1223.patch similarity index 100% rename from patches/slashcommands/1223.patch rename to resources/old-patches/slashcommands/1223.patch diff --git a/patches/slashcommands/1243.patch b/resources/old-patches/slashcommands/1243.patch similarity index 100% rename from patches/slashcommands/1243.patch rename to resources/old-patches/slashcommands/1243.patch diff --git a/patches/slashcommands/1246.patch b/resources/old-patches/slashcommands/1246.patch similarity index 100% rename from patches/slashcommands/1246.patch rename to resources/old-patches/slashcommands/1246.patch diff --git a/patches/slashcommands/1249.patch b/resources/old-patches/slashcommands/1249.patch similarity index 100% rename from patches/slashcommands/1249.patch rename to resources/old-patches/slashcommands/1249.patch diff --git a/patches/slashcommands/1251.patch b/resources/old-patches/slashcommands/1251.patch similarity index 100% rename from patches/slashcommands/1251.patch rename to resources/old-patches/slashcommands/1251.patch diff --git a/patches/slashcommands/1252.patch b/resources/old-patches/slashcommands/1252.patch similarity index 100% rename from patches/slashcommands/1252.patch rename to resources/old-patches/slashcommands/1252.patch diff --git a/patches/slashcommands/1259.patch b/resources/old-patches/slashcommands/1259.patch similarity index 100% rename from patches/slashcommands/1259.patch rename to resources/old-patches/slashcommands/1259.patch diff --git a/patches/slashcommands/1266.patch b/resources/old-patches/slashcommands/1266.patch similarity index 100% rename from patches/slashcommands/1266.patch rename to resources/old-patches/slashcommands/1266.patch diff --git a/patches/slashcommands/1270.patch b/resources/old-patches/slashcommands/1270.patch similarity index 100% rename from patches/slashcommands/1270.patch rename to resources/old-patches/slashcommands/1270.patch diff --git a/patches/slashcommands/1273.patch b/resources/old-patches/slashcommands/1273.patch similarity index 100% rename from patches/slashcommands/1273.patch rename to resources/old-patches/slashcommands/1273.patch diff --git a/patches/slashcommands/1279.patch b/resources/old-patches/slashcommands/1279.patch similarity index 100% rename from patches/slashcommands/1279.patch rename to resources/old-patches/slashcommands/1279.patch diff --git a/patches/slashcommands/1280.patch b/resources/old-patches/slashcommands/1280.patch similarity index 100% rename from patches/slashcommands/1280.patch rename to resources/old-patches/slashcommands/1280.patch diff --git a/patches/slashcommands/1281.patch b/resources/old-patches/slashcommands/1281.patch similarity index 100% rename from patches/slashcommands/1281.patch rename to resources/old-patches/slashcommands/1281.patch diff --git a/patches/slashcommands/1282.patch b/resources/old-patches/slashcommands/1282.patch similarity index 100% rename from patches/slashcommands/1282.patch rename to resources/old-patches/slashcommands/1282.patch diff --git a/patches/slashcommands/1284.patch b/resources/old-patches/slashcommands/1284.patch similarity index 100% rename from patches/slashcommands/1284.patch rename to resources/old-patches/slashcommands/1284.patch diff --git a/patches/slashcommands/1290.patch b/resources/old-patches/slashcommands/1290.patch similarity index 100% rename from patches/slashcommands/1290.patch rename to resources/old-patches/slashcommands/1290.patch diff --git a/patches/slashcommands/1294.patch b/resources/old-patches/slashcommands/1294.patch similarity index 100% rename from patches/slashcommands/1294.patch rename to resources/old-patches/slashcommands/1294.patch diff --git a/patches/slashcommands/1295.patch b/resources/old-patches/slashcommands/1295.patch similarity index 100% rename from patches/slashcommands/1295.patch rename to resources/old-patches/slashcommands/1295.patch diff --git a/patches/slashcommands/1298.patch b/resources/old-patches/slashcommands/1298.patch similarity index 100% rename from patches/slashcommands/1298.patch rename to resources/old-patches/slashcommands/1298.patch diff --git a/patches/slashcommands/1300.patch b/resources/old-patches/slashcommands/1300.patch similarity index 100% rename from patches/slashcommands/1300.patch rename to resources/old-patches/slashcommands/1300.patch diff --git a/patches/slashcommands/1301.patch b/resources/old-patches/slashcommands/1301.patch similarity index 100% rename from patches/slashcommands/1301.patch rename to resources/old-patches/slashcommands/1301.patch diff --git a/patches/slashcommands/1304.patch b/resources/old-patches/slashcommands/1304.patch similarity index 100% rename from patches/slashcommands/1304.patch rename to resources/old-patches/slashcommands/1304.patch diff --git a/patches/slashcommands/1306.patch b/resources/old-patches/slashcommands/1306.patch similarity index 100% rename from patches/slashcommands/1306.patch rename to resources/old-patches/slashcommands/1306.patch diff --git a/patches/slashcommands/1307.patch b/resources/old-patches/slashcommands/1307.patch similarity index 100% rename from patches/slashcommands/1307.patch rename to resources/old-patches/slashcommands/1307.patch diff --git a/patches/slashcommands/1310.patch b/resources/old-patches/slashcommands/1310.patch similarity index 100% rename from patches/slashcommands/1310.patch rename to resources/old-patches/slashcommands/1310.patch diff --git a/patches/slashcommands/1315.patch b/resources/old-patches/slashcommands/1315.patch similarity index 100% rename from patches/slashcommands/1315.patch rename to resources/old-patches/slashcommands/1315.patch diff --git a/patches/slashcommands/1318.patch b/resources/old-patches/slashcommands/1318.patch similarity index 100% rename from patches/slashcommands/1318.patch rename to resources/old-patches/slashcommands/1318.patch diff --git a/patches/slashcommands/1330.patch b/resources/old-patches/slashcommands/1330.patch similarity index 100% rename from patches/slashcommands/1330.patch rename to resources/old-patches/slashcommands/1330.patch diff --git a/patches/slashcommands/1334.patch b/resources/old-patches/slashcommands/1334.patch similarity index 100% rename from patches/slashcommands/1334.patch rename to resources/old-patches/slashcommands/1334.patch diff --git a/patches/slashcommands/1339.patch b/resources/old-patches/slashcommands/1339.patch similarity index 100% rename from patches/slashcommands/1339.patch rename to resources/old-patches/slashcommands/1339.patch diff --git a/patches/slashcommands/1340.patch b/resources/old-patches/slashcommands/1340.patch similarity index 100% rename from patches/slashcommands/1340.patch rename to resources/old-patches/slashcommands/1340.patch diff --git a/patches/slashcommands/1355.patch b/resources/old-patches/slashcommands/1355.patch similarity index 100% rename from patches/slashcommands/1355.patch rename to resources/old-patches/slashcommands/1355.patch diff --git a/patches/slashcommands/1356.patch b/resources/old-patches/slashcommands/1356.patch similarity index 100% rename from patches/slashcommands/1356.patch rename to resources/old-patches/slashcommands/1356.patch diff --git a/patches/slashcommands/1358.patch b/resources/old-patches/slashcommands/1358.patch similarity index 100% rename from patches/slashcommands/1358.patch rename to resources/old-patches/slashcommands/1358.patch diff --git a/patches/slashcommands/1361.patch b/resources/old-patches/slashcommands/1361.patch similarity index 100% rename from patches/slashcommands/1361.patch rename to resources/old-patches/slashcommands/1361.patch diff --git a/patches/slashcommands/1362.patch b/resources/old-patches/slashcommands/1362.patch similarity index 100% rename from patches/slashcommands/1362.patch rename to resources/old-patches/slashcommands/1362.patch diff --git a/patches/slashcommands/1365.patch b/resources/old-patches/slashcommands/1365.patch similarity index 100% rename from patches/slashcommands/1365.patch rename to resources/old-patches/slashcommands/1365.patch diff --git a/patches/slashcommands/1367.patch b/resources/old-patches/slashcommands/1367.patch similarity index 100% rename from patches/slashcommands/1367.patch rename to resources/old-patches/slashcommands/1367.patch diff --git a/patches/slashcommands/1368.patch b/resources/old-patches/slashcommands/1368.patch similarity index 100% rename from patches/slashcommands/1368.patch rename to resources/old-patches/slashcommands/1368.patch diff --git a/patches/slashcommands/1370.patch b/resources/old-patches/slashcommands/1370.patch similarity index 100% rename from patches/slashcommands/1370.patch rename to resources/old-patches/slashcommands/1370.patch diff --git a/patches/slashcommands/1371.patch b/resources/old-patches/slashcommands/1371.patch similarity index 100% rename from patches/slashcommands/1371.patch rename to resources/old-patches/slashcommands/1371.patch diff --git a/patches/slashcommands/900.patch b/resources/old-patches/slashcommands/900.patch similarity index 100% rename from patches/slashcommands/900.patch rename to resources/old-patches/slashcommands/900.patch diff --git a/patches/slashcommands/901.patch b/resources/old-patches/slashcommands/901.patch similarity index 100% rename from patches/slashcommands/901.patch rename to resources/old-patches/slashcommands/901.patch diff --git a/patches/slashcommands/902.patch b/resources/old-patches/slashcommands/902.patch similarity index 100% rename from patches/slashcommands/902.patch rename to resources/old-patches/slashcommands/902.patch diff --git a/patches/slashcommands/903.patch b/resources/old-patches/slashcommands/903.patch similarity index 100% rename from patches/slashcommands/903.patch rename to resources/old-patches/slashcommands/903.patch diff --git a/patches/slashcommands/904.patch b/resources/old-patches/slashcommands/904.patch similarity index 100% rename from patches/slashcommands/904.patch rename to resources/old-patches/slashcommands/904.patch diff --git a/patches/slashcommands/906.patch b/resources/old-patches/slashcommands/906.patch similarity index 100% rename from patches/slashcommands/906.patch rename to resources/old-patches/slashcommands/906.patch diff --git a/patches/slashcommands/909.patch b/resources/old-patches/slashcommands/909.patch similarity index 100% rename from patches/slashcommands/909.patch rename to resources/old-patches/slashcommands/909.patch diff --git a/patches/slashcommands/910.patch b/resources/old-patches/slashcommands/910.patch similarity index 100% rename from patches/slashcommands/910.patch rename to resources/old-patches/slashcommands/910.patch diff --git a/patches/slashcommands/938.patch b/resources/old-patches/slashcommands/938.patch similarity index 100% rename from patches/slashcommands/938.patch rename to resources/old-patches/slashcommands/938.patch diff --git a/patches/slashcommands/939.patch b/resources/old-patches/slashcommands/939.patch similarity index 100% rename from patches/slashcommands/939.patch rename to resources/old-patches/slashcommands/939.patch diff --git a/patches/slashcommands/940.patch b/resources/old-patches/slashcommands/940.patch similarity index 100% rename from patches/slashcommands/940.patch rename to resources/old-patches/slashcommands/940.patch diff --git a/patches/slashcommands/942.patch b/resources/old-patches/slashcommands/942.patch similarity index 100% rename from patches/slashcommands/942.patch rename to resources/old-patches/slashcommands/942.patch diff --git a/patches/slashcommands/943.patch b/resources/old-patches/slashcommands/943.patch similarity index 100% rename from patches/slashcommands/943.patch rename to resources/old-patches/slashcommands/943.patch diff --git a/patches/slashcommands/945.patch b/resources/old-patches/slashcommands/945.patch similarity index 100% rename from patches/slashcommands/945.patch rename to resources/old-patches/slashcommands/945.patch diff --git a/patches/slashcommands/946.patch b/resources/old-patches/slashcommands/946.patch similarity index 100% rename from patches/slashcommands/946.patch rename to resources/old-patches/slashcommands/946.patch diff --git a/patches/slashcommands/947.patch b/resources/old-patches/slashcommands/947.patch similarity index 100% rename from patches/slashcommands/947.patch rename to resources/old-patches/slashcommands/947.patch diff --git a/patches/slashcommands/948.patch b/resources/old-patches/slashcommands/948.patch similarity index 100% rename from patches/slashcommands/948.patch rename to resources/old-patches/slashcommands/948.patch diff --git a/patches/slashcommands/963.patch b/resources/old-patches/slashcommands/963.patch similarity index 100% rename from patches/slashcommands/963.patch rename to resources/old-patches/slashcommands/963.patch diff --git a/patches/slashcommands/964.patch b/resources/old-patches/slashcommands/964.patch similarity index 100% rename from patches/slashcommands/964.patch rename to resources/old-patches/slashcommands/964.patch diff --git a/patches/slashcommands/965.patch b/resources/old-patches/slashcommands/965.patch similarity index 100% rename from patches/slashcommands/965.patch rename to resources/old-patches/slashcommands/965.patch diff --git a/patches/slashcommands/966.patch b/resources/old-patches/slashcommands/966.patch similarity index 100% rename from patches/slashcommands/966.patch rename to resources/old-patches/slashcommands/966.patch diff --git a/patches/slashcommands/967.patch b/resources/old-patches/slashcommands/967.patch similarity index 100% rename from patches/slashcommands/967.patch rename to resources/old-patches/slashcommands/967.patch diff --git a/patches/slashcommands/968.patch b/resources/old-patches/slashcommands/968.patch similarity index 100% rename from patches/slashcommands/968.patch rename to resources/old-patches/slashcommands/968.patch diff --git a/patches/slashcommands/970.patch b/resources/old-patches/slashcommands/970.patch similarity index 100% rename from patches/slashcommands/970.patch rename to resources/old-patches/slashcommands/970.patch diff --git a/patches/slashcommands/980.patch b/resources/old-patches/slashcommands/980.patch similarity index 100% rename from patches/slashcommands/980.patch rename to resources/old-patches/slashcommands/980.patch diff --git a/patches/slashcommands/992.patch b/resources/old-patches/slashcommands/992.patch similarity index 100% rename from patches/slashcommands/992.patch rename to resources/old-patches/slashcommands/992.patch diff --git a/patches/slashcommands/993.patch b/resources/old-patches/slashcommands/993.patch similarity index 100% rename from patches/slashcommands/993.patch rename to resources/old-patches/slashcommands/993.patch diff --git a/patches/slashcommands/994.patch b/resources/old-patches/slashcommands/994.patch similarity index 100% rename from patches/slashcommands/994.patch rename to resources/old-patches/slashcommands/994.patch diff --git a/patches/slashcommands/996.patch b/resources/old-patches/slashcommands/996.patch similarity index 100% rename from patches/slashcommands/996.patch rename to resources/old-patches/slashcommands/996.patch diff --git a/patches/slashcommands/README.md b/resources/old-patches/slashcommands/README.md similarity index 100% rename from patches/slashcommands/README.md rename to resources/old-patches/slashcommands/README.md diff --git a/patches/slashcommands/textreplacegen-array.py b/resources/old-patches/slashcommands/textreplacegen-array.py similarity index 100% rename from patches/slashcommands/textreplacegen-array.py rename to resources/old-patches/slashcommands/textreplacegen-array.py diff --git a/patches/slashcommands/textreplacegen.py b/resources/old-patches/slashcommands/textreplacegen.py similarity index 100% rename from patches/slashcommands/textreplacegen.py rename to resources/old-patches/slashcommands/textreplacegen.py diff --git a/old-patches/smalltime/1006.patch-failed b/resources/old-patches/smalltime/1006.patch-failed similarity index 100% rename from old-patches/smalltime/1006.patch-failed rename to resources/old-patches/smalltime/1006.patch-failed diff --git a/old-patches/smalltime/835.patch b/resources/old-patches/smalltime/835.patch similarity index 100% rename from old-patches/smalltime/835.patch rename to resources/old-patches/smalltime/835.patch diff --git a/old-patches/smalltime/836.patch b/resources/old-patches/smalltime/836.patch similarity index 100% rename from old-patches/smalltime/836.patch rename to resources/old-patches/smalltime/836.patch diff --git a/old-patches/smalltime/839.patch b/resources/old-patches/smalltime/839.patch similarity index 100% rename from old-patches/smalltime/839.patch rename to resources/old-patches/smalltime/839.patch diff --git a/old-patches/smalltime/841.patch b/resources/old-patches/smalltime/841.patch similarity index 100% rename from old-patches/smalltime/841.patch rename to resources/old-patches/smalltime/841.patch diff --git a/old-patches/smalltime/842.patch b/resources/old-patches/smalltime/842.patch similarity index 100% rename from old-patches/smalltime/842.patch rename to resources/old-patches/smalltime/842.patch diff --git a/old-patches/smalltime/843.patch b/resources/old-patches/smalltime/843.patch similarity index 100% rename from old-patches/smalltime/843.patch rename to resources/old-patches/smalltime/843.patch diff --git a/old-patches/smalltime/844.patch b/resources/old-patches/smalltime/844.patch similarity index 100% rename from old-patches/smalltime/844.patch rename to resources/old-patches/smalltime/844.patch diff --git a/old-patches/smalltime/845.patch b/resources/old-patches/smalltime/845.patch similarity index 100% rename from old-patches/smalltime/845.patch rename to resources/old-patches/smalltime/845.patch diff --git a/old-patches/smalltime/848.patch b/resources/old-patches/smalltime/848.patch similarity index 100% rename from old-patches/smalltime/848.patch rename to resources/old-patches/smalltime/848.patch diff --git a/old-patches/smalltime/850.patch b/resources/old-patches/smalltime/850.patch similarity index 100% rename from old-patches/smalltime/850.patch rename to resources/old-patches/smalltime/850.patch diff --git a/old-patches/smalltime/851.patch b/resources/old-patches/smalltime/851.patch similarity index 100% rename from old-patches/smalltime/851.patch rename to resources/old-patches/smalltime/851.patch diff --git a/old-patches/smalltime/853.patch b/resources/old-patches/smalltime/853.patch similarity index 100% rename from old-patches/smalltime/853.patch rename to resources/old-patches/smalltime/853.patch diff --git a/old-patches/smalltime/854.patch b/resources/old-patches/smalltime/854.patch similarity index 100% rename from old-patches/smalltime/854.patch rename to resources/old-patches/smalltime/854.patch diff --git a/old-patches/smalltime/855.patch b/resources/old-patches/smalltime/855.patch similarity index 100% rename from old-patches/smalltime/855.patch rename to resources/old-patches/smalltime/855.patch diff --git a/old-patches/smalltime/856.patch b/resources/old-patches/smalltime/856.patch similarity index 100% rename from old-patches/smalltime/856.patch rename to resources/old-patches/smalltime/856.patch diff --git a/old-patches/smalltime/876.patch b/resources/old-patches/smalltime/876.patch similarity index 100% rename from old-patches/smalltime/876.patch rename to resources/old-patches/smalltime/876.patch diff --git a/old-patches/smalltime/884.patch b/resources/old-patches/smalltime/884.patch similarity index 100% rename from old-patches/smalltime/884.patch rename to resources/old-patches/smalltime/884.patch diff --git a/old-patches/smalltime/888.patch b/resources/old-patches/smalltime/888.patch similarity index 100% rename from old-patches/smalltime/888.patch rename to resources/old-patches/smalltime/888.patch diff --git a/old-patches/smalltime/896.patch b/resources/old-patches/smalltime/896.patch similarity index 100% rename from old-patches/smalltime/896.patch rename to resources/old-patches/smalltime/896.patch diff --git a/old-patches/smalltime/897.patch b/resources/old-patches/smalltime/897.patch similarity index 100% rename from old-patches/smalltime/897.patch rename to resources/old-patches/smalltime/897.patch diff --git a/old-patches/smalltime/898.patch b/resources/old-patches/smalltime/898.patch similarity index 100% rename from old-patches/smalltime/898.patch rename to resources/old-patches/smalltime/898.patch diff --git a/old-patches/smalltime/899.patch b/resources/old-patches/smalltime/899.patch similarity index 100% rename from old-patches/smalltime/899.patch rename to resources/old-patches/smalltime/899.patch diff --git a/old-patches/smalltime/900.patch b/resources/old-patches/smalltime/900.patch similarity index 100% rename from old-patches/smalltime/900.patch rename to resources/old-patches/smalltime/900.patch diff --git a/old-patches/smalltime/901.patch b/resources/old-patches/smalltime/901.patch similarity index 100% rename from old-patches/smalltime/901.patch rename to resources/old-patches/smalltime/901.patch diff --git a/old-patches/smalltime/902.patch b/resources/old-patches/smalltime/902.patch similarity index 100% rename from old-patches/smalltime/902.patch rename to resources/old-patches/smalltime/902.patch diff --git a/old-patches/smalltime/903.patch b/resources/old-patches/smalltime/903.patch similarity index 100% rename from old-patches/smalltime/903.patch rename to resources/old-patches/smalltime/903.patch diff --git a/old-patches/smalltime/904.patch b/resources/old-patches/smalltime/904.patch similarity index 100% rename from old-patches/smalltime/904.patch rename to resources/old-patches/smalltime/904.patch diff --git a/old-patches/smalltime/906.patch b/resources/old-patches/smalltime/906.patch similarity index 100% rename from old-patches/smalltime/906.patch rename to resources/old-patches/smalltime/906.patch diff --git a/old-patches/smalltime/909.patch b/resources/old-patches/smalltime/909.patch similarity index 100% rename from old-patches/smalltime/909.patch rename to resources/old-patches/smalltime/909.patch diff --git a/old-patches/smalltime/910.patch b/resources/old-patches/smalltime/910.patch similarity index 100% rename from old-patches/smalltime/910.patch rename to resources/old-patches/smalltime/910.patch diff --git a/old-patches/smalltime/938.patch b/resources/old-patches/smalltime/938.patch similarity index 100% rename from old-patches/smalltime/938.patch rename to resources/old-patches/smalltime/938.patch diff --git a/old-patches/smalltime/939.patch b/resources/old-patches/smalltime/939.patch similarity index 100% rename from old-patches/smalltime/939.patch rename to resources/old-patches/smalltime/939.patch diff --git a/old-patches/smalltime/940.patch b/resources/old-patches/smalltime/940.patch similarity index 100% rename from old-patches/smalltime/940.patch rename to resources/old-patches/smalltime/940.patch diff --git a/old-patches/smalltime/942.patch b/resources/old-patches/smalltime/942.patch similarity index 100% rename from old-patches/smalltime/942.patch rename to resources/old-patches/smalltime/942.patch diff --git a/old-patches/smalltime/943.patch b/resources/old-patches/smalltime/943.patch similarity index 100% rename from old-patches/smalltime/943.patch rename to resources/old-patches/smalltime/943.patch diff --git a/old-patches/smalltime/945.patch b/resources/old-patches/smalltime/945.patch similarity index 100% rename from old-patches/smalltime/945.patch rename to resources/old-patches/smalltime/945.patch diff --git a/old-patches/smalltime/946.patch b/resources/old-patches/smalltime/946.patch similarity index 100% rename from old-patches/smalltime/946.patch rename to resources/old-patches/smalltime/946.patch diff --git a/old-patches/smalltime/947.patch b/resources/old-patches/smalltime/947.patch similarity index 100% rename from old-patches/smalltime/947.patch rename to resources/old-patches/smalltime/947.patch diff --git a/old-patches/smalltime/948.patch b/resources/old-patches/smalltime/948.patch similarity index 100% rename from old-patches/smalltime/948.patch rename to resources/old-patches/smalltime/948.patch diff --git a/old-patches/smalltime/963.patch b/resources/old-patches/smalltime/963.patch similarity index 100% rename from old-patches/smalltime/963.patch rename to resources/old-patches/smalltime/963.patch diff --git a/old-patches/smalltime/964.patch b/resources/old-patches/smalltime/964.patch similarity index 100% rename from old-patches/smalltime/964.patch rename to resources/old-patches/smalltime/964.patch diff --git a/old-patches/smalltime/965.patch b/resources/old-patches/smalltime/965.patch similarity index 100% rename from old-patches/smalltime/965.patch rename to resources/old-patches/smalltime/965.patch diff --git a/old-patches/smalltime/966.patch b/resources/old-patches/smalltime/966.patch similarity index 100% rename from old-patches/smalltime/966.patch rename to resources/old-patches/smalltime/966.patch diff --git a/old-patches/smalltime/967.patch b/resources/old-patches/smalltime/967.patch similarity index 100% rename from old-patches/smalltime/967.patch rename to resources/old-patches/smalltime/967.patch diff --git a/old-patches/smalltime/968.patch b/resources/old-patches/smalltime/968.patch similarity index 100% rename from old-patches/smalltime/968.patch rename to resources/old-patches/smalltime/968.patch diff --git a/old-patches/smalltime/970.patch b/resources/old-patches/smalltime/970.patch similarity index 100% rename from old-patches/smalltime/970.patch rename to resources/old-patches/smalltime/970.patch diff --git a/old-patches/smalltime/980.patch b/resources/old-patches/smalltime/980.patch similarity index 100% rename from old-patches/smalltime/980.patch rename to resources/old-patches/smalltime/980.patch diff --git a/old-patches/smalltime/984.patch b/resources/old-patches/smalltime/984.patch similarity index 100% rename from old-patches/smalltime/984.patch rename to resources/old-patches/smalltime/984.patch diff --git a/old-patches/smalltime/986.patch b/resources/old-patches/smalltime/986.patch similarity index 100% rename from old-patches/smalltime/986.patch rename to resources/old-patches/smalltime/986.patch diff --git a/old-patches/smalltime/991.patch b/resources/old-patches/smalltime/991.patch similarity index 100% rename from old-patches/smalltime/991.patch rename to resources/old-patches/smalltime/991.patch diff --git a/old-patches/smalltime/992.patch b/resources/old-patches/smalltime/992.patch similarity index 100% rename from old-patches/smalltime/992.patch rename to resources/old-patches/smalltime/992.patch diff --git a/old-patches/smalltime/993.patch b/resources/old-patches/smalltime/993.patch similarity index 100% rename from old-patches/smalltime/993.patch rename to resources/old-patches/smalltime/993.patch diff --git a/old-patches/smalltime/994.patch b/resources/old-patches/smalltime/994.patch similarity index 100% rename from old-patches/smalltime/994.patch rename to resources/old-patches/smalltime/994.patch diff --git a/old-patches/smalltime/996.patch b/resources/old-patches/smalltime/996.patch similarity index 100% rename from old-patches/smalltime/996.patch rename to resources/old-patches/smalltime/996.patch diff --git a/old-patches/smalltime/998.patch-failed b/resources/old-patches/smalltime/998.patch-failed similarity index 100% rename from old-patches/smalltime/998.patch-failed rename to resources/old-patches/smalltime/998.patch-failed diff --git a/old-patches/smalltime/README.md b/resources/old-patches/smalltime/README.md similarity index 100% rename from old-patches/smalltime/README.md rename to resources/old-patches/smalltime/README.md diff --git a/patches/squareavatars/1006.patch b/resources/old-patches/squareavatars/1006.patch similarity index 100% rename from patches/squareavatars/1006.patch rename to resources/old-patches/squareavatars/1006.patch diff --git a/patches/squareavatars/1007.patch b/resources/old-patches/squareavatars/1007.patch similarity index 100% rename from patches/squareavatars/1007.patch rename to resources/old-patches/squareavatars/1007.patch diff --git a/patches/squareavatars/1011.patch b/resources/old-patches/squareavatars/1011.patch similarity index 100% rename from patches/squareavatars/1011.patch rename to resources/old-patches/squareavatars/1011.patch diff --git a/patches/squareavatars/1012.patch b/resources/old-patches/squareavatars/1012.patch similarity index 100% rename from patches/squareavatars/1012.patch rename to resources/old-patches/squareavatars/1012.patch diff --git a/patches/squareavatars/1013.patch b/resources/old-patches/squareavatars/1013.patch similarity index 100% rename from patches/squareavatars/1013.patch rename to resources/old-patches/squareavatars/1013.patch diff --git a/patches/squareavatars/1015.patch b/resources/old-patches/squareavatars/1015.patch similarity index 100% rename from patches/squareavatars/1015.patch rename to resources/old-patches/squareavatars/1015.patch diff --git a/patches/squareavatars/1016.patch b/resources/old-patches/squareavatars/1016.patch similarity index 100% rename from patches/squareavatars/1016.patch rename to resources/old-patches/squareavatars/1016.patch diff --git a/patches/squareavatars/1019.patch b/resources/old-patches/squareavatars/1019.patch similarity index 100% rename from patches/squareavatars/1019.patch rename to resources/old-patches/squareavatars/1019.patch diff --git a/patches/squareavatars/1020.patch b/resources/old-patches/squareavatars/1020.patch similarity index 100% rename from patches/squareavatars/1020.patch rename to resources/old-patches/squareavatars/1020.patch diff --git a/patches/squareavatars/1021.patch b/resources/old-patches/squareavatars/1021.patch similarity index 100% rename from patches/squareavatars/1021.patch rename to resources/old-patches/squareavatars/1021.patch diff --git a/patches/squareavatars/1022.patch b/resources/old-patches/squareavatars/1022.patch similarity index 100% rename from patches/squareavatars/1022.patch rename to resources/old-patches/squareavatars/1022.patch diff --git a/patches/squareavatars/1023.patch b/resources/old-patches/squareavatars/1023.patch similarity index 100% rename from patches/squareavatars/1023.patch rename to resources/old-patches/squareavatars/1023.patch diff --git a/patches/squareavatars/1024.patch b/resources/old-patches/squareavatars/1024.patch similarity index 100% rename from patches/squareavatars/1024.patch rename to resources/old-patches/squareavatars/1024.patch diff --git a/patches/squareavatars/1025.patch b/resources/old-patches/squareavatars/1025.patch similarity index 100% rename from patches/squareavatars/1025.patch rename to resources/old-patches/squareavatars/1025.patch diff --git a/patches/squareavatars/1026.patch b/resources/old-patches/squareavatars/1026.patch similarity index 100% rename from patches/squareavatars/1026.patch rename to resources/old-patches/squareavatars/1026.patch diff --git a/patches/squareavatars/1029.patch b/resources/old-patches/squareavatars/1029.patch similarity index 100% rename from patches/squareavatars/1029.patch rename to resources/old-patches/squareavatars/1029.patch diff --git a/patches/squareavatars/1031.patch b/resources/old-patches/squareavatars/1031.patch similarity index 100% rename from patches/squareavatars/1031.patch rename to resources/old-patches/squareavatars/1031.patch diff --git a/patches/squareavatars/1032.patch b/resources/old-patches/squareavatars/1032.patch similarity index 100% rename from patches/squareavatars/1032.patch rename to resources/old-patches/squareavatars/1032.patch diff --git a/patches/squareavatars/1033.patch b/resources/old-patches/squareavatars/1033.patch similarity index 100% rename from patches/squareavatars/1033.patch rename to resources/old-patches/squareavatars/1033.patch diff --git a/patches/squareavatars/1036.patch b/resources/old-patches/squareavatars/1036.patch similarity index 100% rename from patches/squareavatars/1036.patch rename to resources/old-patches/squareavatars/1036.patch diff --git a/patches/squareavatars/1037.patch b/resources/old-patches/squareavatars/1037.patch similarity index 100% rename from patches/squareavatars/1037.patch rename to resources/old-patches/squareavatars/1037.patch diff --git a/patches/squareavatars/1040.patch b/resources/old-patches/squareavatars/1040.patch similarity index 100% rename from patches/squareavatars/1040.patch rename to resources/old-patches/squareavatars/1040.patch diff --git a/patches/squareavatars/1041.patch b/resources/old-patches/squareavatars/1041.patch similarity index 100% rename from patches/squareavatars/1041.patch rename to resources/old-patches/squareavatars/1041.patch diff --git a/patches/squareavatars/1045.patch b/resources/old-patches/squareavatars/1045.patch similarity index 100% rename from patches/squareavatars/1045.patch rename to resources/old-patches/squareavatars/1045.patch diff --git a/patches/squareavatars/1046.patch b/resources/old-patches/squareavatars/1046.patch similarity index 100% rename from patches/squareavatars/1046.patch rename to resources/old-patches/squareavatars/1046.patch diff --git a/patches/squareavatars/1047.patch b/resources/old-patches/squareavatars/1047.patch similarity index 100% rename from patches/squareavatars/1047.patch rename to resources/old-patches/squareavatars/1047.patch diff --git a/patches/squareavatars/1049.patch b/resources/old-patches/squareavatars/1049.patch similarity index 100% rename from patches/squareavatars/1049.patch rename to resources/old-patches/squareavatars/1049.patch diff --git a/patches/squareavatars/1052.patch b/resources/old-patches/squareavatars/1052.patch similarity index 100% rename from patches/squareavatars/1052.patch rename to resources/old-patches/squareavatars/1052.patch diff --git a/patches/squareavatars/1053.patch b/resources/old-patches/squareavatars/1053.patch similarity index 100% rename from patches/squareavatars/1053.patch rename to resources/old-patches/squareavatars/1053.patch diff --git a/patches/squareavatars/1054.patch b/resources/old-patches/squareavatars/1054.patch similarity index 100% rename from patches/squareavatars/1054.patch rename to resources/old-patches/squareavatars/1054.patch diff --git a/patches/squareavatars/1056.patch b/resources/old-patches/squareavatars/1056.patch similarity index 100% rename from patches/squareavatars/1056.patch rename to resources/old-patches/squareavatars/1056.patch diff --git a/patches/squareavatars/1057.patch b/resources/old-patches/squareavatars/1057.patch similarity index 100% rename from patches/squareavatars/1057.patch rename to resources/old-patches/squareavatars/1057.patch diff --git a/patches/squareavatars/1062.patch b/resources/old-patches/squareavatars/1062.patch similarity index 100% rename from patches/squareavatars/1062.patch rename to resources/old-patches/squareavatars/1062.patch diff --git a/patches/squareavatars/1065.patch b/resources/old-patches/squareavatars/1065.patch similarity index 100% rename from patches/squareavatars/1065.patch rename to resources/old-patches/squareavatars/1065.patch diff --git a/patches/squareavatars/1066.patch b/resources/old-patches/squareavatars/1066.patch similarity index 100% rename from patches/squareavatars/1066.patch rename to resources/old-patches/squareavatars/1066.patch diff --git a/patches/squareavatars/1069.patch b/resources/old-patches/squareavatars/1069.patch similarity index 100% rename from patches/squareavatars/1069.patch rename to resources/old-patches/squareavatars/1069.patch diff --git a/patches/squareavatars/1073.patch b/resources/old-patches/squareavatars/1073.patch similarity index 100% rename from patches/squareavatars/1073.patch rename to resources/old-patches/squareavatars/1073.patch diff --git a/patches/squareavatars/1074.patch b/resources/old-patches/squareavatars/1074.patch similarity index 100% rename from patches/squareavatars/1074.patch rename to resources/old-patches/squareavatars/1074.patch diff --git a/patches/squareavatars/1078.patch b/resources/old-patches/squareavatars/1078.patch similarity index 100% rename from patches/squareavatars/1078.patch rename to resources/old-patches/squareavatars/1078.patch diff --git a/patches/squareavatars/1084.patch b/resources/old-patches/squareavatars/1084.patch similarity index 100% rename from patches/squareavatars/1084.patch rename to resources/old-patches/squareavatars/1084.patch diff --git a/patches/squareavatars/1085.patch b/resources/old-patches/squareavatars/1085.patch similarity index 100% rename from patches/squareavatars/1085.patch rename to resources/old-patches/squareavatars/1085.patch diff --git a/patches/squareavatars/1087.patch b/resources/old-patches/squareavatars/1087.patch similarity index 100% rename from patches/squareavatars/1087.patch rename to resources/old-patches/squareavatars/1087.patch diff --git a/patches/squareavatars/1091.patch b/resources/old-patches/squareavatars/1091.patch similarity index 100% rename from patches/squareavatars/1091.patch rename to resources/old-patches/squareavatars/1091.patch diff --git a/patches/squareavatars/1092.patch b/resources/old-patches/squareavatars/1092.patch similarity index 100% rename from patches/squareavatars/1092.patch rename to resources/old-patches/squareavatars/1092.patch diff --git a/patches/squareavatars/1100.patch b/resources/old-patches/squareavatars/1100.patch similarity index 100% rename from patches/squareavatars/1100.patch rename to resources/old-patches/squareavatars/1100.patch diff --git a/patches/squareavatars/1103.patch b/resources/old-patches/squareavatars/1103.patch similarity index 100% rename from patches/squareavatars/1103.patch rename to resources/old-patches/squareavatars/1103.patch diff --git a/patches/squareavatars/1104.patch b/resources/old-patches/squareavatars/1104.patch similarity index 100% rename from patches/squareavatars/1104.patch rename to resources/old-patches/squareavatars/1104.patch diff --git a/patches/squareavatars/1105.patch b/resources/old-patches/squareavatars/1105.patch similarity index 100% rename from patches/squareavatars/1105.patch rename to resources/old-patches/squareavatars/1105.patch diff --git a/patches/squareavatars/1107.patch b/resources/old-patches/squareavatars/1107.patch similarity index 100% rename from patches/squareavatars/1107.patch rename to resources/old-patches/squareavatars/1107.patch diff --git a/patches/squareavatars/1123.patch b/resources/old-patches/squareavatars/1123.patch similarity index 100% rename from patches/squareavatars/1123.patch rename to resources/old-patches/squareavatars/1123.patch diff --git a/patches/squareavatars/1132.patch b/resources/old-patches/squareavatars/1132.patch similarity index 100% rename from patches/squareavatars/1132.patch rename to resources/old-patches/squareavatars/1132.patch diff --git a/patches/squareavatars/1134.patch b/resources/old-patches/squareavatars/1134.patch similarity index 100% rename from patches/squareavatars/1134.patch rename to resources/old-patches/squareavatars/1134.patch diff --git a/patches/squareavatars/1144.patch b/resources/old-patches/squareavatars/1144.patch similarity index 100% rename from patches/squareavatars/1144.patch rename to resources/old-patches/squareavatars/1144.patch diff --git a/patches/squareavatars/1145.patch b/resources/old-patches/squareavatars/1145.patch similarity index 100% rename from patches/squareavatars/1145.patch rename to resources/old-patches/squareavatars/1145.patch diff --git a/patches/squareavatars/1146.patch b/resources/old-patches/squareavatars/1146.patch similarity index 100% rename from patches/squareavatars/1146.patch rename to resources/old-patches/squareavatars/1146.patch diff --git a/patches/squareavatars/1148.patch b/resources/old-patches/squareavatars/1148.patch similarity index 100% rename from patches/squareavatars/1148.patch rename to resources/old-patches/squareavatars/1148.patch diff --git a/patches/squareavatars/1150.patch b/resources/old-patches/squareavatars/1150.patch similarity index 100% rename from patches/squareavatars/1150.patch rename to resources/old-patches/squareavatars/1150.patch diff --git a/patches/squareavatars/1167.patch b/resources/old-patches/squareavatars/1167.patch similarity index 100% rename from patches/squareavatars/1167.patch rename to resources/old-patches/squareavatars/1167.patch diff --git a/patches/squareavatars/1169.patch b/resources/old-patches/squareavatars/1169.patch similarity index 100% rename from patches/squareavatars/1169.patch rename to resources/old-patches/squareavatars/1169.patch diff --git a/patches/squareavatars/1171.patch b/resources/old-patches/squareavatars/1171.patch similarity index 100% rename from patches/squareavatars/1171.patch rename to resources/old-patches/squareavatars/1171.patch diff --git a/patches/squareavatars/1180.patch b/resources/old-patches/squareavatars/1180.patch similarity index 100% rename from patches/squareavatars/1180.patch rename to resources/old-patches/squareavatars/1180.patch diff --git a/patches/squareavatars/1181.patch b/resources/old-patches/squareavatars/1181.patch similarity index 100% rename from patches/squareavatars/1181.patch rename to resources/old-patches/squareavatars/1181.patch diff --git a/patches/squareavatars/1192.patch b/resources/old-patches/squareavatars/1192.patch similarity index 100% rename from patches/squareavatars/1192.patch rename to resources/old-patches/squareavatars/1192.patch diff --git a/patches/squareavatars/1196.patch b/resources/old-patches/squareavatars/1196.patch similarity index 100% rename from patches/squareavatars/1196.patch rename to resources/old-patches/squareavatars/1196.patch diff --git a/patches/squareavatars/1200.patch b/resources/old-patches/squareavatars/1200.patch similarity index 100% rename from patches/squareavatars/1200.patch rename to resources/old-patches/squareavatars/1200.patch diff --git a/patches/squareavatars/1201.patch b/resources/old-patches/squareavatars/1201.patch similarity index 100% rename from patches/squareavatars/1201.patch rename to resources/old-patches/squareavatars/1201.patch diff --git a/patches/squareavatars/1208.patch b/resources/old-patches/squareavatars/1208.patch similarity index 100% rename from patches/squareavatars/1208.patch rename to resources/old-patches/squareavatars/1208.patch diff --git a/patches/squareavatars/1213.patch b/resources/old-patches/squareavatars/1213.patch similarity index 100% rename from patches/squareavatars/1213.patch rename to resources/old-patches/squareavatars/1213.patch diff --git a/patches/squareavatars/1216.patch b/resources/old-patches/squareavatars/1216.patch similarity index 100% rename from patches/squareavatars/1216.patch rename to resources/old-patches/squareavatars/1216.patch diff --git a/patches/squareavatars/1218.patch b/resources/old-patches/squareavatars/1218.patch similarity index 100% rename from patches/squareavatars/1218.patch rename to resources/old-patches/squareavatars/1218.patch diff --git a/patches/squareavatars/1223.patch b/resources/old-patches/squareavatars/1223.patch similarity index 100% rename from patches/squareavatars/1223.patch rename to resources/old-patches/squareavatars/1223.patch diff --git a/patches/squareavatars/1243.patch b/resources/old-patches/squareavatars/1243.patch similarity index 100% rename from patches/squareavatars/1243.patch rename to resources/old-patches/squareavatars/1243.patch diff --git a/patches/squareavatars/1246.patch b/resources/old-patches/squareavatars/1246.patch similarity index 100% rename from patches/squareavatars/1246.patch rename to resources/old-patches/squareavatars/1246.patch diff --git a/patches/squareavatars/1249.patch b/resources/old-patches/squareavatars/1249.patch similarity index 100% rename from patches/squareavatars/1249.patch rename to resources/old-patches/squareavatars/1249.patch diff --git a/patches/squareavatars/1251.patch b/resources/old-patches/squareavatars/1251.patch similarity index 100% rename from patches/squareavatars/1251.patch rename to resources/old-patches/squareavatars/1251.patch diff --git a/patches/squareavatars/1252.patch b/resources/old-patches/squareavatars/1252.patch similarity index 100% rename from patches/squareavatars/1252.patch rename to resources/old-patches/squareavatars/1252.patch diff --git a/patches/squareavatars/1259.patch b/resources/old-patches/squareavatars/1259.patch similarity index 100% rename from patches/squareavatars/1259.patch rename to resources/old-patches/squareavatars/1259.patch diff --git a/patches/squareavatars/1266.patch b/resources/old-patches/squareavatars/1266.patch similarity index 100% rename from patches/squareavatars/1266.patch rename to resources/old-patches/squareavatars/1266.patch diff --git a/patches/squareavatars/1270.patch b/resources/old-patches/squareavatars/1270.patch similarity index 100% rename from patches/squareavatars/1270.patch rename to resources/old-patches/squareavatars/1270.patch diff --git a/patches/squareavatars/1273.patch b/resources/old-patches/squareavatars/1273.patch similarity index 100% rename from patches/squareavatars/1273.patch rename to resources/old-patches/squareavatars/1273.patch diff --git a/patches/squareavatars/1279.patch b/resources/old-patches/squareavatars/1279.patch similarity index 100% rename from patches/squareavatars/1279.patch rename to resources/old-patches/squareavatars/1279.patch diff --git a/patches/squareavatars/1280.patch b/resources/old-patches/squareavatars/1280.patch similarity index 100% rename from patches/squareavatars/1280.patch rename to resources/old-patches/squareavatars/1280.patch diff --git a/patches/squareavatars/1281.patch b/resources/old-patches/squareavatars/1281.patch similarity index 100% rename from patches/squareavatars/1281.patch rename to resources/old-patches/squareavatars/1281.patch diff --git a/patches/squareavatars/1282.patch b/resources/old-patches/squareavatars/1282.patch similarity index 100% rename from patches/squareavatars/1282.patch rename to resources/old-patches/squareavatars/1282.patch diff --git a/patches/squareavatars/1284.patch b/resources/old-patches/squareavatars/1284.patch similarity index 100% rename from patches/squareavatars/1284.patch rename to resources/old-patches/squareavatars/1284.patch diff --git a/patches/squareavatars/1290.patch b/resources/old-patches/squareavatars/1290.patch similarity index 100% rename from patches/squareavatars/1290.patch rename to resources/old-patches/squareavatars/1290.patch diff --git a/patches/squareavatars/1294.patch b/resources/old-patches/squareavatars/1294.patch similarity index 100% rename from patches/squareavatars/1294.patch rename to resources/old-patches/squareavatars/1294.patch diff --git a/patches/squareavatars/1295.patch b/resources/old-patches/squareavatars/1295.patch similarity index 100% rename from patches/squareavatars/1295.patch rename to resources/old-patches/squareavatars/1295.patch diff --git a/patches/squareavatars/1298.patch b/resources/old-patches/squareavatars/1298.patch similarity index 100% rename from patches/squareavatars/1298.patch rename to resources/old-patches/squareavatars/1298.patch diff --git a/patches/squareavatars/1300.patch b/resources/old-patches/squareavatars/1300.patch similarity index 100% rename from patches/squareavatars/1300.patch rename to resources/old-patches/squareavatars/1300.patch diff --git a/patches/squareavatars/1301.patch b/resources/old-patches/squareavatars/1301.patch similarity index 100% rename from patches/squareavatars/1301.patch rename to resources/old-patches/squareavatars/1301.patch diff --git a/patches/squareavatars/1304.patch b/resources/old-patches/squareavatars/1304.patch similarity index 100% rename from patches/squareavatars/1304.patch rename to resources/old-patches/squareavatars/1304.patch diff --git a/patches/squareavatars/1306.patch b/resources/old-patches/squareavatars/1306.patch similarity index 100% rename from patches/squareavatars/1306.patch rename to resources/old-patches/squareavatars/1306.patch diff --git a/patches/squareavatars/1307.patch b/resources/old-patches/squareavatars/1307.patch similarity index 100% rename from patches/squareavatars/1307.patch rename to resources/old-patches/squareavatars/1307.patch diff --git a/patches/squareavatars/1310.patch b/resources/old-patches/squareavatars/1310.patch similarity index 100% rename from patches/squareavatars/1310.patch rename to resources/old-patches/squareavatars/1310.patch diff --git a/patches/squareavatars/1315.patch b/resources/old-patches/squareavatars/1315.patch similarity index 100% rename from patches/squareavatars/1315.patch rename to resources/old-patches/squareavatars/1315.patch diff --git a/patches/squareavatars/1318.patch b/resources/old-patches/squareavatars/1318.patch similarity index 100% rename from patches/squareavatars/1318.patch rename to resources/old-patches/squareavatars/1318.patch diff --git a/patches/squareavatars/1330.patch b/resources/old-patches/squareavatars/1330.patch similarity index 100% rename from patches/squareavatars/1330.patch rename to resources/old-patches/squareavatars/1330.patch diff --git a/patches/squareavatars/1334.patch b/resources/old-patches/squareavatars/1334.patch similarity index 100% rename from patches/squareavatars/1334.patch rename to resources/old-patches/squareavatars/1334.patch diff --git a/patches/squareavatars/1339.patch b/resources/old-patches/squareavatars/1339.patch similarity index 100% rename from patches/squareavatars/1339.patch rename to resources/old-patches/squareavatars/1339.patch diff --git a/patches/squareavatars/1340.patch b/resources/old-patches/squareavatars/1340.patch similarity index 100% rename from patches/squareavatars/1340.patch rename to resources/old-patches/squareavatars/1340.patch diff --git a/patches/squareavatars/1355.patch b/resources/old-patches/squareavatars/1355.patch similarity index 100% rename from patches/squareavatars/1355.patch rename to resources/old-patches/squareavatars/1355.patch diff --git a/patches/squareavatars/1356.patch b/resources/old-patches/squareavatars/1356.patch similarity index 100% rename from patches/squareavatars/1356.patch rename to resources/old-patches/squareavatars/1356.patch diff --git a/patches/squareavatars/1358.patch b/resources/old-patches/squareavatars/1358.patch similarity index 100% rename from patches/squareavatars/1358.patch rename to resources/old-patches/squareavatars/1358.patch diff --git a/patches/squareavatars/1361.patch b/resources/old-patches/squareavatars/1361.patch similarity index 100% rename from patches/squareavatars/1361.patch rename to resources/old-patches/squareavatars/1361.patch diff --git a/patches/squareavatars/1362.patch b/resources/old-patches/squareavatars/1362.patch similarity index 100% rename from patches/squareavatars/1362.patch rename to resources/old-patches/squareavatars/1362.patch diff --git a/patches/squareavatars/1365.patch b/resources/old-patches/squareavatars/1365.patch similarity index 100% rename from patches/squareavatars/1365.patch rename to resources/old-patches/squareavatars/1365.patch diff --git a/patches/squareavatars/1367.patch b/resources/old-patches/squareavatars/1367.patch similarity index 100% rename from patches/squareavatars/1367.patch rename to resources/old-patches/squareavatars/1367.patch diff --git a/patches/squareavatars/1368.patch b/resources/old-patches/squareavatars/1368.patch similarity index 100% rename from patches/squareavatars/1368.patch rename to resources/old-patches/squareavatars/1368.patch diff --git a/patches/squareavatars/1370.patch b/resources/old-patches/squareavatars/1370.patch similarity index 100% rename from patches/squareavatars/1370.patch rename to resources/old-patches/squareavatars/1370.patch diff --git a/patches/squareavatars/1371.patch b/resources/old-patches/squareavatars/1371.patch similarity index 100% rename from patches/squareavatars/1371.patch rename to resources/old-patches/squareavatars/1371.patch diff --git a/patches/squareavatars/78204.patch b/resources/old-patches/squareavatars/78204.patch similarity index 100% rename from patches/squareavatars/78204.patch rename to resources/old-patches/squareavatars/78204.patch diff --git a/patches/squareavatars/835.patch b/resources/old-patches/squareavatars/835.patch similarity index 100% rename from patches/squareavatars/835.patch rename to resources/old-patches/squareavatars/835.patch diff --git a/patches/squareavatars/836.patch b/resources/old-patches/squareavatars/836.patch similarity index 100% rename from patches/squareavatars/836.patch rename to resources/old-patches/squareavatars/836.patch diff --git a/patches/squareavatars/839.patch b/resources/old-patches/squareavatars/839.patch similarity index 100% rename from patches/squareavatars/839.patch rename to resources/old-patches/squareavatars/839.patch diff --git a/patches/squareavatars/841.patch b/resources/old-patches/squareavatars/841.patch similarity index 100% rename from patches/squareavatars/841.patch rename to resources/old-patches/squareavatars/841.patch diff --git a/patches/squareavatars/842.patch b/resources/old-patches/squareavatars/842.patch similarity index 100% rename from patches/squareavatars/842.patch rename to resources/old-patches/squareavatars/842.patch diff --git a/patches/squareavatars/843.patch b/resources/old-patches/squareavatars/843.patch similarity index 100% rename from patches/squareavatars/843.patch rename to resources/old-patches/squareavatars/843.patch diff --git a/patches/squareavatars/844.patch b/resources/old-patches/squareavatars/844.patch similarity index 100% rename from patches/squareavatars/844.patch rename to resources/old-patches/squareavatars/844.patch diff --git a/patches/squareavatars/845.patch b/resources/old-patches/squareavatars/845.patch similarity index 100% rename from patches/squareavatars/845.patch rename to resources/old-patches/squareavatars/845.patch diff --git a/patches/squareavatars/848.patch b/resources/old-patches/squareavatars/848.patch similarity index 100% rename from patches/squareavatars/848.patch rename to resources/old-patches/squareavatars/848.patch diff --git a/patches/squareavatars/850.patch b/resources/old-patches/squareavatars/850.patch similarity index 100% rename from patches/squareavatars/850.patch rename to resources/old-patches/squareavatars/850.patch diff --git a/patches/squareavatars/851.patch b/resources/old-patches/squareavatars/851.patch similarity index 100% rename from patches/squareavatars/851.patch rename to resources/old-patches/squareavatars/851.patch diff --git a/patches/squareavatars/853.patch b/resources/old-patches/squareavatars/853.patch similarity index 100% rename from patches/squareavatars/853.patch rename to resources/old-patches/squareavatars/853.patch diff --git a/patches/squareavatars/854.patch b/resources/old-patches/squareavatars/854.patch similarity index 100% rename from patches/squareavatars/854.patch rename to resources/old-patches/squareavatars/854.patch diff --git a/patches/squareavatars/855.patch b/resources/old-patches/squareavatars/855.patch similarity index 100% rename from patches/squareavatars/855.patch rename to resources/old-patches/squareavatars/855.patch diff --git a/patches/squareavatars/856.patch b/resources/old-patches/squareavatars/856.patch similarity index 100% rename from patches/squareavatars/856.patch rename to resources/old-patches/squareavatars/856.patch diff --git a/resources/old-patches/squareavatars/87202.patch b/resources/old-patches/squareavatars/87202.patch new file mode 100644 index 0000000..896dccd --- /dev/null +++ b/resources/old-patches/squareavatars/87202.patch @@ -0,0 +1,40 @@ +diff -crB from/res/values/dimens.xml to/res/values/dimens.xml +*** from/res/values/dimens.xml 2021-08-04 19:45:05.262372100 +0100 +--- to/res/values/dimens.xml 2021-08-05 00:17:34.791880800 +0100 +*************** +*** 262,268 **** + 6.0dip + 16.0dip + 4.0dip +! 12.0dip + 54.0dip + 6.0dip + 72.0dip +--- 262,268 ---- + 6.0dip + 16.0dip + 4.0dip +! 0.0dip + 54.0dip + 6.0dip + 72.0dip +diff -crB from/res/values/styles.xml to/res/values/styles.xml +*** from/res/values/styles.xml 2021-08-04 19:45:07.372873000 +0100 +--- to/res/values/styles.xml 2021-08-05 00:18:33.259073800 +0100 +*************** +*** 1133,1139 **** + fitCenter + ?asset_default_avatar_32dp + fitCenter +! true + + +