diff --git a/In_Case_I_Forget_How_To_Update_My_Repo.md b/In_Case_I_Forget_How_To_Update_My_Repo.md index 87d16e8..a017575 100644 --- a/In_Case_I_Forget_How_To_Update_My_Repo.md +++ b/In_Case_I_Forget_How_To_Update_My_Repo.md @@ -1,82 +1,82 @@ -# Tutorial Repository -Welcome to this tutorial repository! (I really need a different name for this thing.) This README should give you everything you need to setup your own repository on GitHub or any other web-hoster you hold! For the sake of time and money, I'll be using GitHub for this tutorial, because you know, well, it's free. - -## Prerequisites -* Linux. Sorry boys, but Cydia runs off of Debian packages (.deb) and the quickest and most efficient way to make these is with a Debian-based Linux installation, such as [Ubuntu](http://ubuntu.com) or [Debian](http://debian.org) itself. But, don't worry, Linux is free! #linuxmasterrace -* Git version 1.7 or higher. (This is only required if you are pushing your repository to a git-based system, such as GitHub, which will be used in this tutorial.) To install this with your average Debian-based Linux distribution, type the command `sudo apt-get install git` in a terminal window. - -## Installation -1. Download the zip file [here](https://github.com/WinneonSword/tutorial-repository/archive/master.zip) and extract it to the location of your choice or open up your favourite terminal with Git installed and type in the command `git clone https://github.com/WinneonSword/tutorial-repository.git repo`! This will create the the folder at the location you specified in your terminal with all of this repository's contents inside. -2. ???? -3. Hold on, no profit for you yet. - -## How It Works -Okay, so now you've downloaded the thing and it's a folder with a bunch of random files in it that make absolutely no sense whatsoever. Now what?! Here's what. You see you unroll it, then you stick it i— whoops. - -Never mind that, the first thing you need to understand is how these debian things work. To start, Cydia, as you probably already know now, is the main program created by /u/saurik for jailbroken iOS devices for easy and quick access to the tweaks and themes that you want. You probably have never thought of how Cydia does this, unless you're into that sort of stuff. Cydia basically to put it into laymon terms, uses Debian packages to download and install these tweaks. Debian packages, more commonly known as the .deb files that Debian uses, are basically advanced .zip files, like Java JARs, also known as .jar files. Debian reads these special .zip files and installs them accordingly with information found in the package's control file. This control file is put into a special location inside the .deb file. - -As an example, I have one .deb file in this repository that is already fully packaged and ready to be downloaded in Cydia. If you crack this .deb file with your favourite uncompresser (7-Zip for the win), you will see two folders. A folder marked `DEBIAN`, and a folder marked `var`. - -The folder marked `DEBIAN` is the folder that contains the control file, which is called `control`. Bet you didn't see that coming. (I'm so good at jokes! Hehehe... heh....) The control file contains many fields that have specific information that Debian reads when installing the package. We'll get into that in a bit. - -The folder marked `var` is where you want your files for your tweak or theme to go. I have no prior experience for tweaking, seeing as I don't own a Mac, but for themers such as myself, the place to put your average theme would be at `/Library/Themes/`. This would mean to make a folder called `Library`, and then a folder called `Themes` inside of that, in your package folder. The reason why the folder in this case is called `var`, is because I'm installing a test file to `/var/mobile/Documents/`. But I'm pretty sure you get the idea. - -## The control file -The control file is made up of several fields. I'm going to cover the main ones you will be using. Inside the package folder, which in this case, is called `Package` (I'm no longer inside the example .deb file anymore if you didn't know.), is a `DEBIAN` folder, and inside that is the control file. Crack this puppy open, and you will see several fields. The fields you see should look similar to the ones below. - -```markdown -Package: net.winneonsword.package -Name: Test Package -Version: 1.0 -Architecture: iphoneos-arm -Description: This is a test package from /u/WinneonSword's tutorial repository! -Depiction: http://repo.winneonsword.net/packages/package.html -Homepage: http://repo.winneonsword.net -Maintainer: Jesse Bryan -Author: Jesse Bryan -Section: Themes -``` - -Let's go down the line and explain what each one means. - -* **Package:** This is the name of your package. If you're not familiar with programming, the package name is usually where most of the files the program code relates to goes. The way to name this is like so: `[prefix of your website].[name of your website].[name of package]`. For example, mine says `net.winneonsword.packge`. The `net` is the prefix of my website, the `winneonsword` is the name of my website, which both together puts winneonsword.net, which is my website, and the last part, the `package` is the name of the package. For example's sake, it's just called package in this tutorial. -* **Name:** This is what will show as the name when you are looking at your package in Cydia. You know, the big bold text that is the main attraction. -* **Version:** This is the version of your package. Versioning is something to get into the habit of. The way I do it though, is if it is a initial release, then it obviously is version 1.0. If it is a minor change, then I add a number to the 3rd digit, which in this case would turn into 1.0.1. If it was a major change, then I would add a number to the 2rd digit and remove the 3rd, which would turn into 1.1. Get it? -* **Architecture:** This is the type of the package. **Don't change this.** -* **Description:** This is the description of your package. This text section will appear under entries in Cydia in a list view, or if there is no depiction for the file (below), when viewing the package itself in the dotted-line division area. -* **Depiction:** This is the webpage that pops up when viewing the package itself in Cydia. This part is optional, and should only be used if you know what you are doing around mobile web development. Keep in mind, that if you have a depication specified, the description of the package will *not* show up when viewing the package directly in Cydia. -* **Homepage:** This part is pretty obvious; it's the package's homepage, or mainly your website's homepage. -* **Maintainer:** This is the person who is currently maintaining the package you are making. To put the person's email, enclose it in tag symbols, like so: ``. This is shown in the above example. -* **Author:** This is the person who originally created the package you are maintaining. This often is the same as the Maintainer. -* **Section:** Last but not least, this is the Section that the package will go under when you view the section view in Cydia. Pretty straightforward, eh? - -## Making Your Packages and Sending Them Off -This is reaching the end of this tutorial, so now to conclude the repository making process. Below are step by step instructions on how to make your packages into .deb files, and then send it off to a Git based system, in this case, will be GitHub. - -1. Update your packages.sh file. To do so, crack open the packages.sh file, and you should see `dpkg-deb -b Package`. Repeat this pattern for every package that your have in your repository, so if you were to have 3 packages, the packages.sh file should look like so. Keep in mind that the name of the package is the same as the folder name in the repository. - - ```markdown - dpkg-deb -b Package - dpkg-deb -b Package2 - dpkg-deb -b Package3 - ``` - -2. Run the update.sh file in your terminal by typing `./update.sh`. If you get an error mid-way, run this command: `chmod +x packages.sh && chmod +x remove.sh && chmod +x update.sh`. Then, run the file again. -3. Now that you have all of your .debs properly built, you need to send the files along with the Packages.bz2 to the Git repository of your choice. If you are not using GitHub, you are done with these steps. Otherwise, create a GitHub repository on the [GitHub website](https://github.com/) with *this name:* `[your github username].github.com`. Replace the [your github username] part with your actual GitHub username. **This is very important.** -4. Now, in your favourite terminal full of rainbows and sparkles and glitter and ponies and all that neat stuff, type the following set of commands in the repository directory: - - ```markdown - git init - git remote add origin https://github.com/[your github username]/[your github username].github.com.git - git add --all - git commit -m "[Put a creative name for this commit here.]" - git push origin master - ``` - -5. ???????????? -6. Congratulations! You may have your PROFIT you've been waiting for. Your repository should now be up and running at `http://[your github username].github.com/`! Add that web address to your Cydia sources and behold your packages should appear! - -## Conclusion -Thank you for listening for my ongoing blabber about Debian and how things work. This method is how you would get an actual repository up and running without using myrepospace or any similar service. This method also allows full control over all of your packages to your hearts content, and it allows a neat and clean way to redirect the web address to your custom domain of your choice, using GitHub's CNAME system. (I will not be going into that in this tutorial. Sorry!) I hope you enjoyed this tutorial, and farewell! - -— /u/WinneonSword +# Tutorial Repository +Welcome to this tutorial repository! (I really need a different name for this thing.) This README should give you everything you need to setup your own repository on GitHub or any other web-hoster you hold! For the sake of time and money, I'll be using GitHub for this tutorial, because you know, well, it's free. + +## Prerequisites +* Linux. Sorry boys, but Cydia runs off of Debian packages (.deb) and the quickest and most efficient way to make these is with a Debian-based Linux installation, such as [Ubuntu](http://ubuntu.com) or [Debian](http://debian.org) itself. But, don't worry, Linux is free! #linuxmasterrace +* Git version 1.7 or higher. (This is only required if you are pushing your repository to a git-based system, such as GitHub, which will be used in this tutorial.) To install this with your average Debian-based Linux distribution, type the command `sudo apt-get install git` in a terminal window. + +## Installation +1. Download the zip file [here](https://github.com/WinneonSword/tutorial-repository/archive/master.zip) and extract it to the location of your choice or open up your favourite terminal with Git installed and type in the command `git clone https://github.com/WinneonSword/tutorial-repository.git repo`! This will create the the folder at the location you specified in your terminal with all of this repository's contents inside. +2. ???? +3. Hold on, no profit for you yet. + +## How It Works +Okay, so now you've downloaded the thing and it's a folder with a bunch of random files in it that make absolutely no sense whatsoever. Now what?! Here's what. You see you unroll it, then you stick it i— whoops. + +Never mind that, the first thing you need to understand is how these debian things work. To start, Cydia, as you probably already know now, is the main program created by /u/saurik for jailbroken iOS devices for easy and quick access to the tweaks and themes that you want. You probably have never thought of how Cydia does this, unless you're into that sort of stuff. Cydia basically to put it into laymon terms, uses Debian packages to download and install these tweaks. Debian packages, more commonly known as the .deb files that Debian uses, are basically advanced .zip files, like Java JARs, also known as .jar files. Debian reads these special .zip files and installs them accordingly with information found in the package's control file. This control file is put into a special location inside the .deb file. + +As an example, I have one .deb file in this repository that is already fully packaged and ready to be downloaded in Cydia. If you crack this .deb file with your favourite uncompresser (7-Zip for the win), you will see two folders. A folder marked `DEBIAN`, and a folder marked `var`. + +The folder marked `DEBIAN` is the folder that contains the control file, which is called `control`. Bet you didn't see that coming. (I'm so good at jokes! Hehehe... heh....) The control file contains many fields that have specific information that Debian reads when installing the package. We'll get into that in a bit. + +The folder marked `var` is where you want your files for your tweak or theme to go. I have no prior experience for tweaking, seeing as I don't own a Mac, but for themers such as myself, the place to put your average theme would be at `/Library/Themes/`. This would mean to make a folder called `Library`, and then a folder called `Themes` inside of that, in your package folder. The reason why the folder in this case is called `var`, is because I'm installing a test file to `/var/mobile/Documents/`. But I'm pretty sure you get the idea. + +## The control file +The control file is made up of several fields. I'm going to cover the main ones you will be using. Inside the package folder, which in this case, is called `Package` (I'm no longer inside the example .deb file anymore if you didn't know.), is a `DEBIAN` folder, and inside that is the control file. Crack this puppy open, and you will see several fields. The fields you see should look similar to the ones below. + +```markdown +Package: net.winneonsword.package +Name: Test Package +Version: 1.0 +Architecture: iphoneos-arm +Description: This is a test package from /u/WinneonSword's tutorial repository! +Depiction: http://repo.winneonsword.net/packages/package.html +Homepage: http://repo.winneonsword.net +Maintainer: Jesse Bryan +Author: Jesse Bryan +Section: Themes +``` + +Let's go down the line and explain what each one means. + +* **Package:** This is the name of your package. If you're not familiar with programming, the package name is usually where most of the files the program code relates to goes. The way to name this is like so: `[prefix of your website].[name of your website].[name of package]`. For example, mine says `net.winneonsword.packge`. The `net` is the prefix of my website, the `winneonsword` is the name of my website, which both together puts winneonsword.net, which is my website, and the last part, the `package` is the name of the package. For example's sake, it's just called package in this tutorial. +* **Name:** This is what will show as the name when you are looking at your package in Cydia. You know, the big bold text that is the main attraction. +* **Version:** This is the version of your package. Versioning is something to get into the habit of. The way I do it though, is if it is a initial release, then it obviously is version 1.0. If it is a minor change, then I add a number to the 3rd digit, which in this case would turn into 1.0.1. If it was a major change, then I would add a number to the 2rd digit and remove the 3rd, which would turn into 1.1. Get it? +* **Architecture:** This is the type of the package. **Don't change this.** +* **Description:** This is the description of your package. This text section will appear under entries in Cydia in a list view, or if there is no depiction for the file (below), when viewing the package itself in the dotted-line division area. +* **Depiction:** This is the webpage that pops up when viewing the package itself in Cydia. This part is optional, and should only be used if you know what you are doing around mobile web development. Keep in mind, that if you have a depication specified, the description of the package will *not* show up when viewing the package directly in Cydia. +* **Homepage:** This part is pretty obvious; it's the package's homepage, or mainly your website's homepage. +* **Maintainer:** This is the person who is currently maintaining the package you are making. To put the person's email, enclose it in tag symbols, like so: ``. This is shown in the above example. +* **Author:** This is the person who originally created the package you are maintaining. This often is the same as the Maintainer. +* **Section:** Last but not least, this is the Section that the package will go under when you view the section view in Cydia. Pretty straightforward, eh? + +## Making Your Packages and Sending Them Off +This is reaching the end of this tutorial, so now to conclude the repository making process. Below are step by step instructions on how to make your packages into .deb files, and then send it off to a Git based system, in this case, will be GitHub. + +1. Update your packages.sh file. To do so, crack open the packages.sh file, and you should see `dpkg-deb -b Package`. Repeat this pattern for every package that your have in your repository, so if you were to have 3 packages, the packages.sh file should look like so. Keep in mind that the name of the package is the same as the folder name in the repository. + + ```markdown + dpkg-deb -b Package + dpkg-deb -b Package2 + dpkg-deb -b Package3 + ``` + +2. Run the update.sh file in your terminal by typing `./update.sh`. If you get an error mid-way, run this command: `chmod +x packages.sh && chmod +x remove.sh && chmod +x update.sh`. Then, run the file again. +3. Now that you have all of your .debs properly built, you need to send the files along with the Packages.bz2 to the Git repository of your choice. If you are not using GitHub, you are done with these steps. Otherwise, create a GitHub repository on the [GitHub website](https://github.com/) with *this name:* `[your github username].github.com`. Replace the [your github username] part with your actual GitHub username. **This is very important.** +4. Now, in your favourite terminal full of rainbows and sparkles and glitter and ponies and all that neat stuff, type the following set of commands in the repository directory: + + ```markdown + git init + git remote add origin https://github.com/[your github username]/[your github username].github.com.git + git add --all + git commit -m "[Put a creative name for this commit here.]" + git push origin master + ``` + +5. ???????????? +6. Congratulations! You may have your PROFIT you've been waiting for. Your repository should now be up and running at `http://[your github username].github.com/`! Add that web address to your Cydia sources and behold your packages should appear! + +## Conclusion +Thank you for listening for my ongoing blabber about Debian and how things work. This method is how you would get an actual repository up and running without using myrepospace or any similar service. This method also allows full control over all of your packages to your hearts content, and it allows a neat and clean way to redirect the web address to your custom domain of your choice, using GitHub's CNAME system. (I will not be going into that in this tutorial. Sorry!) I hope you enjoyed this tutorial, and farewell! + +— /u/WinneonSword diff --git a/Packages.bz2 b/Packages.bz2 index e2f34a0..0b450bc 100644 Binary files a/Packages.bz2 and b/Packages.bz2 differ diff --git a/README.md b/README.md new file mode 100644 index 0000000..bf20dc8 --- /dev/null +++ b/README.md @@ -0,0 +1,82 @@ +# Tutorial Repository +Welcome to this tutorial repository! (I really need a different name for this thing.) This README should give you everything you need to setup your own repository on GitHub or any other web-hoster you hold! For the sake of time and money, I'll be using GitHub for this tutorial, because you know, well, it's free. + +## Prerequisites +* Linux. Sorry boys, but Cydia runs off of Debian packages (.deb) and the quickest and most efficient way to make these is with a Debian-based Linux installation, such as [Ubuntu](http://ubuntu.com) or [Debian](http://debian.org) itself. But, don't worry, Linux is free! #linuxmasterrace +* Git version 1.7 or higher. (This is only required if you are pushing your repository to a git-based system, such as GitHub, which will be used in this tutorial.) To install this with your average Debian-based Linux distribution, type the command `sudo apt-get install git` in a terminal window. + +## Installation +1. Download the zip file [here](https://github.com/WinneonSword/tutorial-repository/archive/master.zip) and extract it to the location of your choice or open up your favourite terminal with Git installed and type in the command `git clone https://github.com/WinneonSword/tutorial-repository.git repo`! This will create the the folder at the location you specified in your terminal with all of this repository's contents inside. +2. ???? +3. Hold on, no profit for you yet. + +## How It Works +Okay, so now you've downloaded the thing and it's a folder with a bunch of random files in it that make absolutely no sense whatsoever. Now what?! Here's what. You see you unroll it, then you stick it i— whoops. + +Never mind that, the first thing you need to understand is how these debian things work. To start, Cydia, as you probably already know now, is the main program created by /u/saurik for jailbroken iOS devices for easy and quick access to the tweaks and themes that you want. You probably have never thought of how Cydia does this, unless you're into that sort of stuff. Cydia basically to put it into laymon terms, uses Debian packages to download and install these tweaks. Debian packages, more commonly known as the .deb files that Debian uses, are basically advanced .zip files, like Java JARs, also known as .jar files. Debian reads these special .zip files and installs them accordingly with information found in the package's control file. This control file is put into a special location inside the .deb file. + +As an example, I have one .deb file in this repository that is already fully packaged and ready to be downloaded in Cydia. If you crack this .deb file with your favourite uncompresser (7-Zip for the win), you will see two folders. A folder marked `DEBIAN`, and a folder marked `var`. + +The folder marked `DEBIAN` is the folder that contains the control file, which is called `control`. Bet you didn't see that coming. (I'm so good at jokes! Hehehe... heh....) The control file contains many fields that have specific information that Debian reads when installing the package. We'll get into that in a bit. + +The folder marked `var` is where you want your files for your tweak or theme to go. I have no prior experience for tweaking, seeing as I don't own a Mac, but for themers such as myself, the place to put your average theme would be at `/Library/Themes/`. This would mean to make a folder called `Library`, and then a folder called `Themes` inside of that, in your package folder. The reason why the folder in this case is called `var`, is because I'm installing a test file to `/var/mobile/Documents/`. But I'm pretty sure you get the idea. + +## The control file +The control file is made up of several fields. I'm going to cover the main ones you will be using. Inside the package folder, which in this case, is called `Package` (I'm no longer inside the example .deb file anymore if you didn't know.), is a `DEBIAN` folder, and inside that is the control file. Crack this puppy open, and you will see several fields. The fields you see should look similar to the ones below. + +```markdown +Package: net.winneonsword.package +Name: Test Package +Version: 1.0 +Architecture: iphoneos-arm +Description: This is a test package from /u/WinneonSword's tutorial repository! +Depiction: http://repo.winneonsword.net/packages/package.html +Homepage: http://repo.winneonsword.net +Maintainer: Jesse Bryan +Author: Jesse Bryan +Section: Themes +``` + +Let's go down the line and explain what each one means. + +* **Package:** This is the name of your package. If you're not familiar with programming, the package name is usually where most of the files the program code relates to goes. The way to name this is like so: `[prefix of your website].[name of your website].[name of package]`. For example, mine says `net.winneonsword.packge`. The `net` is the prefix of my website, the `winneonsword` is the name of my website, which both together puts winneonsword.net, which is my website, and the last part, the `package` is the name of the package. For example's sake, it's just called package in this tutorial. +* **Name:** This is what will show as the name when you are looking at your package in Cydia. You know, the big bold text that is the main attraction. +* **Version:** This is the version of your package. Versioning is something to get into the habit of. The way I do it though, is if it is a initial release, then it obviously is version 1.0. If it is a minor change, then I add a number to the 3rd digit, which in this case would turn into 1.0.1. If it was a major change, then I would add a number to the 2rd digit and remove the 3rd, which would turn into 1.1. Get it? +* **Architecture:** This is the type of the package. **Don't change this.** +* **Description:** This is the description of your package. This text section will appear under entries in Cydia in a list view, or if there is no depiction for the file (below), when viewing the package itself in the dotted-line division area. +* **Depiction:** This is the webpage that pops up when viewing the package itself in Cydia. This part is optional, and should only be used if you know what you are doing around mobile web development. Keep in mind, that if you have a depication specified, the description of the package will *not* show up when viewing the package directly in Cydia. +* **Homepage:** This part is pretty obvious; it's the package's homepage, or mainly your website's homepage. +* **Maintainer:** This is the person who is currently maintaining the package you are making. To put the person's email, enclose it in tag symbols, like so: ``. This is shown in the above example. +* **Author:** This is the person who originally created the package you are maintaining. This often is the same as the Maintainer. +* **Section:** Last but not least, this is the Section that the package will go under when you view the section view in Cydia. Pretty straightforward, eh? + +## Making Your Packages and Sending Them Off +This is reaching the end of this tutorial, so now to conclude the repository making process. Below are step by step instructions on how to make your packages into .deb files, and then send it off to a Git based system, in this case, will be GitHub. + +1. Update your packages.sh file. To do so, crack open the packages.sh file, and you should see `dpkg-deb -b Package`. Repeat this pattern for every package that your have in your repository, so if you were to have 3 packages, the packages.sh file should look like so. Keep in mind that the name of the package is the same as the folder name in the repository. + + ```markdown + dpkg-deb -b Package + dpkg-deb -b Package2 + dpkg-deb -b Package3 + ``` + +2. Run the update.sh file in your terminal by typing `./update.sh`. If you get an error mid-way, run this command: `chmod +x packages.sh && chmod +x remove.sh && chmod +x update.sh`. Then, run the file again. +3. Now that you have all of your .debs properly built, you need to send the files along with the Packages.bz2 to the Git repository of your choice. If you are not using GitHub, you are done with these steps. Otherwise, create a GitHub repository on the [GitHub website](https://github.com/) with *this name:* `[your github username].github.com`. Replace the [your github username] part with your actual GitHub username. **This is very important.** +4. Now, in your favourite terminal full of rainbows and sparkles and glitter and ponies and all that neat stuff, type the following set of commands in the repository directory: + + ```markdown + git init + git remote add origin https://github.com/[your github username]/[your github username].github.com.git + git add --all + git commit -m "[Put a creative name for this commit here.]" + git push origin master + ``` + +5. ???????????? +6. Congratulations! You may have your PROFIT you've been waiting for. Your repository should now be up and running at `http://[your github username].github.com/`! Add that web address to your Cydia sources and behold your packages should appear! + +## Conclusion +Thank you for listening for my ongoing blabber about Debian and how things work. This method is how you would get an actual repository up and running without using myrepospace or any similar service. This method also allows full control over all of your packages to your hearts content, and it allows a neat and clean way to redirect the web address to your custom domain of your choice, using GitHub's CNAME system. (I will not be going into that in this tutorial. Sorry!) I hope you enjoyed this tutorial, and farewell! + +— /u/WinneonSword \ No newline at end of file diff --git a/css/style.css b/css/style.css index 564d833..b632fec 100644 --- a/css/style.css +++ b/css/style.css @@ -17,7 +17,7 @@ p { color: #064E25; font-family: Tahoma; font-family: "vt323", sans-serif; - font-size: 125%; + font-size: 200%; padding-left: 20%; padding-right: 20%; } diff --git a/depicts/assembly.html b/depicts/assembly.html index 8c6f893..d932a39 100644 --- a/depicts/assembly.html +++ b/depicts/assembly.html @@ -4,14 +4,12 @@ Micah Gomez -
-

I know this is ugly - I'll fix i later. - - This respring animation is to be used with springy. For a preview - check out the source GIF of the animation here. -

+

+ This respring animation is to be used with springy.

Check out the source GIF of the animation here. +

MPG13's repo

diff --git a/depicts/darkassembly.html b/depicts/darkassembly.html new file mode 100644 index 0000000..bcfc9ac --- /dev/null +++ b/depicts/darkassembly.html @@ -0,0 +1,16 @@ + + + + Micah Gomez + + + + +
+

+ This respring animation is to be used with springy.

This version is adapted to work with dark-paneled iPhones

Check out the source GIF of the animation here. +

MPG13's repo

+ + + + diff --git a/depicts/images/iAFS.gif b/depicts/images/iAFS.gif new file mode 100644 index 0000000..8cb303f Binary files /dev/null and b/depicts/images/iAFS.gif differ diff --git a/iAFS.deb b/iAFS.deb index f921fb0..26f031e 100644 Binary files a/iAFS.deb and b/iAFS.deb differ diff --git a/iAFS/DEBIAN/control b/iAFS/DEBIAN/control new file mode 100644 index 0000000..6a0c0b4 --- /dev/null +++ b/iAFS/DEBIAN/control @@ -0,0 +1,11 @@ +Package: com.mpg13.assembly +Name: iPhone Assembly for Springy +Version: 1.0-1 +Architecture: iphoneos-arm +Description: A Springy animated theme showing an iPhone being assembled! +depends: com.aditkamath.springy +Homepage: https://mpg13.github.io +Depiction: https://mpg13.github.io/repo/depicts/assembly.html +Maintainer: MPG13 +Author: MPG13 +Section: Springy diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/0.png b/iAFS/Library/Springy/iPhone Assembly Springy/0.png new file mode 100644 index 0000000..075d27a Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/0.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/1.png b/iAFS/Library/Springy/iPhone Assembly Springy/1.png new file mode 100644 index 0000000..b4befd7 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/1.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/10.png b/iAFS/Library/Springy/iPhone Assembly Springy/10.png new file mode 100644 index 0000000..e76d4fb Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/10.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/100.png b/iAFS/Library/Springy/iPhone Assembly Springy/100.png new file mode 100644 index 0000000..1618840 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/100.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/101.png b/iAFS/Library/Springy/iPhone Assembly Springy/101.png new file mode 100644 index 0000000..9b52ddc Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/101.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/102.png b/iAFS/Library/Springy/iPhone Assembly Springy/102.png new file mode 100644 index 0000000..e9951ee Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/102.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/103.png b/iAFS/Library/Springy/iPhone Assembly Springy/103.png new file mode 100644 index 0000000..feddaaa Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/103.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/104.png b/iAFS/Library/Springy/iPhone Assembly Springy/104.png new file mode 100644 index 0000000..1864299 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/104.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/105.png b/iAFS/Library/Springy/iPhone Assembly Springy/105.png new file mode 100644 index 0000000..8a29e20 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/105.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/106.png b/iAFS/Library/Springy/iPhone Assembly Springy/106.png new file mode 100644 index 0000000..95dc616 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/106.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/107.png b/iAFS/Library/Springy/iPhone Assembly Springy/107.png new file mode 100644 index 0000000..3a13f50 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/107.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/108.png b/iAFS/Library/Springy/iPhone Assembly Springy/108.png new file mode 100644 index 0000000..13a374e Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/108.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/109.png b/iAFS/Library/Springy/iPhone Assembly Springy/109.png new file mode 100644 index 0000000..8bc003e Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/109.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/11.png b/iAFS/Library/Springy/iPhone Assembly Springy/11.png new file mode 100644 index 0000000..da05dca Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/11.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/110.png b/iAFS/Library/Springy/iPhone Assembly Springy/110.png new file mode 100644 index 0000000..205e114 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/110.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/111.png b/iAFS/Library/Springy/iPhone Assembly Springy/111.png new file mode 100644 index 0000000..a9371ac Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/111.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/112.png b/iAFS/Library/Springy/iPhone Assembly Springy/112.png new file mode 100644 index 0000000..3ba62e3 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/112.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/113.png b/iAFS/Library/Springy/iPhone Assembly Springy/113.png new file mode 100644 index 0000000..47a0943 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/113.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/114.png b/iAFS/Library/Springy/iPhone Assembly Springy/114.png new file mode 100644 index 0000000..15a3fcb Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/114.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/115.png b/iAFS/Library/Springy/iPhone Assembly Springy/115.png new file mode 100644 index 0000000..6091229 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/115.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/116.png b/iAFS/Library/Springy/iPhone Assembly Springy/116.png new file mode 100644 index 0000000..5247af6 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/116.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/117.png b/iAFS/Library/Springy/iPhone Assembly Springy/117.png new file mode 100644 index 0000000..4e8514c Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/117.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/118.png b/iAFS/Library/Springy/iPhone Assembly Springy/118.png new file mode 100644 index 0000000..d665726 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/118.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/119.png b/iAFS/Library/Springy/iPhone Assembly Springy/119.png new file mode 100644 index 0000000..3537be8 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/119.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/12.png b/iAFS/Library/Springy/iPhone Assembly Springy/12.png new file mode 100644 index 0000000..7b61ff5 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/12.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/120.png b/iAFS/Library/Springy/iPhone Assembly Springy/120.png new file mode 100644 index 0000000..0add299 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/120.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/121.png b/iAFS/Library/Springy/iPhone Assembly Springy/121.png new file mode 100644 index 0000000..a966f3a Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/121.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/122.png b/iAFS/Library/Springy/iPhone Assembly Springy/122.png new file mode 100644 index 0000000..14baed0 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/122.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/123.png b/iAFS/Library/Springy/iPhone Assembly Springy/123.png new file mode 100644 index 0000000..ba422bb Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/123.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/124.png b/iAFS/Library/Springy/iPhone Assembly Springy/124.png new file mode 100644 index 0000000..09a6499 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/124.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/13.png b/iAFS/Library/Springy/iPhone Assembly Springy/13.png new file mode 100644 index 0000000..5bfa42b Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/13.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/14.png b/iAFS/Library/Springy/iPhone Assembly Springy/14.png new file mode 100644 index 0000000..314e0de Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/14.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/15.png b/iAFS/Library/Springy/iPhone Assembly Springy/15.png new file mode 100644 index 0000000..5ec415c Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/15.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/16.png b/iAFS/Library/Springy/iPhone Assembly Springy/16.png new file mode 100644 index 0000000..22f38f1 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/16.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/17.png b/iAFS/Library/Springy/iPhone Assembly Springy/17.png new file mode 100644 index 0000000..d6c2d76 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/17.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/18.png b/iAFS/Library/Springy/iPhone Assembly Springy/18.png new file mode 100644 index 0000000..34bc80f Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/18.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/19.png b/iAFS/Library/Springy/iPhone Assembly Springy/19.png new file mode 100644 index 0000000..0fd89a7 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/19.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/2.png b/iAFS/Library/Springy/iPhone Assembly Springy/2.png new file mode 100644 index 0000000..d10bed4 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/2.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/20.png b/iAFS/Library/Springy/iPhone Assembly Springy/20.png new file mode 100644 index 0000000..d24b715 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/20.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/21.png b/iAFS/Library/Springy/iPhone Assembly Springy/21.png new file mode 100644 index 0000000..045e419 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/21.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/22.png b/iAFS/Library/Springy/iPhone Assembly Springy/22.png new file mode 100644 index 0000000..2472f67 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/22.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/23.png b/iAFS/Library/Springy/iPhone Assembly Springy/23.png new file mode 100644 index 0000000..e9dded9 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/23.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/24.png b/iAFS/Library/Springy/iPhone Assembly Springy/24.png new file mode 100644 index 0000000..791c09f Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/24.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/25.png b/iAFS/Library/Springy/iPhone Assembly Springy/25.png new file mode 100644 index 0000000..25d24ee Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/25.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/26.png b/iAFS/Library/Springy/iPhone Assembly Springy/26.png new file mode 100644 index 0000000..4021ddb Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/26.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/27.png b/iAFS/Library/Springy/iPhone Assembly Springy/27.png new file mode 100644 index 0000000..72b9979 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/27.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/28.png b/iAFS/Library/Springy/iPhone Assembly Springy/28.png new file mode 100644 index 0000000..248fe41 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/28.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/29.png b/iAFS/Library/Springy/iPhone Assembly Springy/29.png new file mode 100644 index 0000000..93dcefa Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/29.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/3.png b/iAFS/Library/Springy/iPhone Assembly Springy/3.png new file mode 100644 index 0000000..8f4f016 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/3.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/30.png b/iAFS/Library/Springy/iPhone Assembly Springy/30.png new file mode 100644 index 0000000..5e4ce0e Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/30.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/31.png b/iAFS/Library/Springy/iPhone Assembly Springy/31.png new file mode 100644 index 0000000..17772d3 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/31.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/32.png b/iAFS/Library/Springy/iPhone Assembly Springy/32.png new file mode 100644 index 0000000..25bd123 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/32.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/33.png b/iAFS/Library/Springy/iPhone Assembly Springy/33.png new file mode 100644 index 0000000..de6765d Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/33.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/34.png b/iAFS/Library/Springy/iPhone Assembly Springy/34.png new file mode 100644 index 0000000..7822a90 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/34.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/35.png b/iAFS/Library/Springy/iPhone Assembly Springy/35.png new file mode 100644 index 0000000..4e63a73 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/35.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/36.png b/iAFS/Library/Springy/iPhone Assembly Springy/36.png new file mode 100644 index 0000000..159b2c2 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/36.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/37.png b/iAFS/Library/Springy/iPhone Assembly Springy/37.png new file mode 100644 index 0000000..2780588 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/37.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/38.png b/iAFS/Library/Springy/iPhone Assembly Springy/38.png new file mode 100644 index 0000000..d742d9b Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/38.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/39.png b/iAFS/Library/Springy/iPhone Assembly Springy/39.png new file mode 100644 index 0000000..9f3ffb8 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/39.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/4.png b/iAFS/Library/Springy/iPhone Assembly Springy/4.png new file mode 100644 index 0000000..2c6e7f9 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/4.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/40.png b/iAFS/Library/Springy/iPhone Assembly Springy/40.png new file mode 100644 index 0000000..20b0965 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/40.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/41.png b/iAFS/Library/Springy/iPhone Assembly Springy/41.png new file mode 100644 index 0000000..8740951 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/41.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/42.png b/iAFS/Library/Springy/iPhone Assembly Springy/42.png new file mode 100644 index 0000000..964ab58 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/42.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/43.png b/iAFS/Library/Springy/iPhone Assembly Springy/43.png new file mode 100644 index 0000000..c22494e Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/43.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/44.png b/iAFS/Library/Springy/iPhone Assembly Springy/44.png new file mode 100644 index 0000000..bbc3ef8 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/44.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/45.png b/iAFS/Library/Springy/iPhone Assembly Springy/45.png new file mode 100644 index 0000000..1bd8b69 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/45.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/46.png b/iAFS/Library/Springy/iPhone Assembly Springy/46.png new file mode 100644 index 0000000..305633d Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/46.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/47.png b/iAFS/Library/Springy/iPhone Assembly Springy/47.png new file mode 100644 index 0000000..7a21e80 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/47.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/48.png b/iAFS/Library/Springy/iPhone Assembly Springy/48.png new file mode 100644 index 0000000..a219b17 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/48.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/49.png b/iAFS/Library/Springy/iPhone Assembly Springy/49.png new file mode 100644 index 0000000..f63a57a Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/49.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/5.png b/iAFS/Library/Springy/iPhone Assembly Springy/5.png new file mode 100644 index 0000000..c1005f8 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/5.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/50.png b/iAFS/Library/Springy/iPhone Assembly Springy/50.png new file mode 100644 index 0000000..a1addec Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/50.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/51.png b/iAFS/Library/Springy/iPhone Assembly Springy/51.png new file mode 100644 index 0000000..5a95861 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/51.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/52.png b/iAFS/Library/Springy/iPhone Assembly Springy/52.png new file mode 100644 index 0000000..75f8ede Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/52.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/53.png b/iAFS/Library/Springy/iPhone Assembly Springy/53.png new file mode 100644 index 0000000..28657c9 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/53.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/54.png b/iAFS/Library/Springy/iPhone Assembly Springy/54.png new file mode 100644 index 0000000..7dd021d Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/54.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/55.png b/iAFS/Library/Springy/iPhone Assembly Springy/55.png new file mode 100644 index 0000000..1bc9fb3 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/55.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/56.png b/iAFS/Library/Springy/iPhone Assembly Springy/56.png new file mode 100644 index 0000000..0badccf Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/56.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/57.png b/iAFS/Library/Springy/iPhone Assembly Springy/57.png new file mode 100644 index 0000000..85c214a Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/57.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/58.png b/iAFS/Library/Springy/iPhone Assembly Springy/58.png new file mode 100644 index 0000000..2a6fc79 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/58.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/59.png b/iAFS/Library/Springy/iPhone Assembly Springy/59.png new file mode 100644 index 0000000..d230b7b Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/59.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/6.png b/iAFS/Library/Springy/iPhone Assembly Springy/6.png new file mode 100644 index 0000000..6d26269 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/6.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/60.png b/iAFS/Library/Springy/iPhone Assembly Springy/60.png new file mode 100644 index 0000000..c5dfa10 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/60.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/61.png b/iAFS/Library/Springy/iPhone Assembly Springy/61.png new file mode 100644 index 0000000..6b81fe1 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/61.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/62.png b/iAFS/Library/Springy/iPhone Assembly Springy/62.png new file mode 100644 index 0000000..e34af84 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/62.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/63.png b/iAFS/Library/Springy/iPhone Assembly Springy/63.png new file mode 100644 index 0000000..e2724cf Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/63.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/64.png b/iAFS/Library/Springy/iPhone Assembly Springy/64.png new file mode 100644 index 0000000..17f4401 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/64.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/65.png b/iAFS/Library/Springy/iPhone Assembly Springy/65.png new file mode 100644 index 0000000..55999dc Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/65.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/66.png b/iAFS/Library/Springy/iPhone Assembly Springy/66.png new file mode 100644 index 0000000..e899f18 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/66.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/67.png b/iAFS/Library/Springy/iPhone Assembly Springy/67.png new file mode 100644 index 0000000..78875d1 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/67.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/68.png b/iAFS/Library/Springy/iPhone Assembly Springy/68.png new file mode 100644 index 0000000..911d892 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/68.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/69.png b/iAFS/Library/Springy/iPhone Assembly Springy/69.png new file mode 100644 index 0000000..3ce42f5 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/69.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/7.png b/iAFS/Library/Springy/iPhone Assembly Springy/7.png new file mode 100644 index 0000000..e988d6e Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/7.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/70.png b/iAFS/Library/Springy/iPhone Assembly Springy/70.png new file mode 100644 index 0000000..f45027f Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/70.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/71.png b/iAFS/Library/Springy/iPhone Assembly Springy/71.png new file mode 100644 index 0000000..b797b3a Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/71.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/72.png b/iAFS/Library/Springy/iPhone Assembly Springy/72.png new file mode 100644 index 0000000..872f938 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/72.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/73.png b/iAFS/Library/Springy/iPhone Assembly Springy/73.png new file mode 100644 index 0000000..1e097bd Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/73.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/74.png b/iAFS/Library/Springy/iPhone Assembly Springy/74.png new file mode 100644 index 0000000..b2b2111 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/74.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/75.png b/iAFS/Library/Springy/iPhone Assembly Springy/75.png new file mode 100644 index 0000000..ba019ac Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/75.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/76.png b/iAFS/Library/Springy/iPhone Assembly Springy/76.png new file mode 100644 index 0000000..e7dfa9a Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/76.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/77.png b/iAFS/Library/Springy/iPhone Assembly Springy/77.png new file mode 100644 index 0000000..18e1040 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/77.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/78.png b/iAFS/Library/Springy/iPhone Assembly Springy/78.png new file mode 100644 index 0000000..29dd6af Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/78.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/79.png b/iAFS/Library/Springy/iPhone Assembly Springy/79.png new file mode 100644 index 0000000..3f60c4e Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/79.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/8.png b/iAFS/Library/Springy/iPhone Assembly Springy/8.png new file mode 100644 index 0000000..2abf379 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/8.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/80.png b/iAFS/Library/Springy/iPhone Assembly Springy/80.png new file mode 100644 index 0000000..0510275 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/80.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/81.png b/iAFS/Library/Springy/iPhone Assembly Springy/81.png new file mode 100644 index 0000000..2bb0bdb Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/81.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/82.png b/iAFS/Library/Springy/iPhone Assembly Springy/82.png new file mode 100644 index 0000000..6189396 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/82.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/83.png b/iAFS/Library/Springy/iPhone Assembly Springy/83.png new file mode 100644 index 0000000..0217e45 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/83.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/84.png b/iAFS/Library/Springy/iPhone Assembly Springy/84.png new file mode 100644 index 0000000..1c17e3a Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/84.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/85.png b/iAFS/Library/Springy/iPhone Assembly Springy/85.png new file mode 100644 index 0000000..607ca76 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/85.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/86.png b/iAFS/Library/Springy/iPhone Assembly Springy/86.png new file mode 100644 index 0000000..58bcd1c Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/86.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/87.png b/iAFS/Library/Springy/iPhone Assembly Springy/87.png new file mode 100644 index 0000000..cc0b64a Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/87.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/88.png b/iAFS/Library/Springy/iPhone Assembly Springy/88.png new file mode 100644 index 0000000..6be85e7 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/88.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/89.png b/iAFS/Library/Springy/iPhone Assembly Springy/89.png new file mode 100644 index 0000000..e371829 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/89.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/9.png b/iAFS/Library/Springy/iPhone Assembly Springy/9.png new file mode 100644 index 0000000..c7e8913 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/9.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/90.png b/iAFS/Library/Springy/iPhone Assembly Springy/90.png new file mode 100644 index 0000000..b6e69fb Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/90.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/91.png b/iAFS/Library/Springy/iPhone Assembly Springy/91.png new file mode 100644 index 0000000..8dbb707 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/91.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/92.png b/iAFS/Library/Springy/iPhone Assembly Springy/92.png new file mode 100644 index 0000000..f3c2355 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/92.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/93.png b/iAFS/Library/Springy/iPhone Assembly Springy/93.png new file mode 100644 index 0000000..adf0e56 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/93.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/94.png b/iAFS/Library/Springy/iPhone Assembly Springy/94.png new file mode 100644 index 0000000..53d2c7a Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/94.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/95.png b/iAFS/Library/Springy/iPhone Assembly Springy/95.png new file mode 100644 index 0000000..c8c4e70 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/95.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/96.png b/iAFS/Library/Springy/iPhone Assembly Springy/96.png new file mode 100644 index 0000000..11d5f87 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/96.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/97.png b/iAFS/Library/Springy/iPhone Assembly Springy/97.png new file mode 100644 index 0000000..6b68527 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/97.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/98.png b/iAFS/Library/Springy/iPhone Assembly Springy/98.png new file mode 100644 index 0000000..380c746 Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/98.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/99.png b/iAFS/Library/Springy/iPhone Assembly Springy/99.png new file mode 100644 index 0000000..f097a9a Binary files /dev/null and b/iAFS/Library/Springy/iPhone Assembly Springy/99.png differ diff --git a/iAFS/Library/Springy/iPhone Assembly Springy/BootGIF.txt b/iAFS/Library/Springy/iPhone Assembly Springy/BootGIF.txt new file mode 100644 index 0000000..2622916 --- /dev/null +++ b/iAFS/Library/Springy/iPhone Assembly Springy/BootGIF.txt @@ -0,0 +1,2 @@ +Created by BootGIF v2.3.2 +http://kussmaul.net/BootGIF.html \ No newline at end of file diff --git a/iAFSblack.deb b/iAFSblack.deb new file mode 100644 index 0000000..9991fdf Binary files /dev/null and b/iAFSblack.deb differ diff --git a/iAFSblack/DEBIAN/control b/iAFSblack/DEBIAN/control new file mode 100644 index 0000000..a5ec19b --- /dev/null +++ b/iAFSblack/DEBIAN/control @@ -0,0 +1,11 @@ +Package: com.mpg13.darkassembly +Name: Dark iPhone Assembly for Springy +Version: 1.0-1 +Architecture: iphoneos-arm +Description: A Springy animated theme showing an iPhone being assembled! +depends: com.aditkamath.springy +Homepage: https://mpg13.github.io +Depiction: https://mpg13.github.io/repo/depicts/darkassembly.html +Maintainer: MPG13 +Author: MPG13 +Section: Springy diff --git a/iAFSblack/Library/Springy/DarkAssembly/0.png b/iAFSblack/Library/Springy/DarkAssembly/0.png new file mode 100644 index 0000000..075d27a Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/0.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/1.png b/iAFSblack/Library/Springy/DarkAssembly/1.png new file mode 100644 index 0000000..b4befd7 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/1.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/10.png b/iAFSblack/Library/Springy/DarkAssembly/10.png new file mode 100644 index 0000000..c7e8913 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/10.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/100.png b/iAFSblack/Library/Springy/DarkAssembly/100.png new file mode 100644 index 0000000..194db12 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/100.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/101.png b/iAFSblack/Library/Springy/DarkAssembly/101.png new file mode 100644 index 0000000..c77f596 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/101.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/102.png b/iAFSblack/Library/Springy/DarkAssembly/102.png new file mode 100644 index 0000000..adf0e56 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/102.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/103.png b/iAFSblack/Library/Springy/DarkAssembly/103.png new file mode 100644 index 0000000..53d2c7a Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/103.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/104.png b/iAFSblack/Library/Springy/DarkAssembly/104.png new file mode 100644 index 0000000..c8c4e70 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/104.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/105.png b/iAFSblack/Library/Springy/DarkAssembly/105.png new file mode 100644 index 0000000..9e1d7cf Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/105.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/106.png b/iAFSblack/Library/Springy/DarkAssembly/106.png new file mode 100644 index 0000000..6b68527 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/106.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/107.png b/iAFSblack/Library/Springy/DarkAssembly/107.png new file mode 100644 index 0000000..380c746 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/107.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/108.png b/iAFSblack/Library/Springy/DarkAssembly/108.png new file mode 100644 index 0000000..c02651f Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/108.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/109.png b/iAFSblack/Library/Springy/DarkAssembly/109.png new file mode 100644 index 0000000..be07379 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/109.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/11.png b/iAFSblack/Library/Springy/DarkAssembly/11.png new file mode 100644 index 0000000..e76d4fb Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/11.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/110.png b/iAFSblack/Library/Springy/DarkAssembly/110.png new file mode 100644 index 0000000..beab9fb Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/110.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/111.png b/iAFSblack/Library/Springy/DarkAssembly/111.png new file mode 100644 index 0000000..9b52ddc Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/111.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/112.png b/iAFSblack/Library/Springy/DarkAssembly/112.png new file mode 100644 index 0000000..e9951ee Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/112.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/113.png b/iAFSblack/Library/Springy/DarkAssembly/113.png new file mode 100644 index 0000000..49b847c Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/113.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/114.png b/iAFSblack/Library/Springy/DarkAssembly/114.png new file mode 100644 index 0000000..1864299 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/114.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/115.png b/iAFSblack/Library/Springy/DarkAssembly/115.png new file mode 100644 index 0000000..8a29e20 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/115.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/116.png b/iAFSblack/Library/Springy/DarkAssembly/116.png new file mode 100644 index 0000000..95dc616 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/116.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/117.png b/iAFSblack/Library/Springy/DarkAssembly/117.png new file mode 100644 index 0000000..26a10d3 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/117.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/118.png b/iAFSblack/Library/Springy/DarkAssembly/118.png new file mode 100644 index 0000000..9c66510 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/118.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/119.png b/iAFSblack/Library/Springy/DarkAssembly/119.png new file mode 100644 index 0000000..8bc003e Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/119.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/12.png b/iAFSblack/Library/Springy/DarkAssembly/12.png new file mode 100644 index 0000000..da05dca Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/12.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/120.png b/iAFSblack/Library/Springy/DarkAssembly/120.png new file mode 100644 index 0000000..b650a09 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/120.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/121.png b/iAFSblack/Library/Springy/DarkAssembly/121.png new file mode 100644 index 0000000..d0a447e Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/121.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/122.png b/iAFSblack/Library/Springy/DarkAssembly/122.png new file mode 100644 index 0000000..6073c35 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/122.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/123.png b/iAFSblack/Library/Springy/DarkAssembly/123.png new file mode 100644 index 0000000..c056070 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/123.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/124.png b/iAFSblack/Library/Springy/DarkAssembly/124.png new file mode 100644 index 0000000..f3ceae5 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/124.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/125.png b/iAFSblack/Library/Springy/DarkAssembly/125.png new file mode 100644 index 0000000..1d2f3f2 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/125.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/13.png b/iAFSblack/Library/Springy/DarkAssembly/13.png new file mode 100644 index 0000000..36b1a9c Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/13.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/14.png b/iAFSblack/Library/Springy/DarkAssembly/14.png new file mode 100644 index 0000000..5bfa42b Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/14.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/15.png b/iAFSblack/Library/Springy/DarkAssembly/15.png new file mode 100644 index 0000000..314e0de Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/15.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/16.png b/iAFSblack/Library/Springy/DarkAssembly/16.png new file mode 100644 index 0000000..6a4a46e Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/16.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/17.png b/iAFSblack/Library/Springy/DarkAssembly/17.png new file mode 100644 index 0000000..8dfecc4 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/17.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/18.png b/iAFSblack/Library/Springy/DarkAssembly/18.png new file mode 100644 index 0000000..9602d75 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/18.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/19.png b/iAFSblack/Library/Springy/DarkAssembly/19.png new file mode 100644 index 0000000..d6c2d76 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/19.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/2.png b/iAFSblack/Library/Springy/DarkAssembly/2.png new file mode 100644 index 0000000..d10bed4 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/2.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/20.png b/iAFSblack/Library/Springy/DarkAssembly/20.png new file mode 100644 index 0000000..34bc80f Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/20.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/21.png b/iAFSblack/Library/Springy/DarkAssembly/21.png new file mode 100644 index 0000000..b49bc59 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/21.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/22.png b/iAFSblack/Library/Springy/DarkAssembly/22.png new file mode 100644 index 0000000..d24b715 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/22.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/23.png b/iAFSblack/Library/Springy/DarkAssembly/23.png new file mode 100644 index 0000000..045e419 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/23.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/24.png b/iAFSblack/Library/Springy/DarkAssembly/24.png new file mode 100644 index 0000000..2472f67 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/24.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/25.png b/iAFSblack/Library/Springy/DarkAssembly/25.png new file mode 100644 index 0000000..b136e9e Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/25.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/26.png b/iAFSblack/Library/Springy/DarkAssembly/26.png new file mode 100644 index 0000000..ec527ab Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/26.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/27.png b/iAFSblack/Library/Springy/DarkAssembly/27.png new file mode 100644 index 0000000..25d24ee Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/27.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/28.png b/iAFSblack/Library/Springy/DarkAssembly/28.png new file mode 100644 index 0000000..452a117 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/28.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/29.png b/iAFSblack/Library/Springy/DarkAssembly/29.png new file mode 100644 index 0000000..5dfee80 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/29.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/3.png b/iAFSblack/Library/Springy/DarkAssembly/3.png new file mode 100644 index 0000000..8f4f016 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/3.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/30.png b/iAFSblack/Library/Springy/DarkAssembly/30.png new file mode 100644 index 0000000..e3b0ca1 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/30.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/31.png b/iAFSblack/Library/Springy/DarkAssembly/31.png new file mode 100644 index 0000000..248fe41 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/31.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/32.png b/iAFSblack/Library/Springy/DarkAssembly/32.png new file mode 100644 index 0000000..93dcefa Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/32.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/33.png b/iAFSblack/Library/Springy/DarkAssembly/33.png new file mode 100644 index 0000000..5e4ce0e Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/33.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/34.png b/iAFSblack/Library/Springy/DarkAssembly/34.png new file mode 100644 index 0000000..17772d3 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/34.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/35.png b/iAFSblack/Library/Springy/DarkAssembly/35.png new file mode 100644 index 0000000..25bd123 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/35.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/36.png b/iAFSblack/Library/Springy/DarkAssembly/36.png new file mode 100644 index 0000000..de6765d Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/36.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/37.png b/iAFSblack/Library/Springy/DarkAssembly/37.png new file mode 100644 index 0000000..ac4c7d6 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/37.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/38.png b/iAFSblack/Library/Springy/DarkAssembly/38.png new file mode 100644 index 0000000..e84772d Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/38.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/39.png b/iAFSblack/Library/Springy/DarkAssembly/39.png new file mode 100644 index 0000000..1fd6f80 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/39.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/4.png b/iAFSblack/Library/Springy/DarkAssembly/4.png new file mode 100644 index 0000000..a6648ae Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/4.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/40.png b/iAFSblack/Library/Springy/DarkAssembly/40.png new file mode 100644 index 0000000..159b2c2 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/40.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/41.png b/iAFSblack/Library/Springy/DarkAssembly/41.png new file mode 100644 index 0000000..34b87b8 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/41.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/42.png b/iAFSblack/Library/Springy/DarkAssembly/42.png new file mode 100644 index 0000000..1980f92 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/42.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/43.png b/iAFSblack/Library/Springy/DarkAssembly/43.png new file mode 100644 index 0000000..3cb5fd6 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/43.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/44.png b/iAFSblack/Library/Springy/DarkAssembly/44.png new file mode 100644 index 0000000..20b0965 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/44.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/45.png b/iAFSblack/Library/Springy/DarkAssembly/45.png new file mode 100644 index 0000000..8740951 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/45.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/46.png b/iAFSblack/Library/Springy/DarkAssembly/46.png new file mode 100644 index 0000000..964ab58 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/46.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/47.png b/iAFSblack/Library/Springy/DarkAssembly/47.png new file mode 100644 index 0000000..c22494e Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/47.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/48.png b/iAFSblack/Library/Springy/DarkAssembly/48.png new file mode 100644 index 0000000..bbc3ef8 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/48.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/49.png b/iAFSblack/Library/Springy/DarkAssembly/49.png new file mode 100644 index 0000000..1bd8b69 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/49.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/5.png b/iAFSblack/Library/Springy/DarkAssembly/5.png new file mode 100644 index 0000000..1d7b77f Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/5.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/50.png b/iAFSblack/Library/Springy/DarkAssembly/50.png new file mode 100644 index 0000000..44572a4 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/50.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/51.png b/iAFSblack/Library/Springy/DarkAssembly/51.png new file mode 100644 index 0000000..7a899e9 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/51.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/52.png b/iAFSblack/Library/Springy/DarkAssembly/52.png new file mode 100644 index 0000000..031a08e Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/52.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/53.png b/iAFSblack/Library/Springy/DarkAssembly/53.png new file mode 100644 index 0000000..a219b17 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/53.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/54.png b/iAFSblack/Library/Springy/DarkAssembly/54.png new file mode 100644 index 0000000..47048f0 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/54.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/55.png b/iAFSblack/Library/Springy/DarkAssembly/55.png new file mode 100644 index 0000000..1fea526 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/55.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/56.png b/iAFSblack/Library/Springy/DarkAssembly/56.png new file mode 100644 index 0000000..5a95861 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/56.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/57.png b/iAFSblack/Library/Springy/DarkAssembly/57.png new file mode 100644 index 0000000..75f8ede Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/57.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/58.png b/iAFSblack/Library/Springy/DarkAssembly/58.png new file mode 100644 index 0000000..28657c9 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/58.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/59.png b/iAFSblack/Library/Springy/DarkAssembly/59.png new file mode 100644 index 0000000..54b350a Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/59.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/6.png b/iAFSblack/Library/Springy/DarkAssembly/6.png new file mode 100644 index 0000000..688aad1 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/6.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/60.png b/iAFSblack/Library/Springy/DarkAssembly/60.png new file mode 100644 index 0000000..1bc9fb3 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/60.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/61.png b/iAFSblack/Library/Springy/DarkAssembly/61.png new file mode 100644 index 0000000..0badccf Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/61.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/62.png b/iAFSblack/Library/Springy/DarkAssembly/62.png new file mode 100644 index 0000000..c50fb95 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/62.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/63.png b/iAFSblack/Library/Springy/DarkAssembly/63.png new file mode 100644 index 0000000..60fcb3b Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/63.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/64.png b/iAFSblack/Library/Springy/DarkAssembly/64.png new file mode 100644 index 0000000..46f39e0 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/64.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/65.png b/iAFSblack/Library/Springy/DarkAssembly/65.png new file mode 100644 index 0000000..d230b7b Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/65.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/66.png b/iAFSblack/Library/Springy/DarkAssembly/66.png new file mode 100644 index 0000000..c5dfa10 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/66.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/67.png b/iAFSblack/Library/Springy/DarkAssembly/67.png new file mode 100644 index 0000000..f74b8d1 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/67.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/68.png b/iAFSblack/Library/Springy/DarkAssembly/68.png new file mode 100644 index 0000000..e34af84 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/68.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/69.png b/iAFSblack/Library/Springy/DarkAssembly/69.png new file mode 100644 index 0000000..e2724cf Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/69.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/7.png b/iAFSblack/Library/Springy/DarkAssembly/7.png new file mode 100644 index 0000000..6d26269 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/7.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/70.png b/iAFSblack/Library/Springy/DarkAssembly/70.png new file mode 100644 index 0000000..17f4401 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/70.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/71.png b/iAFSblack/Library/Springy/DarkAssembly/71.png new file mode 100644 index 0000000..e5e6c53 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/71.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/72.png b/iAFSblack/Library/Springy/DarkAssembly/72.png new file mode 100644 index 0000000..4d560e2 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/72.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/73.png b/iAFSblack/Library/Springy/DarkAssembly/73.png new file mode 100644 index 0000000..78875d1 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/73.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/74.png b/iAFSblack/Library/Springy/DarkAssembly/74.png new file mode 100644 index 0000000..13995cf Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/74.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/75.png b/iAFSblack/Library/Springy/DarkAssembly/75.png new file mode 100644 index 0000000..ab56670 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/75.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/76.png b/iAFSblack/Library/Springy/DarkAssembly/76.png new file mode 100644 index 0000000..8755dfd Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/76.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/77.png b/iAFSblack/Library/Springy/DarkAssembly/77.png new file mode 100644 index 0000000..f45027f Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/77.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/78.png b/iAFSblack/Library/Springy/DarkAssembly/78.png new file mode 100644 index 0000000..b797b3a Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/78.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/79.png b/iAFSblack/Library/Springy/DarkAssembly/79.png new file mode 100644 index 0000000..872f938 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/79.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/8.png b/iAFSblack/Library/Springy/DarkAssembly/8.png new file mode 100644 index 0000000..404bee9 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/8.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/80.png b/iAFSblack/Library/Springy/DarkAssembly/80.png new file mode 100644 index 0000000..1e097bd Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/80.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/81.png b/iAFSblack/Library/Springy/DarkAssembly/81.png new file mode 100644 index 0000000..b2b2111 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/81.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/82.png b/iAFSblack/Library/Springy/DarkAssembly/82.png new file mode 100644 index 0000000..ba019ac Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/82.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/83.png b/iAFSblack/Library/Springy/DarkAssembly/83.png new file mode 100644 index 0000000..8de534d Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/83.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/84.png b/iAFSblack/Library/Springy/DarkAssembly/84.png new file mode 100644 index 0000000..8854622 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/84.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/85.png b/iAFSblack/Library/Springy/DarkAssembly/85.png new file mode 100644 index 0000000..027805d Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/85.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/86.png b/iAFSblack/Library/Springy/DarkAssembly/86.png new file mode 100644 index 0000000..3f60c4e Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/86.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/87.png b/iAFSblack/Library/Springy/DarkAssembly/87.png new file mode 100644 index 0000000..2b177b9 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/87.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/88.png b/iAFSblack/Library/Springy/DarkAssembly/88.png new file mode 100644 index 0000000..e9b45cf Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/88.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/89.png b/iAFSblack/Library/Springy/DarkAssembly/89.png new file mode 100644 index 0000000..84a4aa0 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/89.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/9.png b/iAFSblack/Library/Springy/DarkAssembly/9.png new file mode 100644 index 0000000..3f914f4 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/9.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/90.png b/iAFSblack/Library/Springy/DarkAssembly/90.png new file mode 100644 index 0000000..6189396 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/90.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/91.png b/iAFSblack/Library/Springy/DarkAssembly/91.png new file mode 100644 index 0000000..0217e45 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/91.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/92.png b/iAFSblack/Library/Springy/DarkAssembly/92.png new file mode 100644 index 0000000..1c17e3a Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/92.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/93.png b/iAFSblack/Library/Springy/DarkAssembly/93.png new file mode 100644 index 0000000..607ca76 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/93.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/94.png b/iAFSblack/Library/Springy/DarkAssembly/94.png new file mode 100644 index 0000000..58bcd1c Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/94.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/95.png b/iAFSblack/Library/Springy/DarkAssembly/95.png new file mode 100644 index 0000000..cc0b64a Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/95.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/96.png b/iAFSblack/Library/Springy/DarkAssembly/96.png new file mode 100644 index 0000000..5baf61c Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/96.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/97.png b/iAFSblack/Library/Springy/DarkAssembly/97.png new file mode 100644 index 0000000..8855541 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/97.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/98.png b/iAFSblack/Library/Springy/DarkAssembly/98.png new file mode 100644 index 0000000..f631434 Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/98.png differ diff --git a/iAFSblack/Library/Springy/DarkAssembly/99.png b/iAFSblack/Library/Springy/DarkAssembly/99.png new file mode 100644 index 0000000..b6e69fb Binary files /dev/null and b/iAFSblack/Library/Springy/DarkAssembly/99.png differ diff --git a/packages.sh b/packages.sh index be19e6d..013983c 100644 --- a/packages.sh +++ b/packages.sh @@ -1 +1,2 @@ dpkg-deb -Zgzip -b iAFS +dpkg-deb -Zgzip -b iAFSblack \ No newline at end of file