diff --git a/.eslintignore b/.eslintignore index 021b55308f..a1202ee4f6 100644 --- a/.eslintignore +++ b/.eslintignore @@ -12,7 +12,8 @@ migrations/* website/client-old/ # Temporarilly disabled. These should be removed when the linting errors are fixed -common/script/content/index.js +website/common/script/content/index.js +website/common/browserify.js debug-scripts/* scripts/* diff --git a/.gitignore b/.gitignore index 116fc74be6..04a5ac5ed3 100644 --- a/.gitignore +++ b/.gitignore @@ -2,8 +2,10 @@ website/client-old/gen website/client-old/common website/client-old/apidoc +website/client-old/js/habitrpg-shared.js* +website/client-old/css/habitrpg-shared.css website/transpiled-babel/ -common/transpiled-babel/ +website/common/transpiled-babel/ node_modules *.swp .idea* @@ -30,7 +32,6 @@ website/client-old/docs coverage coverage.html common/dist/scripts/* -common/dist/sprites/habitrpg-shared.css test/spec/mocks/translations.js diff --git a/Gruntfile.js b/Gruntfile.js index 33d93ae49d..ecc15e4eca 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -28,11 +28,11 @@ module.exports = function(grunt) { report: 'gzip' }, files:{ - "common/dist/sprites/habitrpg-shared.css": [ - "common/dist/sprites/spritesmith*.css", - "common/css/backer.css", - "common/css/Mounts.css", - "common/css/index.css" + "website/client-old/css/habitrpg-shared.css": [ + "website/assets/sprites/dist/spritesmith*.css", + "website/assets/sprites/css/backer.css", + "website/assets/sprites/css/Mounts.css", + "website/assets/sprites/css/index.css" ] } } @@ -57,10 +57,10 @@ module.exports = function(grunt) { files: [ {expand: true, cwd: 'website/client-old/', src: 'favicon.ico', dest: 'website/build/'}, {expand: true, cwd: 'website/client-old/', src: 'favicon_192x192.png', dest: 'website/build/'}, - {expand: true, cwd: '', src: 'common/dist/sprites/spritesmith*.png', dest: 'website/build/'}, - {expand: true, cwd: '', src: 'common/img/sprites/backer-only/*.gif', dest: 'website/build/'}, - {expand: true, cwd: '', src: 'common/img/sprites/npc_ian.gif', dest: 'website/build/'}, - {expand: true, cwd: '', src: 'common/img/sprites/quest_*.gif', dest: 'website/build/'}, + {expand: true, cwd: 'website/assets/sprites/dist/', src: 'spritesmith*.png', dest: 'website/build/'}, + {expand: true, cwd: '', src: 'website/assets/sprites/backer-only/*.gif', dest: 'website/build/'}, + {expand: true, cwd: '', src: 'website/assets/sprites/npc_ian.gif', dest: 'website/build/'}, + {expand: true, cwd: '', src: 'website/assets/sprites/quest_*.gif', dest: 'website/build/'}, {expand: true, cwd: 'website/client-old/', src: 'bower_components/bootstrap/dist/fonts/*', dest: 'website/build/'} ] } @@ -77,10 +77,10 @@ module.exports = function(grunt) { 'website/build/*.css', 'website/build/favicon.ico', 'website/build/favicon_192x192.png', - 'website/build/common/dist/sprites/*.png', - 'website/build/common/img/sprites/backer-only/*.gif', - 'website/build/common/img/sprites/npc_ian.gif', - 'website/build/common/img/sprites/quest_*.gif', + 'website/build/website/assets/sprites/dist/*.png', + 'website/build/website/assets/sprites/backer-only/*.gif', + 'website/build/website/assets/sprites/npc_ian.gif', + 'website/build/website/assets/sprites/quest_*.gif', 'website/build/bower_components/bootstrap/dist/fonts/*' ], dest: 'website/build/*.css' diff --git a/common/.eslintrc b/common/.eslintrc deleted file mode 100644 index 20c282864a..0000000000 --- a/common/.eslintrc +++ /dev/null @@ -1,4 +0,0 @@ -{ - "extends": "habitrpg/browser" -} - diff --git a/common/README.md b/common/README.md deleted file mode 100644 index c7ecb052a6..0000000000 --- a/common/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# Common - -Shared resources useful for the multiple Habitica repositories, that way all the repositories remain in-sync with common characteristics. Includes things like: - - * Assets - sprites, images, etc - * CSS - especially, esp. sprite-sheet mapping - * Algorithms - level up algorithm, scoring functions, etc - * View helper functions that may come in handy for multiple client MVCs - * Item definitions - weapons, armor, pets - -## Compiling spritesheets -Because of some wonkiness with Heroku, the spritesheet compilation is not part of the production build process and must be done manually when new images are added by running: - -``` bash -npm run sprites -``` diff --git a/karma.conf.js b/karma.conf.js index ba33a75392..df09c4276b 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -32,7 +32,7 @@ module.exports = function karmaConfig (config) { 'website/client-old/bower_components/select2/select2.js', 'website/client-old/bower_components/angular-ui-select2/src/select2.js', 'website/client-old/bower_components/habitica-markdown/dist/habitica-markdown.min.js', - 'common/dist/scripts/habitrpg-shared.js', + 'website/client-old/js/habitrpg-shared.js', 'test/client-old/spec/mocks/**/*.js', diff --git a/tasks/gulp-babelify.js b/tasks/gulp-babelify.js index 5baa45fbd3..f6a6cbf3f0 100644 --- a/tasks/gulp-babelify.js +++ b/tasks/gulp-babelify.js @@ -8,7 +8,7 @@ import babel from 'babelify'; gulp.task('browserify', function () { let bundler = browserify({ - entries: './common/browserify.js', + entries: './website/common/browserify.js', debug: true, transform: [[babel, { compact: false }]], }); @@ -23,9 +23,9 @@ gulp.task('browserify', function () { this.emit('end'); }) .pipe(sourcemaps.write('./')) - .pipe(gulp.dest('./common/dist/scripts/')); + .pipe(gulp.dest('./website/client-old/js/')); }); gulp.task('browserify:watch', () => { - gulp.watch('./common/script/**/*.js', ['browserify']); + gulp.watch('./website/common/script/**/*.js', ['browserify']); }); diff --git a/tasks/gulp-build.js b/tasks/gulp-build.js index cd53140a17..6218bca763 100644 --- a/tasks/gulp-build.js +++ b/tasks/gulp-build.js @@ -18,9 +18,9 @@ gulp.task('build:src', () => { }); gulp.task('build:common', () => { - return gulp.src('common/script/**/*.js') + return gulp.src('website/common/script/**/*.js') .pipe(babel()) - .pipe(gulp.dest('common/transpiled-babel/')); + .pipe(gulp.dest('website/common/transpiled-babel/')); }); gulp.task('build:server', ['build:src', 'build:common']); @@ -30,7 +30,7 @@ gulp.task('build:dev', ['browserify', 'prepare:staticNewStuff'], (done) => { }); gulp.task('build:dev:watch', ['build:dev'], () => { - gulp.watch(['website/client-old/**/*.styl', 'common/script/*']); + gulp.watch(['website/client-old/**/*.styl', 'website/common/script/*']); }); gulp.task('build:prod', ['browserify', 'build:server', 'prepare:staticNewStuff'], (done) => { diff --git a/tasks/gulp-sprites.js b/tasks/gulp-sprites.js index 4c89871fc4..5ccdbbc3ac 100644 --- a/tasks/gulp-sprites.js +++ b/tasks/gulp-sprites.js @@ -10,17 +10,17 @@ import {each} from 'lodash'; // https://github.com/Ensighten/grunt-spritesmith/issues/67#issuecomment-34786248 const MAX_SPRITESHEET_SIZE = 1024 * 1024 * 3; -const DIST_PATH = 'common/dist/sprites/'; +const DIST_PATH = 'website/assets/sprites/dist/'; gulp.task('sprites:compile', ['sprites:clean', 'sprites:main', 'sprites:largeSprites', 'sprites:checkCompiledDimensions']); gulp.task('sprites:main', () => { - let mainSrc = sync('common/img/sprites/spritesmith/**/*.png'); + let mainSrc = sync('website/assets/sprites/spritesmith/**/*.png'); return createSpritesStream('main', mainSrc); }); gulp.task('sprites:largeSprites', () => { - let largeSrc = sync('common/img/sprites/spritesmith_large/**/*.png'); + let largeSrc = sync('website/assets/sprites/spritesmith_large/**/*.png'); return createSpritesStream('largeSprites', largeSrc); }); @@ -65,7 +65,7 @@ function createSpritesStream(name, src) { cssName: `spritesmith-${name}-${index}.css`, algorithm: 'binary-tree', padding: 1, - cssTemplate: 'common/css/css.template.handlebars', + cssTemplate: 'website/assets/sprites/css/css.template.handlebars', cssVarMap: cssVarMap })); diff --git a/tasks/gulp-transifex-test.js b/tasks/gulp-transifex-test.js index 6326069815..ffd23cb391 100644 --- a/tasks/gulp-transifex-test.js +++ b/tasks/gulp-transifex-test.js @@ -10,7 +10,7 @@ const SLACK_CONFIG = { emoji: 'transifex' } -const LOCALES = './common/locales/'; +const LOCALES = './website/common/locales/'; const ENGLISH_LOCALE = `${LOCALES}en/`; const ALL_LANGUAGES = getArrayOfLanguages(); diff --git a/test/api/v3/integration/content/GET-content.test.js b/test/api/v3/integration/content/GET-content.test.js index 9324fce398..fad68edae2 100644 --- a/test/api/v3/integration/content/GET-content.test.js +++ b/test/api/v3/integration/content/GET-content.test.js @@ -2,7 +2,7 @@ import { requester, translate as t, } from '../../../../helpers/api-v3-integration.helper'; -import i18n from '../../../../../common/script/i18n'; +import i18n from '../../../../../website/common/script/i18n'; describe('GET /content', () => { it('returns content (and does not require authentication)', async () => { diff --git a/test/api/v3/integration/groups/GET-groups_groupId_members.test.js b/test/api/v3/integration/groups/GET-groups_groupId_members.test.js index db529112a0..02f05062de 100644 --- a/test/api/v3/integration/groups/GET-groups_groupId_members.test.js +++ b/test/api/v3/integration/groups/GET-groups_groupId_members.test.js @@ -4,7 +4,7 @@ import { translate as t, } from '../../../../helpers/api-v3-integration.helper'; import { v4 as generateUUID } from 'uuid'; -import common from '../../../../../common'; +import common from '../../../../../website/common'; describe('GET /groups/:groupId/members', () => { let user; diff --git a/test/api/v3/integration/members/GET-members_id.test.js b/test/api/v3/integration/members/GET-members_id.test.js index 89ed5ca79a..58ca1142d4 100644 --- a/test/api/v3/integration/members/GET-members_id.test.js +++ b/test/api/v3/integration/members/GET-members_id.test.js @@ -3,7 +3,7 @@ import { translate as t, } from '../../../../helpers/api-v3-integration.helper'; import { v4 as generateUUID } from 'uuid'; -import common from '../../../../../common'; +import common from '../../../../../website/common'; describe('GET /members/:memberId', () => { let user; diff --git a/test/api/v3/integration/quests/POST-groups_groupId_quests_invite.test.js b/test/api/v3/integration/quests/POST-groups_groupId_quests_invite.test.js index 973a51a1a5..6ae491fc8a 100644 --- a/test/api/v3/integration/quests/POST-groups_groupId_quests_invite.test.js +++ b/test/api/v3/integration/quests/POST-groups_groupId_quests_invite.test.js @@ -4,7 +4,7 @@ import { sleep, } from '../../../../helpers/api-v3-integration.helper'; import { v4 as generateUUID } from 'uuid'; -import { quests as questScrolls } from '../../../../../common/script/content'; +import { quests as questScrolls } from '../../../../../website/common/script/content'; describe('POST /groups/:groupId/quests/invite/:questKey', () => { let questingGroup; diff --git a/test/api/v3/integration/user/GET-user.test.js b/test/api/v3/integration/user/GET-user.test.js index d299bb486c..d23b8dea6a 100644 --- a/test/api/v3/integration/user/GET-user.test.js +++ b/test/api/v3/integration/user/GET-user.test.js @@ -1,7 +1,7 @@ import { generateUser, } from '../../../../helpers/api-integration/v3'; -import common from '../../../../../common'; +import common from '../../../../../website/common'; describe('GET /user', () => { let user; diff --git a/test/api/v3/integration/user/GET-user_anonymized.test.js b/test/api/v3/integration/user/GET-user_anonymized.test.js index 136174a75e..d476cf326e 100644 --- a/test/api/v3/integration/user/GET-user_anonymized.test.js +++ b/test/api/v3/integration/user/GET-user_anonymized.test.js @@ -4,7 +4,7 @@ import { generateDaily, generateReward, } from '../../../../helpers/api-integration/v3'; -import common from '../../../../../common'; +import common from '../../../../../website/common'; import { v4 as generateUUID } from 'uuid'; describe('GET /user/anonymized', () => { diff --git a/test/api/v3/integration/user/POST-user_buy.test.js b/test/api/v3/integration/user/POST-user_buy.test.js index 429f551218..7e07f475a2 100644 --- a/test/api/v3/integration/user/POST-user_buy.test.js +++ b/test/api/v3/integration/user/POST-user_buy.test.js @@ -4,7 +4,7 @@ import { generateUser, translate as t, } from '../../../../helpers/api-integration/v3'; -import shared from '../../../../../common/script'; +import shared from '../../../../../website/common/script'; let content = shared.content; diff --git a/test/api/v3/integration/user/POST-user_buy_health_potion.test.js b/test/api/v3/integration/user/POST-user_buy_health_potion.test.js index 835e893bd7..8e29964997 100644 --- a/test/api/v3/integration/user/POST-user_buy_health_potion.test.js +++ b/test/api/v3/integration/user/POST-user_buy_health_potion.test.js @@ -2,7 +2,7 @@ import { generateUser, translate as t, } from '../../../../helpers/api-integration/v3'; -import shared from '../../../../../common/script'; +import shared from '../../../../../website/common/script'; let content = shared.content; diff --git a/test/api/v3/integration/user/POST-user_buy_quest.test.js b/test/api/v3/integration/user/POST-user_buy_quest.test.js index 3330988537..17a75b5ec7 100644 --- a/test/api/v3/integration/user/POST-user_buy_quest.test.js +++ b/test/api/v3/integration/user/POST-user_buy_quest.test.js @@ -2,7 +2,7 @@ import { generateUser, translate as t, } from '../../../../helpers/api-integration/v3'; -import shared from '../../../../../common/script'; +import shared from '../../../../../website/common/script'; let content = shared.content; diff --git a/test/api/v3/integration/user/POST-user_buy_special_spell.test.js b/test/api/v3/integration/user/POST-user_buy_special_spell.test.js index 2ae16d1baf..f6cc20b8d9 100644 --- a/test/api/v3/integration/user/POST-user_buy_special_spell.test.js +++ b/test/api/v3/integration/user/POST-user_buy_special_spell.test.js @@ -2,7 +2,7 @@ import { generateUser, translate as t, } from '../../../../helpers/api-integration/v3'; -import shared from '../../../../../common/script'; +import shared from '../../../../../website/common/script'; let content = shared.content; diff --git a/test/api/v3/integration/user/POST-user_feed_pet_food.test.js b/test/api/v3/integration/user/POST-user_feed_pet_food.test.js index 87226965d1..253bfb1ca0 100644 --- a/test/api/v3/integration/user/POST-user_feed_pet_food.test.js +++ b/test/api/v3/integration/user/POST-user_feed_pet_food.test.js @@ -4,7 +4,7 @@ import { generateUser, translate as t, } from '../../../../helpers/api-integration/v3'; -import content from '../../../../../common/script/content'; +import content from '../../../../../website/common/script/content'; describe('POST /user/feed/:pet/:food', () => { let user; diff --git a/test/api/v3/integration/user/POST-user_open_mystery_item.test.js b/test/api/v3/integration/user/POST-user_open_mystery_item.test.js index 6cfc0fe254..170a7e09ca 100644 --- a/test/api/v3/integration/user/POST-user_open_mystery_item.test.js +++ b/test/api/v3/integration/user/POST-user_open_mystery_item.test.js @@ -2,7 +2,7 @@ import { generateUser, translate as t, } from '../../../../helpers/api-integration/v3'; -import content from '../../../../../common/script/content/index'; +import content from '../../../../../website/common/script/content/index'; describe('POST /user/open-mystery-item', () => { let user; diff --git a/test/api/v3/integration/user/POST-user_sell.test.js b/test/api/v3/integration/user/POST-user_sell.test.js index 1914336175..c9a0fdba64 100644 --- a/test/api/v3/integration/user/POST-user_sell.test.js +++ b/test/api/v3/integration/user/POST-user_sell.test.js @@ -2,7 +2,7 @@ import { generateUser, translate as t, } from '../../../../helpers/api-integration/v3'; -import content from '../../../../../common/script/content'; +import content from '../../../../../website/common/script/content'; describe('POST /user/sell/:type/:key', () => { let user; diff --git a/test/api/v3/unit/libs/cron.test.js b/test/api/v3/unit/libs/cron.test.js index 19268c59f7..71a23e6ae9 100644 --- a/test/api/v3/unit/libs/cron.test.js +++ b/test/api/v3/unit/libs/cron.test.js @@ -7,7 +7,7 @@ import { recoverCron, cron } from '../../../../../website/server/libs/cron'; import { model as User } from '../../../../../website/server/models/user'; import * as Tasks from '../../../../../website/server/models/task'; import { clone } from 'lodash'; -import common from '../../../../../common'; +import common from '../../../../../website/common'; // const scoreTask = common.ops.scoreTask; diff --git a/test/api/v3/unit/libs/taskManager.js b/test/api/v3/unit/libs/taskManager.js index 0c40a51c58..1d0e241140 100644 --- a/test/api/v3/unit/libs/taskManager.js +++ b/test/api/v3/unit/libs/taskManager.js @@ -3,7 +3,7 @@ import { getTasks, syncableAttrs, } from '../../../../../website/server/libs/taskManager'; -import i18n from '../../../../../common/script/i18n'; +import i18n from '../../../../../website/common/script/i18n'; import { generateUser, generateGroup, diff --git a/test/api/v3/unit/middlewares/ensureAccessRight.test.js b/test/api/v3/unit/middlewares/ensureAccessRight.test.js index fee84ce124..f4cf909a95 100644 --- a/test/api/v3/unit/middlewares/ensureAccessRight.test.js +++ b/test/api/v3/unit/middlewares/ensureAccessRight.test.js @@ -4,7 +4,7 @@ import { generateReq, generateNext, } from '../../../../helpers/api-unit.helper'; -import i18n from '../../../../../common/script/i18n'; +import i18n from '../../../../../website/common/script/i18n'; import { ensureAdmin, ensureSudo } from '../../../../../website/server/middlewares/ensureAccessRight'; import { NotAuthorized } from '../../../../../website/server/libs/errors'; diff --git a/test/api/v3/unit/middlewares/language.test.js b/test/api/v3/unit/middlewares/language.test.js index 20bac3c518..18caad8527 100644 --- a/test/api/v3/unit/middlewares/language.test.js +++ b/test/api/v3/unit/middlewares/language.test.js @@ -7,7 +7,7 @@ import { getUserLanguage, attachTranslateFunction, } from '../../../../../website/server/middlewares/language'; -import common from '../../../../../common'; +import common from '../../../../../website/common'; import Bluebird from 'bluebird'; import { model as User } from '../../../../../website/server/models/user'; diff --git a/test/api/v3/unit/models/challenge.test.js b/test/api/v3/unit/models/challenge.test.js index 99080aacf6..55cc68a1d5 100644 --- a/test/api/v3/unit/models/challenge.test.js +++ b/test/api/v3/unit/models/challenge.test.js @@ -2,7 +2,7 @@ import { model as Challenge } from '../../../../../website/server/models/challen import { model as Group } from '../../../../../website/server/models/group'; import { model as User } from '../../../../../website/server/models/user'; import * as Tasks from '../../../../../website/server/models/task'; -import common from '../../../../../common/'; +import common from '../../../../../website/common/'; import { each, find } from 'lodash'; describe('Challenge Model', () => { diff --git a/test/api/v3/unit/models/group.test.js b/test/api/v3/unit/models/group.test.js index 577d8108a6..427cc9952f 100644 --- a/test/api/v3/unit/models/group.test.js +++ b/test/api/v3/unit/models/group.test.js @@ -1,10 +1,10 @@ import { sleep } from '../../../../helpers/api-unit.helper'; import { model as Group } from '../../../../../website/server/models/group'; import { model as User } from '../../../../../website/server/models/user'; -import { quests as questScrolls } from '../../../../../common/script/content'; +import { quests as questScrolls } from '../../../../../website/common/script/content'; import * as email from '../../../../../website/server/libs/email'; import validator from 'validator'; -import { TAVERN_ID } from '../../../../../common/script/'; +import { TAVERN_ID } from '../../../../../website/common/script/'; describe('Group Model', () => { let party, questLeader, participatingMember, nonParticipatingMember, undecidedMember; diff --git a/test/api/v3/unit/models/user.test.js b/test/api/v3/unit/models/user.test.js index c4a1ae1a72..64f6b3e332 100644 --- a/test/api/v3/unit/models/user.test.js +++ b/test/api/v3/unit/models/user.test.js @@ -1,5 +1,5 @@ import { model as User } from '../../../../../website/server/models/user'; -import common from '../../../../../common'; +import common from '../../../../../website/common'; describe('User Model', () => { it('keeps user._tmp when calling .toJSON', () => { diff --git a/test/common/count.js b/test/common/count.js index a19d648267..fd44d04b7d 100644 --- a/test/common/count.js +++ b/test/common/count.js @@ -1,5 +1,5 @@ /* eslint-disable camelcase */ -let count = require('../../common/script/count'); +let count = require('../../website/common/script/count'); describe('count', () => { describe('beastMasterProgress', () => { diff --git a/test/common/fns/autoAllocate.test.js b/test/common/fns/autoAllocate.test.js index e2e807075a..7db6f0d371 100644 --- a/test/common/fns/autoAllocate.test.js +++ b/test/common/fns/autoAllocate.test.js @@ -1,4 +1,4 @@ -import autoAllocate from '../../../common/script/fns/autoAllocate'; +import autoAllocate from '../../../website/common/script/fns/autoAllocate'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/fns/crit.test.js b/test/common/fns/crit.test.js index 4f43c55fa1..ecac037a97 100644 --- a/test/common/fns/crit.test.js +++ b/test/common/fns/crit.test.js @@ -1,4 +1,4 @@ -import crit from '../../../common/script/fns/crit'; +import crit from '../../../website/common/script/fns/crit'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/fns/handleTwoHanded.js b/test/common/fns/handleTwoHanded.js index 8d191ff114..b45594fd12 100644 --- a/test/common/fns/handleTwoHanded.js +++ b/test/common/fns/handleTwoHanded.js @@ -1,6 +1,6 @@ -import handleTwoHanded from '../../../common/script/fns/handleTwoHanded'; -import content from '../../../common/script/content/index'; -import i18n from '../../../common/script/i18n'; +import handleTwoHanded from '../../../website/common/script/fns/handleTwoHanded'; +import content from '../../../website/common/script/content/index'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/fns/predictableRandom.test.js b/test/common/fns/predictableRandom.test.js index 1cd47fc426..a4c726699e 100644 --- a/test/common/fns/predictableRandom.test.js +++ b/test/common/fns/predictableRandom.test.js @@ -1,4 +1,4 @@ -import predictableRandom from '../../../common/script/fns/predictableRandom'; +import predictableRandom from '../../../website/common/script/fns/predictableRandom'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/fns/randomDrop.test.js b/test/common/fns/randomDrop.test.js index bd2cd2fe51..b53faffe9e 100644 --- a/test/common/fns/randomDrop.test.js +++ b/test/common/fns/randomDrop.test.js @@ -1,4 +1,4 @@ -import randomDrop from '../../../common/script/fns/randomDrop'; +import randomDrop from '../../../website/common/script/fns/randomDrop'; import { generateUser, generateTodo, diff --git a/test/common/fns/randomVal.js b/test/common/fns/randomVal.js index b4b8e377d3..f2e22cae61 100644 --- a/test/common/fns/randomVal.js +++ b/test/common/fns/randomVal.js @@ -1,4 +1,4 @@ -import randomVal from '../../../common/script/fns/randomVal'; +import randomVal from '../../../website/common/script/fns/randomVal'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/fns/statsComputed.test.js b/test/common/fns/statsComputed.test.js index 07b009368d..5e53b11f2c 100644 --- a/test/common/fns/statsComputed.test.js +++ b/test/common/fns/statsComputed.test.js @@ -1,4 +1,4 @@ -import statsComputed from '../../../common/script/libs/statsComputed'; +import statsComputed from '../../../website/common/script/libs/statsComputed'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/fns/ultimateGear.js b/test/common/fns/ultimateGear.js index f141a0dbbc..dc2b401e81 100644 --- a/test/common/fns/ultimateGear.js +++ b/test/common/fns/ultimateGear.js @@ -1,4 +1,4 @@ -import ultimateGear from '../../../common/script/fns/ultimateGear'; +import ultimateGear from '../../../website/common/script/fns/ultimateGear'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/fns/updateStats.test.js b/test/common/fns/updateStats.test.js index 62cc485df7..e0ca40f98c 100644 --- a/test/common/fns/updateStats.test.js +++ b/test/common/fns/updateStats.test.js @@ -1,4 +1,4 @@ -import updateStats from '../../../common/script/fns/updateStats'; +import updateStats from '../../../website/common/script/fns/updateStats'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/libs/appliedTags.test.js b/test/common/libs/appliedTags.test.js index 66f3de4758..b40b0ed232 100644 --- a/test/common/libs/appliedTags.test.js +++ b/test/common/libs/appliedTags.test.js @@ -1,4 +1,4 @@ -import appliedTags from '../../../common/script/libs/appliedTags'; +import appliedTags from '../../../website/common/script/libs/appliedTags'; describe('appliedTags', () => { it('returns the tasks', () => { diff --git a/test/common/libs/gold.test.js b/test/common/libs/gold.test.js index 2cdfc3ef65..e72c063835 100644 --- a/test/common/libs/gold.test.js +++ b/test/common/libs/gold.test.js @@ -1,4 +1,4 @@ -import gold from '../../../common/script/libs/gold'; +import gold from '../../../website/common/script/libs/gold'; describe('gold', () => { it('is 0', () => { diff --git a/test/common/libs/noTags.test.js b/test/common/libs/noTags.test.js index dcd2481854..6c50108e04 100644 --- a/test/common/libs/noTags.test.js +++ b/test/common/libs/noTags.test.js @@ -1,4 +1,4 @@ -import noTags from '../../../common/script/libs/noTags'; +import noTags from '../../../website/common/script/libs/noTags'; describe('noTags', () => { it('returns true for no tags', () => { diff --git a/test/common/libs/percent.test.js b/test/common/libs/percent.test.js index 9d1ba31024..73f3c6b480 100644 --- a/test/common/libs/percent.test.js +++ b/test/common/libs/percent.test.js @@ -1,4 +1,4 @@ -import percent from '../../../common/script/libs/percent'; +import percent from '../../../website/common/script/libs/percent'; describe('percent', () => { it('with direction "up"', () => { diff --git a/test/common/libs/pickDeep.js b/test/common/libs/pickDeep.js index 4a8741269d..70fc1904b9 100644 --- a/test/common/libs/pickDeep.js +++ b/test/common/libs/pickDeep.js @@ -1,4 +1,4 @@ -import pickDeep from '../../../common/script/libs/pickDeep'; +import pickDeep from '../../../website/common/script/libs/pickDeep'; describe('pickDeep', () => { it('throws an error if "properties" is not an array', () => { diff --git a/test/common/libs/refPush.js b/test/common/libs/refPush.js index 4183845c9a..f4470fccb6 100644 --- a/test/common/libs/refPush.js +++ b/test/common/libs/refPush.js @@ -1,4 +1,4 @@ -import shared from '../../../common'; +import shared from '../../../website/common'; import { v4 as generateUUID } from 'uuid'; describe('refPush', () => { diff --git a/test/common/libs/shops.js b/test/common/libs/shops.js index 0ae721cbc9..2c7c5d49d5 100644 --- a/test/common/libs/shops.js +++ b/test/common/libs/shops.js @@ -1,4 +1,4 @@ -import shared from '../../../common'; +import shared from '../../../website/common'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/libs/silver.test.js b/test/common/libs/silver.test.js index 5bd614fcd1..e218ea4d02 100644 --- a/test/common/libs/silver.test.js +++ b/test/common/libs/silver.test.js @@ -1,4 +1,4 @@ -import silver from '../../../common/script/libs/silver'; +import silver from '../../../website/common/script/libs/silver'; describe('silver', () => { it('is 0', () => { diff --git a/test/common/libs/splitWhitespace.test.js b/test/common/libs/splitWhitespace.test.js index 0b445d5a38..bbe23c06b6 100644 --- a/test/common/libs/splitWhitespace.test.js +++ b/test/common/libs/splitWhitespace.test.js @@ -1,4 +1,4 @@ -import splitWhitespace from '../../../common/script/libs/splitWhitespace'; +import splitWhitespace from '../../../website/common/script/libs/splitWhitespace'; describe('splitWhitespace', () => { it('returns an array', () => { diff --git a/test/common/libs/taskClasses.test.js b/test/common/libs/taskClasses.test.js index 226d740bac..dbfa6881a6 100644 --- a/test/common/libs/taskClasses.test.js +++ b/test/common/libs/taskClasses.test.js @@ -1,4 +1,4 @@ -import taskClasses from '../../../common/script/libs/taskClasses'; +import taskClasses from '../../../website/common/script/libs/taskClasses'; describe('taskClasses', () => { let task = {}; diff --git a/test/common/libs/taskDefaults.test.js b/test/common/libs/taskDefaults.test.js index c970634137..edc151ff67 100644 --- a/test/common/libs/taskDefaults.test.js +++ b/test/common/libs/taskDefaults.test.js @@ -1,4 +1,4 @@ -import taskDefaults from '../../../common/script/libs/taskDefaults'; +import taskDefaults from '../../../website/common/script/libs/taskDefaults'; describe('taskDefaults', () => { it('applies defaults to undefined type or habit', () => { diff --git a/test/common/libs/updateStore.js b/test/common/libs/updateStore.js index 97d00076af..e0e856adca 100644 --- a/test/common/libs/updateStore.js +++ b/test/common/libs/updateStore.js @@ -1,8 +1,8 @@ -import shared from '../../../common'; +import shared from '../../../website/common'; import { generateUser, } from '../../helpers/common.helper'; -import i18n from '../../../common/script/i18n'; +import i18n from '../../../website/common/script/i18n'; describe('updateStore', () => { context('returns a list of gear items available for purchase', () => { diff --git a/test/common/ops/addTask.js b/test/common/ops/addTask.js index d55a77c389..ebe9c1a563 100644 --- a/test/common/ops/addTask.js +++ b/test/common/ops/addTask.js @@ -1,4 +1,4 @@ -import addTask from '../../../common/script/ops/addTask'; +import addTask from '../../../website/common/script/ops/addTask'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/ops/addWebhook.test.js b/test/common/ops/addWebhook.test.js index 11d26e622b..ce7dbdb3d0 100644 --- a/test/common/ops/addWebhook.test.js +++ b/test/common/ops/addWebhook.test.js @@ -1,8 +1,8 @@ -import addWebhook from '../../../common/script/ops/addWebhook'; +import addWebhook from '../../../website/common/script/ops/addWebhook'; import { BadRequest, -} from '../../../common/script/libs/errors'; -import i18n from '../../../common/script/i18n'; +} from '../../../website/common/script/libs/errors'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/ops/allocate.js b/test/common/ops/allocate.js index 65f3c74fc9..b314ae32ed 100644 --- a/test/common/ops/allocate.js +++ b/test/common/ops/allocate.js @@ -1,9 +1,9 @@ -import allocate from '../../../common/script/ops/allocate'; +import allocate from '../../../website/common/script/ops/allocate'; import { BadRequest, NotAuthorized, -} from '../../../common/script/libs/errors'; -import i18n from '../../../common/script/i18n'; +} from '../../../website/common/script/libs/errors'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/ops/allocateNow.js b/test/common/ops/allocateNow.js index 4fe473ec9e..548eb238e2 100644 --- a/test/common/ops/allocateNow.js +++ b/test/common/ops/allocateNow.js @@ -1,4 +1,4 @@ -import allocateNow from '../../../common/script/ops/allocateNow'; +import allocateNow from '../../../website/common/script/ops/allocateNow'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/ops/blockUser.test.js b/test/common/ops/blockUser.test.js index 950af25d0c..07bab5b0bb 100644 --- a/test/common/ops/blockUser.test.js +++ b/test/common/ops/blockUser.test.js @@ -1,8 +1,8 @@ -import blockUser from '../../../common/script/ops/blockUser'; +import blockUser from '../../../website/common/script/ops/blockUser'; import { generateUser, } from '../../helpers/common.helper'; -import i18n from '../../../common/script/i18n'; +import i18n from '../../../website/common/script/i18n'; describe('shared.ops.blockUser', () => { let user; diff --git a/test/common/ops/buy.js b/test/common/ops/buy.js index 9e05cc5225..52d5917132 100644 --- a/test/common/ops/buy.js +++ b/test/common/ops/buy.js @@ -2,11 +2,11 @@ import { generateUser, } from '../../helpers/common.helper'; -import buy from '../../../common/script/ops/buy'; +import buy from '../../../website/common/script/ops/buy'; import { BadRequest, -} from '../../../common/script/libs/errors'; -import i18n from '../../../common/script/i18n'; +} from '../../../website/common/script/libs/errors'; +import i18n from '../../../website/common/script/i18n'; describe('shared.ops.buy', () => { let user; diff --git a/test/common/ops/buyArmoire.js b/test/common/ops/buyArmoire.js index cea6d7abde..81f794dc48 100644 --- a/test/common/ops/buyArmoire.js +++ b/test/common/ops/buyArmoire.js @@ -4,14 +4,14 @@ import sinon from 'sinon'; // eslint-disable-line no-shadow import { generateUser, } from '../../helpers/common.helper'; -import count from '../../../common/script/count'; -import buyArmoire from '../../../common/script/ops/buyArmoire'; -import shared from '../../../common/script'; -import content from '../../../common/script/content/index'; +import count from '../../../website/common/script/count'; +import buyArmoire from '../../../website/common/script/ops/buyArmoire'; +import shared from '../../../website/common/script'; +import content from '../../../website/common/script/content/index'; import { NotAuthorized, -} from '../../../common/script/libs/errors'; -import i18n from '../../../common/script/i18n'; +} from '../../../website/common/script/libs/errors'; +import i18n from '../../../website/common/script/i18n'; describe('shared.ops.buyArmoire', () => { let user; diff --git a/test/common/ops/buyGear.js b/test/common/ops/buyGear.js index 4d1213e80d..4740b38daf 100644 --- a/test/common/ops/buyGear.js +++ b/test/common/ops/buyGear.js @@ -4,12 +4,12 @@ import sinon from 'sinon'; // eslint-disable-line no-shadow import { generateUser, } from '../../helpers/common.helper'; -import buyGear from '../../../common/script/ops/buyGear'; -import shared from '../../../common/script'; +import buyGear from '../../../website/common/script/ops/buyGear'; +import shared from '../../../website/common/script'; import { NotAuthorized, -} from '../../../common/script/libs/errors'; -import i18n from '../../../common/script/i18n'; +} from '../../../website/common/script/libs/errors'; +import i18n from '../../../website/common/script/i18n'; describe('shared.ops.buyGear', () => { let user; diff --git a/test/common/ops/buyHealthPotion.js b/test/common/ops/buyHealthPotion.js index 23a590bbdd..b7d6191c75 100644 --- a/test/common/ops/buyHealthPotion.js +++ b/test/common/ops/buyHealthPotion.js @@ -2,11 +2,11 @@ import { generateUser, } from '../../helpers/common.helper'; -import buyHealthPotion from '../../../common/script/ops/buyHealthPotion'; +import buyHealthPotion from '../../../website/common/script/ops/buyHealthPotion'; import { NotAuthorized, -} from '../../../common/script/libs/errors'; -import i18n from '../../../common/script/i18n'; +} from '../../../website/common/script/libs/errors'; +import i18n from '../../../website/common/script/i18n'; describe('shared.ops.buyHealthPotion', () => { let user; diff --git a/test/common/ops/buyMysterySet.js b/test/common/ops/buyMysterySet.js index 8e523a5a0a..600ad99b22 100644 --- a/test/common/ops/buyMysterySet.js +++ b/test/common/ops/buyMysterySet.js @@ -3,12 +3,12 @@ import { generateUser, } from '../../helpers/common.helper'; -import buyMysterySet from '../../../common/script/ops/buyMysterySet'; +import buyMysterySet from '../../../website/common/script/ops/buyMysterySet'; import { NotAuthorized, NotFound, -} from '../../../common/script/libs/errors'; -import i18n from '../../../common/script/i18n'; +} from '../../../website/common/script/libs/errors'; +import i18n from '../../../website/common/script/i18n'; describe('shared.ops.buyMysterySet', () => { let user; diff --git a/test/common/ops/buyQuest.js b/test/common/ops/buyQuest.js index aab691f64e..4bcd4c5eef 100644 --- a/test/common/ops/buyQuest.js +++ b/test/common/ops/buyQuest.js @@ -1,12 +1,12 @@ import { generateUser, } from '../../helpers/common.helper'; -import buyQuest from '../../../common/script/ops/buyQuest'; +import buyQuest from '../../../website/common/script/ops/buyQuest'; import { NotAuthorized, NotFound, -} from '../../../common/script/libs/errors'; -import i18n from '../../../common/script/i18n'; +} from '../../../website/common/script/libs/errors'; +import i18n from '../../../website/common/script/i18n'; describe('shared.ops.buyQuest', () => { let user; diff --git a/test/common/ops/buySpecialSpell.js b/test/common/ops/buySpecialSpell.js index 249f4bc8a6..5a24426f81 100644 --- a/test/common/ops/buySpecialSpell.js +++ b/test/common/ops/buySpecialSpell.js @@ -1,14 +1,14 @@ -import buySpecialSpell from '../../../common/script/ops/buySpecialSpell'; +import buySpecialSpell from '../../../website/common/script/ops/buySpecialSpell'; import { BadRequest, NotFound, NotAuthorized, -} from '../../../common/script/libs/errors'; -import i18n from '../../../common/script/i18n'; +} from '../../../website/common/script/libs/errors'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; -import content from '../../../common/script/content/index'; +import content from '../../../website/common/script/content/index'; describe('shared.ops.buySpecialSpell', () => { let user; diff --git a/test/common/ops/changeClass.js b/test/common/ops/changeClass.js index ae4a180178..f89be6ddbc 100644 --- a/test/common/ops/changeClass.js +++ b/test/common/ops/changeClass.js @@ -1,8 +1,8 @@ -import changeClass from '../../../common/script/ops/changeClass'; +import changeClass from '../../../website/common/script/ops/changeClass'; import { NotAuthorized, -} from '../../../common/script/libs/errors'; -import i18n from '../../../common/script/i18n'; +} from '../../../website/common/script/libs/errors'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/ops/clearPMs.test.js b/test/common/ops/clearPMs.test.js index cf1408e5a6..8fd29f7ae1 100644 --- a/test/common/ops/clearPMs.test.js +++ b/test/common/ops/clearPMs.test.js @@ -1,4 +1,4 @@ -import clearPMs from '../../../common/script/ops/clearPMs'; +import clearPMs from '../../../website/common/script/ops/clearPMs'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/ops/deletePM.test.js b/test/common/ops/deletePM.test.js index 109595eca9..abc7e4f12c 100644 --- a/test/common/ops/deletePM.test.js +++ b/test/common/ops/deletePM.test.js @@ -1,4 +1,4 @@ -import deletePM from '../../../common/script/ops/deletePM'; +import deletePM from '../../../website/common/script/ops/deletePM'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/ops/deleteWebhook.test.js b/test/common/ops/deleteWebhook.test.js index 8e27a09e3e..bacc5db459 100644 --- a/test/common/ops/deleteWebhook.test.js +++ b/test/common/ops/deleteWebhook.test.js @@ -1,4 +1,4 @@ -import deleteWebhook from '../../../common/script/ops/deleteWebhook'; +import deleteWebhook from '../../../website/common/script/ops/deleteWebhook'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/ops/disableClasses.js b/test/common/ops/disableClasses.js index 81ac1a9792..60bd3998ab 100644 --- a/test/common/ops/disableClasses.js +++ b/test/common/ops/disableClasses.js @@ -1,4 +1,4 @@ -import disableClasses from '../../../common/script/ops/disableClasses'; +import disableClasses from '../../../website/common/script/ops/disableClasses'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/ops/equip.js b/test/common/ops/equip.js index 6634f16587..f983891306 100644 --- a/test/common/ops/equip.js +++ b/test/common/ops/equip.js @@ -1,10 +1,10 @@ /* eslint-disable camelcase */ -import equip from '../../../common/script/ops/equip'; -import i18n from '../../../common/script/i18n'; +import equip from '../../../website/common/script/ops/equip'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; -import content from '../../../common/script/content/index'; +import content from '../../../website/common/script/content/index'; describe('shared.ops.equip', () => { let user; diff --git a/test/common/ops/feed.js b/test/common/ops/feed.js index 0b2f78f8d1..fb9dcb4af9 100644 --- a/test/common/ops/feed.js +++ b/test/common/ops/feed.js @@ -1,11 +1,11 @@ -import feed from '../../../common/script/ops/feed'; -import content from '../../../common/script/content'; +import feed from '../../../website/common/script/ops/feed'; +import content from '../../../website/common/script/content'; import { BadRequest, NotAuthorized, NotFound, -} from '../../../common/script/libs/errors'; -import i18n from '../../../common/script/i18n'; +} from '../../../website/common/script/libs/errors'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/ops/hatch.js b/test/common/ops/hatch.js index 87131db13b..fc6c7875f9 100644 --- a/test/common/ops/hatch.js +++ b/test/common/ops/hatch.js @@ -1,10 +1,10 @@ -import hatch from '../../../common/script/ops/hatch'; +import hatch from '../../../website/common/script/ops/hatch'; import { BadRequest, NotAuthorized, NotFound, -} from '../../../common/script/libs/errors'; -import i18n from '../../../common/script/i18n'; +} from '../../../website/common/script/libs/errors'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/ops/hourglassPurchase.js b/test/common/ops/hourglassPurchase.js index 98400f82b5..118f6bddce 100644 --- a/test/common/ops/hourglassPurchase.js +++ b/test/common/ops/hourglassPurchase.js @@ -1,10 +1,10 @@ -import hourglassPurchase from '../../../common/script/ops/hourglassPurchase'; +import hourglassPurchase from '../../../website/common/script/ops/hourglassPurchase'; import { BadRequest, NotAuthorized, -} from '../../../common/script/libs/errors'; -import i18n from '../../../common/script/i18n'; -import content from '../../../common/script/content/index'; +} from '../../../website/common/script/libs/errors'; +import i18n from '../../../website/common/script/i18n'; +import content from '../../../website/common/script/content/index'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/ops/openMysteryItem.js b/test/common/ops/openMysteryItem.js index b9c896cbdf..3766503275 100644 --- a/test/common/ops/openMysteryItem.js +++ b/test/common/ops/openMysteryItem.js @@ -1,12 +1,12 @@ -import openMysteryItem from '../../../common/script/ops/openMysteryItem'; +import openMysteryItem from '../../../website/common/script/ops/openMysteryItem'; import { generateUser, } from '../../helpers/common.helper'; import { BadRequest, -} from '../../../common/script/libs/errors'; -import content from '../../../common/script/content/index'; -import i18n from '../../../common/script/i18n'; +} from '../../../website/common/script/libs/errors'; +import content from '../../../website/common/script/content/index'; +import i18n from '../../../website/common/script/i18n'; describe('shared.ops.openMysteryItem', () => { let user; diff --git a/test/common/ops/purchase.js b/test/common/ops/purchase.js index 60227f21b2..b694537426 100644 --- a/test/common/ops/purchase.js +++ b/test/common/ops/purchase.js @@ -1,11 +1,11 @@ -import purchase from '../../../common/script/ops/purchase'; -import planGemLimits from '../../../common/script/libs/planGemLimits'; +import purchase from '../../../website/common/script/ops/purchase'; +import planGemLimits from '../../../website/common/script/libs/planGemLimits'; import { BadRequest, NotAuthorized, NotFound, -} from '../../../common/script/libs/errors'; -import i18n from '../../../common/script/i18n'; +} from '../../../website/common/script/libs/errors'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/ops/readCard.js b/test/common/ops/readCard.js index 5d771ab0d6..36ef7aea14 100644 --- a/test/common/ops/readCard.js +++ b/test/common/ops/readCard.js @@ -1,12 +1,12 @@ -import readCard from '../../../common/script/ops/readCard'; -import i18n from '../../../common/script/i18n'; +import readCard from '../../../website/common/script/ops/readCard'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; import { BadRequest, NotAuthorized, -} from '../../../common/script/libs/errors'; +} from '../../../website/common/script/libs/errors'; describe('shared.ops.readCard', () => { let user; diff --git a/test/common/ops/rebirth.js b/test/common/ops/rebirth.js index a8dfe7a522..d82c8adcb8 100644 --- a/test/common/ops/rebirth.js +++ b/test/common/ops/rebirth.js @@ -1,6 +1,6 @@ -import rebirth from '../../../common/script/ops/rebirth'; -import i18n from '../../../common/script/i18n'; -import { MAX_LEVEL } from '../../../common/script/constants'; +import rebirth from '../../../website/common/script/ops/rebirth'; +import i18n from '../../../website/common/script/i18n'; +import { MAX_LEVEL } from '../../../website/common/script/constants'; import { generateUser, generateHabit, @@ -10,7 +10,7 @@ import { } from '../../helpers/common.helper'; import { NotAuthorized, -} from '../../../common/script/libs/errors'; +} from '../../../website/common/script/libs/errors'; describe('shared.ops.rebirth', () => { let user; diff --git a/test/common/ops/releaseBoth.js b/test/common/ops/releaseBoth.js index 41e1bf6efb..dc8bea14a1 100644 --- a/test/common/ops/releaseBoth.js +++ b/test/common/ops/releaseBoth.js @@ -1,11 +1,11 @@ -import releaseBoth from '../../../common/script/ops/releaseBoth'; -import i18n from '../../../common/script/i18n'; +import releaseBoth from '../../../website/common/script/ops/releaseBoth'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; import { NotAuthorized, -} from '../../../common/script/libs/errors'; +} from '../../../website/common/script/libs/errors'; describe('shared.ops.releaseBoth', () => { let user; diff --git a/test/common/ops/releaseMounts.js b/test/common/ops/releaseMounts.js index 29cb3cf6ac..744221393d 100644 --- a/test/common/ops/releaseMounts.js +++ b/test/common/ops/releaseMounts.js @@ -1,11 +1,11 @@ -import releaseMounts from '../../../common/script/ops/releaseMounts'; -import i18n from '../../../common/script/i18n'; +import releaseMounts from '../../../website/common/script/ops/releaseMounts'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; import { NotAuthorized, -} from '../../../common/script/libs/errors'; +} from '../../../website/common/script/libs/errors'; describe('shared.ops.releaseMounts', () => { let user; diff --git a/test/common/ops/releasePets.js b/test/common/ops/releasePets.js index af175736cf..0d2c451133 100644 --- a/test/common/ops/releasePets.js +++ b/test/common/ops/releasePets.js @@ -1,11 +1,11 @@ -import releasePets from '../../../common/script/ops/releasePets'; -import i18n from '../../../common/script/i18n'; +import releasePets from '../../../website/common/script/ops/releasePets'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; import { NotAuthorized, -} from '../../../common/script/libs/errors'; +} from '../../../website/common/script/libs/errors'; describe('shared.ops.releasePets', () => { let user; diff --git a/test/common/ops/reroll.js b/test/common/ops/reroll.js index 4dc5da70c1..8cf7123d11 100644 --- a/test/common/ops/reroll.js +++ b/test/common/ops/reroll.js @@ -1,5 +1,5 @@ -import reroll from '../../../common/script/ops/reroll'; -import i18n from '../../../common/script/i18n'; +import reroll from '../../../website/common/script/ops/reroll'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, generateDaily, @@ -7,7 +7,7 @@ import { } from '../../helpers/common.helper'; import { NotAuthorized, -} from '../../../common/script/libs/errors'; +} from '../../../website/common/script/libs/errors'; describe('shared.ops.reroll', () => { let user; diff --git a/test/common/ops/reset.js b/test/common/ops/reset.js index 107f15f27c..17dea701c2 100644 --- a/test/common/ops/reset.js +++ b/test/common/ops/reset.js @@ -1,5 +1,5 @@ -import reset from '../../../common/script/ops/reset'; -import i18n from '../../../common/script/i18n'; +import reset from '../../../website/common/script/ops/reset'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, generateDaily, diff --git a/test/common/ops/revive.js b/test/common/ops/revive.js index efd6968b42..c6764cebd5 100644 --- a/test/common/ops/revive.js +++ b/test/common/ops/revive.js @@ -1,12 +1,12 @@ -import revive from '../../../common/script/ops/revive'; -import i18n from '../../../common/script/i18n'; +import revive from '../../../website/common/script/ops/revive'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; import { NotAuthorized, -} from '../../../common/script/libs/errors'; -import content from '../../../common/script/content/index'; +} from '../../../website/common/script/libs/errors'; +import content from '../../../website/common/script/content/index'; describe('shared.ops.revive', () => { let user; diff --git a/test/common/ops/scoreTask.test.js b/test/common/ops/scoreTask.test.js index 21d8e352a3..fe6bb0037b 100644 --- a/test/common/ops/scoreTask.test.js +++ b/test/common/ops/scoreTask.test.js @@ -1,4 +1,4 @@ -import scoreTask from '../../../common/script/ops/scoreTask'; +import scoreTask from '../../../website/common/script/ops/scoreTask'; import { generateUser, generateDaily, @@ -6,11 +6,11 @@ import { generateTodo, generateReward, } from '../../helpers/common.helper'; -import common from '../../../common'; -import i18n from '../../../common/script/i18n'; +import common from '../../../website/common'; +import i18n from '../../../website/common/script/i18n'; import { NotAuthorized, -} from '../../../common/script/libs/errors'; +} from '../../../website/common/script/libs/errors'; let EPSILON = 0.0001; // negligible distance between datapoints diff --git a/test/common/ops/sell.js b/test/common/ops/sell.js index 727302ad9c..da62c6c776 100644 --- a/test/common/ops/sell.js +++ b/test/common/ops/sell.js @@ -1,5 +1,5 @@ -import sell from '../../../common/script/ops/sell'; -import i18n from '../../../common/script/i18n'; +import sell from '../../../website/common/script/ops/sell'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; @@ -7,8 +7,8 @@ import { NotAuthorized, BadRequest, NotFound, -} from '../../../common/script/libs/errors'; -import content from '../../../common/script/content/index'; +} from '../../../website/common/script/libs/errors'; +import content from '../../../website/common/script/content/index'; describe('shared.ops.sell', () => { let user; diff --git a/test/common/ops/sleep.js b/test/common/ops/sleep.js index f1e15625c9..0a0ef835f7 100644 --- a/test/common/ops/sleep.js +++ b/test/common/ops/sleep.js @@ -1,4 +1,4 @@ -import sleep from '../../../common/script/ops/sleep'; +import sleep from '../../../website/common/script/ops/sleep'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/ops/unlock.js b/test/common/ops/unlock.js index 255a9049d4..0ea3cb9b8c 100644 --- a/test/common/ops/unlock.js +++ b/test/common/ops/unlock.js @@ -1,12 +1,12 @@ -import unlock from '../../../common/script/ops/unlock'; -import i18n from '../../../common/script/i18n'; +import unlock from '../../../website/common/script/ops/unlock'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; import { NotAuthorized, BadRequest, -} from '../../../common/script/libs/errors'; +} from '../../../website/common/script/libs/errors'; describe('shared.ops.unlock', () => { let user; diff --git a/test/common/ops/updateTask.js b/test/common/ops/updateTask.js index d2205291c8..e9aa88f550 100644 --- a/test/common/ops/updateTask.js +++ b/test/common/ops/updateTask.js @@ -1,4 +1,4 @@ -import updateTask from '../../../common/script/ops/updateTask'; +import updateTask from '../../../website/common/script/ops/updateTask'; import { generateHabit, } from '../../helpers/common.helper'; diff --git a/test/common/ops/updateWebhook.test.js b/test/common/ops/updateWebhook.test.js index 43c353626e..2f7d680179 100644 --- a/test/common/ops/updateWebhook.test.js +++ b/test/common/ops/updateWebhook.test.js @@ -1,8 +1,8 @@ -import updateWebhook from '../../../common/script/ops/updateWebhook'; +import updateWebhook from '../../../website/common/script/ops/updateWebhook'; import { BadRequest, -} from '../../../common/script/libs/errors'; -import i18n from '../../../common/script/i18n'; +} from '../../../website/common/script/libs/errors'; +import i18n from '../../../website/common/script/i18n'; import { generateUser, } from '../../helpers/common.helper'; diff --git a/test/common/statHelpers.test.js b/test/common/statHelpers.test.js index a10a1ad714..7db2c6494f 100644 --- a/test/common/statHelpers.test.js +++ b/test/common/statHelpers.test.js @@ -4,7 +4,7 @@ import { capByLevel, tnl, diminishingReturns, -} from '../../common/script/index'; +} from '../../website/common/script/index'; describe('helper functions used in stat calculations', () => { describe('maxHealth', () => { diff --git a/test/content/eggs.test.js b/test/content/eggs.test.js index c0f1dc0803..374efab1fd 100644 --- a/test/content/eggs.test.js +++ b/test/content/eggs.test.js @@ -5,7 +5,7 @@ import { expectValidTranslationString, } from '../helpers/content.helper'; -import eggs from '../../common/script/content/eggs'; +import eggs from '../../website/common/script/content/eggs'; describe('eggs', () => { describe('all', () => { diff --git a/test/content/faq.js b/test/content/faq.js index 7a2d890bde..65914387e3 100644 --- a/test/content/faq.js +++ b/test/content/faq.js @@ -3,7 +3,7 @@ import { expectValidTranslationString, } from '../helpers/content.helper'; -import {questions, stillNeedHelp} from '../../common/script/content/faq'; +import {questions, stillNeedHelp} from '../../website/common/script/content/faq'; describe('FAQ Locales', () => { describe('Questions', () => { diff --git a/test/content/gear.js b/test/content/gear.js index a3d0e95917..6c66d506b4 100644 --- a/test/content/gear.js +++ b/test/content/gear.js @@ -3,9 +3,9 @@ import { } from '../helpers/content.helper'; import { each, camelCase } from 'lodash'; -import { tree as allGear } from '../../common/script/content/gear'; -import backerGear from '../../common/script/content/gear/sets/special/special-backer'; -import contributorGear from '../../common/script/content/gear/sets/special/special-contributor'; +import { tree as allGear } from '../../website/common/script/content/gear'; +import backerGear from '../../website/common/script/content/gear/sets/special/special-backer'; +import contributorGear from '../../website/common/script/content/gear/sets/special/special-contributor'; describe('Gear', () => { each(allGear, (piece, gearType) => { diff --git a/test/content/hatching-potions.test.js b/test/content/hatching-potions.test.js index b1e0b03bb0..72464137a9 100644 --- a/test/content/hatching-potions.test.js +++ b/test/content/hatching-potions.test.js @@ -5,7 +5,7 @@ import { expectValidTranslationString, } from '../helpers/content.helper'; -import hatchingPotions from '../../common/script/content/hatching-potions'; +import hatchingPotions from '../../website/common/script/content/hatching-potions'; describe('hatchingPotions', () => { describe('all', () => { diff --git a/test/content/mysterySets.test.js b/test/content/mysterySets.test.js index 97b44f4209..38be62c36b 100644 --- a/test/content/mysterySets.test.js +++ b/test/content/mysterySets.test.js @@ -3,7 +3,7 @@ import { expectValidTranslationString } from '../helpers/content.helper'; -import mysterySets from '../../common/script/content/mystery-sets'; +import mysterySets from '../../website/common/script/content/mystery-sets'; describe('Mystery Sets', () => { it('has a valid text string', () => { diff --git a/test/content/stable.test.js b/test/content/stable.test.js index 2a6609ee27..5b0faaee37 100644 --- a/test/content/stable.test.js +++ b/test/content/stable.test.js @@ -4,11 +4,11 @@ import { import { expectValidTranslationString, } from '../helpers/content.helper'; -import t from '../../common/script/content/translation'; +import t from '../../website/common/script/content/translation'; -import stable from '../../common/script/content/stable'; -import eggs from '../../common/script/content/eggs'; -import potions from '../../common/script/content/hatching-potions'; +import stable from '../../website/common/script/content/stable'; +import eggs from '../../website/common/script/content/eggs'; +import potions from '../../website/common/script/content/hatching-potions'; describe('stable', () => { describe('dropPets', () => { diff --git a/test/content/translaotr.js b/test/content/translaotr.js index 7200929edf..609973f692 100644 --- a/test/content/translaotr.js +++ b/test/content/translaotr.js @@ -1,5 +1,5 @@ import {STRING_ERROR_MSG, STRING_DOES_NOT_EXIST_MSG} from '../helpers/content.helper'; -import translator from '../../common/script/content/translation'; +import translator from '../../website/common/script/content/translation'; describe('Translator', () => { it('returns error message if string is not properly formatted', () => { diff --git a/test/helpers/api-integration/translate.js b/test/helpers/api-integration/translate.js index ceaf496b3c..a6001cd094 100644 --- a/test/helpers/api-integration/translate.js +++ b/test/helpers/api-integration/translate.js @@ -1,4 +1,4 @@ -import i18n from '../../../common/script/i18n'; +import i18n from '../../../website/common/script/i18n'; i18n.translations = require('../../../website/server/libs/i18n').translations; // Use this to verify error messages returned by the server diff --git a/test/helpers/api-unit.helper.js b/test/helpers/api-unit.helper.js index 99468ed7d4..33168c2a8b 100644 --- a/test/helpers/api-unit.helper.js +++ b/test/helpers/api-unit.helper.js @@ -6,7 +6,7 @@ import { model as Group } from '../../website/server/models/group'; import { model as Challenge } from '../../website/server/models/challenge'; import mongo from './mongo'; // eslint-disable-line import moment from 'moment'; -import i18n from '../../common/script/i18n'; +import i18n from '../../website/common/script/i18n'; import * as Tasks from '../../website/server/models/task'; afterEach((done) => { diff --git a/test/helpers/common.helper.js b/test/helpers/common.helper.js index 4cd82ca4b4..4612e18ba8 100644 --- a/test/helpers/common.helper.js +++ b/test/helpers/common.helper.js @@ -1,6 +1,6 @@ import mongoose from 'mongoose'; -import { wrap as wrapUser } from '../../common/script/index'; +import { wrap as wrapUser } from '../../website/common/script/index'; import { model as User } from '../../website/server/models/user'; import { DailySchema, diff --git a/test/helpers/content.helper.js b/test/helpers/content.helper.js index 3d423f93af..8eacadcb46 100644 --- a/test/helpers/content.helper.js +++ b/test/helpers/content.helper.js @@ -1,5 +1,5 @@ require('./globals.helper'); -import i18n from '../../common/script/i18n'; +import i18n from '../../website/common/script/i18n'; i18n.translations = require('../../website/server/libs/i18n').translations; export const STRING_ERROR_MSG = 'Error processing the string. Please see Help > Report a Bug.'; diff --git a/test/sanity/no-duplicate-translation-keys.js b/test/sanity/no-duplicate-translation-keys.js index 74eb0e24e3..c5fff4ecff 100644 --- a/test/sanity/no-duplicate-translation-keys.js +++ b/test/sanity/no-duplicate-translation-keys.js @@ -4,10 +4,10 @@ let glob = require('glob').sync; describe('Locales files', () => { it('do not contain duplicates of any keys', () => { - let translationFiles = glob('./common/locales/en/*.json'); + let translationFiles = glob('./website/common/locales/en/*.json'); if (translationFiles.length === 0) { - throw new Error('Could not find any files in ./common/locales/en/*.json'); + throw new Error('Could not find any files in ./website/common/locales/en/*.json'); } let keys = {}; diff --git a/common/audio/danielTheBard/Achievement_Unlocked.mp3 b/website/assets/audio/danielTheBard/Achievement_Unlocked.mp3 similarity index 100% rename from common/audio/danielTheBard/Achievement_Unlocked.mp3 rename to website/assets/audio/danielTheBard/Achievement_Unlocked.mp3 diff --git a/common/audio/danielTheBard/Achievement_Unlocked.ogg b/website/assets/audio/danielTheBard/Achievement_Unlocked.ogg similarity index 100% rename from common/audio/danielTheBard/Achievement_Unlocked.ogg rename to website/assets/audio/danielTheBard/Achievement_Unlocked.ogg diff --git a/common/audio/danielTheBard/Chat.mp3 b/website/assets/audio/danielTheBard/Chat.mp3 similarity index 100% rename from common/audio/danielTheBard/Chat.mp3 rename to website/assets/audio/danielTheBard/Chat.mp3 diff --git a/common/audio/danielTheBard/Chat.ogg b/website/assets/audio/danielTheBard/Chat.ogg similarity index 100% rename from common/audio/danielTheBard/Chat.ogg rename to website/assets/audio/danielTheBard/Chat.ogg diff --git a/common/audio/danielTheBard/Daily.mp3 b/website/assets/audio/danielTheBard/Daily.mp3 similarity index 100% rename from common/audio/danielTheBard/Daily.mp3 rename to website/assets/audio/danielTheBard/Daily.mp3 diff --git a/common/audio/danielTheBard/Daily.ogg b/website/assets/audio/danielTheBard/Daily.ogg similarity index 100% rename from common/audio/danielTheBard/Daily.ogg rename to website/assets/audio/danielTheBard/Daily.ogg diff --git a/common/audio/danielTheBard/Death.mp3 b/website/assets/audio/danielTheBard/Death.mp3 similarity index 100% rename from common/audio/danielTheBard/Death.mp3 rename to website/assets/audio/danielTheBard/Death.mp3 diff --git a/common/audio/danielTheBard/Death.ogg b/website/assets/audio/danielTheBard/Death.ogg similarity index 100% rename from common/audio/danielTheBard/Death.ogg rename to website/assets/audio/danielTheBard/Death.ogg diff --git a/common/audio/danielTheBard/Item_Drop.mp3 b/website/assets/audio/danielTheBard/Item_Drop.mp3 similarity index 100% rename from common/audio/danielTheBard/Item_Drop.mp3 rename to website/assets/audio/danielTheBard/Item_Drop.mp3 diff --git a/common/audio/danielTheBard/Item_Drop.ogg b/website/assets/audio/danielTheBard/Item_Drop.ogg similarity index 100% rename from common/audio/danielTheBard/Item_Drop.ogg rename to website/assets/audio/danielTheBard/Item_Drop.ogg diff --git a/common/audio/danielTheBard/Level_Up.mp3 b/website/assets/audio/danielTheBard/Level_Up.mp3 similarity index 100% rename from common/audio/danielTheBard/Level_Up.mp3 rename to website/assets/audio/danielTheBard/Level_Up.mp3 diff --git a/common/audio/danielTheBard/Level_Up.ogg b/website/assets/audio/danielTheBard/Level_Up.ogg similarity index 100% rename from common/audio/danielTheBard/Level_Up.ogg rename to website/assets/audio/danielTheBard/Level_Up.ogg diff --git a/common/audio/danielTheBard/Minus_Habit.mp3 b/website/assets/audio/danielTheBard/Minus_Habit.mp3 similarity index 100% rename from common/audio/danielTheBard/Minus_Habit.mp3 rename to website/assets/audio/danielTheBard/Minus_Habit.mp3 diff --git a/common/audio/danielTheBard/Minus_Habit.ogg b/website/assets/audio/danielTheBard/Minus_Habit.ogg similarity index 100% rename from common/audio/danielTheBard/Minus_Habit.ogg rename to website/assets/audio/danielTheBard/Minus_Habit.ogg diff --git a/common/audio/danielTheBard/Plus_Habit.mp3 b/website/assets/audio/danielTheBard/Plus_Habit.mp3 similarity index 100% rename from common/audio/danielTheBard/Plus_Habit.mp3 rename to website/assets/audio/danielTheBard/Plus_Habit.mp3 diff --git a/common/audio/danielTheBard/Plus_Habit.ogg b/website/assets/audio/danielTheBard/Plus_Habit.ogg similarity index 100% rename from common/audio/danielTheBard/Plus_Habit.ogg rename to website/assets/audio/danielTheBard/Plus_Habit.ogg diff --git a/common/audio/danielTheBard/Reward.mp3 b/website/assets/audio/danielTheBard/Reward.mp3 similarity index 100% rename from common/audio/danielTheBard/Reward.mp3 rename to website/assets/audio/danielTheBard/Reward.mp3 diff --git a/common/audio/danielTheBard/Reward.ogg b/website/assets/audio/danielTheBard/Reward.ogg similarity index 100% rename from common/audio/danielTheBard/Reward.ogg rename to website/assets/audio/danielTheBard/Reward.ogg diff --git a/common/audio/danielTheBard/ToDo.mp3 b/website/assets/audio/danielTheBard/ToDo.mp3 similarity index 100% rename from common/audio/danielTheBard/ToDo.mp3 rename to website/assets/audio/danielTheBard/ToDo.mp3 diff --git a/common/audio/danielTheBard/ToDo.ogg b/website/assets/audio/danielTheBard/ToDo.ogg similarity index 100% rename from common/audio/danielTheBard/ToDo.ogg rename to website/assets/audio/danielTheBard/ToDo.ogg diff --git a/common/audio/dewinTheme/Achievement_Unlocked.mp3 b/website/assets/audio/dewinTheme/Achievement_Unlocked.mp3 similarity index 100% rename from common/audio/dewinTheme/Achievement_Unlocked.mp3 rename to website/assets/audio/dewinTheme/Achievement_Unlocked.mp3 diff --git a/common/audio/dewinTheme/Achievement_Unlocked.ogg b/website/assets/audio/dewinTheme/Achievement_Unlocked.ogg similarity index 100% rename from common/audio/dewinTheme/Achievement_Unlocked.ogg rename to website/assets/audio/dewinTheme/Achievement_Unlocked.ogg diff --git a/common/audio/dewinTheme/Boss_Battles_Background_Music.mp3 b/website/assets/audio/dewinTheme/Boss_Battles_Background_Music.mp3 similarity index 100% rename from common/audio/dewinTheme/Boss_Battles_Background_Music.mp3 rename to website/assets/audio/dewinTheme/Boss_Battles_Background_Music.mp3 diff --git a/common/audio/dewinTheme/Boss_Battles_Background_Music.ogg b/website/assets/audio/dewinTheme/Boss_Battles_Background_Music.ogg similarity index 100% rename from common/audio/dewinTheme/Boss_Battles_Background_Music.ogg rename to website/assets/audio/dewinTheme/Boss_Battles_Background_Music.ogg diff --git a/common/audio/dewinTheme/Chat.mp3 b/website/assets/audio/dewinTheme/Chat.mp3 similarity index 100% rename from common/audio/dewinTheme/Chat.mp3 rename to website/assets/audio/dewinTheme/Chat.mp3 diff --git a/common/audio/dewinTheme/Chat.ogg b/website/assets/audio/dewinTheme/Chat.ogg similarity index 100% rename from common/audio/dewinTheme/Chat.ogg rename to website/assets/audio/dewinTheme/Chat.ogg diff --git a/common/audio/dewinTheme/Checklist_Complete.mp3 b/website/assets/audio/dewinTheme/Checklist_Complete.mp3 similarity index 100% rename from common/audio/dewinTheme/Checklist_Complete.mp3 rename to website/assets/audio/dewinTheme/Checklist_Complete.mp3 diff --git a/common/audio/dewinTheme/Checklist_Complete.ogg b/website/assets/audio/dewinTheme/Checklist_Complete.ogg similarity index 100% rename from common/audio/dewinTheme/Checklist_Complete.ogg rename to website/assets/audio/dewinTheme/Checklist_Complete.ogg diff --git a/common/audio/dewinTheme/Daily.mp3 b/website/assets/audio/dewinTheme/Daily.mp3 similarity index 100% rename from common/audio/dewinTheme/Daily.mp3 rename to website/assets/audio/dewinTheme/Daily.mp3 diff --git a/common/audio/dewinTheme/Daily.ogg b/website/assets/audio/dewinTheme/Daily.ogg similarity index 100% rename from common/audio/dewinTheme/Daily.ogg rename to website/assets/audio/dewinTheme/Daily.ogg diff --git a/common/audio/dewinTheme/Death.mp3 b/website/assets/audio/dewinTheme/Death.mp3 similarity index 100% rename from common/audio/dewinTheme/Death.mp3 rename to website/assets/audio/dewinTheme/Death.mp3 diff --git a/common/audio/dewinTheme/Death.ogg b/website/assets/audio/dewinTheme/Death.ogg similarity index 100% rename from common/audio/dewinTheme/Death.ogg rename to website/assets/audio/dewinTheme/Death.ogg diff --git a/common/audio/dewinTheme/Item_Drop.mp3 b/website/assets/audio/dewinTheme/Item_Drop.mp3 similarity index 100% rename from common/audio/dewinTheme/Item_Drop.mp3 rename to website/assets/audio/dewinTheme/Item_Drop.mp3 diff --git a/common/audio/dewinTheme/Item_Drop.ogg b/website/assets/audio/dewinTheme/Item_Drop.ogg similarity index 100% rename from common/audio/dewinTheme/Item_Drop.ogg rename to website/assets/audio/dewinTheme/Item_Drop.ogg diff --git a/common/audio/dewinTheme/Level_Up.mp3 b/website/assets/audio/dewinTheme/Level_Up.mp3 similarity index 100% rename from common/audio/dewinTheme/Level_Up.mp3 rename to website/assets/audio/dewinTheme/Level_Up.mp3 diff --git a/common/audio/dewinTheme/Level_Up.ogg b/website/assets/audio/dewinTheme/Level_Up.ogg similarity index 100% rename from common/audio/dewinTheme/Level_Up.ogg rename to website/assets/audio/dewinTheme/Level_Up.ogg diff --git a/common/audio/dewinTheme/Minus_Habit.mp3 b/website/assets/audio/dewinTheme/Minus_Habit.mp3 similarity index 100% rename from common/audio/dewinTheme/Minus_Habit.mp3 rename to website/assets/audio/dewinTheme/Minus_Habit.mp3 diff --git a/common/audio/dewinTheme/Minus_Habit.ogg b/website/assets/audio/dewinTheme/Minus_Habit.ogg similarity index 100% rename from common/audio/dewinTheme/Minus_Habit.ogg rename to website/assets/audio/dewinTheme/Minus_Habit.ogg diff --git a/common/audio/dewinTheme/Plus_Habit.mp3 b/website/assets/audio/dewinTheme/Plus_Habit.mp3 similarity index 100% rename from common/audio/dewinTheme/Plus_Habit.mp3 rename to website/assets/audio/dewinTheme/Plus_Habit.mp3 diff --git a/common/audio/dewinTheme/Plus_Habit.ogg b/website/assets/audio/dewinTheme/Plus_Habit.ogg similarity index 100% rename from common/audio/dewinTheme/Plus_Habit.ogg rename to website/assets/audio/dewinTheme/Plus_Habit.ogg diff --git a/common/audio/dewinTheme/Reward.mp3 b/website/assets/audio/dewinTheme/Reward.mp3 similarity index 100% rename from common/audio/dewinTheme/Reward.mp3 rename to website/assets/audio/dewinTheme/Reward.mp3 diff --git a/common/audio/dewinTheme/Reward.ogg b/website/assets/audio/dewinTheme/Reward.ogg similarity index 100% rename from common/audio/dewinTheme/Reward.ogg rename to website/assets/audio/dewinTheme/Reward.ogg diff --git a/common/audio/dewinTheme/Settings_Page_Background_Music.mp3 b/website/assets/audio/dewinTheme/Settings_Page_Background_Music.mp3 similarity index 100% rename from common/audio/dewinTheme/Settings_Page_Background_Music.mp3 rename to website/assets/audio/dewinTheme/Settings_Page_Background_Music.mp3 diff --git a/common/audio/dewinTheme/Settings_Page_Background_Music.ogg b/website/assets/audio/dewinTheme/Settings_Page_Background_Music.ogg similarity index 100% rename from common/audio/dewinTheme/Settings_Page_Background_Music.ogg rename to website/assets/audio/dewinTheme/Settings_Page_Background_Music.ogg diff --git a/common/audio/dewinTheme/Todo.mp3 b/website/assets/audio/dewinTheme/Todo.mp3 similarity index 100% rename from common/audio/dewinTheme/Todo.mp3 rename to website/assets/audio/dewinTheme/Todo.mp3 diff --git a/common/audio/dewinTheme/Todo.ogg b/website/assets/audio/dewinTheme/Todo.ogg similarity index 100% rename from common/audio/dewinTheme/Todo.ogg rename to website/assets/audio/dewinTheme/Todo.ogg diff --git a/common/audio/gokulTheme/Achievement_Unlocked.mp3 b/website/assets/audio/gokulTheme/Achievement_Unlocked.mp3 similarity index 100% rename from common/audio/gokulTheme/Achievement_Unlocked.mp3 rename to website/assets/audio/gokulTheme/Achievement_Unlocked.mp3 diff --git a/common/audio/gokulTheme/Achievement_Unlocked.ogg b/website/assets/audio/gokulTheme/Achievement_Unlocked.ogg similarity index 100% rename from common/audio/gokulTheme/Achievement_Unlocked.ogg rename to website/assets/audio/gokulTheme/Achievement_Unlocked.ogg diff --git a/common/audio/gokulTheme/Chat.mp3 b/website/assets/audio/gokulTheme/Chat.mp3 similarity index 100% rename from common/audio/gokulTheme/Chat.mp3 rename to website/assets/audio/gokulTheme/Chat.mp3 diff --git a/common/audio/gokulTheme/Chat.ogg b/website/assets/audio/gokulTheme/Chat.ogg similarity index 100% rename from common/audio/gokulTheme/Chat.ogg rename to website/assets/audio/gokulTheme/Chat.ogg diff --git a/common/audio/gokulTheme/Daily.mp3 b/website/assets/audio/gokulTheme/Daily.mp3 similarity index 100% rename from common/audio/gokulTheme/Daily.mp3 rename to website/assets/audio/gokulTheme/Daily.mp3 diff --git a/common/audio/gokulTheme/Daily.ogg b/website/assets/audio/gokulTheme/Daily.ogg similarity index 100% rename from common/audio/gokulTheme/Daily.ogg rename to website/assets/audio/gokulTheme/Daily.ogg diff --git a/common/audio/gokulTheme/Death.mp3 b/website/assets/audio/gokulTheme/Death.mp3 similarity index 100% rename from common/audio/gokulTheme/Death.mp3 rename to website/assets/audio/gokulTheme/Death.mp3 diff --git a/common/audio/gokulTheme/Death.ogg b/website/assets/audio/gokulTheme/Death.ogg similarity index 100% rename from common/audio/gokulTheme/Death.ogg rename to website/assets/audio/gokulTheme/Death.ogg diff --git a/common/audio/gokulTheme/Item_Drop.mp3 b/website/assets/audio/gokulTheme/Item_Drop.mp3 similarity index 100% rename from common/audio/gokulTheme/Item_Drop.mp3 rename to website/assets/audio/gokulTheme/Item_Drop.mp3 diff --git a/common/audio/gokulTheme/Item_Drop.ogg b/website/assets/audio/gokulTheme/Item_Drop.ogg similarity index 100% rename from common/audio/gokulTheme/Item_Drop.ogg rename to website/assets/audio/gokulTheme/Item_Drop.ogg diff --git a/common/audio/gokulTheme/Level_Up.mp3 b/website/assets/audio/gokulTheme/Level_Up.mp3 similarity index 100% rename from common/audio/gokulTheme/Level_Up.mp3 rename to website/assets/audio/gokulTheme/Level_Up.mp3 diff --git a/common/audio/gokulTheme/Level_Up.ogg b/website/assets/audio/gokulTheme/Level_Up.ogg similarity index 100% rename from common/audio/gokulTheme/Level_Up.ogg rename to website/assets/audio/gokulTheme/Level_Up.ogg diff --git a/common/audio/gokulTheme/Minus_Habit.mp3 b/website/assets/audio/gokulTheme/Minus_Habit.mp3 similarity index 100% rename from common/audio/gokulTheme/Minus_Habit.mp3 rename to website/assets/audio/gokulTheme/Minus_Habit.mp3 diff --git a/common/audio/gokulTheme/Minus_Habit.ogg b/website/assets/audio/gokulTheme/Minus_Habit.ogg similarity index 100% rename from common/audio/gokulTheme/Minus_Habit.ogg rename to website/assets/audio/gokulTheme/Minus_Habit.ogg diff --git a/common/audio/gokulTheme/Plus_Habit.mp3 b/website/assets/audio/gokulTheme/Plus_Habit.mp3 similarity index 100% rename from common/audio/gokulTheme/Plus_Habit.mp3 rename to website/assets/audio/gokulTheme/Plus_Habit.mp3 diff --git a/common/audio/gokulTheme/Plus_Habit.ogg b/website/assets/audio/gokulTheme/Plus_Habit.ogg similarity index 100% rename from common/audio/gokulTheme/Plus_Habit.ogg rename to website/assets/audio/gokulTheme/Plus_Habit.ogg diff --git a/common/audio/gokulTheme/Reward.mp3 b/website/assets/audio/gokulTheme/Reward.mp3 similarity index 100% rename from common/audio/gokulTheme/Reward.mp3 rename to website/assets/audio/gokulTheme/Reward.mp3 diff --git a/common/audio/gokulTheme/Reward.ogg b/website/assets/audio/gokulTheme/Reward.ogg similarity index 100% rename from common/audio/gokulTheme/Reward.ogg rename to website/assets/audio/gokulTheme/Reward.ogg diff --git a/common/audio/gokulTheme/ToDo.mp3 b/website/assets/audio/gokulTheme/ToDo.mp3 similarity index 100% rename from common/audio/gokulTheme/ToDo.mp3 rename to website/assets/audio/gokulTheme/ToDo.mp3 diff --git a/common/audio/gokulTheme/ToDo.ogg b/website/assets/audio/gokulTheme/ToDo.ogg similarity index 100% rename from common/audio/gokulTheme/ToDo.ogg rename to website/assets/audio/gokulTheme/ToDo.ogg diff --git a/common/audio/luneFoxTheme/Achievement_Unlocked.mp3 b/website/assets/audio/luneFoxTheme/Achievement_Unlocked.mp3 similarity index 100% rename from common/audio/luneFoxTheme/Achievement_Unlocked.mp3 rename to website/assets/audio/luneFoxTheme/Achievement_Unlocked.mp3 diff --git a/common/audio/luneFoxTheme/Achievement_Unlocked.ogg b/website/assets/audio/luneFoxTheme/Achievement_Unlocked.ogg similarity index 100% rename from common/audio/luneFoxTheme/Achievement_Unlocked.ogg rename to website/assets/audio/luneFoxTheme/Achievement_Unlocked.ogg diff --git a/common/audio/luneFoxTheme/Chat.mp3 b/website/assets/audio/luneFoxTheme/Chat.mp3 similarity index 100% rename from common/audio/luneFoxTheme/Chat.mp3 rename to website/assets/audio/luneFoxTheme/Chat.mp3 diff --git a/common/audio/luneFoxTheme/Chat.ogg b/website/assets/audio/luneFoxTheme/Chat.ogg similarity index 100% rename from common/audio/luneFoxTheme/Chat.ogg rename to website/assets/audio/luneFoxTheme/Chat.ogg diff --git a/common/audio/luneFoxTheme/Daily.mp3 b/website/assets/audio/luneFoxTheme/Daily.mp3 similarity index 100% rename from common/audio/luneFoxTheme/Daily.mp3 rename to website/assets/audio/luneFoxTheme/Daily.mp3 diff --git a/common/audio/luneFoxTheme/Daily.ogg b/website/assets/audio/luneFoxTheme/Daily.ogg similarity index 100% rename from common/audio/luneFoxTheme/Daily.ogg rename to website/assets/audio/luneFoxTheme/Daily.ogg diff --git a/common/audio/luneFoxTheme/Death.mp3 b/website/assets/audio/luneFoxTheme/Death.mp3 similarity index 100% rename from common/audio/luneFoxTheme/Death.mp3 rename to website/assets/audio/luneFoxTheme/Death.mp3 diff --git a/common/audio/luneFoxTheme/Death.ogg b/website/assets/audio/luneFoxTheme/Death.ogg similarity index 100% rename from common/audio/luneFoxTheme/Death.ogg rename to website/assets/audio/luneFoxTheme/Death.ogg diff --git a/common/audio/luneFoxTheme/Item_Drop.mp3 b/website/assets/audio/luneFoxTheme/Item_Drop.mp3 similarity index 100% rename from common/audio/luneFoxTheme/Item_Drop.mp3 rename to website/assets/audio/luneFoxTheme/Item_Drop.mp3 diff --git a/common/audio/luneFoxTheme/Item_Drop.ogg b/website/assets/audio/luneFoxTheme/Item_Drop.ogg similarity index 100% rename from common/audio/luneFoxTheme/Item_Drop.ogg rename to website/assets/audio/luneFoxTheme/Item_Drop.ogg diff --git a/common/audio/luneFoxTheme/Level_Up.mp3 b/website/assets/audio/luneFoxTheme/Level_Up.mp3 similarity index 100% rename from common/audio/luneFoxTheme/Level_Up.mp3 rename to website/assets/audio/luneFoxTheme/Level_Up.mp3 diff --git a/common/audio/luneFoxTheme/Level_Up.ogg b/website/assets/audio/luneFoxTheme/Level_Up.ogg similarity index 100% rename from common/audio/luneFoxTheme/Level_Up.ogg rename to website/assets/audio/luneFoxTheme/Level_Up.ogg diff --git a/common/audio/luneFoxTheme/Minus_Habit.mp3 b/website/assets/audio/luneFoxTheme/Minus_Habit.mp3 similarity index 100% rename from common/audio/luneFoxTheme/Minus_Habit.mp3 rename to website/assets/audio/luneFoxTheme/Minus_Habit.mp3 diff --git a/common/audio/luneFoxTheme/Minus_Habit.ogg b/website/assets/audio/luneFoxTheme/Minus_Habit.ogg similarity index 100% rename from common/audio/luneFoxTheme/Minus_Habit.ogg rename to website/assets/audio/luneFoxTheme/Minus_Habit.ogg diff --git a/common/audio/luneFoxTheme/Plus_Habit.mp3 b/website/assets/audio/luneFoxTheme/Plus_Habit.mp3 similarity index 100% rename from common/audio/luneFoxTheme/Plus_Habit.mp3 rename to website/assets/audio/luneFoxTheme/Plus_Habit.mp3 diff --git a/common/audio/luneFoxTheme/Plus_Habit.ogg b/website/assets/audio/luneFoxTheme/Plus_Habit.ogg similarity index 100% rename from common/audio/luneFoxTheme/Plus_Habit.ogg rename to website/assets/audio/luneFoxTheme/Plus_Habit.ogg diff --git a/common/audio/luneFoxTheme/Reward.mp3 b/website/assets/audio/luneFoxTheme/Reward.mp3 similarity index 100% rename from common/audio/luneFoxTheme/Reward.mp3 rename to website/assets/audio/luneFoxTheme/Reward.mp3 diff --git a/common/audio/luneFoxTheme/Reward.ogg b/website/assets/audio/luneFoxTheme/Reward.ogg similarity index 100% rename from common/audio/luneFoxTheme/Reward.ogg rename to website/assets/audio/luneFoxTheme/Reward.ogg diff --git a/common/audio/luneFoxTheme/ToDo.mp3 b/website/assets/audio/luneFoxTheme/ToDo.mp3 similarity index 100% rename from common/audio/luneFoxTheme/ToDo.mp3 rename to website/assets/audio/luneFoxTheme/ToDo.mp3 diff --git a/common/audio/luneFoxTheme/ToDo.ogg b/website/assets/audio/luneFoxTheme/ToDo.ogg similarity index 100% rename from common/audio/luneFoxTheme/ToDo.ogg rename to website/assets/audio/luneFoxTheme/ToDo.ogg diff --git a/common/audio/rosstavoTheme/Achievement_Unlocked.mp3 b/website/assets/audio/rosstavoTheme/Achievement_Unlocked.mp3 similarity index 100% rename from common/audio/rosstavoTheme/Achievement_Unlocked.mp3 rename to website/assets/audio/rosstavoTheme/Achievement_Unlocked.mp3 diff --git a/common/audio/rosstavoTheme/Achievement_Unlocked.ogg b/website/assets/audio/rosstavoTheme/Achievement_Unlocked.ogg similarity index 100% rename from common/audio/rosstavoTheme/Achievement_Unlocked.ogg rename to website/assets/audio/rosstavoTheme/Achievement_Unlocked.ogg diff --git a/common/audio/rosstavoTheme/Chat.mp3 b/website/assets/audio/rosstavoTheme/Chat.mp3 similarity index 100% rename from common/audio/rosstavoTheme/Chat.mp3 rename to website/assets/audio/rosstavoTheme/Chat.mp3 diff --git a/common/audio/rosstavoTheme/Chat.ogg b/website/assets/audio/rosstavoTheme/Chat.ogg similarity index 100% rename from common/audio/rosstavoTheme/Chat.ogg rename to website/assets/audio/rosstavoTheme/Chat.ogg diff --git a/common/audio/rosstavoTheme/Daily.mp3 b/website/assets/audio/rosstavoTheme/Daily.mp3 similarity index 100% rename from common/audio/rosstavoTheme/Daily.mp3 rename to website/assets/audio/rosstavoTheme/Daily.mp3 diff --git a/common/audio/rosstavoTheme/Daily.ogg b/website/assets/audio/rosstavoTheme/Daily.ogg similarity index 100% rename from common/audio/rosstavoTheme/Daily.ogg rename to website/assets/audio/rosstavoTheme/Daily.ogg diff --git a/common/audio/rosstavoTheme/Death.mp3 b/website/assets/audio/rosstavoTheme/Death.mp3 similarity index 100% rename from common/audio/rosstavoTheme/Death.mp3 rename to website/assets/audio/rosstavoTheme/Death.mp3 diff --git a/common/audio/rosstavoTheme/Death.ogg b/website/assets/audio/rosstavoTheme/Death.ogg similarity index 100% rename from common/audio/rosstavoTheme/Death.ogg rename to website/assets/audio/rosstavoTheme/Death.ogg diff --git a/common/audio/rosstavoTheme/Item_Drop.mp3 b/website/assets/audio/rosstavoTheme/Item_Drop.mp3 similarity index 100% rename from common/audio/rosstavoTheme/Item_Drop.mp3 rename to website/assets/audio/rosstavoTheme/Item_Drop.mp3 diff --git a/common/audio/rosstavoTheme/Item_Drop.ogg b/website/assets/audio/rosstavoTheme/Item_Drop.ogg similarity index 100% rename from common/audio/rosstavoTheme/Item_Drop.ogg rename to website/assets/audio/rosstavoTheme/Item_Drop.ogg diff --git a/common/audio/rosstavoTheme/Level_Up.mp3 b/website/assets/audio/rosstavoTheme/Level_Up.mp3 similarity index 100% rename from common/audio/rosstavoTheme/Level_Up.mp3 rename to website/assets/audio/rosstavoTheme/Level_Up.mp3 diff --git a/common/audio/rosstavoTheme/Level_Up.ogg b/website/assets/audio/rosstavoTheme/Level_Up.ogg similarity index 100% rename from common/audio/rosstavoTheme/Level_Up.ogg rename to website/assets/audio/rosstavoTheme/Level_Up.ogg diff --git a/common/audio/rosstavoTheme/Minus_Habit.mp3 b/website/assets/audio/rosstavoTheme/Minus_Habit.mp3 similarity index 100% rename from common/audio/rosstavoTheme/Minus_Habit.mp3 rename to website/assets/audio/rosstavoTheme/Minus_Habit.mp3 diff --git a/common/audio/rosstavoTheme/Minus_Habit.ogg b/website/assets/audio/rosstavoTheme/Minus_Habit.ogg similarity index 100% rename from common/audio/rosstavoTheme/Minus_Habit.ogg rename to website/assets/audio/rosstavoTheme/Minus_Habit.ogg diff --git a/common/audio/rosstavoTheme/Plus_Habit.mp3 b/website/assets/audio/rosstavoTheme/Plus_Habit.mp3 similarity index 100% rename from common/audio/rosstavoTheme/Plus_Habit.mp3 rename to website/assets/audio/rosstavoTheme/Plus_Habit.mp3 diff --git a/common/audio/rosstavoTheme/Plus_Habit.ogg b/website/assets/audio/rosstavoTheme/Plus_Habit.ogg similarity index 100% rename from common/audio/rosstavoTheme/Plus_Habit.ogg rename to website/assets/audio/rosstavoTheme/Plus_Habit.ogg diff --git a/common/audio/rosstavoTheme/Reward.mp3 b/website/assets/audio/rosstavoTheme/Reward.mp3 similarity index 100% rename from common/audio/rosstavoTheme/Reward.mp3 rename to website/assets/audio/rosstavoTheme/Reward.mp3 diff --git a/common/audio/rosstavoTheme/Reward.ogg b/website/assets/audio/rosstavoTheme/Reward.ogg similarity index 100% rename from common/audio/rosstavoTheme/Reward.ogg rename to website/assets/audio/rosstavoTheme/Reward.ogg diff --git a/common/audio/rosstavoTheme/ToDo.mp3 b/website/assets/audio/rosstavoTheme/ToDo.mp3 similarity index 100% rename from common/audio/rosstavoTheme/ToDo.mp3 rename to website/assets/audio/rosstavoTheme/ToDo.mp3 diff --git a/common/audio/rosstavoTheme/ToDo.ogg b/website/assets/audio/rosstavoTheme/ToDo.ogg similarity index 100% rename from common/audio/rosstavoTheme/ToDo.ogg rename to website/assets/audio/rosstavoTheme/ToDo.ogg diff --git a/common/audio/wattsTheme/Achievement_Unlocked.mp3 b/website/assets/audio/wattsTheme/Achievement_Unlocked.mp3 similarity index 100% rename from common/audio/wattsTheme/Achievement_Unlocked.mp3 rename to website/assets/audio/wattsTheme/Achievement_Unlocked.mp3 diff --git a/common/audio/wattsTheme/Achievement_Unlocked.ogg b/website/assets/audio/wattsTheme/Achievement_Unlocked.ogg similarity index 100% rename from common/audio/wattsTheme/Achievement_Unlocked.ogg rename to website/assets/audio/wattsTheme/Achievement_Unlocked.ogg diff --git a/common/audio/wattsTheme/Chat.mp3 b/website/assets/audio/wattsTheme/Chat.mp3 similarity index 100% rename from common/audio/wattsTheme/Chat.mp3 rename to website/assets/audio/wattsTheme/Chat.mp3 diff --git a/common/audio/wattsTheme/Chat.ogg b/website/assets/audio/wattsTheme/Chat.ogg similarity index 100% rename from common/audio/wattsTheme/Chat.ogg rename to website/assets/audio/wattsTheme/Chat.ogg diff --git a/common/audio/wattsTheme/Daily.mp3 b/website/assets/audio/wattsTheme/Daily.mp3 similarity index 100% rename from common/audio/wattsTheme/Daily.mp3 rename to website/assets/audio/wattsTheme/Daily.mp3 diff --git a/common/audio/wattsTheme/Daily.ogg b/website/assets/audio/wattsTheme/Daily.ogg similarity index 100% rename from common/audio/wattsTheme/Daily.ogg rename to website/assets/audio/wattsTheme/Daily.ogg diff --git a/common/audio/wattsTheme/Death.mp3 b/website/assets/audio/wattsTheme/Death.mp3 similarity index 100% rename from common/audio/wattsTheme/Death.mp3 rename to website/assets/audio/wattsTheme/Death.mp3 diff --git a/common/audio/wattsTheme/Death.ogg b/website/assets/audio/wattsTheme/Death.ogg similarity index 100% rename from common/audio/wattsTheme/Death.ogg rename to website/assets/audio/wattsTheme/Death.ogg diff --git a/common/audio/wattsTheme/Item_Drop.mp3 b/website/assets/audio/wattsTheme/Item_Drop.mp3 similarity index 100% rename from common/audio/wattsTheme/Item_Drop.mp3 rename to website/assets/audio/wattsTheme/Item_Drop.mp3 diff --git a/common/audio/wattsTheme/Item_Drop.ogg b/website/assets/audio/wattsTheme/Item_Drop.ogg similarity index 100% rename from common/audio/wattsTheme/Item_Drop.ogg rename to website/assets/audio/wattsTheme/Item_Drop.ogg diff --git a/common/audio/wattsTheme/Level_Up.mp3 b/website/assets/audio/wattsTheme/Level_Up.mp3 similarity index 100% rename from common/audio/wattsTheme/Level_Up.mp3 rename to website/assets/audio/wattsTheme/Level_Up.mp3 diff --git a/common/audio/wattsTheme/Level_Up.ogg b/website/assets/audio/wattsTheme/Level_Up.ogg similarity index 100% rename from common/audio/wattsTheme/Level_Up.ogg rename to website/assets/audio/wattsTheme/Level_Up.ogg diff --git a/common/audio/wattsTheme/Minus_Habit.mp3 b/website/assets/audio/wattsTheme/Minus_Habit.mp3 similarity index 100% rename from common/audio/wattsTheme/Minus_Habit.mp3 rename to website/assets/audio/wattsTheme/Minus_Habit.mp3 diff --git a/common/audio/wattsTheme/Minus_Habit.ogg b/website/assets/audio/wattsTheme/Minus_Habit.ogg similarity index 100% rename from common/audio/wattsTheme/Minus_Habit.ogg rename to website/assets/audio/wattsTheme/Minus_Habit.ogg diff --git a/common/audio/wattsTheme/Plus_Habit.mp3 b/website/assets/audio/wattsTheme/Plus_Habit.mp3 similarity index 100% rename from common/audio/wattsTheme/Plus_Habit.mp3 rename to website/assets/audio/wattsTheme/Plus_Habit.mp3 diff --git a/common/audio/wattsTheme/Plus_Habit.ogg b/website/assets/audio/wattsTheme/Plus_Habit.ogg similarity index 100% rename from common/audio/wattsTheme/Plus_Habit.ogg rename to website/assets/audio/wattsTheme/Plus_Habit.ogg diff --git a/common/audio/wattsTheme/Reward.mp3 b/website/assets/audio/wattsTheme/Reward.mp3 similarity index 100% rename from common/audio/wattsTheme/Reward.mp3 rename to website/assets/audio/wattsTheme/Reward.mp3 diff --git a/common/audio/wattsTheme/Reward.ogg b/website/assets/audio/wattsTheme/Reward.ogg similarity index 100% rename from common/audio/wattsTheme/Reward.ogg rename to website/assets/audio/wattsTheme/Reward.ogg diff --git a/common/audio/wattsTheme/ToDo.mp3 b/website/assets/audio/wattsTheme/ToDo.mp3 similarity index 100% rename from common/audio/wattsTheme/ToDo.mp3 rename to website/assets/audio/wattsTheme/ToDo.mp3 diff --git a/common/audio/wattsTheme/ToDo.ogg b/website/assets/audio/wattsTheme/ToDo.ogg similarity index 100% rename from common/audio/wattsTheme/ToDo.ogg rename to website/assets/audio/wattsTheme/ToDo.ogg diff --git a/common/img/bs-docs-masthead-pattern.png b/website/assets/img/bs-docs-masthead-pattern.png similarity index 100% rename from common/img/bs-docs-masthead-pattern.png rename to website/assets/img/bs-docs-masthead-pattern.png diff --git a/common/img/calendar_google.png b/website/assets/img/calendar_google.png similarity index 100% rename from common/img/calendar_google.png rename to website/assets/img/calendar_google.png diff --git a/common/img/calendar_ical.png b/website/assets/img/calendar_ical.png similarity index 100% rename from common/img/calendar_ical.png rename to website/assets/img/calendar_ical.png diff --git a/common/img/gryphon_192-20.png b/website/assets/img/gryphon_192-20.png similarity index 100% rename from common/img/gryphon_192-20.png rename to website/assets/img/gryphon_192-20.png diff --git a/common/img/logo/habitrpg.jpg b/website/assets/img/logo/habitrpg.jpg similarity index 100% rename from common/img/logo/habitrpg.jpg rename to website/assets/img/logo/habitrpg.jpg diff --git a/common/img/logo/habitrpg_pixel.png b/website/assets/img/logo/habitrpg_pixel.png similarity index 100% rename from common/img/logo/habitrpg_pixel.png rename to website/assets/img/logo/habitrpg_pixel.png diff --git a/common/img/project_files/1024_1024.png b/website/assets/img/project_files/1024_1024.png similarity index 100% rename from common/img/project_files/1024_1024.png rename to website/assets/img/project_files/1024_1024.png diff --git a/common/img/project_files/512_512.png b/website/assets/img/project_files/512_512.png similarity index 100% rename from common/img/project_files/512_512.png rename to website/assets/img/project_files/512_512.png diff --git a/common/img/project_files/Armor6_m.xcf b/website/assets/img/project_files/Armor6_m.xcf similarity index 100% rename from common/img/project_files/Armor6_m.xcf rename to website/assets/img/project_files/Armor6_m.xcf diff --git a/common/img/project_files/Armor7_m.xcf b/website/assets/img/project_files/Armor7_m.xcf similarity index 100% rename from common/img/project_files/Armor7_m.xcf rename to website/assets/img/project_files/Armor7_m.xcf diff --git a/common/img/project_files/Armor8_m.xcf b/website/assets/img/project_files/Armor8_m.xcf similarity index 100% rename from common/img/project_files/Armor8_m.xcf rename to website/assets/img/project_files/Armor8_m.xcf diff --git a/common/img/project_files/april_fools/april_fools_healer.png b/website/assets/img/project_files/april_fools/april_fools_healer.png similarity index 100% rename from common/img/project_files/april_fools/april_fools_healer.png rename to website/assets/img/project_files/april_fools/april_fools_healer.png diff --git a/common/img/project_files/april_fools/april_fools_rogue.png b/website/assets/img/project_files/april_fools/april_fools_rogue.png similarity index 100% rename from common/img/project_files/april_fools/april_fools_rogue.png rename to website/assets/img/project_files/april_fools/april_fools_rogue.png diff --git a/common/img/project_files/april_fools/april_fools_warrior.png b/website/assets/img/project_files/april_fools/april_fools_warrior.png similarity index 100% rename from common/img/project_files/april_fools/april_fools_warrior.png rename to website/assets/img/project_files/april_fools/april_fools_warrior.png diff --git a/common/img/project_files/april_fools/april_fools_wizard.png b/website/assets/img/project_files/april_fools/april_fools_wizard.png similarity index 100% rename from common/img/project_files/april_fools/april_fools_wizard.png rename to website/assets/img/project_files/april_fools/april_fools_wizard.png diff --git a/common/img/project_files/designs/48fc008e-5fba-11e3-9a6f-29693cc3b692.png b/website/assets/img/project_files/designs/48fc008e-5fba-11e3-9a6f-29693cc3b692.png similarity index 100% rename from common/img/project_files/designs/48fc008e-5fba-11e3-9a6f-29693cc3b692.png rename to website/assets/img/project_files/designs/48fc008e-5fba-11e3-9a6f-29693cc3b692.png diff --git a/common/img/project_files/designs/rogue_bows/weapon_rogue_0.png b/website/assets/img/project_files/designs/rogue_bows/weapon_rogue_0.png similarity index 100% rename from common/img/project_files/designs/rogue_bows/weapon_rogue_0.png rename to website/assets/img/project_files/designs/rogue_bows/weapon_rogue_0.png diff --git a/common/img/project_files/designs/rogue_bows/weapon_rogue_1.png b/website/assets/img/project_files/designs/rogue_bows/weapon_rogue_1.png similarity index 100% rename from common/img/project_files/designs/rogue_bows/weapon_rogue_1.png rename to website/assets/img/project_files/designs/rogue_bows/weapon_rogue_1.png diff --git a/common/img/project_files/designs/rogue_bows/weapon_rogue_2.png b/website/assets/img/project_files/designs/rogue_bows/weapon_rogue_2.png similarity index 100% rename from common/img/project_files/designs/rogue_bows/weapon_rogue_2.png rename to website/assets/img/project_files/designs/rogue_bows/weapon_rogue_2.png diff --git a/common/img/project_files/designs/rogue_bows/weapon_rogue_3.png b/website/assets/img/project_files/designs/rogue_bows/weapon_rogue_3.png similarity index 100% rename from common/img/project_files/designs/rogue_bows/weapon_rogue_3.png rename to website/assets/img/project_files/designs/rogue_bows/weapon_rogue_3.png diff --git a/common/img/project_files/designs/rogue_bows/weapon_rogue_4.png b/website/assets/img/project_files/designs/rogue_bows/weapon_rogue_4.png similarity index 100% rename from common/img/project_files/designs/rogue_bows/weapon_rogue_4.png rename to website/assets/img/project_files/designs/rogue_bows/weapon_rogue_4.png diff --git a/common/img/project_files/designs/rogue_bows/weapon_rogue_5.png b/website/assets/img/project_files/designs/rogue_bows/weapon_rogue_5.png similarity index 100% rename from common/img/project_files/designs/rogue_bows/weapon_rogue_5.png rename to website/assets/img/project_files/designs/rogue_bows/weapon_rogue_5.png diff --git a/common/img/project_files/designs/rogue_bows/weapon_rogue_6.png b/website/assets/img/project_files/designs/rogue_bows/weapon_rogue_6.png similarity index 100% rename from common/img/project_files/designs/rogue_bows/weapon_rogue_6.png rename to website/assets/img/project_files/designs/rogue_bows/weapon_rogue_6.png diff --git a/common/img/project_files/designs/rogue_weapons/crystal_phoenix_1.png b/website/assets/img/project_files/designs/rogue_weapons/crystal_phoenix_1.png similarity index 100% rename from common/img/project_files/designs/rogue_weapons/crystal_phoenix_1.png rename to website/assets/img/project_files/designs/rogue_weapons/crystal_phoenix_1.png diff --git a/common/img/project_files/designs/rogue_weapons/crystal_phoenix_2.png b/website/assets/img/project_files/designs/rogue_weapons/crystal_phoenix_2.png similarity index 100% rename from common/img/project_files/designs/rogue_weapons/crystal_phoenix_2.png rename to website/assets/img/project_files/designs/rogue_weapons/crystal_phoenix_2.png diff --git a/common/img/project_files/designs/rogue_weapons/fuzzytrees.png b/website/assets/img/project_files/designs/rogue_weapons/fuzzytrees.png similarity index 100% rename from common/img/project_files/designs/rogue_weapons/fuzzytrees.png rename to website/assets/img/project_files/designs/rogue_weapons/fuzzytrees.png diff --git a/common/img/project_files/designs/snowballbig.png b/website/assets/img/project_files/designs/snowballbig.png similarity index 100% rename from common/img/project_files/designs/snowballbig.png rename to website/assets/img/project_files/designs/snowballbig.png diff --git a/common/img/project_files/designs/unprocessed/1d5cc0f4-80d5-11e2-9cd5-92712ef2cc54.gif b/website/assets/img/project_files/designs/unprocessed/1d5cc0f4-80d5-11e2-9cd5-92712ef2cc54.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/1d5cc0f4-80d5-11e2-9cd5-92712ef2cc54.gif rename to website/assets/img/project_files/designs/unprocessed/1d5cc0f4-80d5-11e2-9cd5-92712ef2cc54.gif diff --git a/common/img/project_files/designs/unprocessed/272fa94c-8338-11e2-80f8-eba642a48a63.png b/website/assets/img/project_files/designs/unprocessed/272fa94c-8338-11e2-80f8-eba642a48a63.png similarity index 100% rename from common/img/project_files/designs/unprocessed/272fa94c-8338-11e2-80f8-eba642a48a63.png rename to website/assets/img/project_files/designs/unprocessed/272fa94c-8338-11e2-80f8-eba642a48a63.png diff --git a/common/img/project_files/designs/unprocessed/70470c0c-70b8-11e2-9448-a2ac8b8779d1.png b/website/assets/img/project_files/designs/unprocessed/70470c0c-70b8-11e2-9448-a2ac8b8779d1.png similarity index 100% rename from common/img/project_files/designs/unprocessed/70470c0c-70b8-11e2-9448-a2ac8b8779d1.png rename to website/assets/img/project_files/designs/unprocessed/70470c0c-70b8-11e2-9448-a2ac8b8779d1.png diff --git a/common/img/project_files/designs/unprocessed/79cace6c-8512-11e2-87f4-fff9639ec4cb.gif b/website/assets/img/project_files/designs/unprocessed/79cace6c-8512-11e2-87f4-fff9639ec4cb.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/79cace6c-8512-11e2-87f4-fff9639ec4cb.gif rename to website/assets/img/project_files/designs/unprocessed/79cace6c-8512-11e2-87f4-fff9639ec4cb.gif diff --git a/common/img/project_files/designs/unprocessed/8926c83e-70b8-11e2-88d6-8e114af266f9.gif b/website/assets/img/project_files/designs/unprocessed/8926c83e-70b8-11e2-88d6-8e114af266f9.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/8926c83e-70b8-11e2-88d6-8e114af266f9.gif rename to website/assets/img/project_files/designs/unprocessed/8926c83e-70b8-11e2-88d6-8e114af266f9.gif diff --git a/common/img/project_files/designs/unprocessed/957247ce-70a6-11e2-839c-96add9efa68d.png b/website/assets/img/project_files/designs/unprocessed/957247ce-70a6-11e2-839c-96add9efa68d.png similarity index 100% rename from common/img/project_files/designs/unprocessed/957247ce-70a6-11e2-839c-96add9efa68d.png rename to website/assets/img/project_files/designs/unprocessed/957247ce-70a6-11e2-839c-96add9efa68d.png diff --git a/common/img/project_files/designs/unprocessed/armored_samurai/18f83282-7f1d-11e2-9605-686c0f6603be.png b/website/assets/img/project_files/designs/unprocessed/armored_samurai/18f83282-7f1d-11e2-9605-686c0f6603be.png similarity index 100% rename from common/img/project_files/designs/unprocessed/armored_samurai/18f83282-7f1d-11e2-9605-686c0f6603be.png rename to website/assets/img/project_files/designs/unprocessed/armored_samurai/18f83282-7f1d-11e2-9605-686c0f6603be.png diff --git a/common/img/project_files/designs/unprocessed/armored_samurai/193a14b8-7f1d-11e2-991a-2897b90a61c4.png b/website/assets/img/project_files/designs/unprocessed/armored_samurai/193a14b8-7f1d-11e2-991a-2897b90a61c4.png similarity index 100% rename from common/img/project_files/designs/unprocessed/armored_samurai/193a14b8-7f1d-11e2-991a-2897b90a61c4.png rename to website/assets/img/project_files/designs/unprocessed/armored_samurai/193a14b8-7f1d-11e2-991a-2897b90a61c4.png diff --git a/common/img/project_files/designs/unprocessed/armored_samurai/274333e6-7f1d-11e2-887d-157238988fb9.png b/website/assets/img/project_files/designs/unprocessed/armored_samurai/274333e6-7f1d-11e2-887d-157238988fb9.png similarity index 100% rename from common/img/project_files/designs/unprocessed/armored_samurai/274333e6-7f1d-11e2-887d-157238988fb9.png rename to website/assets/img/project_files/designs/unprocessed/armored_samurai/274333e6-7f1d-11e2-887d-157238988fb9.png diff --git a/common/img/project_files/designs/unprocessed/armored_samurai/2a920c8e-7f1d-11e2-9656-d4b63e736b26.png b/website/assets/img/project_files/designs/unprocessed/armored_samurai/2a920c8e-7f1d-11e2-9656-d4b63e736b26.png similarity index 100% rename from common/img/project_files/designs/unprocessed/armored_samurai/2a920c8e-7f1d-11e2-9656-d4b63e736b26.png rename to website/assets/img/project_files/designs/unprocessed/armored_samurai/2a920c8e-7f1d-11e2-9656-d4b63e736b26.png diff --git a/common/img/project_files/designs/unprocessed/backer/6c742fa6-7801-11e2-8ce2-02ca676c031d.gif b/website/assets/img/project_files/designs/unprocessed/backer/6c742fa6-7801-11e2-8ce2-02ca676c031d.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/backer/6c742fa6-7801-11e2-8ce2-02ca676c031d.gif rename to website/assets/img/project_files/designs/unprocessed/backer/6c742fa6-7801-11e2-8ce2-02ca676c031d.gif diff --git a/common/img/project_files/designs/unprocessed/backer/96c696a0-7f8f-11e2-9bf9-5e67f9e4ed85.gif b/website/assets/img/project_files/designs/unprocessed/backer/96c696a0-7f8f-11e2-9bf9-5e67f9e4ed85.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/backer/96c696a0-7f8f-11e2-9bf9-5e67f9e4ed85.gif rename to website/assets/img/project_files/designs/unprocessed/backer/96c696a0-7f8f-11e2-9bf9-5e67f9e4ed85.gif diff --git a/common/img/project_files/designs/unprocessed/backer/ab1da3a4-77b6-11e2-95c0-5e5e3300f202.gif b/website/assets/img/project_files/designs/unprocessed/backer/ab1da3a4-77b6-11e2-95c0-5e5e3300f202.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/backer/ab1da3a4-77b6-11e2-95c0-5e5e3300f202.gif rename to website/assets/img/project_files/designs/unprocessed/backer/ab1da3a4-77b6-11e2-95c0-5e5e3300f202.gif diff --git a/common/img/project_files/designs/unprocessed/bride/d09359ee-800d-11e2-92be-000b9ce042c2.gif b/website/assets/img/project_files/designs/unprocessed/bride/d09359ee-800d-11e2-92be-000b9ce042c2.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/bride/d09359ee-800d-11e2-92be-000b9ce042c2.gif rename to website/assets/img/project_files/designs/unprocessed/bride/d09359ee-800d-11e2-92be-000b9ce042c2.gif diff --git a/common/img/project_files/designs/unprocessed/bride/d0d1c5f8-800d-11e2-869c-46f3ce3925f2.gif b/website/assets/img/project_files/designs/unprocessed/bride/d0d1c5f8-800d-11e2-869c-46f3ce3925f2.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/bride/d0d1c5f8-800d-11e2-869c-46f3ce3925f2.gif rename to website/assets/img/project_files/designs/unprocessed/bride/d0d1c5f8-800d-11e2-869c-46f3ce3925f2.gif diff --git a/common/img/project_files/designs/unprocessed/bride/d1120898-800d-11e2-9fea-be1dc75b04ce.gif b/website/assets/img/project_files/designs/unprocessed/bride/d1120898-800d-11e2-9fea-be1dc75b04ce.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/bride/d1120898-800d-11e2-9fea-be1dc75b04ce.gif rename to website/assets/img/project_files/designs/unprocessed/bride/d1120898-800d-11e2-9fea-be1dc75b04ce.gif diff --git a/common/img/project_files/designs/unprocessed/cat_ears/906bf600-81c0-11e2-9b89-8bde0a5209bc.png b/website/assets/img/project_files/designs/unprocessed/cat_ears/906bf600-81c0-11e2-9b89-8bde0a5209bc.png similarity index 100% rename from common/img/project_files/designs/unprocessed/cat_ears/906bf600-81c0-11e2-9b89-8bde0a5209bc.png rename to website/assets/img/project_files/designs/unprocessed/cat_ears/906bf600-81c0-11e2-9b89-8bde0a5209bc.png diff --git a/common/img/project_files/designs/unprocessed/cat_ears/95d8d428-81c0-11e2-89ef-24dc63060497.png b/website/assets/img/project_files/designs/unprocessed/cat_ears/95d8d428-81c0-11e2-89ef-24dc63060497.png similarity index 100% rename from common/img/project_files/designs/unprocessed/cat_ears/95d8d428-81c0-11e2-89ef-24dc63060497.png rename to website/assets/img/project_files/designs/unprocessed/cat_ears/95d8d428-81c0-11e2-89ef-24dc63060497.png diff --git a/common/img/project_files/designs/unprocessed/dragon_hunter/2b4edd44-80aa-11e2-91fd-ae7dc21d69e7.gif b/website/assets/img/project_files/designs/unprocessed/dragon_hunter/2b4edd44-80aa-11e2-91fd-ae7dc21d69e7.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/dragon_hunter/2b4edd44-80aa-11e2-91fd-ae7dc21d69e7.gif rename to website/assets/img/project_files/designs/unprocessed/dragon_hunter/2b4edd44-80aa-11e2-91fd-ae7dc21d69e7.gif diff --git a/common/img/project_files/designs/unprocessed/dragon_hunter/2e6af9d6-80aa-11e2-8c2e-812b03736b26.gif b/website/assets/img/project_files/designs/unprocessed/dragon_hunter/2e6af9d6-80aa-11e2-8c2e-812b03736b26.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/dragon_hunter/2e6af9d6-80aa-11e2-8c2e-812b03736b26.gif rename to website/assets/img/project_files/designs/unprocessed/dragon_hunter/2e6af9d6-80aa-11e2-8c2e-812b03736b26.gif diff --git a/common/img/project_files/designs/unprocessed/dragon_hunter/e854c3b4-80a9-11e2-94e2-048c2cf36920.gif b/website/assets/img/project_files/designs/unprocessed/dragon_hunter/e854c3b4-80a9-11e2-94e2-048c2cf36920.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/dragon_hunter/e854c3b4-80a9-11e2-94e2-048c2cf36920.gif rename to website/assets/img/project_files/designs/unprocessed/dragon_hunter/e854c3b4-80a9-11e2-94e2-048c2cf36920.gif diff --git a/common/img/project_files/designs/unprocessed/dragon_hunter/ed357a86-80a9-11e2-997f-35c1841e1688.gif b/website/assets/img/project_files/designs/unprocessed/dragon_hunter/ed357a86-80a9-11e2-997f-35c1841e1688.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/dragon_hunter/ed357a86-80a9-11e2-997f-35c1841e1688.gif rename to website/assets/img/project_files/designs/unprocessed/dragon_hunter/ed357a86-80a9-11e2-997f-35c1841e1688.gif diff --git a/common/img/project_files/designs/unprocessed/dragon_hunter/f08a5012-80a9-11e2-8c99-dc58828b4e2a.gif b/website/assets/img/project_files/designs/unprocessed/dragon_hunter/f08a5012-80a9-11e2-8c99-dc58828b4e2a.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/dragon_hunter/f08a5012-80a9-11e2-8c99-dc58828b4e2a.gif rename to website/assets/img/project_files/designs/unprocessed/dragon_hunter/f08a5012-80a9-11e2-8c99-dc58828b4e2a.gif diff --git a/common/img/project_files/designs/unprocessed/dragon_hunter/f48fc58e-80a9-11e2-860e-dc5d57325f7e.gif b/website/assets/img/project_files/designs/unprocessed/dragon_hunter/f48fc58e-80a9-11e2-860e-dc5d57325f7e.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/dragon_hunter/f48fc58e-80a9-11e2-860e-dc5d57325f7e.gif rename to website/assets/img/project_files/designs/unprocessed/dragon_hunter/f48fc58e-80a9-11e2-860e-dc5d57325f7e.gif diff --git a/common/img/project_files/designs/unprocessed/ff218da6-7ff6-11e2-90a5-691ce50f46a2.gif b/website/assets/img/project_files/designs/unprocessed/ff218da6-7ff6-11e2-90a5-691ce50f46a2.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/ff218da6-7ff6-11e2-90a5-691ce50f46a2.gif rename to website/assets/img/project_files/designs/unprocessed/ff218da6-7ff6-11e2-90a5-691ce50f46a2.gif diff --git a/common/img/project_files/designs/unprocessed/gladiator/23e7ab0e-7f0a-11e2-9d36-bfab6944f6b7.png b/website/assets/img/project_files/designs/unprocessed/gladiator/23e7ab0e-7f0a-11e2-9d36-bfab6944f6b7.png similarity index 100% rename from common/img/project_files/designs/unprocessed/gladiator/23e7ab0e-7f0a-11e2-9d36-bfab6944f6b7.png rename to website/assets/img/project_files/designs/unprocessed/gladiator/23e7ab0e-7f0a-11e2-9d36-bfab6944f6b7.png diff --git a/common/img/project_files/designs/unprocessed/gladiator/2414bd4c-7f0a-11e2-8522-9becf9bdf198.png b/website/assets/img/project_files/designs/unprocessed/gladiator/2414bd4c-7f0a-11e2-8522-9becf9bdf198.png similarity index 100% rename from common/img/project_files/designs/unprocessed/gladiator/2414bd4c-7f0a-11e2-8522-9becf9bdf198.png rename to website/assets/img/project_files/designs/unprocessed/gladiator/2414bd4c-7f0a-11e2-8522-9becf9bdf198.png diff --git a/common/img/project_files/designs/unprocessed/gladiator/2441dfe8-7f0a-11e2-8289-74dc99e5d9cb.png b/website/assets/img/project_files/designs/unprocessed/gladiator/2441dfe8-7f0a-11e2-8289-74dc99e5d9cb.png similarity index 100% rename from common/img/project_files/designs/unprocessed/gladiator/2441dfe8-7f0a-11e2-8289-74dc99e5d9cb.png rename to website/assets/img/project_files/designs/unprocessed/gladiator/2441dfe8-7f0a-11e2-8289-74dc99e5d9cb.png diff --git a/common/img/project_files/designs/unprocessed/gladiator/2454557e-7f0a-11e2-98e9-364700741380.png b/website/assets/img/project_files/designs/unprocessed/gladiator/2454557e-7f0a-11e2-98e9-364700741380.png similarity index 100% rename from common/img/project_files/designs/unprocessed/gladiator/2454557e-7f0a-11e2-98e9-364700741380.png rename to website/assets/img/project_files/designs/unprocessed/gladiator/2454557e-7f0a-11e2-98e9-364700741380.png diff --git a/common/img/project_files/designs/unprocessed/gladiator/245a7d3c-7f0a-11e2-9aab-f5ad8aeeff98.png b/website/assets/img/project_files/designs/unprocessed/gladiator/245a7d3c-7f0a-11e2-9aab-f5ad8aeeff98.png similarity index 100% rename from common/img/project_files/designs/unprocessed/gladiator/245a7d3c-7f0a-11e2-9aab-f5ad8aeeff98.png rename to website/assets/img/project_files/designs/unprocessed/gladiator/245a7d3c-7f0a-11e2-9aab-f5ad8aeeff98.png diff --git a/common/img/project_files/designs/unprocessed/immortal/a23653d0-7f36-11e2-8993-7146e23b80d2.png b/website/assets/img/project_files/designs/unprocessed/immortal/a23653d0-7f36-11e2-8993-7146e23b80d2.png similarity index 100% rename from common/img/project_files/designs/unprocessed/immortal/a23653d0-7f36-11e2-8993-7146e23b80d2.png rename to website/assets/img/project_files/designs/unprocessed/immortal/a23653d0-7f36-11e2-8993-7146e23b80d2.png diff --git a/common/img/project_files/designs/unprocessed/immortal/a267e12a-7f36-11e2-8cc3-3b7ef849783c.png b/website/assets/img/project_files/designs/unprocessed/immortal/a267e12a-7f36-11e2-8cc3-3b7ef849783c.png similarity index 100% rename from common/img/project_files/designs/unprocessed/immortal/a267e12a-7f36-11e2-8cc3-3b7ef849783c.png rename to website/assets/img/project_files/designs/unprocessed/immortal/a267e12a-7f36-11e2-8cc3-3b7ef849783c.png diff --git a/common/img/project_files/designs/unprocessed/immortal/a2986c6e-7f36-11e2-8858-f817af009adb.png b/website/assets/img/project_files/designs/unprocessed/immortal/a2986c6e-7f36-11e2-8858-f817af009adb.png similarity index 100% rename from common/img/project_files/designs/unprocessed/immortal/a2986c6e-7f36-11e2-8858-f817af009adb.png rename to website/assets/img/project_files/designs/unprocessed/immortal/a2986c6e-7f36-11e2-8858-f817af009adb.png diff --git a/common/img/project_files/designs/unprocessed/immortal/a2ba320e-7f36-11e2-9bc6-d0a02b66408c.png b/website/assets/img/project_files/designs/unprocessed/immortal/a2ba320e-7f36-11e2-9bc6-d0a02b66408c.png similarity index 100% rename from common/img/project_files/designs/unprocessed/immortal/a2ba320e-7f36-11e2-9bc6-d0a02b66408c.png rename to website/assets/img/project_files/designs/unprocessed/immortal/a2ba320e-7f36-11e2-9bc6-d0a02b66408c.png diff --git a/common/img/project_files/designs/unprocessed/pets/7beaf3ee-805c-11e2-994f-a8158102048c.gif b/website/assets/img/project_files/designs/unprocessed/pets/7beaf3ee-805c-11e2-994f-a8158102048c.gif similarity index 100% rename from common/img/project_files/designs/unprocessed/pets/7beaf3ee-805c-11e2-994f-a8158102048c.gif rename to website/assets/img/project_files/designs/unprocessed/pets/7beaf3ee-805c-11e2-994f-a8158102048c.gif diff --git a/common/img/project_files/designs/unprocessed/pets/8839ff22-8837-11e2-84ed-3998b99719b0.png b/website/assets/img/project_files/designs/unprocessed/pets/8839ff22-8837-11e2-84ed-3998b99719b0.png similarity index 100% rename from common/img/project_files/designs/unprocessed/pets/8839ff22-8837-11e2-84ed-3998b99719b0.png rename to website/assets/img/project_files/designs/unprocessed/pets/8839ff22-8837-11e2-84ed-3998b99719b0.png diff --git a/common/img/project_files/designs/unprocessed/pets/b13c795c-6f2a-11e2-8be9-dec462891e6f.png b/website/assets/img/project_files/designs/unprocessed/pets/b13c795c-6f2a-11e2-8be9-dec462891e6f.png similarity index 100% rename from common/img/project_files/designs/unprocessed/pets/b13c795c-6f2a-11e2-8be9-dec462891e6f.png rename to website/assets/img/project_files/designs/unprocessed/pets/b13c795c-6f2a-11e2-8be9-dec462891e6f.png diff --git a/common/img/project_files/designs/unprocessed/robed_samurai/a4ade7e4-7f14-11e2-8aa2-c3b501009e1a.png b/website/assets/img/project_files/designs/unprocessed/robed_samurai/a4ade7e4-7f14-11e2-8aa2-c3b501009e1a.png similarity index 100% rename from common/img/project_files/designs/unprocessed/robed_samurai/a4ade7e4-7f14-11e2-8aa2-c3b501009e1a.png rename to website/assets/img/project_files/designs/unprocessed/robed_samurai/a4ade7e4-7f14-11e2-8aa2-c3b501009e1a.png diff --git a/common/img/project_files/designs/unprocessed/robed_samurai/a4dd91d8-7f14-11e2-9302-7b378721bb9b.png b/website/assets/img/project_files/designs/unprocessed/robed_samurai/a4dd91d8-7f14-11e2-9302-7b378721bb9b.png similarity index 100% rename from common/img/project_files/designs/unprocessed/robed_samurai/a4dd91d8-7f14-11e2-9302-7b378721bb9b.png rename to website/assets/img/project_files/designs/unprocessed/robed_samurai/a4dd91d8-7f14-11e2-9302-7b378721bb9b.png diff --git a/common/img/project_files/designs/unprocessed/robed_samurai/a50d855a-7f14-11e2-8cb6-096ba49e0084.png b/website/assets/img/project_files/designs/unprocessed/robed_samurai/a50d855a-7f14-11e2-8cb6-096ba49e0084.png similarity index 100% rename from common/img/project_files/designs/unprocessed/robed_samurai/a50d855a-7f14-11e2-8cb6-096ba49e0084.png rename to website/assets/img/project_files/designs/unprocessed/robed_samurai/a50d855a-7f14-11e2-8cb6-096ba49e0084.png diff --git a/common/img/project_files/designs/unprocessed/robed_samurai/a53c91f6-7f14-11e2-98c0-d9ca8adfd77f.png b/website/assets/img/project_files/designs/unprocessed/robed_samurai/a53c91f6-7f14-11e2-98c0-d9ca8adfd77f.png similarity index 100% rename from common/img/project_files/designs/unprocessed/robed_samurai/a53c91f6-7f14-11e2-98c0-d9ca8adfd77f.png rename to website/assets/img/project_files/designs/unprocessed/robed_samurai/a53c91f6-7f14-11e2-98c0-d9ca8adfd77f.png diff --git a/common/img/project_files/designs/unprocessed/rogue/300cde96-704f-11e2-95f1-25d59dee29c2.png b/website/assets/img/project_files/designs/unprocessed/rogue/300cde96-704f-11e2-95f1-25d59dee29c2.png similarity index 100% rename from common/img/project_files/designs/unprocessed/rogue/300cde96-704f-11e2-95f1-25d59dee29c2.png rename to website/assets/img/project_files/designs/unprocessed/rogue/300cde96-704f-11e2-95f1-25d59dee29c2.png diff --git a/common/img/project_files/designs/unprocessed/rogue/78aa437e-7111-11e2-97b5-1f1d1e2b99e0.png b/website/assets/img/project_files/designs/unprocessed/rogue/78aa437e-7111-11e2-97b5-1f1d1e2b99e0.png similarity index 100% rename from common/img/project_files/designs/unprocessed/rogue/78aa437e-7111-11e2-97b5-1f1d1e2b99e0.png rename to website/assets/img/project_files/designs/unprocessed/rogue/78aa437e-7111-11e2-97b5-1f1d1e2b99e0.png diff --git a/common/img/project_files/designs/unprocessed/rogue/79016b86-7111-11e2-90e4-ad4483d9d0fa.png b/website/assets/img/project_files/designs/unprocessed/rogue/79016b86-7111-11e2-90e4-ad4483d9d0fa.png similarity index 100% rename from common/img/project_files/designs/unprocessed/rogue/79016b86-7111-11e2-90e4-ad4483d9d0fa.png rename to website/assets/img/project_files/designs/unprocessed/rogue/79016b86-7111-11e2-90e4-ad4483d9d0fa.png diff --git a/common/img/project_files/designs/unprocessed/rogue/7911afd2-7111-11e2-899b-e17fa4b0f758.png b/website/assets/img/project_files/designs/unprocessed/rogue/7911afd2-7111-11e2-899b-e17fa4b0f758.png similarity index 100% rename from common/img/project_files/designs/unprocessed/rogue/7911afd2-7111-11e2-899b-e17fa4b0f758.png rename to website/assets/img/project_files/designs/unprocessed/rogue/7911afd2-7111-11e2-899b-e17fa4b0f758.png diff --git a/common/img/project_files/designs/unprocessed/rogue/d665bcaa-7d6e-11e2-8389-ad021a8995e6.png b/website/assets/img/project_files/designs/unprocessed/rogue/d665bcaa-7d6e-11e2-8389-ad021a8995e6.png similarity index 100% rename from common/img/project_files/designs/unprocessed/rogue/d665bcaa-7d6e-11e2-8389-ad021a8995e6.png rename to website/assets/img/project_files/designs/unprocessed/rogue/d665bcaa-7d6e-11e2-8389-ad021a8995e6.png diff --git a/common/img/project_files/designs/unprocessed/rogue/d7a969cc-7d6e-11e2-8ae6-4bfc48340897.png b/website/assets/img/project_files/designs/unprocessed/rogue/d7a969cc-7d6e-11e2-8ae6-4bfc48340897.png similarity index 100% rename from common/img/project_files/designs/unprocessed/rogue/d7a969cc-7d6e-11e2-8ae6-4bfc48340897.png rename to website/assets/img/project_files/designs/unprocessed/rogue/d7a969cc-7d6e-11e2-8ae6-4bfc48340897.png diff --git a/common/img/project_files/designs/unprocessed/rogue/d96fa1b8-7d6e-11e2-97d2-35da41d621cc.png b/website/assets/img/project_files/designs/unprocessed/rogue/d96fa1b8-7d6e-11e2-97d2-35da41d621cc.png similarity index 100% rename from common/img/project_files/designs/unprocessed/rogue/d96fa1b8-7d6e-11e2-97d2-35da41d621cc.png rename to website/assets/img/project_files/designs/unprocessed/rogue/d96fa1b8-7d6e-11e2-97d2-35da41d621cc.png diff --git a/common/img/project_files/designs/unprocessed/rogue/dbae71de-7d6e-11e2-9ed4-e695eb852666.png b/website/assets/img/project_files/designs/unprocessed/rogue/dbae71de-7d6e-11e2-9ed4-e695eb852666.png similarity index 100% rename from common/img/project_files/designs/unprocessed/rogue/dbae71de-7d6e-11e2-9ed4-e695eb852666.png rename to website/assets/img/project_files/designs/unprocessed/rogue/dbae71de-7d6e-11e2-9ed4-e695eb852666.png diff --git a/common/img/project_files/designs/unprocessed/rogue/dcf2eb42-7d6e-11e2-96dd-5c943b1f26a9.png b/website/assets/img/project_files/designs/unprocessed/rogue/dcf2eb42-7d6e-11e2-96dd-5c943b1f26a9.png similarity index 100% rename from common/img/project_files/designs/unprocessed/rogue/dcf2eb42-7d6e-11e2-96dd-5c943b1f26a9.png rename to website/assets/img/project_files/designs/unprocessed/rogue/dcf2eb42-7d6e-11e2-96dd-5c943b1f26a9.png diff --git a/common/img/project_files/designs/unprocessed/rogue/e091be2c-7d6e-11e2-99d7-6cdca4393a65.png b/website/assets/img/project_files/designs/unprocessed/rogue/e091be2c-7d6e-11e2-99d7-6cdca4393a65.png similarity index 100% rename from common/img/project_files/designs/unprocessed/rogue/e091be2c-7d6e-11e2-99d7-6cdca4393a65.png rename to website/assets/img/project_files/designs/unprocessed/rogue/e091be2c-7d6e-11e2-99d7-6cdca4393a65.png diff --git a/common/img/project_files/designs/unprocessed/rogue/e2088d76-7d6e-11e2-9488-0bd0f499213c.png b/website/assets/img/project_files/designs/unprocessed/rogue/e2088d76-7d6e-11e2-9488-0bd0f499213c.png similarity index 100% rename from common/img/project_files/designs/unprocessed/rogue/e2088d76-7d6e-11e2-9488-0bd0f499213c.png rename to website/assets/img/project_files/designs/unprocessed/rogue/e2088d76-7d6e-11e2-9488-0bd0f499213c.png diff --git a/common/img/project_files/designs/unprocessed/special/compstore bunny lavender.png b/website/assets/img/project_files/designs/unprocessed/special/compstore bunny lavender.png similarity index 100% rename from common/img/project_files/designs/unprocessed/special/compstore bunny lavender.png rename to website/assets/img/project_files/designs/unprocessed/special/compstore bunny lavender.png diff --git a/common/img/project_files/designs/unprocessed/special/compstore bunny light blue.png b/website/assets/img/project_files/designs/unprocessed/special/compstore bunny light blue.png similarity index 100% rename from common/img/project_files/designs/unprocessed/special/compstore bunny light blue.png rename to website/assets/img/project_files/designs/unprocessed/special/compstore bunny light blue.png diff --git a/common/img/project_files/designs/unprocessed/special/compstore bunny pink.png b/website/assets/img/project_files/designs/unprocessed/special/compstore bunny pink.png similarity index 100% rename from common/img/project_files/designs/unprocessed/special/compstore bunny pink.png rename to website/assets/img/project_files/designs/unprocessed/special/compstore bunny pink.png diff --git a/common/img/project_files/designs/unprocessed/special/compstore bunny yellow.png b/website/assets/img/project_files/designs/unprocessed/special/compstore bunny yellow.png similarity index 100% rename from common/img/project_files/designs/unprocessed/special/compstore bunny yellow.png rename to website/assets/img/project_files/designs/unprocessed/special/compstore bunny yellow.png diff --git a/common/img/project_files/designs/unprocessed/special/compstore bunny1.png b/website/assets/img/project_files/designs/unprocessed/special/compstore bunny1.png similarity index 100% rename from common/img/project_files/designs/unprocessed/special/compstore bunny1.png rename to website/assets/img/project_files/designs/unprocessed/special/compstore bunny1.png diff --git a/common/img/project_files/designs/unprocessed/special/compstore hermes white.png b/website/assets/img/project_files/designs/unprocessed/special/compstore hermes white.png similarity index 100% rename from common/img/project_files/designs/unprocessed/special/compstore hermes white.png rename to website/assets/img/project_files/designs/unprocessed/special/compstore hermes white.png diff --git a/common/img/project_files/designs/unprocessed/special/compstore hermes.png b/website/assets/img/project_files/designs/unprocessed/special/compstore hermes.png similarity index 100% rename from common/img/project_files/designs/unprocessed/special/compstore hermes.png rename to website/assets/img/project_files/designs/unprocessed/special/compstore hermes.png diff --git a/common/img/project_files/designs/unprocessed/special/compstore kitties1.png b/website/assets/img/project_files/designs/unprocessed/special/compstore kitties1.png similarity index 100% rename from common/img/project_files/designs/unprocessed/special/compstore kitties1.png rename to website/assets/img/project_files/designs/unprocessed/special/compstore kitties1.png diff --git a/common/img/project_files/designs/unprocessed/wizard/056fe680-7d5e-11e2-995d-92d377750e12.png b/website/assets/img/project_files/designs/unprocessed/wizard/056fe680-7d5e-11e2-995d-92d377750e12.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/056fe680-7d5e-11e2-995d-92d377750e12.png rename to website/assets/img/project_files/designs/unprocessed/wizard/056fe680-7d5e-11e2-995d-92d377750e12.png diff --git a/common/img/project_files/designs/unprocessed/wizard/0a8db056-7c7e-11e2-8cc3-743d54724f15.png b/website/assets/img/project_files/designs/unprocessed/wizard/0a8db056-7c7e-11e2-8cc3-743d54724f15.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/0a8db056-7c7e-11e2-8cc3-743d54724f15.png rename to website/assets/img/project_files/designs/unprocessed/wizard/0a8db056-7c7e-11e2-8cc3-743d54724f15.png diff --git a/common/img/project_files/designs/unprocessed/wizard/0c731010-7d5e-11e2-85b1-63b96dc716e7.png b/website/assets/img/project_files/designs/unprocessed/wizard/0c731010-7d5e-11e2-85b1-63b96dc716e7.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/0c731010-7d5e-11e2-85b1-63b96dc716e7.png rename to website/assets/img/project_files/designs/unprocessed/wizard/0c731010-7d5e-11e2-85b1-63b96dc716e7.png diff --git a/common/img/project_files/designs/unprocessed/wizard/1653261e-7dbe-11e2-9905-1746529f137b.png b/website/assets/img/project_files/designs/unprocessed/wizard/1653261e-7dbe-11e2-9905-1746529f137b.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/1653261e-7dbe-11e2-9905-1746529f137b.png rename to website/assets/img/project_files/designs/unprocessed/wizard/1653261e-7dbe-11e2-9905-1746529f137b.png diff --git a/common/img/project_files/designs/unprocessed/wizard/1b4e12c8-7dbe-11e2-8a37-ae0693395de9.png b/website/assets/img/project_files/designs/unprocessed/wizard/1b4e12c8-7dbe-11e2-8a37-ae0693395de9.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/1b4e12c8-7dbe-11e2-8a37-ae0693395de9.png rename to website/assets/img/project_files/designs/unprocessed/wizard/1b4e12c8-7dbe-11e2-8a37-ae0693395de9.png diff --git a/common/img/project_files/designs/unprocessed/wizard/1d9e2166-8670-11e2-9b44-7e58fa80c479.png b/website/assets/img/project_files/designs/unprocessed/wizard/1d9e2166-8670-11e2-9b44-7e58fa80c479.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/1d9e2166-8670-11e2-9b44-7e58fa80c479.png rename to website/assets/img/project_files/designs/unprocessed/wizard/1d9e2166-8670-11e2-9b44-7e58fa80c479.png diff --git a/common/img/project_files/designs/unprocessed/wizard/1fa8bc34-7d5e-11e2-8ba9-7cc5d914c82a.png b/website/assets/img/project_files/designs/unprocessed/wizard/1fa8bc34-7d5e-11e2-8ba9-7cc5d914c82a.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/1fa8bc34-7d5e-11e2-8ba9-7cc5d914c82a.png rename to website/assets/img/project_files/designs/unprocessed/wizard/1fa8bc34-7d5e-11e2-8ba9-7cc5d914c82a.png diff --git a/common/img/project_files/designs/unprocessed/wizard/20445f76-7dbe-11e2-9f63-a80d7a8caa47.png b/website/assets/img/project_files/designs/unprocessed/wizard/20445f76-7dbe-11e2-9f63-a80d7a8caa47.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/20445f76-7dbe-11e2-9f63-a80d7a8caa47.png rename to website/assets/img/project_files/designs/unprocessed/wizard/20445f76-7dbe-11e2-9f63-a80d7a8caa47.png diff --git a/common/img/project_files/designs/unprocessed/wizard/22967a7e-8670-11e2-8306-f9c38bc4d573.png b/website/assets/img/project_files/designs/unprocessed/wizard/22967a7e-8670-11e2-8306-f9c38bc4d573.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/22967a7e-8670-11e2-8306-f9c38bc4d573.png rename to website/assets/img/project_files/designs/unprocessed/wizard/22967a7e-8670-11e2-8306-f9c38bc4d573.png diff --git a/common/img/project_files/designs/unprocessed/wizard/2c40e622-8670-11e2-8363-55bf3fe07c92.png b/website/assets/img/project_files/designs/unprocessed/wizard/2c40e622-8670-11e2-8363-55bf3fe07c92.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/2c40e622-8670-11e2-8363-55bf3fe07c92.png rename to website/assets/img/project_files/designs/unprocessed/wizard/2c40e622-8670-11e2-8363-55bf3fe07c92.png diff --git a/common/img/project_files/designs/unprocessed/wizard/3bb788ae-8670-11e2-842a-315c136bb7bc.png b/website/assets/img/project_files/designs/unprocessed/wizard/3bb788ae-8670-11e2-842a-315c136bb7bc.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/3bb788ae-8670-11e2-842a-315c136bb7bc.png rename to website/assets/img/project_files/designs/unprocessed/wizard/3bb788ae-8670-11e2-842a-315c136bb7bc.png diff --git a/common/img/project_files/designs/unprocessed/wizard/40c01002-7d5e-11e2-8226-b8cde96483aa.png b/website/assets/img/project_files/designs/unprocessed/wizard/40c01002-7d5e-11e2-8226-b8cde96483aa.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/40c01002-7d5e-11e2-8226-b8cde96483aa.png rename to website/assets/img/project_files/designs/unprocessed/wizard/40c01002-7d5e-11e2-8226-b8cde96483aa.png diff --git a/common/img/project_files/designs/unprocessed/wizard/4ac3b2c0-7d5e-11e2-928a-9ab34f91ce77.png b/website/assets/img/project_files/designs/unprocessed/wizard/4ac3b2c0-7d5e-11e2-928a-9ab34f91ce77.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/4ac3b2c0-7d5e-11e2-928a-9ab34f91ce77.png rename to website/assets/img/project_files/designs/unprocessed/wizard/4ac3b2c0-7d5e-11e2-928a-9ab34f91ce77.png diff --git a/common/img/project_files/designs/unprocessed/wizard/5cb7a96e-7d5e-11e2-99d0-f9a52eb29c27.png b/website/assets/img/project_files/designs/unprocessed/wizard/5cb7a96e-7d5e-11e2-99d0-f9a52eb29c27.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/5cb7a96e-7d5e-11e2-99d0-f9a52eb29c27.png rename to website/assets/img/project_files/designs/unprocessed/wizard/5cb7a96e-7d5e-11e2-99d0-f9a52eb29c27.png diff --git a/common/img/project_files/designs/unprocessed/wizard/638eb6ce-7d5e-11e2-9bcc-0e3de0e4d484.png b/website/assets/img/project_files/designs/unprocessed/wizard/638eb6ce-7d5e-11e2-9bcc-0e3de0e4d484.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/638eb6ce-7d5e-11e2-9bcc-0e3de0e4d484.png rename to website/assets/img/project_files/designs/unprocessed/wizard/638eb6ce-7d5e-11e2-9bcc-0e3de0e4d484.png diff --git a/common/img/project_files/designs/unprocessed/wizard/8c23270a-7d5e-11e2-9ca0-60b5ef2de784.png b/website/assets/img/project_files/designs/unprocessed/wizard/8c23270a-7d5e-11e2-9ca0-60b5ef2de784.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/8c23270a-7d5e-11e2-9ca0-60b5ef2de784.png rename to website/assets/img/project_files/designs/unprocessed/wizard/8c23270a-7d5e-11e2-9ca0-60b5ef2de784.png diff --git a/common/img/project_files/designs/unprocessed/wizard/981aebd8-86c3-11e2-8856-bee7c4eaa60d.png b/website/assets/img/project_files/designs/unprocessed/wizard/981aebd8-86c3-11e2-8856-bee7c4eaa60d.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/981aebd8-86c3-11e2-8856-bee7c4eaa60d.png rename to website/assets/img/project_files/designs/unprocessed/wizard/981aebd8-86c3-11e2-8856-bee7c4eaa60d.png diff --git a/common/img/project_files/designs/unprocessed/wizard/9b44e94e-86c3-11e2-9aa9-a0a999d60f4c.png b/website/assets/img/project_files/designs/unprocessed/wizard/9b44e94e-86c3-11e2-9aa9-a0a999d60f4c.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/9b44e94e-86c3-11e2-9aa9-a0a999d60f4c.png rename to website/assets/img/project_files/designs/unprocessed/wizard/9b44e94e-86c3-11e2-9aa9-a0a999d60f4c.png diff --git a/common/img/project_files/designs/unprocessed/wizard/cba70400-7d5e-11e2-8e7a-1c216a2074e1.png b/website/assets/img/project_files/designs/unprocessed/wizard/cba70400-7d5e-11e2-8e7a-1c216a2074e1.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/cba70400-7d5e-11e2-8e7a-1c216a2074e1.png rename to website/assets/img/project_files/designs/unprocessed/wizard/cba70400-7d5e-11e2-8e7a-1c216a2074e1.png diff --git a/common/img/project_files/designs/unprocessed/wizard/d318da56-7d5e-11e2-9d79-79ea485542c9.png b/website/assets/img/project_files/designs/unprocessed/wizard/d318da56-7d5e-11e2-9d79-79ea485542c9.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/d318da56-7d5e-11e2-9d79-79ea485542c9.png rename to website/assets/img/project_files/designs/unprocessed/wizard/d318da56-7d5e-11e2-9d79-79ea485542c9.png diff --git a/common/img/project_files/designs/unprocessed/wizard/df8f8496-704e-11e2-8511-3170ca6c0df2.png b/website/assets/img/project_files/designs/unprocessed/wizard/df8f8496-704e-11e2-8511-3170ca6c0df2.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/df8f8496-704e-11e2-8511-3170ca6c0df2.png rename to website/assets/img/project_files/designs/unprocessed/wizard/df8f8496-704e-11e2-8511-3170ca6c0df2.png diff --git a/common/img/project_files/designs/unprocessed/wizard/e34309a0-7d6e-11e2-841b-e54bddb82577.png b/website/assets/img/project_files/designs/unprocessed/wizard/e34309a0-7d6e-11e2-841b-e54bddb82577.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/e34309a0-7d6e-11e2-841b-e54bddb82577.png rename to website/assets/img/project_files/designs/unprocessed/wizard/e34309a0-7d6e-11e2-841b-e54bddb82577.png diff --git a/common/img/project_files/designs/unprocessed/wizard/e55999e8-7c7e-11e2-80f7-c4d91580bf60.png b/website/assets/img/project_files/designs/unprocessed/wizard/e55999e8-7c7e-11e2-80f7-c4d91580bf60.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/e55999e8-7c7e-11e2-80f7-c4d91580bf60.png rename to website/assets/img/project_files/designs/unprocessed/wizard/e55999e8-7c7e-11e2-80f7-c4d91580bf60.png diff --git a/common/img/project_files/designs/unprocessed/wizard/e71ce75e-7c7d-11e2-9d15-635aaff4e8d1.png b/website/assets/img/project_files/designs/unprocessed/wizard/e71ce75e-7c7d-11e2-9d15-635aaff4e8d1.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/e71ce75e-7c7d-11e2-9d15-635aaff4e8d1.png rename to website/assets/img/project_files/designs/unprocessed/wizard/e71ce75e-7c7d-11e2-9d15-635aaff4e8d1.png diff --git a/common/img/project_files/designs/unprocessed/wizard/eb37ac0c-7d5e-11e2-8ab8-eb061afe4082.png b/website/assets/img/project_files/designs/unprocessed/wizard/eb37ac0c-7d5e-11e2-8ab8-eb061afe4082.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/eb37ac0c-7d5e-11e2-8ab8-eb061afe4082.png rename to website/assets/img/project_files/designs/unprocessed/wizard/eb37ac0c-7d5e-11e2-8ab8-eb061afe4082.png diff --git a/common/img/project_files/designs/unprocessed/wizard/f04973e2-7dbd-11e2-9f40-e6c166d2bbc7 (1).png b/website/assets/img/project_files/designs/unprocessed/wizard/f04973e2-7dbd-11e2-9f40-e6c166d2bbc7 (1).png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/f04973e2-7dbd-11e2-9f40-e6c166d2bbc7 (1).png rename to website/assets/img/project_files/designs/unprocessed/wizard/f04973e2-7dbd-11e2-9f40-e6c166d2bbc7 (1).png diff --git a/common/img/project_files/designs/unprocessed/wizard/f1bac41a-7c7d-11e2-90f3-f2f53b5e2a00.png b/website/assets/img/project_files/designs/unprocessed/wizard/f1bac41a-7c7d-11e2-90f3-f2f53b5e2a00.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/f1bac41a-7c7d-11e2-90f3-f2f53b5e2a00.png rename to website/assets/img/project_files/designs/unprocessed/wizard/f1bac41a-7c7d-11e2-90f3-f2f53b5e2a00.png diff --git a/common/img/project_files/designs/unprocessed/wizard/f1e7c3c0-7d5e-11e2-8857-b58547e05c76.png b/website/assets/img/project_files/designs/unprocessed/wizard/f1e7c3c0-7d5e-11e2-8857-b58547e05c76.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/f1e7c3c0-7d5e-11e2-8857-b58547e05c76.png rename to website/assets/img/project_files/designs/unprocessed/wizard/f1e7c3c0-7d5e-11e2-8857-b58547e05c76.png diff --git a/common/img/project_files/designs/unprocessed/wizard/f5653fc6-7d60-11e2-96f4-d6c887747abc.png b/website/assets/img/project_files/designs/unprocessed/wizard/f5653fc6-7d60-11e2-96f4-d6c887747abc.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/f5653fc6-7d60-11e2-96f4-d6c887747abc.png rename to website/assets/img/project_files/designs/unprocessed/wizard/f5653fc6-7d60-11e2-96f4-d6c887747abc.png diff --git a/common/img/project_files/designs/unprocessed/wizard/f9700c38-7d5e-11e2-8914-d456c3c0ece0.png b/website/assets/img/project_files/designs/unprocessed/wizard/f9700c38-7d5e-11e2-8914-d456c3c0ece0.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/f9700c38-7d5e-11e2-8914-d456c3c0ece0.png rename to website/assets/img/project_files/designs/unprocessed/wizard/f9700c38-7d5e-11e2-8914-d456c3c0ece0.png diff --git a/common/img/project_files/designs/unprocessed/wizard/final/1ac07976-8c3d-11e2-8be6-b20569cccbbc.png b/website/assets/img/project_files/designs/unprocessed/wizard/final/1ac07976-8c3d-11e2-8be6-b20569cccbbc.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/final/1ac07976-8c3d-11e2-8be6-b20569cccbbc.png rename to website/assets/img/project_files/designs/unprocessed/wizard/final/1ac07976-8c3d-11e2-8be6-b20569cccbbc.png diff --git a/common/img/project_files/designs/unprocessed/wizard/final/3a151098-8c3d-11e2-9b2d-b1fa78c39718.png b/website/assets/img/project_files/designs/unprocessed/wizard/final/3a151098-8c3d-11e2-9b2d-b1fa78c39718.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/final/3a151098-8c3d-11e2-9b2d-b1fa78c39718.png rename to website/assets/img/project_files/designs/unprocessed/wizard/final/3a151098-8c3d-11e2-9b2d-b1fa78c39718.png diff --git a/common/img/project_files/designs/unprocessed/wizard/final/3fee9142-8c3d-11e2-9e55-a1034a05deba.png b/website/assets/img/project_files/designs/unprocessed/wizard/final/3fee9142-8c3d-11e2-9e55-a1034a05deba.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/final/3fee9142-8c3d-11e2-9e55-a1034a05deba.png rename to website/assets/img/project_files/designs/unprocessed/wizard/final/3fee9142-8c3d-11e2-9e55-a1034a05deba.png diff --git a/common/img/project_files/designs/unprocessed/wizard/final/7aed8c94-8c3d-11e2-8197-db26cdcb1275.png b/website/assets/img/project_files/designs/unprocessed/wizard/final/7aed8c94-8c3d-11e2-8197-db26cdcb1275.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/final/7aed8c94-8c3d-11e2-8197-db26cdcb1275.png rename to website/assets/img/project_files/designs/unprocessed/wizard/final/7aed8c94-8c3d-11e2-8197-db26cdcb1275.png diff --git a/common/img/project_files/designs/unprocessed/wizard/final/80f159d6-8c3d-11e2-89c6-e7ec50cd4a85.png b/website/assets/img/project_files/designs/unprocessed/wizard/final/80f159d6-8c3d-11e2-89c6-e7ec50cd4a85.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/final/80f159d6-8c3d-11e2-89c6-e7ec50cd4a85.png rename to website/assets/img/project_files/designs/unprocessed/wizard/final/80f159d6-8c3d-11e2-89c6-e7ec50cd4a85.png diff --git a/common/img/project_files/designs/unprocessed/wizard/final/86682dbc-8f0e-11e2-9f1c-a54959ffaa72.png b/website/assets/img/project_files/designs/unprocessed/wizard/final/86682dbc-8f0e-11e2-9f1c-a54959ffaa72.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/final/86682dbc-8f0e-11e2-9f1c-a54959ffaa72.png rename to website/assets/img/project_files/designs/unprocessed/wizard/final/86682dbc-8f0e-11e2-9f1c-a54959ffaa72.png diff --git a/common/img/project_files/designs/unprocessed/wizard/final/8a448746-8f0e-11e2-8763-4c4c7ab97775.png b/website/assets/img/project_files/designs/unprocessed/wizard/final/8a448746-8f0e-11e2-8763-4c4c7ab97775.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/final/8a448746-8f0e-11e2-8763-4c4c7ab97775.png rename to website/assets/img/project_files/designs/unprocessed/wizard/final/8a448746-8f0e-11e2-8763-4c4c7ab97775.png diff --git a/common/img/project_files/designs/unprocessed/wizard/final/e002d874-8c3c-11e2-96ad-16523c29bd32.png b/website/assets/img/project_files/designs/unprocessed/wizard/final/e002d874-8c3c-11e2-96ad-16523c29bd32.png similarity index 100% rename from common/img/project_files/designs/unprocessed/wizard/final/e002d874-8c3c-11e2-96ad-16523c29bd32.png rename to website/assets/img/project_files/designs/unprocessed/wizard/final/e002d874-8c3c-11e2-96ad-16523c29bd32.png diff --git a/common/img/project_files/development.xcf b/website/assets/img/project_files/development.xcf similarity index 100% rename from common/img/project_files/development.xcf rename to website/assets/img/project_files/development.xcf diff --git a/common/img/project_files/female.xcf b/website/assets/img/project_files/female.xcf similarity index 100% rename from common/img/project_files/female.xcf rename to website/assets/img/project_files/female.xcf diff --git a/common/img/project_files/full.xcf b/website/assets/img/project_files/full.xcf similarity index 100% rename from common/img/project_files/full.xcf rename to website/assets/img/project_files/full.xcf diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_blue.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_blue.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_blue.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_blue.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_bone.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_bone.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_bone.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_bone.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_ccblue.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_ccblue.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_ccblue.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_ccblue.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_ccgreen.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_ccgreen.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_ccgreen.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_ccgreen.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_ccorange.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_ccorange.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_ccorange.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_ccorange.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_ccpink.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_ccpink.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_ccpink.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_ccpink.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_ccpurple.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_ccpurple.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_ccpurple.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_ccpurple.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_ccyellow.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_ccyellow.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_ccyellow.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_ccyellow.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_darkred.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_darkred.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_darkred.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_darkred.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_desert.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_desert.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_desert.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_desert.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_fire.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_fire.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_fire.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_fire.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_green.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_green.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_green.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_green.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_ice.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_ice.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_ice.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_ice.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_orange.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_orange.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_orange.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_orange.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_purple.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_purple.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_purple.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_purple.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_rot.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_rot.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_rot.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_rot.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_1_yellow.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_1_yellow.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_1_yellow.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_1_yellow.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_blue.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_blue.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_blue.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_blue.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_bone.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_bone.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_bone.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_bone.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_ccblue.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_ccblue.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_ccblue.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_ccblue.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_ccgreen.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_ccgreen.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_ccgreen.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_ccgreen.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_ccorange.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_ccorange.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_ccorange.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_ccorange.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_ccpink.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_ccpink.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_ccpink.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_ccpink.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_ccpurple.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_ccpurple.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_ccpurple.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_ccpurple.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_ccyellow.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_ccyellow.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_ccyellow.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_ccyellow.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_darkred.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_darkred.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_darkred.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_darkred.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_desert.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_desert.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_desert.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_desert.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_fire.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_fire.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_fire.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_fire.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_green.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_green.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_green.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_green.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_ice.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_ice.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_ice.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_ice.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_orange.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_orange.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_orange.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_orange.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_purple.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_purple.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_purple.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_purple.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_rot.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_rot.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_rot.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_rot.png diff --git a/common/img/project_files/hair_color_wips/hair_bangs_2_yellow.png b/website/assets/img/project_files/hair_color_wips/hair_bangs_2_yellow.png similarity index 100% rename from common/img/project_files/hair_color_wips/hair_bangs_2_yellow.png rename to website/assets/img/project_files/hair_color_wips/hair_bangs_2_yellow.png diff --git a/common/img/project_files/male.xcf b/website/assets/img/project_files/male.xcf similarity index 100% rename from common/img/project_files/male.xcf rename to website/assets/img/project_files/male.xcf diff --git a/common/img/project_files/npcs/README.md b/website/assets/img/project_files/npcs/README.md similarity index 100% rename from common/img/project_files/npcs/README.md rename to website/assets/img/project_files/npcs/README.md diff --git a/common/img/project_files/npcs/april_fools/npc_alex.png b/website/assets/img/project_files/npcs/april_fools/npc_alex.png similarity index 100% rename from common/img/project_files/npcs/april_fools/npc_alex.png rename to website/assets/img/project_files/npcs/april_fools/npc_alex.png diff --git a/common/img/project_files/npcs/april_fools/npc_bailey.png b/website/assets/img/project_files/npcs/april_fools/npc_bailey.png similarity index 100% rename from common/img/project_files/npcs/april_fools/npc_bailey.png rename to website/assets/img/project_files/npcs/april_fools/npc_bailey.png diff --git a/common/img/project_files/npcs/april_fools/npc_daniel.png b/website/assets/img/project_files/npcs/april_fools/npc_daniel.png similarity index 100% rename from common/img/project_files/npcs/april_fools/npc_daniel.png rename to website/assets/img/project_files/npcs/april_fools/npc_daniel.png diff --git a/common/img/project_files/npcs/april_fools/npc_ian.png b/website/assets/img/project_files/npcs/april_fools/npc_ian.png similarity index 100% rename from common/img/project_files/npcs/april_fools/npc_ian.png rename to website/assets/img/project_files/npcs/april_fools/npc_ian.png diff --git a/common/img/project_files/npcs/april_fools/npc_justin.png b/website/assets/img/project_files/npcs/april_fools/npc_justin.png similarity index 100% rename from common/img/project_files/npcs/april_fools/npc_justin.png rename to website/assets/img/project_files/npcs/april_fools/npc_justin.png diff --git a/common/img/project_files/npcs/april_fools/npc_matt.png b/website/assets/img/project_files/npcs/april_fools/npc_matt.png similarity index 100% rename from common/img/project_files/npcs/april_fools/npc_matt.png rename to website/assets/img/project_files/npcs/april_fools/npc_matt.png diff --git a/common/img/project_files/npcs/birthday/npc_alex.png b/website/assets/img/project_files/npcs/birthday/npc_alex.png similarity index 100% rename from common/img/project_files/npcs/birthday/npc_alex.png rename to website/assets/img/project_files/npcs/birthday/npc_alex.png diff --git a/common/img/project_files/npcs/birthday/npc_bailey.png b/website/assets/img/project_files/npcs/birthday/npc_bailey.png similarity index 100% rename from common/img/project_files/npcs/birthday/npc_bailey.png rename to website/assets/img/project_files/npcs/birthday/npc_bailey.png diff --git a/common/img/project_files/npcs/birthday/npc_daniel.png b/website/assets/img/project_files/npcs/birthday/npc_daniel.png similarity index 100% rename from common/img/project_files/npcs/birthday/npc_daniel.png rename to website/assets/img/project_files/npcs/birthday/npc_daniel.png diff --git a/common/img/project_files/npcs/birthday/npc_ian.png b/website/assets/img/project_files/npcs/birthday/npc_ian.png similarity index 100% rename from common/img/project_files/npcs/birthday/npc_ian.png rename to website/assets/img/project_files/npcs/birthday/npc_ian.png diff --git a/common/img/project_files/npcs/birthday/npc_justin.png b/website/assets/img/project_files/npcs/birthday/npc_justin.png similarity index 100% rename from common/img/project_files/npcs/birthday/npc_justin.png rename to website/assets/img/project_files/npcs/birthday/npc_justin.png diff --git a/common/img/project_files/npcs/birthday/npc_matt.png b/website/assets/img/project_files/npcs/birthday/npc_matt.png similarity index 100% rename from common/img/project_files/npcs/birthday/npc_matt.png rename to website/assets/img/project_files/npcs/birthday/npc_matt.png diff --git a/common/img/project_files/npcs/fall/npc_alex.png b/website/assets/img/project_files/npcs/fall/npc_alex.png similarity index 100% rename from common/img/project_files/npcs/fall/npc_alex.png rename to website/assets/img/project_files/npcs/fall/npc_alex.png diff --git a/common/img/project_files/npcs/fall/npc_bailey.png b/website/assets/img/project_files/npcs/fall/npc_bailey.png similarity index 100% rename from common/img/project_files/npcs/fall/npc_bailey.png rename to website/assets/img/project_files/npcs/fall/npc_bailey.png diff --git a/common/img/project_files/npcs/fall/npc_daniel.png b/website/assets/img/project_files/npcs/fall/npc_daniel.png similarity index 100% rename from common/img/project_files/npcs/fall/npc_daniel.png rename to website/assets/img/project_files/npcs/fall/npc_daniel.png diff --git a/common/img/project_files/npcs/fall/npc_ian.png b/website/assets/img/project_files/npcs/fall/npc_ian.png similarity index 100% rename from common/img/project_files/npcs/fall/npc_ian.png rename to website/assets/img/project_files/npcs/fall/npc_ian.png diff --git a/common/img/project_files/npcs/fall/npc_justin.png b/website/assets/img/project_files/npcs/fall/npc_justin.png similarity index 100% rename from common/img/project_files/npcs/fall/npc_justin.png rename to website/assets/img/project_files/npcs/fall/npc_justin.png diff --git a/common/img/project_files/npcs/fall/npc_matt.png b/website/assets/img/project_files/npcs/fall/npc_matt.png similarity index 100% rename from common/img/project_files/npcs/fall/npc_matt.png rename to website/assets/img/project_files/npcs/fall/npc_matt.png diff --git a/common/img/project_files/npcs/halloween2/npc_alex.png b/website/assets/img/project_files/npcs/halloween2/npc_alex.png similarity index 100% rename from common/img/project_files/npcs/halloween2/npc_alex.png rename to website/assets/img/project_files/npcs/halloween2/npc_alex.png diff --git a/common/img/project_files/npcs/halloween2/npc_bailey.png b/website/assets/img/project_files/npcs/halloween2/npc_bailey.png similarity index 100% rename from common/img/project_files/npcs/halloween2/npc_bailey.png rename to website/assets/img/project_files/npcs/halloween2/npc_bailey.png diff --git a/common/img/project_files/npcs/halloween2/npc_ian.png b/website/assets/img/project_files/npcs/halloween2/npc_ian.png similarity index 100% rename from common/img/project_files/npcs/halloween2/npc_ian.png rename to website/assets/img/project_files/npcs/halloween2/npc_ian.png diff --git a/common/img/project_files/npcs/halloween2/npc_justin.png b/website/assets/img/project_files/npcs/halloween2/npc_justin.png similarity index 100% rename from common/img/project_files/npcs/halloween2/npc_justin.png rename to website/assets/img/project_files/npcs/halloween2/npc_justin.png diff --git a/common/img/project_files/npcs/halloween2/npc_matt.png b/website/assets/img/project_files/npcs/halloween2/npc_matt.png similarity index 100% rename from common/img/project_files/npcs/halloween2/npc_matt.png rename to website/assets/img/project_files/npcs/halloween2/npc_matt.png diff --git a/common/img/project_files/npcs/march/npc_alex.png b/website/assets/img/project_files/npcs/march/npc_alex.png similarity index 100% rename from common/img/project_files/npcs/march/npc_alex.png rename to website/assets/img/project_files/npcs/march/npc_alex.png diff --git a/common/img/project_files/npcs/march/npc_bailey.png b/website/assets/img/project_files/npcs/march/npc_bailey.png similarity index 100% rename from common/img/project_files/npcs/march/npc_bailey.png rename to website/assets/img/project_files/npcs/march/npc_bailey.png diff --git a/common/img/project_files/npcs/march/npc_daniel.png b/website/assets/img/project_files/npcs/march/npc_daniel.png similarity index 100% rename from common/img/project_files/npcs/march/npc_daniel.png rename to website/assets/img/project_files/npcs/march/npc_daniel.png diff --git a/common/img/project_files/npcs/march/npc_ian.png b/website/assets/img/project_files/npcs/march/npc_ian.png similarity index 100% rename from common/img/project_files/npcs/march/npc_ian.png rename to website/assets/img/project_files/npcs/march/npc_ian.png diff --git a/common/img/project_files/npcs/march/npc_matt.png b/website/assets/img/project_files/npcs/march/npc_matt.png similarity index 100% rename from common/img/project_files/npcs/march/npc_matt.png rename to website/assets/img/project_files/npcs/march/npc_matt.png diff --git a/common/img/project_files/npcs/regular/just_head.png b/website/assets/img/project_files/npcs/regular/just_head.png similarity index 100% rename from common/img/project_files/npcs/regular/just_head.png rename to website/assets/img/project_files/npcs/regular/just_head.png diff --git a/common/img/project_files/npcs/regular/npc_alex.png b/website/assets/img/project_files/npcs/regular/npc_alex.png similarity index 100% rename from common/img/project_files/npcs/regular/npc_alex.png rename to website/assets/img/project_files/npcs/regular/npc_alex.png diff --git a/common/img/project_files/npcs/regular/npc_bailey.png b/website/assets/img/project_files/npcs/regular/npc_bailey.png similarity index 100% rename from common/img/project_files/npcs/regular/npc_bailey.png rename to website/assets/img/project_files/npcs/regular/npc_bailey.png diff --git a/common/img/project_files/npcs/regular/npc_daniel.png b/website/assets/img/project_files/npcs/regular/npc_daniel.png similarity index 100% rename from common/img/project_files/npcs/regular/npc_daniel.png rename to website/assets/img/project_files/npcs/regular/npc_daniel.png diff --git a/common/img/project_files/npcs/regular/npc_ian.gif b/website/assets/img/project_files/npcs/regular/npc_ian.gif similarity index 100% rename from common/img/project_files/npcs/regular/npc_ian.gif rename to website/assets/img/project_files/npcs/regular/npc_ian.gif diff --git a/common/img/project_files/npcs/regular/npc_justin.png b/website/assets/img/project_files/npcs/regular/npc_justin.png similarity index 100% rename from common/img/project_files/npcs/regular/npc_justin.png rename to website/assets/img/project_files/npcs/regular/npc_justin.png diff --git a/common/img/project_files/npcs/regular/npc_matt.png b/website/assets/img/project_files/npcs/regular/npc_matt.png similarity index 100% rename from common/img/project_files/npcs/regular/npc_matt.png rename to website/assets/img/project_files/npcs/regular/npc_matt.png diff --git a/common/img/project_files/npcs/regular/npc_matt_blonde.png b/website/assets/img/project_files/npcs/regular/npc_matt_blonde.png similarity index 100% rename from common/img/project_files/npcs/regular/npc_matt_blonde.png rename to website/assets/img/project_files/npcs/regular/npc_matt_blonde.png diff --git a/common/img/project_files/npcs/st_patties/npc_daniel.png b/website/assets/img/project_files/npcs/st_patties/npc_daniel.png similarity index 100% rename from common/img/project_files/npcs/st_patties/npc_daniel.png rename to website/assets/img/project_files/npcs/st_patties/npc_daniel.png diff --git a/common/img/project_files/npcs/summer/npc_alex.png b/website/assets/img/project_files/npcs/summer/npc_alex.png similarity index 100% rename from common/img/project_files/npcs/summer/npc_alex.png rename to website/assets/img/project_files/npcs/summer/npc_alex.png diff --git a/common/img/project_files/npcs/summer/npc_alex_broken.png b/website/assets/img/project_files/npcs/summer/npc_alex_broken.png similarity index 100% rename from common/img/project_files/npcs/summer/npc_alex_broken.png rename to website/assets/img/project_files/npcs/summer/npc_alex_broken.png diff --git a/common/img/project_files/npcs/summer/npc_bailey.png b/website/assets/img/project_files/npcs/summer/npc_bailey.png similarity index 100% rename from common/img/project_files/npcs/summer/npc_bailey.png rename to website/assets/img/project_files/npcs/summer/npc_bailey.png diff --git a/common/img/project_files/npcs/summer/npc_daniel.png b/website/assets/img/project_files/npcs/summer/npc_daniel.png similarity index 100% rename from common/img/project_files/npcs/summer/npc_daniel.png rename to website/assets/img/project_files/npcs/summer/npc_daniel.png diff --git a/common/img/project_files/npcs/summer/npc_daniel_broken.png b/website/assets/img/project_files/npcs/summer/npc_daniel_broken.png similarity index 100% rename from common/img/project_files/npcs/summer/npc_daniel_broken.png rename to website/assets/img/project_files/npcs/summer/npc_daniel_broken.png diff --git a/common/img/project_files/npcs/summer/npc_ian.png b/website/assets/img/project_files/npcs/summer/npc_ian.png similarity index 100% rename from common/img/project_files/npcs/summer/npc_ian.png rename to website/assets/img/project_files/npcs/summer/npc_ian.png diff --git a/common/img/project_files/npcs/summer/npc_justin.png b/website/assets/img/project_files/npcs/summer/npc_justin.png similarity index 100% rename from common/img/project_files/npcs/summer/npc_justin.png rename to website/assets/img/project_files/npcs/summer/npc_justin.png diff --git a/common/img/project_files/npcs/summer/npc_matt.png b/website/assets/img/project_files/npcs/summer/npc_matt.png similarity index 100% rename from common/img/project_files/npcs/summer/npc_matt.png rename to website/assets/img/project_files/npcs/summer/npc_matt.png diff --git a/common/img/project_files/npcs/summer/npc_matt_broken.png b/website/assets/img/project_files/npcs/summer/npc_matt_broken.png similarity index 100% rename from common/img/project_files/npcs/summer/npc_matt_broken.png rename to website/assets/img/project_files/npcs/summer/npc_matt_broken.png diff --git a/common/img/project_files/npcs/thanksgiving/npc_alex.png b/website/assets/img/project_files/npcs/thanksgiving/npc_alex.png similarity index 100% rename from common/img/project_files/npcs/thanksgiving/npc_alex.png rename to website/assets/img/project_files/npcs/thanksgiving/npc_alex.png diff --git a/common/img/project_files/npcs/thanksgiving/npc_bailey.png b/website/assets/img/project_files/npcs/thanksgiving/npc_bailey.png similarity index 100% rename from common/img/project_files/npcs/thanksgiving/npc_bailey.png rename to website/assets/img/project_files/npcs/thanksgiving/npc_bailey.png diff --git a/common/img/project_files/npcs/thanksgiving/npc_daniel.png b/website/assets/img/project_files/npcs/thanksgiving/npc_daniel.png similarity index 100% rename from common/img/project_files/npcs/thanksgiving/npc_daniel.png rename to website/assets/img/project_files/npcs/thanksgiving/npc_daniel.png diff --git a/common/img/project_files/npcs/thanksgiving/npc_matt.png b/website/assets/img/project_files/npcs/thanksgiving/npc_matt.png similarity index 100% rename from common/img/project_files/npcs/thanksgiving/npc_matt.png rename to website/assets/img/project_files/npcs/thanksgiving/npc_matt.png diff --git a/common/img/project_files/npcs/thanksgiving2/npc_alex.png b/website/assets/img/project_files/npcs/thanksgiving2/npc_alex.png similarity index 100% rename from common/img/project_files/npcs/thanksgiving2/npc_alex.png rename to website/assets/img/project_files/npcs/thanksgiving2/npc_alex.png diff --git a/common/img/project_files/npcs/thanksgiving2/npc_bailey.png b/website/assets/img/project_files/npcs/thanksgiving2/npc_bailey.png similarity index 100% rename from common/img/project_files/npcs/thanksgiving2/npc_bailey.png rename to website/assets/img/project_files/npcs/thanksgiving2/npc_bailey.png diff --git a/common/img/project_files/npcs/thanksgiving2/npc_daniel.png b/website/assets/img/project_files/npcs/thanksgiving2/npc_daniel.png similarity index 100% rename from common/img/project_files/npcs/thanksgiving2/npc_daniel.png rename to website/assets/img/project_files/npcs/thanksgiving2/npc_daniel.png diff --git a/common/img/project_files/npcs/thanksgiving2/npc_matt.png b/website/assets/img/project_files/npcs/thanksgiving2/npc_matt.png similarity index 100% rename from common/img/project_files/npcs/thanksgiving2/npc_matt.png rename to website/assets/img/project_files/npcs/thanksgiving2/npc_matt.png diff --git a/common/img/project_files/npcs/valentine/npc_bailey.png b/website/assets/img/project_files/npcs/valentine/npc_bailey.png similarity index 100% rename from common/img/project_files/npcs/valentine/npc_bailey.png rename to website/assets/img/project_files/npcs/valentine/npc_bailey.png diff --git a/common/img/project_files/npcs/winter/npc_alex.png b/website/assets/img/project_files/npcs/winter/npc_alex.png similarity index 100% rename from common/img/project_files/npcs/winter/npc_alex.png rename to website/assets/img/project_files/npcs/winter/npc_alex.png diff --git a/common/img/project_files/npcs/winter/npc_bailey1.png b/website/assets/img/project_files/npcs/winter/npc_bailey1.png similarity index 100% rename from common/img/project_files/npcs/winter/npc_bailey1.png rename to website/assets/img/project_files/npcs/winter/npc_bailey1.png diff --git a/common/img/project_files/npcs/winter/npc_bailey2.png b/website/assets/img/project_files/npcs/winter/npc_bailey2.png similarity index 100% rename from common/img/project_files/npcs/winter/npc_bailey2.png rename to website/assets/img/project_files/npcs/winter/npc_bailey2.png diff --git a/common/img/project_files/npcs/winter/npc_daniel.png b/website/assets/img/project_files/npcs/winter/npc_daniel.png similarity index 100% rename from common/img/project_files/npcs/winter/npc_daniel.png rename to website/assets/img/project_files/npcs/winter/npc_daniel.png diff --git a/common/img/project_files/npcs/winter/npc_ian.png b/website/assets/img/project_files/npcs/winter/npc_ian.png similarity index 100% rename from common/img/project_files/npcs/winter/npc_ian.png rename to website/assets/img/project_files/npcs/winter/npc_ian.png diff --git a/common/img/project_files/npcs/winter/npc_justin.png b/website/assets/img/project_files/npcs/winter/npc_justin.png similarity index 100% rename from common/img/project_files/npcs/winter/npc_justin.png rename to website/assets/img/project_files/npcs/winter/npc_justin.png diff --git a/common/img/project_files/npcs/winter/npc_matt.png b/website/assets/img/project_files/npcs/winter/npc_matt.png similarity index 100% rename from common/img/project_files/npcs/winter/npc_matt.png rename to website/assets/img/project_files/npcs/winter/npc_matt.png diff --git a/common/img/project_files/shop.xcf b/website/assets/img/project_files/shop.xcf similarity index 100% rename from common/img/project_files/shop.xcf rename to website/assets/img/project_files/shop.xcf diff --git a/common/img/screenshot.jpeg b/website/assets/img/screenshot.jpeg similarity index 100% rename from common/img/screenshot.jpeg rename to website/assets/img/screenshot.jpeg diff --git a/website/assets/sprites/README.md b/website/assets/sprites/README.md new file mode 100644 index 0000000000..b03cdcf576 --- /dev/null +++ b/website/assets/sprites/README.md @@ -0,0 +1,10 @@ +# Sprites + +The individual sprites and css that help map them to spritesheets live here. + +## Compiling spritesheets +Because of some wonkiness with Heroku, the spritesheet compilation is not part of the production build process and must be done manually when new images are added by running: + +``` bash +npm run sprites +``` diff --git a/common/img/sprites/archive/BackerOnly-SpriteSheet.png b/website/assets/sprites/archive/BackerOnly-SpriteSheet.png similarity index 100% rename from common/img/sprites/archive/BackerOnly-SpriteSheet.png rename to website/assets/sprites/archive/BackerOnly-SpriteSheet.png diff --git a/common/img/sprites/archive/Egg_Sprite_Sheet.png b/website/assets/sprites/archive/Egg_Sprite_Sheet.png similarity index 100% rename from common/img/sprites/archive/Egg_Sprite_Sheet.png rename to website/assets/sprites/archive/Egg_Sprite_Sheet.png diff --git a/common/img/sprites/archive/female_sprites.png b/website/assets/sprites/archive/female_sprites.png similarity index 100% rename from common/img/sprites/archive/female_sprites.png rename to website/assets/sprites/archive/female_sprites.png diff --git a/common/img/sprites/archive/player_sprites.png b/website/assets/sprites/archive/player_sprites.png similarity index 100% rename from common/img/sprites/archive/player_sprites.png rename to website/assets/sprites/archive/player_sprites.png diff --git a/common/img/sprites/archive/player_sprites105x.png b/website/assets/sprites/archive/player_sprites105x.png similarity index 100% rename from common/img/sprites/archive/player_sprites105x.png rename to website/assets/sprites/archive/player_sprites105x.png diff --git a/common/img/sprites/backer-only/BackerOnly-Equip-ShadeArmor.gif b/website/assets/sprites/backer-only/BackerOnly-Equip-ShadeArmor.gif similarity index 100% rename from common/img/sprites/backer-only/BackerOnly-Equip-ShadeArmor.gif rename to website/assets/sprites/backer-only/BackerOnly-Equip-ShadeArmor.gif diff --git a/common/img/sprites/backer-only/BackerOnly-Equip-ShadeHelmet.gif b/website/assets/sprites/backer-only/BackerOnly-Equip-ShadeHelmet.gif similarity index 100% rename from common/img/sprites/backer-only/BackerOnly-Equip-ShadeHelmet.gif rename to website/assets/sprites/backer-only/BackerOnly-Equip-ShadeHelmet.gif diff --git a/common/img/sprites/backer-only/BackerOnly-Pet-CerberusPup.gif b/website/assets/sprites/backer-only/BackerOnly-Pet-CerberusPup.gif similarity index 100% rename from common/img/sprites/backer-only/BackerOnly-Pet-CerberusPup.gif rename to website/assets/sprites/backer-only/BackerOnly-Pet-CerberusPup.gif diff --git a/common/img/sprites/backer-only/BackerOnly-Shield-TormentedSkull.gif b/website/assets/sprites/backer-only/BackerOnly-Shield-TormentedSkull.gif similarity index 100% rename from common/img/sprites/backer-only/BackerOnly-Shield-TormentedSkull.gif rename to website/assets/sprites/backer-only/BackerOnly-Shield-TormentedSkull.gif diff --git a/common/img/sprites/backer-only/BackerOnly-Weapon-DarkSoulsBlade.gif b/website/assets/sprites/backer-only/BackerOnly-Weapon-DarkSoulsBlade.gif similarity index 100% rename from common/img/sprites/backer-only/BackerOnly-Weapon-DarkSoulsBlade.gif rename to website/assets/sprites/backer-only/BackerOnly-Weapon-DarkSoulsBlade.gif diff --git a/common/img/sprites/backer-only/ContributorOnly-Equip-CrystalArmor.gif b/website/assets/sprites/backer-only/ContributorOnly-Equip-CrystalArmor.gif similarity index 100% rename from common/img/sprites/backer-only/ContributorOnly-Equip-CrystalArmor.gif rename to website/assets/sprites/backer-only/ContributorOnly-Equip-CrystalArmor.gif diff --git a/common/img/sprites/backer-only/ContributorOnly-Equip-CrystalHelmet.gif b/website/assets/sprites/backer-only/ContributorOnly-Equip-CrystalHelmet.gif similarity index 100% rename from common/img/sprites/backer-only/ContributorOnly-Equip-CrystalHelmet.gif rename to website/assets/sprites/backer-only/ContributorOnly-Equip-CrystalHelmet.gif diff --git a/common/img/sprites/backer-only/weapon_special_critical.gif b/website/assets/sprites/backer-only/weapon_special_critical.gif similarity index 100% rename from common/img/sprites/backer-only/weapon_special_critical.gif rename to website/assets/sprites/backer-only/weapon_special_critical.gif diff --git a/common/css/backer.css b/website/assets/sprites/css/backer.css similarity index 51% rename from common/css/backer.css rename to website/assets/sprites/css/backer.css index 39e15ea972..b7443dd89a 100644 --- a/common/css/backer.css +++ b/website/assets/sprites/css/backer.css @@ -14,7 +14,7 @@ /* Critical */ .weapon_special_critical { - background: url("/common/img/sprites/backer-only/weapon_special_critical.gif") no-repeat; + background: url("/website/assets/sprites/backer-only/weapon_special_critical.gif") no-repeat; width: 90px; height: 90px; margin-left:-12px; @@ -31,30 +31,30 @@ } .head_special_0 { - background: url("/common/img/sprites/backer-only/BackerOnly-Equip-ShadeHelmet.gif") no-repeat; + background: url("/website/assets/sprites/backer-only/BackerOnly-Equip-ShadeHelmet.gif") no-repeat; } .head_special_1 { - background: url("/common/img/sprites/backer-only/ContributorOnly-Equip-CrystalHelmet.gif") no-repeat; + background: url("/website/assets/sprites/backer-only/ContributorOnly-Equip-CrystalHelmet.gif") no-repeat; margin-top: 3px; } .broad_armor_special_0,.slim_armor_special_0 { - background: url("/common/img/sprites/backer-only/BackerOnly-Equip-ShadeArmor.gif") no-repeat; + background: url("/website/assets/sprites/backer-only/BackerOnly-Equip-ShadeArmor.gif") no-repeat; } .broad_armor_special_1,.slim_armor_special_1 { - background: url("/common/img/sprites/backer-only/ContributorOnly-Equip-CrystalArmor.gif") no-repeat; + background: url("/website/assets/sprites/backer-only/ContributorOnly-Equip-CrystalArmor.gif") no-repeat; } .shield_special_0 { - background: url("/common/img/sprites/backer-only/BackerOnly-Shield-TormentedSkull.gif") no-repeat; + background: url("/website/assets/sprites/backer-only/BackerOnly-Shield-TormentedSkull.gif") no-repeat; } .weapon_special_0 { - background: url("/common/img/sprites/backer-only/BackerOnly-Weapon-DarkSoulsBlade.gif") no-repeat; + background: url("/website/assets/sprites/backer-only/BackerOnly-Weapon-DarkSoulsBlade.gif") no-repeat; } .Pet-Wolf-Cerberus { width: 105px; height: 72px; - background: url("/common/img/sprites/backer-only/BackerOnly-Pet-CerberusPup.gif") no-repeat; + background: url("/website/assets/sprites/backer-only/BackerOnly-Pet-CerberusPup.gif") no-repeat; } diff --git a/common/css/css.template.handlebars b/website/assets/sprites/css/css.template.handlebars similarity index 100% rename from common/css/css.template.handlebars rename to website/assets/sprites/css/css.template.handlebars diff --git a/common/css/index.css b/website/assets/sprites/css/index.css similarity index 81% rename from common/css/index.css rename to website/assets/sprites/css/index.css index 77e319a37c..3acf4bbf0c 100644 --- a/common/css/index.css +++ b/website/assets/sprites/css/index.css @@ -1,18 +1,18 @@ /* Comment out for holiday events */ .npc_ian { - background: url("/common/img/sprites/npc_ian.gif") no-repeat; + background: url("/website/assets/sprites/npc_ian.gif") no-repeat; width: 78px; height: 135px; } .quest_burnout { - background: url("/common/img/sprites/quest_burnout.gif") no-repeat; + background: url("/website/assets/sprites/quest_burnout.gif") no-repeat; width: 219px; height: 249px; } .quest_bewilder { - background: url("/common/img/sprites/quest_bewilder.gif") no-repeat; + background: url("/website/assets/sprites/quest_bewilder.gif") no-repeat; width: 219px; height: 219px; } diff --git a/common/dist/sprites/spritesmith-largeSprites-0.css b/website/assets/sprites/dist/spritesmith-largeSprites-0.css similarity index 100% rename from common/dist/sprites/spritesmith-largeSprites-0.css rename to website/assets/sprites/dist/spritesmith-largeSprites-0.css diff --git a/common/dist/sprites/spritesmith-largeSprites-0.png b/website/assets/sprites/dist/spritesmith-largeSprites-0.png similarity index 100% rename from common/dist/sprites/spritesmith-largeSprites-0.png rename to website/assets/sprites/dist/spritesmith-largeSprites-0.png diff --git a/common/dist/sprites/spritesmith-main-0.css b/website/assets/sprites/dist/spritesmith-main-0.css similarity index 100% rename from common/dist/sprites/spritesmith-main-0.css rename to website/assets/sprites/dist/spritesmith-main-0.css diff --git a/common/dist/sprites/spritesmith-main-0.png b/website/assets/sprites/dist/spritesmith-main-0.png similarity index 100% rename from common/dist/sprites/spritesmith-main-0.png rename to website/assets/sprites/dist/spritesmith-main-0.png diff --git a/common/dist/sprites/spritesmith-main-1.css b/website/assets/sprites/dist/spritesmith-main-1.css similarity index 100% rename from common/dist/sprites/spritesmith-main-1.css rename to website/assets/sprites/dist/spritesmith-main-1.css diff --git a/common/dist/sprites/spritesmith-main-1.png b/website/assets/sprites/dist/spritesmith-main-1.png similarity index 100% rename from common/dist/sprites/spritesmith-main-1.png rename to website/assets/sprites/dist/spritesmith-main-1.png diff --git a/common/dist/sprites/spritesmith-main-10.css b/website/assets/sprites/dist/spritesmith-main-10.css similarity index 100% rename from common/dist/sprites/spritesmith-main-10.css rename to website/assets/sprites/dist/spritesmith-main-10.css diff --git a/common/dist/sprites/spritesmith-main-10.png b/website/assets/sprites/dist/spritesmith-main-10.png similarity index 100% rename from common/dist/sprites/spritesmith-main-10.png rename to website/assets/sprites/dist/spritesmith-main-10.png diff --git a/common/dist/sprites/spritesmith-main-11.css b/website/assets/sprites/dist/spritesmith-main-11.css similarity index 100% rename from common/dist/sprites/spritesmith-main-11.css rename to website/assets/sprites/dist/spritesmith-main-11.css diff --git a/common/dist/sprites/spritesmith-main-11.png b/website/assets/sprites/dist/spritesmith-main-11.png similarity index 100% rename from common/dist/sprites/spritesmith-main-11.png rename to website/assets/sprites/dist/spritesmith-main-11.png diff --git a/common/dist/sprites/spritesmith-main-12.css b/website/assets/sprites/dist/spritesmith-main-12.css similarity index 100% rename from common/dist/sprites/spritesmith-main-12.css rename to website/assets/sprites/dist/spritesmith-main-12.css diff --git a/common/dist/sprites/spritesmith-main-12.png b/website/assets/sprites/dist/spritesmith-main-12.png similarity index 100% rename from common/dist/sprites/spritesmith-main-12.png rename to website/assets/sprites/dist/spritesmith-main-12.png diff --git a/common/dist/sprites/spritesmith-main-13.css b/website/assets/sprites/dist/spritesmith-main-13.css similarity index 100% rename from common/dist/sprites/spritesmith-main-13.css rename to website/assets/sprites/dist/spritesmith-main-13.css diff --git a/common/dist/sprites/spritesmith-main-13.png b/website/assets/sprites/dist/spritesmith-main-13.png similarity index 100% rename from common/dist/sprites/spritesmith-main-13.png rename to website/assets/sprites/dist/spritesmith-main-13.png diff --git a/common/dist/sprites/spritesmith-main-2.css b/website/assets/sprites/dist/spritesmith-main-2.css similarity index 100% rename from common/dist/sprites/spritesmith-main-2.css rename to website/assets/sprites/dist/spritesmith-main-2.css diff --git a/common/dist/sprites/spritesmith-main-2.png b/website/assets/sprites/dist/spritesmith-main-2.png similarity index 100% rename from common/dist/sprites/spritesmith-main-2.png rename to website/assets/sprites/dist/spritesmith-main-2.png diff --git a/common/dist/sprites/spritesmith-main-3.css b/website/assets/sprites/dist/spritesmith-main-3.css similarity index 100% rename from common/dist/sprites/spritesmith-main-3.css rename to website/assets/sprites/dist/spritesmith-main-3.css diff --git a/common/dist/sprites/spritesmith-main-3.png b/website/assets/sprites/dist/spritesmith-main-3.png similarity index 100% rename from common/dist/sprites/spritesmith-main-3.png rename to website/assets/sprites/dist/spritesmith-main-3.png diff --git a/common/dist/sprites/spritesmith-main-4.css b/website/assets/sprites/dist/spritesmith-main-4.css similarity index 100% rename from common/dist/sprites/spritesmith-main-4.css rename to website/assets/sprites/dist/spritesmith-main-4.css diff --git a/common/dist/sprites/spritesmith-main-4.png b/website/assets/sprites/dist/spritesmith-main-4.png similarity index 100% rename from common/dist/sprites/spritesmith-main-4.png rename to website/assets/sprites/dist/spritesmith-main-4.png diff --git a/common/dist/sprites/spritesmith-main-5.css b/website/assets/sprites/dist/spritesmith-main-5.css similarity index 100% rename from common/dist/sprites/spritesmith-main-5.css rename to website/assets/sprites/dist/spritesmith-main-5.css diff --git a/common/dist/sprites/spritesmith-main-5.png b/website/assets/sprites/dist/spritesmith-main-5.png similarity index 100% rename from common/dist/sprites/spritesmith-main-5.png rename to website/assets/sprites/dist/spritesmith-main-5.png diff --git a/common/dist/sprites/spritesmith-main-6.css b/website/assets/sprites/dist/spritesmith-main-6.css similarity index 100% rename from common/dist/sprites/spritesmith-main-6.css rename to website/assets/sprites/dist/spritesmith-main-6.css diff --git a/common/dist/sprites/spritesmith-main-6.png b/website/assets/sprites/dist/spritesmith-main-6.png similarity index 100% rename from common/dist/sprites/spritesmith-main-6.png rename to website/assets/sprites/dist/spritesmith-main-6.png diff --git a/common/dist/sprites/spritesmith-main-7.css b/website/assets/sprites/dist/spritesmith-main-7.css similarity index 100% rename from common/dist/sprites/spritesmith-main-7.css rename to website/assets/sprites/dist/spritesmith-main-7.css diff --git a/common/dist/sprites/spritesmith-main-7.png b/website/assets/sprites/dist/spritesmith-main-7.png similarity index 100% rename from common/dist/sprites/spritesmith-main-7.png rename to website/assets/sprites/dist/spritesmith-main-7.png diff --git a/common/dist/sprites/spritesmith-main-8.css b/website/assets/sprites/dist/spritesmith-main-8.css similarity index 100% rename from common/dist/sprites/spritesmith-main-8.css rename to website/assets/sprites/dist/spritesmith-main-8.css diff --git a/common/dist/sprites/spritesmith-main-8.png b/website/assets/sprites/dist/spritesmith-main-8.png similarity index 100% rename from common/dist/sprites/spritesmith-main-8.png rename to website/assets/sprites/dist/spritesmith-main-8.png diff --git a/common/dist/sprites/spritesmith-main-9.css b/website/assets/sprites/dist/spritesmith-main-9.css similarity index 100% rename from common/dist/sprites/spritesmith-main-9.css rename to website/assets/sprites/dist/spritesmith-main-9.css diff --git a/common/dist/sprites/spritesmith-main-9.png b/website/assets/sprites/dist/spritesmith-main-9.png similarity index 100% rename from common/dist/sprites/spritesmith-main-9.png rename to website/assets/sprites/dist/spritesmith-main-9.png diff --git a/common/img/sprites/npc_ian.gif b/website/assets/sprites/npc_ian.gif similarity index 100% rename from common/img/sprites/npc_ian.gif rename to website/assets/sprites/npc_ian.gif diff --git a/common/img/sprites/pet-hatching/Tiger-Base-6x.gif b/website/assets/sprites/pet-hatching/Tiger-Base-6x.gif similarity index 100% rename from common/img/sprites/pet-hatching/Tiger-Base-6x.gif rename to website/assets/sprites/pet-hatching/Tiger-Base-6x.gif diff --git a/common/img/sprites/pet-hatching/Tiger-CottonCandyBlue-6x.gif b/website/assets/sprites/pet-hatching/Tiger-CottonCandyBlue-6x.gif similarity index 100% rename from common/img/sprites/pet-hatching/Tiger-CottonCandyBlue-6x.gif rename to website/assets/sprites/pet-hatching/Tiger-CottonCandyBlue-6x.gif diff --git a/common/img/sprites/pet-hatching/Tiger-CottonCandyPink-6x.gif b/website/assets/sprites/pet-hatching/Tiger-CottonCandyPink-6x.gif similarity index 100% rename from common/img/sprites/pet-hatching/Tiger-CottonCandyPink-6x.gif rename to website/assets/sprites/pet-hatching/Tiger-CottonCandyPink-6x.gif diff --git a/common/img/sprites/pet-hatching/Tiger-Desert-6x.gif b/website/assets/sprites/pet-hatching/Tiger-Desert-6x.gif similarity index 100% rename from common/img/sprites/pet-hatching/Tiger-Desert-6x.gif rename to website/assets/sprites/pet-hatching/Tiger-Desert-6x.gif diff --git a/common/img/sprites/pet-hatching/Tiger-Golden-6x.gif b/website/assets/sprites/pet-hatching/Tiger-Golden-6x.gif similarity index 100% rename from common/img/sprites/pet-hatching/Tiger-Golden-6x.gif rename to website/assets/sprites/pet-hatching/Tiger-Golden-6x.gif diff --git a/common/img/sprites/pet-hatching/Tiger-Red-6x.gif b/website/assets/sprites/pet-hatching/Tiger-Red-6x.gif similarity index 100% rename from common/img/sprites/pet-hatching/Tiger-Red-6x.gif rename to website/assets/sprites/pet-hatching/Tiger-Red-6x.gif diff --git a/common/img/sprites/pet-hatching/Tiger-Shade-6x.gif b/website/assets/sprites/pet-hatching/Tiger-Shade-6x.gif similarity index 100% rename from common/img/sprites/pet-hatching/Tiger-Shade-6x.gif rename to website/assets/sprites/pet-hatching/Tiger-Shade-6x.gif diff --git a/common/img/sprites/pet-hatching/Tiger-Skeleton-6x.gif b/website/assets/sprites/pet-hatching/Tiger-Skeleton-6x.gif similarity index 100% rename from common/img/sprites/pet-hatching/Tiger-Skeleton-6x.gif rename to website/assets/sprites/pet-hatching/Tiger-Skeleton-6x.gif diff --git a/common/img/sprites/pet-hatching/Tiger-Zombie-6x.gif b/website/assets/sprites/pet-hatching/Tiger-Zombie-6x.gif similarity index 100% rename from common/img/sprites/pet-hatching/Tiger-Zombie-6x.gif rename to website/assets/sprites/pet-hatching/Tiger-Zombie-6x.gif diff --git a/common/img/sprites/pet-hatching/Wolf-Base.gif b/website/assets/sprites/pet-hatching/Wolf-Base.gif similarity index 100% rename from common/img/sprites/pet-hatching/Wolf-Base.gif rename to website/assets/sprites/pet-hatching/Wolf-Base.gif diff --git a/common/img/sprites/pet-hatching/Wolf-CottonCandyBlue.gif b/website/assets/sprites/pet-hatching/Wolf-CottonCandyBlue.gif similarity index 100% rename from common/img/sprites/pet-hatching/Wolf-CottonCandyBlue.gif rename to website/assets/sprites/pet-hatching/Wolf-CottonCandyBlue.gif diff --git a/common/img/sprites/pet-hatching/Wolf-CottonCandyPink.gif b/website/assets/sprites/pet-hatching/Wolf-CottonCandyPink.gif similarity index 100% rename from common/img/sprites/pet-hatching/Wolf-CottonCandyPink.gif rename to website/assets/sprites/pet-hatching/Wolf-CottonCandyPink.gif diff --git a/common/img/sprites/pet-hatching/Wolf-Desert.gif b/website/assets/sprites/pet-hatching/Wolf-Desert.gif similarity index 100% rename from common/img/sprites/pet-hatching/Wolf-Desert.gif rename to website/assets/sprites/pet-hatching/Wolf-Desert.gif diff --git a/common/img/sprites/pet-hatching/Wolf-Golden.gif b/website/assets/sprites/pet-hatching/Wolf-Golden.gif similarity index 100% rename from common/img/sprites/pet-hatching/Wolf-Golden.gif rename to website/assets/sprites/pet-hatching/Wolf-Golden.gif diff --git a/common/img/sprites/pet-hatching/Wolf-Red.gif b/website/assets/sprites/pet-hatching/Wolf-Red.gif similarity index 100% rename from common/img/sprites/pet-hatching/Wolf-Red.gif rename to website/assets/sprites/pet-hatching/Wolf-Red.gif diff --git a/common/img/sprites/pet-hatching/Wolf-Shade.gif b/website/assets/sprites/pet-hatching/Wolf-Shade.gif similarity index 100% rename from common/img/sprites/pet-hatching/Wolf-Shade.gif rename to website/assets/sprites/pet-hatching/Wolf-Shade.gif diff --git a/common/img/sprites/pet-hatching/Wolf-Skeleton.gif b/website/assets/sprites/pet-hatching/Wolf-Skeleton.gif similarity index 100% rename from common/img/sprites/pet-hatching/Wolf-Skeleton.gif rename to website/assets/sprites/pet-hatching/Wolf-Skeleton.gif diff --git a/common/img/sprites/pet-hatching/Wolf-White.gif b/website/assets/sprites/pet-hatching/Wolf-White.gif similarity index 100% rename from common/img/sprites/pet-hatching/Wolf-White.gif rename to website/assets/sprites/pet-hatching/Wolf-White.gif diff --git a/common/img/sprites/pet-hatching/Wolf-Zombie.gif b/website/assets/sprites/pet-hatching/Wolf-Zombie.gif similarity index 100% rename from common/img/sprites/pet-hatching/Wolf-Zombie.gif rename to website/assets/sprites/pet-hatching/Wolf-Zombie.gif diff --git a/common/img/sprites/quest_bewilder.gif b/website/assets/sprites/quest_bewilder.gif similarity index 100% rename from common/img/sprites/quest_bewilder.gif rename to website/assets/sprites/quest_bewilder.gif diff --git a/common/img/sprites/quest_burnout.gif b/website/assets/sprites/quest_burnout.gif similarity index 100% rename from common/img/sprites/quest_burnout.gif rename to website/assets/sprites/quest_burnout.gif diff --git a/common/img/sprites/spritesmith/achievements/achievement-alien.png b/website/assets/sprites/spritesmith/achievements/achievement-alien.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-alien.png rename to website/assets/sprites/spritesmith/achievements/achievement-alien.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-alien2x.png b/website/assets/sprites/spritesmith/achievements/achievement-alien2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-alien2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-alien2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-alpha.png b/website/assets/sprites/spritesmith/achievements/achievement-alpha.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-alpha.png rename to website/assets/sprites/spritesmith/achievements/achievement-alpha.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-armor.png b/website/assets/sprites/spritesmith/achievements/achievement-armor.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-armor.png rename to website/assets/sprites/spritesmith/achievements/achievement-armor.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-armor2x.png b/website/assets/sprites/spritesmith/achievements/achievement-armor2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-armor2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-armor2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-bewilder.png b/website/assets/sprites/spritesmith/achievements/achievement-bewilder.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-bewilder.png rename to website/assets/sprites/spritesmith/achievements/achievement-bewilder.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-bewilder2x.png b/website/assets/sprites/spritesmith/achievements/achievement-bewilder2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-bewilder2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-bewilder2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-birthday.png b/website/assets/sprites/spritesmith/achievements/achievement-birthday.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-birthday.png rename to website/assets/sprites/spritesmith/achievements/achievement-birthday.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-birthday2x.png b/website/assets/sprites/spritesmith/achievements/achievement-birthday2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-birthday2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-birthday2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-boot.png b/website/assets/sprites/spritesmith/achievements/achievement-boot.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-boot.png rename to website/assets/sprites/spritesmith/achievements/achievement-boot.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-boot2x.png b/website/assets/sprites/spritesmith/achievements/achievement-boot2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-boot2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-boot2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-bow.png b/website/assets/sprites/spritesmith/achievements/achievement-bow.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-bow.png rename to website/assets/sprites/spritesmith/achievements/achievement-bow.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-bow2x.png b/website/assets/sprites/spritesmith/achievements/achievement-bow2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-bow2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-bow2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-burnout.png b/website/assets/sprites/spritesmith/achievements/achievement-burnout.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-burnout.png rename to website/assets/sprites/spritesmith/achievements/achievement-burnout.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-burnout2x.png b/website/assets/sprites/spritesmith/achievements/achievement-burnout2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-burnout2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-burnout2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-cactus.png b/website/assets/sprites/spritesmith/achievements/achievement-cactus.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-cactus.png rename to website/assets/sprites/spritesmith/achievements/achievement-cactus.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-cactus2x.png b/website/assets/sprites/spritesmith/achievements/achievement-cactus2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-cactus2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-cactus2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-cake.png b/website/assets/sprites/spritesmith/achievements/achievement-cake.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-cake.png rename to website/assets/sprites/spritesmith/achievements/achievement-cake.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-cake2x.png b/website/assets/sprites/spritesmith/achievements/achievement-cake2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-cake2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-cake2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-cave.png b/website/assets/sprites/spritesmith/achievements/achievement-cave.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-cave.png rename to website/assets/sprites/spritesmith/achievements/achievement-cave.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-cave2x.png b/website/assets/sprites/spritesmith/achievements/achievement-cave2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-cave2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-cave2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-coffin.png b/website/assets/sprites/spritesmith/achievements/achievement-coffin.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-coffin.png rename to website/assets/sprites/spritesmith/achievements/achievement-coffin.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-comment.png b/website/assets/sprites/spritesmith/achievements/achievement-comment.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-comment.png rename to website/assets/sprites/spritesmith/achievements/achievement-comment.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-comment2x.png b/website/assets/sprites/spritesmith/achievements/achievement-comment2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-comment2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-comment2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-costumeContest.png b/website/assets/sprites/spritesmith/achievements/achievement-costumeContest.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-costumeContest.png rename to website/assets/sprites/spritesmith/achievements/achievement-costumeContest.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-costumeContest2x.png b/website/assets/sprites/spritesmith/achievements/achievement-costumeContest2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-costumeContest2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-costumeContest2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-dilatory.png b/website/assets/sprites/spritesmith/achievements/achievement-dilatory.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-dilatory.png rename to website/assets/sprites/spritesmith/achievements/achievement-dilatory.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-firefox.png b/website/assets/sprites/spritesmith/achievements/achievement-firefox.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-firefox.png rename to website/assets/sprites/spritesmith/achievements/achievement-firefox.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-greeting.png b/website/assets/sprites/spritesmith/achievements/achievement-greeting.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-greeting.png rename to website/assets/sprites/spritesmith/achievements/achievement-greeting.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-greeting2x.png b/website/assets/sprites/spritesmith/achievements/achievement-greeting2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-greeting2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-greeting2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-habitBirthday.png b/website/assets/sprites/spritesmith/achievements/achievement-habitBirthday.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-habitBirthday.png rename to website/assets/sprites/spritesmith/achievements/achievement-habitBirthday.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-habitBirthday2x.png b/website/assets/sprites/spritesmith/achievements/achievement-habitBirthday2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-habitBirthday2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-habitBirthday2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-habiticaDay.png b/website/assets/sprites/spritesmith/achievements/achievement-habiticaDay.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-habiticaDay.png rename to website/assets/sprites/spritesmith/achievements/achievement-habiticaDay.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-habiticaDay2x.png b/website/assets/sprites/spritesmith/achievements/achievement-habiticaDay2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-habiticaDay2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-habiticaDay2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-heart.png b/website/assets/sprites/spritesmith/achievements/achievement-heart.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-heart.png rename to website/assets/sprites/spritesmith/achievements/achievement-heart.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-heart2x.png b/website/assets/sprites/spritesmith/achievements/achievement-heart2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-heart2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-heart2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-karaoke-2x.png b/website/assets/sprites/spritesmith/achievements/achievement-karaoke-2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-karaoke-2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-karaoke-2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-karaoke.png b/website/assets/sprites/spritesmith/achievements/achievement-karaoke.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-karaoke.png rename to website/assets/sprites/spritesmith/achievements/achievement-karaoke.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-ninja.png b/website/assets/sprites/spritesmith/achievements/achievement-ninja.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-ninja.png rename to website/assets/sprites/spritesmith/achievements/achievement-ninja.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-ninja2x.png b/website/assets/sprites/spritesmith/achievements/achievement-ninja2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-ninja2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-ninja2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-nye.png b/website/assets/sprites/spritesmith/achievements/achievement-nye.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-nye.png rename to website/assets/sprites/spritesmith/achievements/achievement-nye.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-nye2x.png b/website/assets/sprites/spritesmith/achievements/achievement-nye2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-nye2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-nye2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-partyOn.png b/website/assets/sprites/spritesmith/achievements/achievement-partyOn.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-partyOn.png rename to website/assets/sprites/spritesmith/achievements/achievement-partyOn.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-partyOn2x.png b/website/assets/sprites/spritesmith/achievements/achievement-partyOn2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-partyOn2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-partyOn2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-partyUp.png b/website/assets/sprites/spritesmith/achievements/achievement-partyUp.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-partyUp.png rename to website/assets/sprites/spritesmith/achievements/achievement-partyUp.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-partyUp2x.png b/website/assets/sprites/spritesmith/achievements/achievement-partyUp2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-partyUp2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-partyUp2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-perfect.png b/website/assets/sprites/spritesmith/achievements/achievement-perfect.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-perfect.png rename to website/assets/sprites/spritesmith/achievements/achievement-perfect.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-perfect2x.png b/website/assets/sprites/spritesmith/achievements/achievement-perfect2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-perfect2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-perfect2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-rat.png b/website/assets/sprites/spritesmith/achievements/achievement-rat.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-rat.png rename to website/assets/sprites/spritesmith/achievements/achievement-rat.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-rat2x.png b/website/assets/sprites/spritesmith/achievements/achievement-rat2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-rat2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-rat2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-seafoam.png b/website/assets/sprites/spritesmith/achievements/achievement-seafoam.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-seafoam.png rename to website/assets/sprites/spritesmith/achievements/achievement-seafoam.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-seafoam2x.png b/website/assets/sprites/spritesmith/achievements/achievement-seafoam2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-seafoam2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-seafoam2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-shield.png b/website/assets/sprites/spritesmith/achievements/achievement-shield.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-shield.png rename to website/assets/sprites/spritesmith/achievements/achievement-shield.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-shield2x.png b/website/assets/sprites/spritesmith/achievements/achievement-shield2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-shield2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-shield2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-shinySeed.png b/website/assets/sprites/spritesmith/achievements/achievement-shinySeed.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-shinySeed.png rename to website/assets/sprites/spritesmith/achievements/achievement-shinySeed.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-shinySeed2x.png b/website/assets/sprites/spritesmith/achievements/achievement-shinySeed2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-shinySeed2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-shinySeed2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-snowball.png b/website/assets/sprites/spritesmith/achievements/achievement-snowball.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-snowball.png rename to website/assets/sprites/spritesmith/achievements/achievement-snowball.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-snowball2x.png b/website/assets/sprites/spritesmith/achievements/achievement-snowball2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-snowball2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-snowball2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-spookySparkles.png b/website/assets/sprites/spritesmith/achievements/achievement-spookySparkles.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-spookySparkles.png rename to website/assets/sprites/spritesmith/achievements/achievement-spookySparkles.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-spookySparkles2x.png b/website/assets/sprites/spritesmith/achievements/achievement-spookySparkles2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-spookySparkles2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-spookySparkles2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-stoikalm.png b/website/assets/sprites/spritesmith/achievements/achievement-stoikalm.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-stoikalm.png rename to website/assets/sprites/spritesmith/achievements/achievement-stoikalm.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-sun.png b/website/assets/sprites/spritesmith/achievements/achievement-sun.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-sun.png rename to website/assets/sprites/spritesmith/achievements/achievement-sun.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-sun2x.png b/website/assets/sprites/spritesmith/achievements/achievement-sun2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-sun2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-sun2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-sword.png b/website/assets/sprites/spritesmith/achievements/achievement-sword.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-sword.png rename to website/assets/sprites/spritesmith/achievements/achievement-sword.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-sword2x.png b/website/assets/sprites/spritesmith/achievements/achievement-sword2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-sword2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-sword2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-thankyou.png b/website/assets/sprites/spritesmith/achievements/achievement-thankyou.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-thankyou.png rename to website/assets/sprites/spritesmith/achievements/achievement-thankyou.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-thankyou2x.png b/website/assets/sprites/spritesmith/achievements/achievement-thankyou2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-thankyou2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-thankyou2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-thermometer.png b/website/assets/sprites/spritesmith/achievements/achievement-thermometer.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-thermometer.png rename to website/assets/sprites/spritesmith/achievements/achievement-thermometer.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-thermometer2x.png b/website/assets/sprites/spritesmith/achievements/achievement-thermometer2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-thermometer2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-thermometer2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-tree.png b/website/assets/sprites/spritesmith/achievements/achievement-tree.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-tree.png rename to website/assets/sprites/spritesmith/achievements/achievement-tree.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-tree2x.png b/website/assets/sprites/spritesmith/achievements/achievement-tree2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-tree2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-tree2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-triadbingo.png b/website/assets/sprites/spritesmith/achievements/achievement-triadbingo.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-triadbingo.png rename to website/assets/sprites/spritesmith/achievements/achievement-triadbingo.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-triadbingo2x.png b/website/assets/sprites/spritesmith/achievements/achievement-triadbingo2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-triadbingo2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-triadbingo2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-ultimate-healer.png b/website/assets/sprites/spritesmith/achievements/achievement-ultimate-healer.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-ultimate-healer.png rename to website/assets/sprites/spritesmith/achievements/achievement-ultimate-healer.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-ultimate-healer2x.png b/website/assets/sprites/spritesmith/achievements/achievement-ultimate-healer2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-ultimate-healer2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-ultimate-healer2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-ultimate-mage.png b/website/assets/sprites/spritesmith/achievements/achievement-ultimate-mage.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-ultimate-mage.png rename to website/assets/sprites/spritesmith/achievements/achievement-ultimate-mage.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-ultimate-mage2x.png b/website/assets/sprites/spritesmith/achievements/achievement-ultimate-mage2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-ultimate-mage2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-ultimate-mage2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-ultimate-rogue.png b/website/assets/sprites/spritesmith/achievements/achievement-ultimate-rogue.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-ultimate-rogue.png rename to website/assets/sprites/spritesmith/achievements/achievement-ultimate-rogue.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-ultimate-rogue2x.png b/website/assets/sprites/spritesmith/achievements/achievement-ultimate-rogue2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-ultimate-rogue2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-ultimate-rogue2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-ultimate-warrior.png b/website/assets/sprites/spritesmith/achievements/achievement-ultimate-warrior.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-ultimate-warrior.png rename to website/assets/sprites/spritesmith/achievements/achievement-ultimate-warrior.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-ultimate-warrior2x.png b/website/assets/sprites/spritesmith/achievements/achievement-ultimate-warrior2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-ultimate-warrior2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-ultimate-warrior2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-valentine.png b/website/assets/sprites/spritesmith/achievements/achievement-valentine.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-valentine.png rename to website/assets/sprites/spritesmith/achievements/achievement-valentine.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-valentine2x.png b/website/assets/sprites/spritesmith/achievements/achievement-valentine2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-valentine2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-valentine2x.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-wolf.png b/website/assets/sprites/spritesmith/achievements/achievement-wolf.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-wolf.png rename to website/assets/sprites/spritesmith/achievements/achievement-wolf.png diff --git a/common/img/sprites/spritesmith/achievements/achievement-wolf2x.png b/website/assets/sprites/spritesmith/achievements/achievement-wolf2x.png similarity index 100% rename from common/img/sprites/spritesmith/achievements/achievement-wolf2x.png rename to website/assets/sprites/spritesmith/achievements/achievement-wolf2x.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_alpine_slopes.png b/website/assets/sprites/spritesmith/backgrounds/background_alpine_slopes.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_alpine_slopes.png rename to website/assets/sprites/spritesmith/backgrounds/background_alpine_slopes.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_aquarium.png b/website/assets/sprites/spritesmith/backgrounds/background_aquarium.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_aquarium.png rename to website/assets/sprites/spritesmith/backgrounds/background_aquarium.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_archery_range.png b/website/assets/sprites/spritesmith/backgrounds/background_archery_range.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_archery_range.png rename to website/assets/sprites/spritesmith/backgrounds/background_archery_range.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_autumn_forest.png b/website/assets/sprites/spritesmith/backgrounds/background_autumn_forest.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_autumn_forest.png rename to website/assets/sprites/spritesmith/backgrounds/background_autumn_forest.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_bamboo_forest.png b/website/assets/sprites/spritesmith/backgrounds/background_bamboo_forest.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_bamboo_forest.png rename to website/assets/sprites/spritesmith/backgrounds/background_bamboo_forest.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_beach.png b/website/assets/sprites/spritesmith/backgrounds/background_beach.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_beach.png rename to website/assets/sprites/spritesmith/backgrounds/background_beach.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_beehive.png b/website/assets/sprites/spritesmith/backgrounds/background_beehive.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_beehive.png rename to website/assets/sprites/spritesmith/backgrounds/background_beehive.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_blacksmithy.png b/website/assets/sprites/spritesmith/backgrounds/background_blacksmithy.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_blacksmithy.png rename to website/assets/sprites/spritesmith/backgrounds/background_blacksmithy.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_cherry_trees.png b/website/assets/sprites/spritesmith/backgrounds/background_cherry_trees.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_cherry_trees.png rename to website/assets/sprites/spritesmith/backgrounds/background_cherry_trees.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_clouds.png b/website/assets/sprites/spritesmith/backgrounds/background_clouds.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_clouds.png rename to website/assets/sprites/spritesmith/backgrounds/background_clouds.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_coral_reef.png b/website/assets/sprites/spritesmith/backgrounds/background_coral_reef.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_coral_reef.png rename to website/assets/sprites/spritesmith/backgrounds/background_coral_reef.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_cornfields.png b/website/assets/sprites/spritesmith/backgrounds/background_cornfields.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_cornfields.png rename to website/assets/sprites/spritesmith/backgrounds/background_cornfields.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_cozy_library.png b/website/assets/sprites/spritesmith/backgrounds/background_cozy_library.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_cozy_library.png rename to website/assets/sprites/spritesmith/backgrounds/background_cozy_library.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_crystal_cave.png b/website/assets/sprites/spritesmith/backgrounds/background_crystal_cave.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_crystal_cave.png rename to website/assets/sprites/spritesmith/backgrounds/background_crystal_cave.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_deep_mine.png b/website/assets/sprites/spritesmith/backgrounds/background_deep_mine.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_deep_mine.png rename to website/assets/sprites/spritesmith/backgrounds/background_deep_mine.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_deep_sea.png b/website/assets/sprites/spritesmith/backgrounds/background_deep_sea.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_deep_sea.png rename to website/assets/sprites/spritesmith/backgrounds/background_deep_sea.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_dilatory_castle.png b/website/assets/sprites/spritesmith/backgrounds/background_dilatory_castle.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_dilatory_castle.png rename to website/assets/sprites/spritesmith/backgrounds/background_dilatory_castle.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_dilatory_ruins.png b/website/assets/sprites/spritesmith/backgrounds/background_dilatory_ruins.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_dilatory_ruins.png rename to website/assets/sprites/spritesmith/backgrounds/background_dilatory_ruins.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_distant_castle.png b/website/assets/sprites/spritesmith/backgrounds/background_distant_castle.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_distant_castle.png rename to website/assets/sprites/spritesmith/backgrounds/background_distant_castle.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_drifting_raft.png b/website/assets/sprites/spritesmith/backgrounds/background_drifting_raft.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_drifting_raft.png rename to website/assets/sprites/spritesmith/backgrounds/background_drifting_raft.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_dusty_canyons.png b/website/assets/sprites/spritesmith/backgrounds/background_dusty_canyons.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_dusty_canyons.png rename to website/assets/sprites/spritesmith/backgrounds/background_dusty_canyons.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_fairy_ring.png b/website/assets/sprites/spritesmith/backgrounds/background_fairy_ring.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_fairy_ring.png rename to website/assets/sprites/spritesmith/backgrounds/background_fairy_ring.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_farmhouse.png b/website/assets/sprites/spritesmith/backgrounds/background_farmhouse.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_farmhouse.png rename to website/assets/sprites/spritesmith/backgrounds/background_farmhouse.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_floating_islands.png b/website/assets/sprites/spritesmith/backgrounds/background_floating_islands.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_floating_islands.png rename to website/assets/sprites/spritesmith/backgrounds/background_floating_islands.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_floral_meadow.png b/website/assets/sprites/spritesmith/backgrounds/background_floral_meadow.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_floral_meadow.png rename to website/assets/sprites/spritesmith/backgrounds/background_floral_meadow.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_forest.png b/website/assets/sprites/spritesmith/backgrounds/background_forest.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_forest.png rename to website/assets/sprites/spritesmith/backgrounds/background_forest.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_frigid_peak.png b/website/assets/sprites/spritesmith/backgrounds/background_frigid_peak.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_frigid_peak.png rename to website/assets/sprites/spritesmith/backgrounds/background_frigid_peak.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_frozen_lake.png b/website/assets/sprites/spritesmith/backgrounds/background_frozen_lake.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_frozen_lake.png rename to website/assets/sprites/spritesmith/backgrounds/background_frozen_lake.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_gazebo.png b/website/assets/sprites/spritesmith/backgrounds/background_gazebo.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_gazebo.png rename to website/assets/sprites/spritesmith/backgrounds/background_gazebo.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_giant_florals.png b/website/assets/sprites/spritesmith/backgrounds/background_giant_florals.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_giant_florals.png rename to website/assets/sprites/spritesmith/backgrounds/background_giant_florals.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_giant_wave.png b/website/assets/sprites/spritesmith/backgrounds/background_giant_wave.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_giant_wave.png rename to website/assets/sprites/spritesmith/backgrounds/background_giant_wave.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_grand_staircase.png b/website/assets/sprites/spritesmith/backgrounds/background_grand_staircase.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_grand_staircase.png rename to website/assets/sprites/spritesmith/backgrounds/background_grand_staircase.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_graveyard.png b/website/assets/sprites/spritesmith/backgrounds/background_graveyard.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_graveyard.png rename to website/assets/sprites/spritesmith/backgrounds/background_graveyard.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_gumdrop_land.png b/website/assets/sprites/spritesmith/backgrounds/background_gumdrop_land.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_gumdrop_land.png rename to website/assets/sprites/spritesmith/backgrounds/background_gumdrop_land.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_harvest_feast.png b/website/assets/sprites/spritesmith/backgrounds/background_harvest_feast.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_harvest_feast.png rename to website/assets/sprites/spritesmith/backgrounds/background_harvest_feast.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_harvest_fields.png b/website/assets/sprites/spritesmith/backgrounds/background_harvest_fields.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_harvest_fields.png rename to website/assets/sprites/spritesmith/backgrounds/background_harvest_fields.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_harvest_moon.png b/website/assets/sprites/spritesmith/backgrounds/background_harvest_moon.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_harvest_moon.png rename to website/assets/sprites/spritesmith/backgrounds/background_harvest_moon.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_haunted_house.png b/website/assets/sprites/spritesmith/backgrounds/background_haunted_house.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_haunted_house.png rename to website/assets/sprites/spritesmith/backgrounds/background_haunted_house.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_ice_cave.png b/website/assets/sprites/spritesmith/backgrounds/background_ice_cave.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_ice_cave.png rename to website/assets/sprites/spritesmith/backgrounds/background_ice_cave.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_iceberg.png b/website/assets/sprites/spritesmith/backgrounds/background_iceberg.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_iceberg.png rename to website/assets/sprites/spritesmith/backgrounds/background_iceberg.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_idyllic_cabin.png b/website/assets/sprites/spritesmith/backgrounds/background_idyllic_cabin.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_idyllic_cabin.png rename to website/assets/sprites/spritesmith/backgrounds/background_idyllic_cabin.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_island_waterfalls.png b/website/assets/sprites/spritesmith/backgrounds/background_island_waterfalls.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_island_waterfalls.png rename to website/assets/sprites/spritesmith/backgrounds/background_island_waterfalls.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_lighthouse_shore.png b/website/assets/sprites/spritesmith/backgrounds/background_lighthouse_shore.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_lighthouse_shore.png rename to website/assets/sprites/spritesmith/backgrounds/background_lighthouse_shore.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_lilypad.png b/website/assets/sprites/spritesmith/backgrounds/background_lilypad.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_lilypad.png rename to website/assets/sprites/spritesmith/backgrounds/background_lilypad.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_marble_temple.png b/website/assets/sprites/spritesmith/backgrounds/background_marble_temple.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_marble_temple.png rename to website/assets/sprites/spritesmith/backgrounds/background_marble_temple.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_market.png b/website/assets/sprites/spritesmith/backgrounds/background_market.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_market.png rename to website/assets/sprites/spritesmith/backgrounds/background_market.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_mountain_lake.png b/website/assets/sprites/spritesmith/backgrounds/background_mountain_lake.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_mountain_lake.png rename to website/assets/sprites/spritesmith/backgrounds/background_mountain_lake.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_mountain_pyramid.png b/website/assets/sprites/spritesmith/backgrounds/background_mountain_pyramid.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_mountain_pyramid.png rename to website/assets/sprites/spritesmith/backgrounds/background_mountain_pyramid.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_night_dunes.png b/website/assets/sprites/spritesmith/backgrounds/background_night_dunes.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_night_dunes.png rename to website/assets/sprites/spritesmith/backgrounds/background_night_dunes.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_open_waters.png b/website/assets/sprites/spritesmith/backgrounds/background_open_waters.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_open_waters.png rename to website/assets/sprites/spritesmith/backgrounds/background_open_waters.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_orchard.png b/website/assets/sprites/spritesmith/backgrounds/background_orchard.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_orchard.png rename to website/assets/sprites/spritesmith/backgrounds/background_orchard.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_pagodas.png b/website/assets/sprites/spritesmith/backgrounds/background_pagodas.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_pagodas.png rename to website/assets/sprites/spritesmith/backgrounds/background_pagodas.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_pumpkin_patch.png b/website/assets/sprites/spritesmith/backgrounds/background_pumpkin_patch.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_pumpkin_patch.png rename to website/assets/sprites/spritesmith/backgrounds/background_pumpkin_patch.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_pyramids.png b/website/assets/sprites/spritesmith/backgrounds/background_pyramids.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_pyramids.png rename to website/assets/sprites/spritesmith/backgrounds/background_pyramids.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_rainbows_end.png b/website/assets/sprites/spritesmith/backgrounds/background_rainbows_end.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_rainbows_end.png rename to website/assets/sprites/spritesmith/backgrounds/background_rainbows_end.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_rainforest.png b/website/assets/sprites/spritesmith/backgrounds/background_rainforest.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_rainforest.png rename to website/assets/sprites/spritesmith/backgrounds/background_rainforest.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_rolling_hills.png b/website/assets/sprites/spritesmith/backgrounds/background_rolling_hills.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_rolling_hills.png rename to website/assets/sprites/spritesmith/backgrounds/background_rolling_hills.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_seafarer_ship.png b/website/assets/sprites/spritesmith/backgrounds/background_seafarer_ship.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_seafarer_ship.png rename to website/assets/sprites/spritesmith/backgrounds/background_seafarer_ship.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_shimmery_bubbles.png b/website/assets/sprites/spritesmith/backgrounds/background_shimmery_bubbles.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_shimmery_bubbles.png rename to website/assets/sprites/spritesmith/backgrounds/background_shimmery_bubbles.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_slimy_swamp.png b/website/assets/sprites/spritesmith/backgrounds/background_slimy_swamp.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_slimy_swamp.png rename to website/assets/sprites/spritesmith/backgrounds/background_slimy_swamp.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_snowman_army.png b/website/assets/sprites/spritesmith/backgrounds/background_snowman_army.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_snowman_army.png rename to website/assets/sprites/spritesmith/backgrounds/background_snowman_army.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_snowy_pines.png b/website/assets/sprites/spritesmith/backgrounds/background_snowy_pines.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_snowy_pines.png rename to website/assets/sprites/spritesmith/backgrounds/background_snowy_pines.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_snowy_sunrise.png b/website/assets/sprites/spritesmith/backgrounds/background_snowy_sunrise.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_snowy_sunrise.png rename to website/assets/sprites/spritesmith/backgrounds/background_snowy_sunrise.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_south_pole.png b/website/assets/sprites/spritesmith/backgrounds/background_south_pole.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_south_pole.png rename to website/assets/sprites/spritesmith/backgrounds/background_south_pole.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_spring_rain.png b/website/assets/sprites/spritesmith/backgrounds/background_spring_rain.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_spring_rain.png rename to website/assets/sprites/spritesmith/backgrounds/background_spring_rain.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_stable.png b/website/assets/sprites/spritesmith/backgrounds/background_stable.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_stable.png rename to website/assets/sprites/spritesmith/backgrounds/background_stable.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_stained_glass.png b/website/assets/sprites/spritesmith/backgrounds/background_stained_glass.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_stained_glass.png rename to website/assets/sprites/spritesmith/backgrounds/background_stained_glass.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_starry_skies.png b/website/assets/sprites/spritesmith/backgrounds/background_starry_skies.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_starry_skies.png rename to website/assets/sprites/spritesmith/backgrounds/background_starry_skies.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_stone_circle.png b/website/assets/sprites/spritesmith/backgrounds/background_stone_circle.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_stone_circle.png rename to website/assets/sprites/spritesmith/backgrounds/background_stone_circle.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_stormy_ship.png b/website/assets/sprites/spritesmith/backgrounds/background_stormy_ship.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_stormy_ship.png rename to website/assets/sprites/spritesmith/backgrounds/background_stormy_ship.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_sunken_ship.png b/website/assets/sprites/spritesmith/backgrounds/background_sunken_ship.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_sunken_ship.png rename to website/assets/sprites/spritesmith/backgrounds/background_sunken_ship.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_sunset_meadow.png b/website/assets/sprites/spritesmith/backgrounds/background_sunset_meadow.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_sunset_meadow.png rename to website/assets/sprites/spritesmith/backgrounds/background_sunset_meadow.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_sunset_oasis.png b/website/assets/sprites/spritesmith/backgrounds/background_sunset_oasis.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_sunset_oasis.png rename to website/assets/sprites/spritesmith/backgrounds/background_sunset_oasis.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_sunset_savannah.png b/website/assets/sprites/spritesmith/backgrounds/background_sunset_savannah.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_sunset_savannah.png rename to website/assets/sprites/spritesmith/backgrounds/background_sunset_savannah.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_swarming_darkness.png b/website/assets/sprites/spritesmith/backgrounds/background_swarming_darkness.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_swarming_darkness.png rename to website/assets/sprites/spritesmith/backgrounds/background_swarming_darkness.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_tavern.png b/website/assets/sprites/spritesmith/backgrounds/background_tavern.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_tavern.png rename to website/assets/sprites/spritesmith/backgrounds/background_tavern.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_thunderstorm.png b/website/assets/sprites/spritesmith/backgrounds/background_thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_thunderstorm.png rename to website/assets/sprites/spritesmith/backgrounds/background_thunderstorm.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_tree_roots.png b/website/assets/sprites/spritesmith/backgrounds/background_tree_roots.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_tree_roots.png rename to website/assets/sprites/spritesmith/backgrounds/background_tree_roots.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_twinkly_lights.png b/website/assets/sprites/spritesmith/backgrounds/background_twinkly_lights.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_twinkly_lights.png rename to website/assets/sprites/spritesmith/backgrounds/background_twinkly_lights.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_twinkly_party_lights.png b/website/assets/sprites/spritesmith/backgrounds/background_twinkly_party_lights.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_twinkly_party_lights.png rename to website/assets/sprites/spritesmith/backgrounds/background_twinkly_party_lights.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_volcano.png b/website/assets/sprites/spritesmith/backgrounds/background_volcano.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_volcano.png rename to website/assets/sprites/spritesmith/backgrounds/background_volcano.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_waterfall_rock.png b/website/assets/sprites/spritesmith/backgrounds/background_waterfall_rock.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_waterfall_rock.png rename to website/assets/sprites/spritesmith/backgrounds/background_waterfall_rock.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_winter_night.png b/website/assets/sprites/spritesmith/backgrounds/background_winter_night.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_winter_night.png rename to website/assets/sprites/spritesmith/backgrounds/background_winter_night.png diff --git a/common/img/sprites/spritesmith/backgrounds/background_winter_town.png b/website/assets/sprites/spritesmith/backgrounds/background_winter_town.png similarity index 100% rename from common/img/sprites/spritesmith/backgrounds/background_winter_town.png rename to website/assets/sprites/spritesmith/backgrounds/background_winter_town.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_TRUred.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_TRUred.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_aurora.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_aurora.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_aurora.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_black.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_black.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_black.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_blond.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_blond.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_blond.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_blue.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_blue.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_blue.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_brown.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_brown.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_brown.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_candycane.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_candycane.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_candycane.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_candycorn.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_candycorn.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_festive.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_festive.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_festive.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_frost.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_frost.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_frost.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_ghostwhite.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_green.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_green.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_green.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_halloween.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_halloween.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_halloween.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_holly.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_holly.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_holly.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_hollygreen.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_hollygreen.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_midnight.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_midnight.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_midnight.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_pblue.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_pblue.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_pblue.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_peppermint.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_peppermint.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_pgreen.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_pgreen.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_porange.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_porange.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_porange.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_ppink.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_ppink.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_ppink.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_ppurple.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_ppurple.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_pumpkin.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_pumpkin.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_purple.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_purple.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_purple.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_pyellow.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_pyellow.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_rainbow.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_rainbow.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_red.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_red.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_red.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_snowy.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_snowy.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_snowy.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_white.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_white.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_white.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_winternight.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_winternight.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_winternight.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_winterstar.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_winterstar.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_yellow.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_yellow.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_yellow.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_1_zombie.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_1_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_1_zombie.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_1_zombie.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_TRUred.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_TRUred.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_aurora.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_aurora.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_aurora.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_black.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_black.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_black.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_blond.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_blond.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_blond.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_blue.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_blue.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_blue.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_brown.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_brown.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_brown.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_candycane.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_candycane.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_candycane.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_candycorn.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_candycorn.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_festive.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_festive.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_festive.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_frost.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_frost.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_frost.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_ghostwhite.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_green.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_green.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_green.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_halloween.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_halloween.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_halloween.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_holly.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_holly.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_holly.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_hollygreen.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_hollygreen.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_midnight.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_midnight.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_midnight.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_pblue.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_pblue.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_pblue.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_peppermint.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_peppermint.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_pgreen.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_pgreen.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_porange.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_porange.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_porange.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_ppink.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_ppink.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_ppink.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_ppurple.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_ppurple.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_pumpkin.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_pumpkin.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_purple.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_purple.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_purple.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_pyellow.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_pyellow.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_rainbow.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_rainbow.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_red.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_red.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_red.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_snowy.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_snowy.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_snowy.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_white.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_white.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_white.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_winternight.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_winternight.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_winternight.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_winterstar.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_winterstar.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_yellow.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_yellow.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_yellow.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_2_zombie.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_2_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_2_zombie.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_2_zombie.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_TRUred.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_TRUred.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_aurora.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_aurora.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_aurora.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_black.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_black.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_black.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_blond.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_blond.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_blond.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_blue.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_blue.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_blue.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_brown.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_brown.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_brown.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_candycane.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_candycane.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_candycane.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_candycorn.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_candycorn.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_festive.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_festive.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_festive.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_frost.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_frost.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_frost.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_ghostwhite.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_green.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_green.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_green.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_halloween.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_halloween.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_halloween.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_holly.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_holly.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_holly.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_hollygreen.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_hollygreen.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_midnight.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_midnight.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_midnight.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_pblue.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_pblue.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_pblue.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_peppermint.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_peppermint.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_pgreen.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_pgreen.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_porange.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_porange.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_porange.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_ppink.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_ppink.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_ppink.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_ppurple.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_ppurple.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_pumpkin.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_pumpkin.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_purple.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_purple.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_purple.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_pyellow.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_pyellow.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_rainbow.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_rainbow.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_red.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_red.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_red.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_snowy.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_snowy.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_snowy.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_white.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_white.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_white.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_winternight.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_winternight.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_winternight.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_winterstar.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_winterstar.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_yellow.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_yellow.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_yellow.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_beard_3_zombie.png b/website/assets/sprites/spritesmith/customize/beards/hair_beard_3_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_beard_3_zombie.png rename to website/assets/sprites/spritesmith/customize/beards/hair_beard_3_zombie.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_TRUred.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_TRUred.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_aurora.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_aurora.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_aurora.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_black.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_black.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_black.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_blond.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_blond.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_blond.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_blue.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_blue.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_blue.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_brown.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_brown.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_brown.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_candycane.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_candycane.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_candycane.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_candycorn.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_candycorn.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_festive.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_festive.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_festive.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_frost.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_frost.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_frost.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_ghostwhite.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_green.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_green.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_green.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_halloween.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_halloween.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_halloween.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_holly.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_holly.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_holly.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_hollygreen.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_hollygreen.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_midnight.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_midnight.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_midnight.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_pblue.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_pblue.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_pblue.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_peppermint.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_peppermint.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_pgreen.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_pgreen.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_porange.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_porange.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_porange.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_ppink.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_ppink.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_ppink.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_ppurple.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_ppurple.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_pumpkin.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_pumpkin.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_purple.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_purple.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_purple.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_pyellow.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_pyellow.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_rainbow.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_rainbow.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_red.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_red.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_red.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_snowy.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_snowy.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_snowy.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_white.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_white.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_white.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_winternight.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_winternight.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_winternight.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_winterstar.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_winterstar.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_yellow.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_yellow.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_yellow.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_1_zombie.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_1_zombie.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_1_zombie.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_TRUred.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_TRUred.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_aurora.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_aurora.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_aurora.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_black.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_black.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_black.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_blond.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_blond.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_blond.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_blue.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_blue.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_blue.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_brown.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_brown.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_brown.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_candycane.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_candycane.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_candycane.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_candycorn.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_candycorn.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_festive.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_festive.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_festive.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_frost.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_frost.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_frost.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_ghostwhite.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_green.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_green.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_green.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_halloween.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_halloween.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_halloween.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_holly.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_holly.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_holly.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_hollygreen.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_hollygreen.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_midnight.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_midnight.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_midnight.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_pblue.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_pblue.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_pblue.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_peppermint.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_peppermint.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_pgreen.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_pgreen.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_porange.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_porange.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_porange.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_ppink.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_ppink.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_ppink.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_ppurple.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_ppurple.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_pumpkin.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_pumpkin.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_purple.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_purple.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_purple.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_pyellow.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_pyellow.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_rainbow.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_rainbow.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_red.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_red.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_red.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_snowy.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_snowy.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_snowy.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_white.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_white.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_white.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_winternight.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_winternight.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_winternight.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_winterstar.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_winterstar.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_yellow.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_yellow.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_yellow.png diff --git a/common/img/sprites/spritesmith/customize/beards/hair_mustache_2_zombie.png b/website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/beards/hair_mustache_2_zombie.png rename to website/assets/sprites/spritesmith/customize/beards/hair_mustache_2_zombie.png diff --git a/common/img/sprites/spritesmith/customize/chairs/button_chair_black.png b/website/assets/sprites/spritesmith/customize/chairs/button_chair_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/chairs/button_chair_black.png rename to website/assets/sprites/spritesmith/customize/chairs/button_chair_black.png diff --git a/common/img/sprites/spritesmith/customize/chairs/button_chair_blue.png b/website/assets/sprites/spritesmith/customize/chairs/button_chair_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/chairs/button_chair_blue.png rename to website/assets/sprites/spritesmith/customize/chairs/button_chair_blue.png diff --git a/common/img/sprites/spritesmith/customize/chairs/button_chair_green.png b/website/assets/sprites/spritesmith/customize/chairs/button_chair_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/chairs/button_chair_green.png rename to website/assets/sprites/spritesmith/customize/chairs/button_chair_green.png diff --git a/common/img/sprites/spritesmith/customize/chairs/button_chair_pink.png b/website/assets/sprites/spritesmith/customize/chairs/button_chair_pink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/chairs/button_chair_pink.png rename to website/assets/sprites/spritesmith/customize/chairs/button_chair_pink.png diff --git a/common/img/sprites/spritesmith/customize/chairs/button_chair_red.png b/website/assets/sprites/spritesmith/customize/chairs/button_chair_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/chairs/button_chair_red.png rename to website/assets/sprites/spritesmith/customize/chairs/button_chair_red.png diff --git a/common/img/sprites/spritesmith/customize/chairs/button_chair_yellow.png b/website/assets/sprites/spritesmith/customize/chairs/button_chair_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/chairs/button_chair_yellow.png rename to website/assets/sprites/spritesmith/customize/chairs/button_chair_yellow.png diff --git a/common/img/sprites/spritesmith/customize/chairs/chair_black.png b/website/assets/sprites/spritesmith/customize/chairs/chair_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/chairs/chair_black.png rename to website/assets/sprites/spritesmith/customize/chairs/chair_black.png diff --git a/common/img/sprites/spritesmith/customize/chairs/chair_blue.png b/website/assets/sprites/spritesmith/customize/chairs/chair_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/chairs/chair_blue.png rename to website/assets/sprites/spritesmith/customize/chairs/chair_blue.png diff --git a/common/img/sprites/spritesmith/customize/chairs/chair_green.png b/website/assets/sprites/spritesmith/customize/chairs/chair_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/chairs/chair_green.png rename to website/assets/sprites/spritesmith/customize/chairs/chair_green.png diff --git a/common/img/sprites/spritesmith/customize/chairs/chair_pink.png b/website/assets/sprites/spritesmith/customize/chairs/chair_pink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/chairs/chair_pink.png rename to website/assets/sprites/spritesmith/customize/chairs/chair_pink.png diff --git a/common/img/sprites/spritesmith/customize/chairs/chair_red.png b/website/assets/sprites/spritesmith/customize/chairs/chair_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/chairs/chair_red.png rename to website/assets/sprites/spritesmith/customize/chairs/chair_red.png diff --git a/common/img/sprites/spritesmith/customize/chairs/chair_yellow.png b/website/assets/sprites/spritesmith/customize/chairs/chair_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/chairs/chair_yellow.png rename to website/assets/sprites/spritesmith/customize/chairs/chair_yellow.png diff --git a/common/img/sprites/spritesmith/customize/flowers/hair_flower_1.png b/website/assets/sprites/spritesmith/customize/flowers/hair_flower_1.png similarity index 100% rename from common/img/sprites/spritesmith/customize/flowers/hair_flower_1.png rename to website/assets/sprites/spritesmith/customize/flowers/hair_flower_1.png diff --git a/common/img/sprites/spritesmith/customize/flowers/hair_flower_2.png b/website/assets/sprites/spritesmith/customize/flowers/hair_flower_2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/flowers/hair_flower_2.png rename to website/assets/sprites/spritesmith/customize/flowers/hair_flower_2.png diff --git a/common/img/sprites/spritesmith/customize/flowers/hair_flower_3.png b/website/assets/sprites/spritesmith/customize/flowers/hair_flower_3.png similarity index 100% rename from common/img/sprites/spritesmith/customize/flowers/hair_flower_3.png rename to website/assets/sprites/spritesmith/customize/flowers/hair_flower_3.png diff --git a/common/img/sprites/spritesmith/customize/flowers/hair_flower_4.png b/website/assets/sprites/spritesmith/customize/flowers/hair_flower_4.png similarity index 100% rename from common/img/sprites/spritesmith/customize/flowers/hair_flower_4.png rename to website/assets/sprites/spritesmith/customize/flowers/hair_flower_4.png diff --git a/common/img/sprites/spritesmith/customize/flowers/hair_flower_5.png b/website/assets/sprites/spritesmith/customize/flowers/hair_flower_5.png similarity index 100% rename from common/img/sprites/spritesmith/customize/flowers/hair_flower_5.png rename to website/assets/sprites/spritesmith/customize/flowers/hair_flower_5.png diff --git a/common/img/sprites/spritesmith/customize/flowers/hair_flower_6.png b/website/assets/sprites/spritesmith/customize/flowers/hair_flower_6.png similarity index 100% rename from common/img/sprites/spritesmith/customize/flowers/hair_flower_6.png rename to website/assets/sprites/spritesmith/customize/flowers/hair_flower_6.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_1_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_1_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_1_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_2_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_2_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_2_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_bangs_3_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_bangs_3_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_bangs_3_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_10_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_10_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_10_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_10_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_11_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_11_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_11_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_11_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_12_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_12_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_12_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_12_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_13_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_13_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_13_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_13_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_14_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_14_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_14_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_14_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_1_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_1_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_1_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_1_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_2_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_2_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_2_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_2_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_3_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_3_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_3_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_3_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_4_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_4_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_4_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_4_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_5_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_5_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_5_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_5_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_6_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_6_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_6_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_6_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_7_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_7_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_7_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_7_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_8_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_8_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_8_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_8_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_TRUred.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_TRUred.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_TRUred.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_TRUred.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_aurora.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_aurora.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_aurora.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_aurora.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_black.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_black.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_black.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_blond.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_blond.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_blond.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_blond.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_blue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_blue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_blue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_brown.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_brown.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_brown.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_brown.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_candycane.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_candycane.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_candycane.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_candycorn.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_candycorn.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_festive.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_festive.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_festive.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_festive.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_frost.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_frost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_frost.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_frost.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_ghostwhite.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_ghostwhite.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_ghostwhite.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_ghostwhite.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_green.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_green.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_green.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_halloween.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_halloween.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_halloween.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_halloween.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_holly.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_holly.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_holly.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_holly.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_hollygreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_hollygreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_hollygreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_hollygreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_midnight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_midnight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_midnight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_midnight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_pblue.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_pblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_pblue.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_pblue.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_peppermint.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_peppermint.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_peppermint.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_pgreen.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_pgreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_pgreen.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_pgreen.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_porange.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_porange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_porange.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_porange.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_ppink.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_ppink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_ppink.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_ppink.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_ppurple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_ppurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_ppurple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_ppurple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_pumpkin.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_pumpkin.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_purple.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_purple.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_purple.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_pyellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_pyellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_pyellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_pyellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_rainbow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_rainbow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_red.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_red.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_red.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_red.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_snowy.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_snowy.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_snowy.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_snowy.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_white.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_white.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_white.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_winternight.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_winternight.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_winternight.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_winternight.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_winterstar.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_winterstar.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_winterstar.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_winterstar.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_yellow.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_yellow.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_yellow.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_base_9_zombie.png b/website/assets/sprites/spritesmith/customize/hair/hair_base_9_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_base_9_zombie.png rename to website/assets/sprites/spritesmith/customize/hair/hair_base_9_zombie.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_1_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_1_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_1_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_1_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_1_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_1_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_1_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_1_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_1_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_1_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_1_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_1_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_1_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_1_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_1_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_1_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_1_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_1_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_1_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_1_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_1_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_1_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_1_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_1_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_2_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_2_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_2_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_2_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_2_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_2_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_2_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_2_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_2_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_2_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_2_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_2_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_2_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_2_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_2_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_2_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_2_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_2_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_2_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_2_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_2_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_2_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_2_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_2_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_3_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_3_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_3_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_3_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_3_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_3_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_3_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_3_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_3_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_3_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_3_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_3_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_3_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_3_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_3_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_3_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_3_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_3_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_3_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_3_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_beard_3_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_beard_3_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_beard_3_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_beard_3_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_mustache_1_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_mustache_1_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_mustache_1_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_mustache_1_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_mustache_1_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_mustache_1_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_mustache_1_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_mustache_1_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_mustache_1_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_mustache_1_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_mustache_1_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_mustache_1_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_mustache_1_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_mustache_1_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_mustache_1_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_mustache_1_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_mustache_1_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_mustache_1_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_mustache_1_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_mustache_1_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_mustache_1_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_mustache_1_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_mustache_1_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_mustache_1_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_mustache_2_pblue2.png b/website/assets/sprites/spritesmith/customize/hair/hair_mustache_2_pblue2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_mustache_2_pblue2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_mustache_2_pblue2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_mustache_2_pgreen2.png b/website/assets/sprites/spritesmith/customize/hair/hair_mustache_2_pgreen2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_mustache_2_pgreen2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_mustache_2_pgreen2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_mustache_2_porange2.png b/website/assets/sprites/spritesmith/customize/hair/hair_mustache_2_porange2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_mustache_2_porange2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_mustache_2_porange2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_mustache_2_ppink2.png b/website/assets/sprites/spritesmith/customize/hair/hair_mustache_2_ppink2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_mustache_2_ppink2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_mustache_2_ppink2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_mustache_2_ppurple2.png b/website/assets/sprites/spritesmith/customize/hair/hair_mustache_2_ppurple2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_mustache_2_ppurple2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_mustache_2_ppurple2.png diff --git a/common/img/sprites/spritesmith/customize/hair/hair_mustache_2_pyellow2.png b/website/assets/sprites/spritesmith/customize/hair/hair_mustache_2_pyellow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/hair/hair_mustache_2_pyellow2.png rename to website/assets/sprites/spritesmith/customize/hair/hair_mustache_2_pyellow2.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_black.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_black.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_black.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_blue.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_blue.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_blue.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_convict.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_convict.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_convict.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_convict.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_cross.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_cross.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_cross.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_cross.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_fire.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_fire.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_fire.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_fire.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_green.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_green.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_green.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_horizon.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_horizon.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_horizon.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_horizon.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_ocean.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_ocean.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_ocean.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_ocean.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_pink.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_pink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_pink.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_pink.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_purple.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_purple.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_purple.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_rainbow.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_rainbow.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_redblue.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_redblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_redblue.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_redblue.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_thunder.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_thunder.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_thunder.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_thunder.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_tropical.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_tropical.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_tropical.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_tropical.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_white.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_white.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_white.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_yellow.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_yellow.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_yellow.png diff --git a/common/img/sprites/spritesmith/customize/shirts/broad_shirt_zombie.png b/website/assets/sprites/spritesmith/customize/shirts/broad_shirt_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/broad_shirt_zombie.png rename to website/assets/sprites/spritesmith/customize/shirts/broad_shirt_zombie.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_black.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_black.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_black.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_black.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_blue.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_blue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_blue.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_blue.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_convict.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_convict.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_convict.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_convict.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_cross.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_cross.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_cross.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_cross.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_fire.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_fire.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_fire.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_fire.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_green.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_green.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_green.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_green.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_horizon.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_horizon.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_horizon.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_horizon.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_ocean.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_ocean.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_ocean.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_ocean.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_pink.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_pink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_pink.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_pink.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_purple.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_purple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_purple.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_purple.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_rainbow.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_rainbow.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_redblue.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_redblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_redblue.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_redblue.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_thunder.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_thunder.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_thunder.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_thunder.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_tropical.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_tropical.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_tropical.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_tropical.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_white.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_white.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_white.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_white.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_yellow.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_yellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_yellow.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_yellow.png diff --git a/common/img/sprites/spritesmith/customize/shirts/slim_shirt_zombie.png b/website/assets/sprites/spritesmith/customize/shirts/slim_shirt_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/shirts/slim_shirt_zombie.png rename to website/assets/sprites/spritesmith/customize/shirts/slim_shirt_zombie.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_0ff591.png b/website/assets/sprites/spritesmith/customize/skin/skin_0ff591.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_0ff591.png rename to website/assets/sprites/spritesmith/customize/skin/skin_0ff591.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_0ff591_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_0ff591_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_0ff591_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_0ff591_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_2b43f6.png b/website/assets/sprites/spritesmith/customize/skin/skin_2b43f6.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_2b43f6.png rename to website/assets/sprites/spritesmith/customize/skin/skin_2b43f6.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_2b43f6_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_2b43f6_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_2b43f6_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_2b43f6_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_6bd049.png b/website/assets/sprites/spritesmith/customize/skin/skin_6bd049.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_6bd049.png rename to website/assets/sprites/spritesmith/customize/skin/skin_6bd049.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_6bd049_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_6bd049_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_6bd049_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_6bd049_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_800ed0.png b/website/assets/sprites/spritesmith/customize/skin/skin_800ed0.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_800ed0.png rename to website/assets/sprites/spritesmith/customize/skin/skin_800ed0.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_800ed0_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_800ed0_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_800ed0_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_800ed0_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_915533.png b/website/assets/sprites/spritesmith/customize/skin/skin_915533.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_915533.png rename to website/assets/sprites/spritesmith/customize/skin/skin_915533.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_915533_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_915533_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_915533_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_915533_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_98461a.png b/website/assets/sprites/spritesmith/customize/skin/skin_98461a.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_98461a.png rename to website/assets/sprites/spritesmith/customize/skin/skin_98461a.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_98461a_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_98461a_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_98461a_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_98461a_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_bear.png b/website/assets/sprites/spritesmith/customize/skin/skin_bear.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_bear.png rename to website/assets/sprites/spritesmith/customize/skin/skin_bear.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_bear_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_bear_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_bear_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_bear_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_c06534.png b/website/assets/sprites/spritesmith/customize/skin/skin_c06534.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_c06534.png rename to website/assets/sprites/spritesmith/customize/skin/skin_c06534.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_c06534_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_c06534_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_c06534_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_c06534_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_c3e1dc.png b/website/assets/sprites/spritesmith/customize/skin/skin_c3e1dc.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_c3e1dc.png rename to website/assets/sprites/spritesmith/customize/skin/skin_c3e1dc.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_c3e1dc_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_c3e1dc_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_c3e1dc_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_c3e1dc_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_cactus.png b/website/assets/sprites/spritesmith/customize/skin/skin_cactus.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_cactus.png rename to website/assets/sprites/spritesmith/customize/skin/skin_cactus.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_cactus_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_cactus_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_cactus_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_cactus_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_candycorn.png b/website/assets/sprites/spritesmith/customize/skin/skin_candycorn.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_candycorn.png rename to website/assets/sprites/spritesmith/customize/skin/skin_candycorn.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_candycorn_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_candycorn_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_candycorn_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_candycorn_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_clownfish.png b/website/assets/sprites/spritesmith/customize/skin/skin_clownfish.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_clownfish.png rename to website/assets/sprites/spritesmith/customize/skin/skin_clownfish.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_clownfish_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_clownfish_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_clownfish_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_clownfish_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_d7a9f7.png b/website/assets/sprites/spritesmith/customize/skin/skin_d7a9f7.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_d7a9f7.png rename to website/assets/sprites/spritesmith/customize/skin/skin_d7a9f7.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_d7a9f7_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_d7a9f7_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_d7a9f7_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_d7a9f7_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_ddc994.png b/website/assets/sprites/spritesmith/customize/skin/skin_ddc994.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_ddc994.png rename to website/assets/sprites/spritesmith/customize/skin/skin_ddc994.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_ddc994_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_ddc994_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_ddc994_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_ddc994_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_deepocean.png b/website/assets/sprites/spritesmith/customize/skin/skin_deepocean.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_deepocean.png rename to website/assets/sprites/spritesmith/customize/skin/skin_deepocean.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_deepocean_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_deepocean_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_deepocean_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_deepocean_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_ea8349.png b/website/assets/sprites/spritesmith/customize/skin/skin_ea8349.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_ea8349.png rename to website/assets/sprites/spritesmith/customize/skin/skin_ea8349.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_ea8349_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_ea8349_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_ea8349_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_ea8349_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_eb052b.png b/website/assets/sprites/spritesmith/customize/skin/skin_eb052b.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_eb052b.png rename to website/assets/sprites/spritesmith/customize/skin/skin_eb052b.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_eb052b_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_eb052b_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_eb052b_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_eb052b_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_f5a76e.png b/website/assets/sprites/spritesmith/customize/skin/skin_f5a76e.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_f5a76e.png rename to website/assets/sprites/spritesmith/customize/skin/skin_f5a76e.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_f5a76e_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_f5a76e_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_f5a76e_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_f5a76e_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_f5d70f.png b/website/assets/sprites/spritesmith/customize/skin/skin_f5d70f.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_f5d70f.png rename to website/assets/sprites/spritesmith/customize/skin/skin_f5d70f.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_f5d70f_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_f5d70f_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_f5d70f_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_f5d70f_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_f69922.png b/website/assets/sprites/spritesmith/customize/skin/skin_f69922.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_f69922.png rename to website/assets/sprites/spritesmith/customize/skin/skin_f69922.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_f69922_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_f69922_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_f69922_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_f69922_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_fox.png b/website/assets/sprites/spritesmith/customize/skin/skin_fox.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_fox.png rename to website/assets/sprites/spritesmith/customize/skin/skin_fox.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_fox_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_fox_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_fox_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_fox_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_ghost.png b/website/assets/sprites/spritesmith/customize/skin/skin_ghost.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_ghost.png rename to website/assets/sprites/spritesmith/customize/skin/skin_ghost.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_ghost_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_ghost_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_ghost_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_ghost_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_lion.png b/website/assets/sprites/spritesmith/customize/skin/skin_lion.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_lion.png rename to website/assets/sprites/spritesmith/customize/skin/skin_lion.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_lion_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_lion_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_lion_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_lion_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_merblue.png b/website/assets/sprites/spritesmith/customize/skin/skin_merblue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_merblue.png rename to website/assets/sprites/spritesmith/customize/skin/skin_merblue.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_merblue_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_merblue_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_merblue_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_merblue_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_mergold.png b/website/assets/sprites/spritesmith/customize/skin/skin_mergold.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_mergold.png rename to website/assets/sprites/spritesmith/customize/skin/skin_mergold.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_mergold_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_mergold_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_mergold_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_mergold_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_mergreen.png b/website/assets/sprites/spritesmith/customize/skin/skin_mergreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_mergreen.png rename to website/assets/sprites/spritesmith/customize/skin/skin_mergreen.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_mergreen_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_mergreen_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_mergreen_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_mergreen_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_merruby.png b/website/assets/sprites/spritesmith/customize/skin/skin_merruby.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_merruby.png rename to website/assets/sprites/spritesmith/customize/skin/skin_merruby.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_merruby_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_merruby_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_merruby_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_merruby_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_monster.png b/website/assets/sprites/spritesmith/customize/skin/skin_monster.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_monster.png rename to website/assets/sprites/spritesmith/customize/skin/skin_monster.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_monster_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_monster_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_monster_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_monster_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_ogre.png b/website/assets/sprites/spritesmith/customize/skin/skin_ogre.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_ogre.png rename to website/assets/sprites/spritesmith/customize/skin/skin_ogre.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_ogre_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_ogre_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_ogre_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_ogre_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_panda.png b/website/assets/sprites/spritesmith/customize/skin/skin_panda.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_panda.png rename to website/assets/sprites/spritesmith/customize/skin/skin_panda.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_panda_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_panda_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_panda_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_panda_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pastelBlue.png b/website/assets/sprites/spritesmith/customize/skin/skin_pastelBlue.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pastelBlue.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pastelBlue.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pastelBlue_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_pastelBlue_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pastelBlue_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pastelBlue_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pastelGreen.png b/website/assets/sprites/spritesmith/customize/skin/skin_pastelGreen.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pastelGreen.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pastelGreen.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pastelGreen_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_pastelGreen_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pastelGreen_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pastelGreen_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pastelOrange.png b/website/assets/sprites/spritesmith/customize/skin/skin_pastelOrange.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pastelOrange.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pastelOrange.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pastelOrange_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_pastelOrange_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pastelOrange_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pastelOrange_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pastelPink.png b/website/assets/sprites/spritesmith/customize/skin/skin_pastelPink.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pastelPink.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pastelPink.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pastelPink_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_pastelPink_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pastelPink_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pastelPink_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pastelPurple.png b/website/assets/sprites/spritesmith/customize/skin/skin_pastelPurple.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pastelPurple.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pastelPurple.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pastelPurple_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_pastelPurple_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pastelPurple_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pastelPurple_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pastelRainbowChevron.png b/website/assets/sprites/spritesmith/customize/skin/skin_pastelRainbowChevron.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pastelRainbowChevron.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pastelRainbowChevron.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pastelRainbowChevron_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_pastelRainbowChevron_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pastelRainbowChevron_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pastelRainbowChevron_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pastelRainbowDiagonal.png b/website/assets/sprites/spritesmith/customize/skin/skin_pastelRainbowDiagonal.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pastelRainbowDiagonal.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pastelRainbowDiagonal.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pastelRainbowDiagonal_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_pastelRainbowDiagonal_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pastelRainbowDiagonal_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pastelRainbowDiagonal_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pastelYellow.png b/website/assets/sprites/spritesmith/customize/skin/skin_pastelYellow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pastelYellow.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pastelYellow.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pastelYellow_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_pastelYellow_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pastelYellow_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pastelYellow_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pig.png b/website/assets/sprites/spritesmith/customize/skin/skin_pig.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pig.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pig.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pig_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_pig_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pig_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pig_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pumpkin.png b/website/assets/sprites/spritesmith/customize/skin/skin_pumpkin.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pumpkin.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pumpkin.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pumpkin2.png b/website/assets/sprites/spritesmith/customize/skin/skin_pumpkin2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pumpkin2.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pumpkin2.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pumpkin2_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_pumpkin2_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pumpkin2_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pumpkin2_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_pumpkin_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_pumpkin_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_pumpkin_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_pumpkin_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_rainbow.png b/website/assets/sprites/spritesmith/customize/skin/skin_rainbow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_rainbow.png rename to website/assets/sprites/spritesmith/customize/skin/skin_rainbow.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_rainbow_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_rainbow_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_rainbow_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_rainbow_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_reptile.png b/website/assets/sprites/spritesmith/customize/skin/skin_reptile.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_reptile.png rename to website/assets/sprites/spritesmith/customize/skin/skin_reptile.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_reptile_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_reptile_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_reptile_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_reptile_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_shadow.png b/website/assets/sprites/spritesmith/customize/skin/skin_shadow.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_shadow.png rename to website/assets/sprites/spritesmith/customize/skin/skin_shadow.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_shadow2.png b/website/assets/sprites/spritesmith/customize/skin/skin_shadow2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_shadow2.png rename to website/assets/sprites/spritesmith/customize/skin/skin_shadow2.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_shadow2_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_shadow2_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_shadow2_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_shadow2_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_shadow_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_shadow_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_shadow_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_shadow_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_shark.png b/website/assets/sprites/spritesmith/customize/skin/skin_shark.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_shark.png rename to website/assets/sprites/spritesmith/customize/skin/skin_shark.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_shark_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_shark_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_shark_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_shark_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_skeleton.png b/website/assets/sprites/spritesmith/customize/skin/skin_skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_skeleton.png rename to website/assets/sprites/spritesmith/customize/skin/skin_skeleton.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_skeleton2.png b/website/assets/sprites/spritesmith/customize/skin/skin_skeleton2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_skeleton2.png rename to website/assets/sprites/spritesmith/customize/skin/skin_skeleton2.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_skeleton2_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_skeleton2_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_skeleton2_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_skeleton2_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_skeleton_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_skeleton_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_skeleton_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_skeleton_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_tiger.png b/website/assets/sprites/spritesmith/customize/skin/skin_tiger.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_tiger.png rename to website/assets/sprites/spritesmith/customize/skin/skin_tiger.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_tiger_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_tiger_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_tiger_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_tiger_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_transparent.png b/website/assets/sprites/spritesmith/customize/skin/skin_transparent.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_transparent.png rename to website/assets/sprites/spritesmith/customize/skin/skin_transparent.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_transparent_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_transparent_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_transparent_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_transparent_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_tropicalwater.png b/website/assets/sprites/spritesmith/customize/skin/skin_tropicalwater.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_tropicalwater.png rename to website/assets/sprites/spritesmith/customize/skin/skin_tropicalwater.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_tropicalwater_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_tropicalwater_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_tropicalwater_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_tropicalwater_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_wolf.png b/website/assets/sprites/spritesmith/customize/skin/skin_wolf.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_wolf.png rename to website/assets/sprites/spritesmith/customize/skin/skin_wolf.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_wolf_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_wolf_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_wolf_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_wolf_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_zombie.png b/website/assets/sprites/spritesmith/customize/skin/skin_zombie.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_zombie.png rename to website/assets/sprites/spritesmith/customize/skin/skin_zombie.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_zombie2.png b/website/assets/sprites/spritesmith/customize/skin/skin_zombie2.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_zombie2.png rename to website/assets/sprites/spritesmith/customize/skin/skin_zombie2.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_zombie2_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_zombie2_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_zombie2_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_zombie2_sleep.png diff --git a/common/img/sprites/spritesmith/customize/skin/skin_zombie_sleep.png b/website/assets/sprites/spritesmith/customize/skin/skin_zombie_sleep.png similarity index 100% rename from common/img/sprites/spritesmith/customize/skin/skin_zombie_sleep.png rename to website/assets/sprites/spritesmith/customize/skin/skin_zombie_sleep.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_barristerRobes.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_barristerRobes.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_barristerRobes.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_barristerRobes.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_basicArcherArmor.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_basicArcherArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_basicArcherArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_basicArcherArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_cannoneerRags.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_cannoneerRags.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_cannoneerRags.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_cannoneerRags.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_crystalCrescentRobes.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_crystalCrescentRobes.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_crystalCrescentRobes.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_crystalCrescentRobes.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_dragonTamerArmor.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_dragonTamerArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_dragonTamerArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_dragonTamerArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_falconerArmor.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_falconerArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_falconerArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_falconerArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_gladiatorArmor.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_gladiatorArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_gladiatorArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_gladiatorArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_goldenToga.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_goldenToga.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_goldenToga.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_goldenToga.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_graduateRobe.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_graduateRobe.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_graduateRobe.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_graduateRobe.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_hornedIronArmor.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_hornedIronArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_hornedIronArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_hornedIronArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_jesterCostume.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_jesterCostume.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_jesterCostume.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_jesterCostume.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_lunarArmor.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_lunarArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_lunarArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_lunarArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_minerOveralls.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_minerOveralls.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_minerOveralls.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_minerOveralls.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_plagueDoctorOvercoat.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_plagueDoctorOvercoat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_plagueDoctorOvercoat.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_plagueDoctorOvercoat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_rancherRobes.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_rancherRobes.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_rancherRobes.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_rancherRobes.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_royalRobes.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_royalRobes.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_royalRobes.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_royalRobes.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_shepherdRobes.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_shepherdRobes.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_shepherdRobes.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_shepherdRobes.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_stripedSwimsuit.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_stripedSwimsuit.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_stripedSwimsuit.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_stripedSwimsuit.png diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_vermilionArcherArmor.png b/website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_vermilionArcherArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_vermilionArcherArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/broad_armor_armoire_vermilionArcherArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/eyewear_armoire_plagueDoctorMask.png b/website/assets/sprites/spritesmith/gear/armoire/eyewear_armoire_plagueDoctorMask.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/eyewear_armoire_plagueDoctorMask.png rename to website/assets/sprites/spritesmith/gear/armoire/eyewear_armoire_plagueDoctorMask.png diff --git a/common/img/sprites/spritesmith/gear/armoire/headAccessory_armoire_comicalArrow.png b/website/assets/sprites/spritesmith/gear/armoire/headAccessory_armoire_comicalArrow.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/headAccessory_armoire_comicalArrow.png rename to website/assets/sprites/spritesmith/gear/armoire/headAccessory_armoire_comicalArrow.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_barristerWig.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_barristerWig.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_barristerWig.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_barristerWig.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_basicArcherCap.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_basicArcherCap.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_basicArcherCap.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_basicArcherCap.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_blackCat.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_blackCat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_blackCat.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_blackCat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_blueFloppyHat.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_blueFloppyHat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_blueFloppyHat.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_blueFloppyHat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_blueHairbow.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_blueHairbow.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_blueHairbow.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_blueHairbow.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_cannoneerBandanna.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_cannoneerBandanna.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_cannoneerBandanna.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_cannoneerBandanna.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_crystalCrescentHat.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_crystalCrescentHat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_crystalCrescentHat.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_crystalCrescentHat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_dragonTamerHelm.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_dragonTamerHelm.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_dragonTamerHelm.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_dragonTamerHelm.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_falconerCap.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_falconerCap.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_falconerCap.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_falconerCap.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_gladiatorHelm.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_gladiatorHelm.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_gladiatorHelm.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_gladiatorHelm.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_goldenLaurels.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_goldenLaurels.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_goldenLaurels.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_goldenLaurels.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_graduateCap.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_graduateCap.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_graduateCap.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_graduateCap.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_greenFloppyHat.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_greenFloppyHat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_greenFloppyHat.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_greenFloppyHat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_hornedIronHelm.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_hornedIronHelm.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_hornedIronHelm.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_hornedIronHelm.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_jesterCap.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_jesterCap.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_jesterCap.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_jesterCap.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_lunarCrown.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_lunarCrown.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_lunarCrown.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_lunarCrown.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_minerHelmet.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_minerHelmet.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_minerHelmet.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_minerHelmet.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_orangeCat.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_orangeCat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_orangeCat.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_orangeCat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_plagueDoctorHat.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_plagueDoctorHat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_plagueDoctorHat.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_plagueDoctorHat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_rancherHat.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_rancherHat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_rancherHat.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_rancherHat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_redFloppyHat.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_redFloppyHat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_redFloppyHat.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_redFloppyHat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_redHairbow.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_redHairbow.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_redHairbow.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_redHairbow.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_royalCrown.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_royalCrown.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_royalCrown.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_royalCrown.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_shepherdHeaddress.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_shepherdHeaddress.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_shepherdHeaddress.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_shepherdHeaddress.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_vermilionArcherHelm.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_vermilionArcherHelm.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_vermilionArcherHelm.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_vermilionArcherHelm.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_violetFloppyHat.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_violetFloppyHat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_violetFloppyHat.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_violetFloppyHat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_yellowHairbow.png b/website/assets/sprites/spritesmith/gear/armoire/head_armoire_yellowHairbow.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/head_armoire_yellowHairbow.png rename to website/assets/sprites/spritesmith/gear/armoire/head_armoire_yellowHairbow.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shield_armoire_dragonTamerShield.png b/website/assets/sprites/spritesmith/gear/armoire/shield_armoire_dragonTamerShield.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shield_armoire_dragonTamerShield.png rename to website/assets/sprites/spritesmith/gear/armoire/shield_armoire_dragonTamerShield.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shield_armoire_floralBouquet.png b/website/assets/sprites/spritesmith/gear/armoire/shield_armoire_floralBouquet.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shield_armoire_floralBouquet.png rename to website/assets/sprites/spritesmith/gear/armoire/shield_armoire_floralBouquet.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shield_armoire_gladiatorShield.png b/website/assets/sprites/spritesmith/gear/armoire/shield_armoire_gladiatorShield.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shield_armoire_gladiatorShield.png rename to website/assets/sprites/spritesmith/gear/armoire/shield_armoire_gladiatorShield.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shield_armoire_midnightShield.png b/website/assets/sprites/spritesmith/gear/armoire/shield_armoire_midnightShield.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shield_armoire_midnightShield.png rename to website/assets/sprites/spritesmith/gear/armoire/shield_armoire_midnightShield.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shield_armoire_mysticLamp.png b/website/assets/sprites/spritesmith/gear/armoire/shield_armoire_mysticLamp.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shield_armoire_mysticLamp.png rename to website/assets/sprites/spritesmith/gear/armoire/shield_armoire_mysticLamp.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shield_armoire_perchingFalcon.png b/website/assets/sprites/spritesmith/gear/armoire/shield_armoire_perchingFalcon.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shield_armoire_perchingFalcon.png rename to website/assets/sprites/spritesmith/gear/armoire/shield_armoire_perchingFalcon.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shield_armoire_royalCane.png b/website/assets/sprites/spritesmith/gear/armoire/shield_armoire_royalCane.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shield_armoire_royalCane.png rename to website/assets/sprites/spritesmith/gear/armoire/shield_armoire_royalCane.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shield_armoire_sandyBucket.png b/website/assets/sprites/spritesmith/gear/armoire/shield_armoire_sandyBucket.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shield_armoire_sandyBucket.png rename to website/assets/sprites/spritesmith/gear/armoire/shield_armoire_sandyBucket.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_barristerRobes.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_barristerRobes.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_barristerRobes.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_barristerRobes.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_basicArcherArmor.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_basicArcherArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_basicArcherArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_basicArcherArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_cannoneerRags.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_cannoneerRags.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_cannoneerRags.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_cannoneerRags.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_crystalCrescentRobes.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_crystalCrescentRobes.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_crystalCrescentRobes.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_crystalCrescentRobes.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_dragonTamerArmor.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_dragonTamerArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_dragonTamerArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_dragonTamerArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_falconerArmor.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_falconerArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_falconerArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_falconerArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_gladiatorArmor.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_gladiatorArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_gladiatorArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_gladiatorArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_goldenToga.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_goldenToga.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_goldenToga.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_goldenToga.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_graduateRobe.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_graduateRobe.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_graduateRobe.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_graduateRobe.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_hornedIronArmor.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_hornedIronArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_hornedIronArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_hornedIronArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_jesterCostume.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_jesterCostume.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_jesterCostume.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_jesterCostume.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_lunarArmor.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_lunarArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_lunarArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_lunarArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_minerOveralls.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_minerOveralls.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_minerOveralls.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_minerOveralls.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_plagueDoctorOvercoat.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_plagueDoctorOvercoat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_plagueDoctorOvercoat.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_plagueDoctorOvercoat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_rancherRobes.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_rancherRobes.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_rancherRobes.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_rancherRobes.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_royalRobes.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_royalRobes.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_royalRobes.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_royalRobes.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_shepherdRobes.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_shepherdRobes.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_shepherdRobes.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_shepherdRobes.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_stripedSwimsuit.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_stripedSwimsuit.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_stripedSwimsuit.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_stripedSwimsuit.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_vermilionArcherArmor.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_vermilionArcherArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_vermilionArcherArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_vermilionArcherArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_eyewear_armoire_plagueDoctorMask.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_eyewear_armoire_plagueDoctorMask.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_eyewear_armoire_plagueDoctorMask.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_eyewear_armoire_plagueDoctorMask.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_headAccessory_armoire_comicalArrow.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_headAccessory_armoire_comicalArrow.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_headAccessory_armoire_comicalArrow.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_headAccessory_armoire_comicalArrow.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_barristerWig.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_barristerWig.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_barristerWig.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_barristerWig.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_basicArcherCap.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_basicArcherCap.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_basicArcherCap.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_basicArcherCap.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_blackCat.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_blackCat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_blackCat.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_blackCat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_blueFloppyHat.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_blueFloppyHat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_blueFloppyHat.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_blueFloppyHat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_blueHairbow.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_blueHairbow.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_blueHairbow.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_blueHairbow.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_cannoneerBandanna.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_cannoneerBandanna.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_cannoneerBandanna.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_cannoneerBandanna.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_crystalCrescentHat.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_crystalCrescentHat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_crystalCrescentHat.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_crystalCrescentHat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_dragonTamerHelm.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_dragonTamerHelm.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_dragonTamerHelm.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_dragonTamerHelm.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_falconerCap.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_falconerCap.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_falconerCap.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_falconerCap.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_gladiatorHelm.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_gladiatorHelm.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_gladiatorHelm.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_gladiatorHelm.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_goldenLaurels.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_goldenLaurels.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_goldenLaurels.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_goldenLaurels.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_graduateCap.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_graduateCap.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_graduateCap.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_graduateCap.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_greenFloppyHat.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_greenFloppyHat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_greenFloppyHat.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_greenFloppyHat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_hornedIronHelm.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_hornedIronHelm.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_hornedIronHelm.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_hornedIronHelm.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_jesterCap.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_jesterCap.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_jesterCap.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_jesterCap.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_lunarCrown.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_lunarCrown.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_lunarCrown.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_lunarCrown.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_minerHelmet.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_minerHelmet.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_minerHelmet.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_minerHelmet.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_orangeCat.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_orangeCat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_orangeCat.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_orangeCat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_plagueDoctorHat.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_plagueDoctorHat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_plagueDoctorHat.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_plagueDoctorHat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_rancherHat.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_rancherHat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_rancherHat.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_rancherHat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_redFloppyHat.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_redFloppyHat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_redFloppyHat.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_redFloppyHat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_redHairbow.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_redHairbow.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_redHairbow.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_redHairbow.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_royalCrown.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_royalCrown.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_royalCrown.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_royalCrown.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_shepherdHeaddress.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_shepherdHeaddress.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_shepherdHeaddress.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_shepherdHeaddress.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_vermilionArcherHelm.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_vermilionArcherHelm.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_vermilionArcherHelm.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_vermilionArcherHelm.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_violetFloppyHat.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_violetFloppyHat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_violetFloppyHat.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_violetFloppyHat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_yellowHairbow.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_yellowHairbow.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_yellowHairbow.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_yellowHairbow.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_dragonTamerShield.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_dragonTamerShield.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_dragonTamerShield.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_dragonTamerShield.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_floralBouquet.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_floralBouquet.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_floralBouquet.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_floralBouquet.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_gladiatorShield.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_gladiatorShield.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_gladiatorShield.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_gladiatorShield.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_midnightShield.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_midnightShield.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_midnightShield.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_midnightShield.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_mysticLamp.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_mysticLamp.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_mysticLamp.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_mysticLamp.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_perchingFalcon.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_perchingFalcon.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_perchingFalcon.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_perchingFalcon.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_royalCane.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_royalCane.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_royalCane.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_royalCane.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_sandyBucket.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_sandyBucket.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_sandyBucket.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_sandyBucket.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_barristerGavel.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_barristerGavel.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_barristerGavel.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_barristerGavel.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_basicCrossbow.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_basicCrossbow.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_basicCrossbow.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_basicCrossbow.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_basicLongbow.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_basicLongbow.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_basicLongbow.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_basicLongbow.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_batWand.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_batWand.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_batWand.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_batWand.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_blueLongbow.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_blueLongbow.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_blueLongbow.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_blueLongbow.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_cannon.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_cannon.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_cannon.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_cannon.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_crystalCrescentStaff.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_crystalCrescentStaff.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_crystalCrescentStaff.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_crystalCrescentStaff.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_glowingSpear.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_glowingSpear.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_glowingSpear.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_glowingSpear.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_goldWingStaff.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_goldWingStaff.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_goldWingStaff.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_goldWingStaff.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_habiticanDiploma.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_habiticanDiploma.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_habiticanDiploma.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_habiticanDiploma.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_ironCrook.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_ironCrook.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_ironCrook.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_ironCrook.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_jesterBaton.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_jesterBaton.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_jesterBaton.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_jesterBaton.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_lunarSceptre.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_lunarSceptre.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_lunarSceptre.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_lunarSceptre.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_miningPickax.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_miningPickax.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_miningPickax.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_miningPickax.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_mythmakerSword.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_mythmakerSword.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_mythmakerSword.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_mythmakerSword.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_rancherLasso.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_rancherLasso.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_rancherLasso.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_rancherLasso.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_sandySpade.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_sandySpade.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_sandySpade.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_sandySpade.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_shepherdsCrook.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_shepherdsCrook.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_shepherdsCrook.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_shepherdsCrook.png diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_vermilionArcherBow.png b/website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_vermilionArcherBow.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_vermilionArcherBow.png rename to website/assets/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_vermilionArcherBow.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_barristerRobes.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_barristerRobes.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_barristerRobes.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_barristerRobes.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_basicArcherArmor.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_basicArcherArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_basicArcherArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_basicArcherArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_cannoneerRags.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_cannoneerRags.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_cannoneerRags.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_cannoneerRags.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_crystalCrescentRobes.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_crystalCrescentRobes.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_crystalCrescentRobes.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_crystalCrescentRobes.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_dragonTamerArmor.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_dragonTamerArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_dragonTamerArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_dragonTamerArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_falconerArmor.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_falconerArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_falconerArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_falconerArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_gladiatorArmor.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_gladiatorArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_gladiatorArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_gladiatorArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_goldenToga.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_goldenToga.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_goldenToga.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_goldenToga.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_graduateRobe.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_graduateRobe.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_graduateRobe.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_graduateRobe.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_hornedIronArmor.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_hornedIronArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_hornedIronArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_hornedIronArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_jesterCostume.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_jesterCostume.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_jesterCostume.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_jesterCostume.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_lunarArmor.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_lunarArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_lunarArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_lunarArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_minerOveralls.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_minerOveralls.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_minerOveralls.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_minerOveralls.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_plagueDoctorOvercoat.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_plagueDoctorOvercoat.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_plagueDoctorOvercoat.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_plagueDoctorOvercoat.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_rancherRobes.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_rancherRobes.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_rancherRobes.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_rancherRobes.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_royalRobes.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_royalRobes.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_royalRobes.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_royalRobes.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_shepherdRobes.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_shepherdRobes.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_shepherdRobes.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_shepherdRobes.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_stripedSwimsuit.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_stripedSwimsuit.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_stripedSwimsuit.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_stripedSwimsuit.png diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_vermilionArcherArmor.png b/website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_vermilionArcherArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_vermilionArcherArmor.png rename to website/assets/sprites/spritesmith/gear/armoire/slim_armor_armoire_vermilionArcherArmor.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_barristerGavel.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_barristerGavel.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_barristerGavel.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_barristerGavel.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_basicCrossbow.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_basicCrossbow.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_basicCrossbow.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_basicCrossbow.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_basicLongbow.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_basicLongbow.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_basicLongbow.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_basicLongbow.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_batWand.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_batWand.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_batWand.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_batWand.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_blueLongbow.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_blueLongbow.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_blueLongbow.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_blueLongbow.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_cannon.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_cannon.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_cannon.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_cannon.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_crystalCrescentStaff.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_crystalCrescentStaff.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_crystalCrescentStaff.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_crystalCrescentStaff.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_glowingSpear.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_glowingSpear.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_glowingSpear.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_glowingSpear.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_goldWingStaff.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_goldWingStaff.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_goldWingStaff.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_goldWingStaff.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_habiticanDiploma.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_habiticanDiploma.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_habiticanDiploma.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_habiticanDiploma.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_ironCrook.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_ironCrook.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_ironCrook.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_ironCrook.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_jesterBaton.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_jesterBaton.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_jesterBaton.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_jesterBaton.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_lunarSceptre.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_lunarSceptre.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_lunarSceptre.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_lunarSceptre.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_miningPickax.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_miningPickax.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_miningPickax.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_miningPickax.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_mythmakerSword.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_mythmakerSword.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_mythmakerSword.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_mythmakerSword.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_rancherLasso.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_rancherLasso.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_rancherLasso.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_rancherLasso.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_sandySpade.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_sandySpade.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_sandySpade.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_sandySpade.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_shepherdsCrook.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_shepherdsCrook.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_shepherdsCrook.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_shepherdsCrook.png diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_vermilionArcherBow.png b/website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_vermilionArcherBow.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armoire/weapon_armoire_vermilionArcherBow.png rename to website/assets/sprites/spritesmith/gear/armoire/weapon_armoire_vermilionArcherBow.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_healer_1.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_healer_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_healer_1.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_healer_1.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_healer_2.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_healer_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_healer_2.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_healer_2.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_healer_3.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_healer_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_healer_3.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_healer_3.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_healer_4.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_healer_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_healer_4.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_healer_4.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_healer_5.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_healer_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_healer_5.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_healer_5.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_rogue_1.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_rogue_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_rogue_1.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_rogue_1.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_rogue_2.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_rogue_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_rogue_2.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_rogue_2.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_rogue_3.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_rogue_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_rogue_3.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_rogue_3.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_rogue_4.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_rogue_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_rogue_4.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_rogue_4.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_rogue_5.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_rogue_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_rogue_5.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_rogue_5.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_special_2.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_special_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_special_2.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_special_2.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_special_finnedOceanicArmor.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_special_finnedOceanicArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_special_finnedOceanicArmor.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_special_finnedOceanicArmor.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_warrior_1.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_warrior_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_warrior_1.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_warrior_1.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_warrior_2.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_warrior_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_warrior_2.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_warrior_2.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_warrior_3.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_warrior_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_warrior_3.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_warrior_3.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_warrior_4.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_warrior_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_warrior_4.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_warrior_4.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_warrior_5.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_warrior_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_warrior_5.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_warrior_5.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_wizard_1.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_wizard_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_wizard_1.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_wizard_1.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_wizard_2.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_wizard_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_wizard_2.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_wizard_2.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_wizard_3.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_wizard_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_wizard_3.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_wizard_3.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_wizard_4.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_wizard_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_wizard_4.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_wizard_4.png diff --git a/common/img/sprites/spritesmith/gear/armor/broad_armor_wizard_5.png b/website/assets/sprites/spritesmith/gear/armor/broad_armor_wizard_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/broad_armor_wizard_5.png rename to website/assets/sprites/spritesmith/gear/armor/broad_armor_wizard_5.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_healer_1.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_healer_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_healer_1.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_healer_1.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_healer_2.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_healer_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_healer_2.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_healer_2.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_healer_3.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_healer_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_healer_3.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_healer_3.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_healer_4.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_healer_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_healer_4.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_healer_4.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_healer_5.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_healer_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_healer_5.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_healer_5.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_1.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_1.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_1.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_2.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_2.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_2.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_3.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_3.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_3.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_4.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_4.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_4.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_5.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_5.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_rogue_5.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_special_0.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_special_0.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_special_0.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_special_0.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_special_1.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_special_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_special_1.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_special_1.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_special_2.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_special_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_special_2.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_special_2.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_special_finnedOceanicArmor.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_special_finnedOceanicArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_special_finnedOceanicArmor.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_special_finnedOceanicArmor.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_1.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_1.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_1.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_2.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_2.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_2.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_3.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_3.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_3.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_4.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_4.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_4.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_5.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_5.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_warrior_5.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_1.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_1.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_1.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_2.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_2.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_2.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_3.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_3.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_3.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_4.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_4.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_4.png diff --git a/common/img/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_5.png b/website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_5.png rename to website/assets/sprites/spritesmith/gear/armor/shop/shop_armor_wizard_5.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_healer_1.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_healer_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_healer_1.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_healer_1.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_healer_2.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_healer_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_healer_2.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_healer_2.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_healer_3.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_healer_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_healer_3.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_healer_3.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_healer_4.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_healer_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_healer_4.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_healer_4.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_healer_5.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_healer_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_healer_5.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_healer_5.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_rogue_1.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_rogue_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_rogue_1.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_rogue_1.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_rogue_2.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_rogue_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_rogue_2.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_rogue_2.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_rogue_3.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_rogue_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_rogue_3.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_rogue_3.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_rogue_4.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_rogue_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_rogue_4.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_rogue_4.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_rogue_5.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_rogue_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_rogue_5.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_rogue_5.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_special_2.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_special_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_special_2.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_special_2.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_special_finnedOceanicArmor.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_special_finnedOceanicArmor.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_special_finnedOceanicArmor.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_special_finnedOceanicArmor.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_warrior_1.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_warrior_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_warrior_1.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_warrior_1.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_warrior_2.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_warrior_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_warrior_2.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_warrior_2.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_warrior_3.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_warrior_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_warrior_3.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_warrior_3.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_warrior_4.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_warrior_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_warrior_4.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_warrior_4.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_warrior_5.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_warrior_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_warrior_5.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_warrior_5.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_wizard_1.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_wizard_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_wizard_1.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_wizard_1.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_wizard_2.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_wizard_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_wizard_2.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_wizard_2.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_wizard_3.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_wizard_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_wizard_3.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_wizard_3.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_wizard_4.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_wizard_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_wizard_4.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_wizard_4.png diff --git a/common/img/sprites/spritesmith/gear/armor/slim_armor_wizard_5.png b/website/assets/sprites/spritesmith/gear/armor/slim_armor_wizard_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/armor/slim_armor_wizard_5.png rename to website/assets/sprites/spritesmith/gear/armor/slim_armor_wizard_5.png diff --git a/common/img/sprites/spritesmith/gear/events/birthday/broad_armor_special_birthday.png b/website/assets/sprites/spritesmith/gear/events/birthday/broad_armor_special_birthday.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/birthday/broad_armor_special_birthday.png rename to website/assets/sprites/spritesmith/gear/events/birthday/broad_armor_special_birthday.png diff --git a/common/img/sprites/spritesmith/gear/events/birthday/broad_armor_special_birthday2015.png b/website/assets/sprites/spritesmith/gear/events/birthday/broad_armor_special_birthday2015.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/birthday/broad_armor_special_birthday2015.png rename to website/assets/sprites/spritesmith/gear/events/birthday/broad_armor_special_birthday2015.png diff --git a/common/img/sprites/spritesmith/gear/events/birthday/broad_armor_special_birthday2016.png b/website/assets/sprites/spritesmith/gear/events/birthday/broad_armor_special_birthday2016.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/birthday/broad_armor_special_birthday2016.png rename to website/assets/sprites/spritesmith/gear/events/birthday/broad_armor_special_birthday2016.png diff --git a/common/img/sprites/spritesmith/gear/events/birthday/shop_armor_special_birthday.png b/website/assets/sprites/spritesmith/gear/events/birthday/shop_armor_special_birthday.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/birthday/shop_armor_special_birthday.png rename to website/assets/sprites/spritesmith/gear/events/birthday/shop_armor_special_birthday.png diff --git a/common/img/sprites/spritesmith/gear/events/birthday/shop_armor_special_birthday2015.png b/website/assets/sprites/spritesmith/gear/events/birthday/shop_armor_special_birthday2015.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/birthday/shop_armor_special_birthday2015.png rename to website/assets/sprites/spritesmith/gear/events/birthday/shop_armor_special_birthday2015.png diff --git a/common/img/sprites/spritesmith/gear/events/birthday/shop_armor_special_birthday2016.png b/website/assets/sprites/spritesmith/gear/events/birthday/shop_armor_special_birthday2016.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/birthday/shop_armor_special_birthday2016.png rename to website/assets/sprites/spritesmith/gear/events/birthday/shop_armor_special_birthday2016.png diff --git a/common/img/sprites/spritesmith/gear/events/birthday/slim_armor_special_birthday.png b/website/assets/sprites/spritesmith/gear/events/birthday/slim_armor_special_birthday.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/birthday/slim_armor_special_birthday.png rename to website/assets/sprites/spritesmith/gear/events/birthday/slim_armor_special_birthday.png diff --git a/common/img/sprites/spritesmith/gear/events/birthday/slim_armor_special_birthday2015.png b/website/assets/sprites/spritesmith/gear/events/birthday/slim_armor_special_birthday2015.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/birthday/slim_armor_special_birthday2015.png rename to website/assets/sprites/spritesmith/gear/events/birthday/slim_armor_special_birthday2015.png diff --git a/common/img/sprites/spritesmith/gear/events/birthday/slim_armor_special_birthday2016.png b/website/assets/sprites/spritesmith/gear/events/birthday/slim_armor_special_birthday2016.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/birthday/slim_armor_special_birthday2016.png rename to website/assets/sprites/spritesmith/gear/events/birthday/slim_armor_special_birthday2016.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/broad_armor_special_fall2015Healer.png b/website/assets/sprites/spritesmith/gear/events/fall/broad_armor_special_fall2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/broad_armor_special_fall2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/fall/broad_armor_special_fall2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/broad_armor_special_fall2015Mage.png b/website/assets/sprites/spritesmith/gear/events/fall/broad_armor_special_fall2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/broad_armor_special_fall2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/fall/broad_armor_special_fall2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/broad_armor_special_fall2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/fall/broad_armor_special_fall2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/broad_armor_special_fall2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/broad_armor_special_fall2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/broad_armor_special_fall2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/fall/broad_armor_special_fall2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/broad_armor_special_fall2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/broad_armor_special_fall2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/broad_armor_special_fallHealer.png b/website/assets/sprites/spritesmith/gear/events/fall/broad_armor_special_fallHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/broad_armor_special_fallHealer.png rename to website/assets/sprites/spritesmith/gear/events/fall/broad_armor_special_fallHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/broad_armor_special_fallMage.png b/website/assets/sprites/spritesmith/gear/events/fall/broad_armor_special_fallMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/broad_armor_special_fallMage.png rename to website/assets/sprites/spritesmith/gear/events/fall/broad_armor_special_fallMage.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/broad_armor_special_fallRogue.png b/website/assets/sprites/spritesmith/gear/events/fall/broad_armor_special_fallRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/broad_armor_special_fallRogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/broad_armor_special_fallRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/broad_armor_special_fallWarrior.png b/website/assets/sprites/spritesmith/gear/events/fall/broad_armor_special_fallWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/broad_armor_special_fallWarrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/broad_armor_special_fallWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/head_special_fall2015Healer.png b/website/assets/sprites/spritesmith/gear/events/fall/head_special_fall2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/head_special_fall2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/fall/head_special_fall2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/head_special_fall2015Mage.png b/website/assets/sprites/spritesmith/gear/events/fall/head_special_fall2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/head_special_fall2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/fall/head_special_fall2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/head_special_fall2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/fall/head_special_fall2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/head_special_fall2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/head_special_fall2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/head_special_fall2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/fall/head_special_fall2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/head_special_fall2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/head_special_fall2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/head_special_fallHealer.png b/website/assets/sprites/spritesmith/gear/events/fall/head_special_fallHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/head_special_fallHealer.png rename to website/assets/sprites/spritesmith/gear/events/fall/head_special_fallHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/head_special_fallMage.png b/website/assets/sprites/spritesmith/gear/events/fall/head_special_fallMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/head_special_fallMage.png rename to website/assets/sprites/spritesmith/gear/events/fall/head_special_fallMage.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/head_special_fallRogue.png b/website/assets/sprites/spritesmith/gear/events/fall/head_special_fallRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/head_special_fallRogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/head_special_fallRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/head_special_fallWarrior.png b/website/assets/sprites/spritesmith/gear/events/fall/head_special_fallWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/head_special_fallWarrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/head_special_fallWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shield_special_fall2015Healer.png b/website/assets/sprites/spritesmith/gear/events/fall/shield_special_fall2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shield_special_fall2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/fall/shield_special_fall2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shield_special_fall2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/fall/shield_special_fall2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shield_special_fall2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/shield_special_fall2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shield_special_fall2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/fall/shield_special_fall2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shield_special_fall2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/shield_special_fall2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shield_special_fallHealer.png b/website/assets/sprites/spritesmith/gear/events/fall/shield_special_fallHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shield_special_fallHealer.png rename to website/assets/sprites/spritesmith/gear/events/fall/shield_special_fallHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shield_special_fallRogue.png b/website/assets/sprites/spritesmith/gear/events/fall/shield_special_fallRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shield_special_fallRogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/shield_special_fallRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shield_special_fallWarrior.png b/website/assets/sprites/spritesmith/gear/events/fall/shield_special_fallWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shield_special_fallWarrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/shield_special_fallWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fall2015Healer.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fall2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fall2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fall2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fall2015Mage.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fall2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fall2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fall2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fall2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fall2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fall2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fall2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fall2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fall2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fall2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fall2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fallHealer.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fallHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fallHealer.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fallHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fallMage.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fallMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fallMage.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fallMage.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fallRogue.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fallRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fallRogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fallRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fallWarrior.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fallWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fallWarrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_armor_special_fallWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fall2015Healer.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fall2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fall2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fall2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fall2015Mage.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fall2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fall2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fall2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fall2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fall2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fall2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fall2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fall2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fall2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fall2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fall2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fallHealer.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fallHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fallHealer.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fallHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fallMage.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fallMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fallMage.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fallMage.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fallRogue.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fallRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fallRogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fallRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fallWarrior.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fallWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fallWarrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_head_special_fallWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fall2015Healer.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fall2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fall2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fall2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fall2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fall2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fall2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fall2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fall2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fall2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fall2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fall2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fallHealer.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fallHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fallHealer.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fallHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fallRogue.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fallRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fallRogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fallRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fallWarrior.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fallWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fallWarrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_shield_special_fallWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fall2015Healer.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fall2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fall2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fall2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fall2015Mage.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fall2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fall2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fall2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fall2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fall2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fall2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fall2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fall2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fall2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fall2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fall2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fallHealer.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fallHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fallHealer.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fallHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fallMage.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fallMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fallMage.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fallMage.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fallRogue.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fallRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fallRogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fallRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fallWarrior.png b/website/assets/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fallWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fallWarrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/shop/shop_weapon_special_fallWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/slim_armor_special_fall2015Healer.png b/website/assets/sprites/spritesmith/gear/events/fall/slim_armor_special_fall2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/slim_armor_special_fall2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/fall/slim_armor_special_fall2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/slim_armor_special_fall2015Mage.png b/website/assets/sprites/spritesmith/gear/events/fall/slim_armor_special_fall2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/slim_armor_special_fall2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/fall/slim_armor_special_fall2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/slim_armor_special_fall2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/fall/slim_armor_special_fall2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/slim_armor_special_fall2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/slim_armor_special_fall2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/slim_armor_special_fall2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/fall/slim_armor_special_fall2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/slim_armor_special_fall2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/slim_armor_special_fall2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/slim_armor_special_fallHealer.png b/website/assets/sprites/spritesmith/gear/events/fall/slim_armor_special_fallHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/slim_armor_special_fallHealer.png rename to website/assets/sprites/spritesmith/gear/events/fall/slim_armor_special_fallHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/slim_armor_special_fallMage.png b/website/assets/sprites/spritesmith/gear/events/fall/slim_armor_special_fallMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/slim_armor_special_fallMage.png rename to website/assets/sprites/spritesmith/gear/events/fall/slim_armor_special_fallMage.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/slim_armor_special_fallRogue.png b/website/assets/sprites/spritesmith/gear/events/fall/slim_armor_special_fallRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/slim_armor_special_fallRogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/slim_armor_special_fallRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/slim_armor_special_fallWarrior.png b/website/assets/sprites/spritesmith/gear/events/fall/slim_armor_special_fallWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/slim_armor_special_fallWarrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/slim_armor_special_fallWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/weapon_special_fall2015Healer.png b/website/assets/sprites/spritesmith/gear/events/fall/weapon_special_fall2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/weapon_special_fall2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/fall/weapon_special_fall2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/weapon_special_fall2015Mage.png b/website/assets/sprites/spritesmith/gear/events/fall/weapon_special_fall2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/weapon_special_fall2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/fall/weapon_special_fall2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/weapon_special_fall2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/fall/weapon_special_fall2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/weapon_special_fall2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/weapon_special_fall2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/weapon_special_fall2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/fall/weapon_special_fall2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/weapon_special_fall2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/weapon_special_fall2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/weapon_special_fallHealer.png b/website/assets/sprites/spritesmith/gear/events/fall/weapon_special_fallHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/weapon_special_fallHealer.png rename to website/assets/sprites/spritesmith/gear/events/fall/weapon_special_fallHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/weapon_special_fallMage.png b/website/assets/sprites/spritesmith/gear/events/fall/weapon_special_fallMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/weapon_special_fallMage.png rename to website/assets/sprites/spritesmith/gear/events/fall/weapon_special_fallMage.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/weapon_special_fallRogue.png b/website/assets/sprites/spritesmith/gear/events/fall/weapon_special_fallRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/weapon_special_fallRogue.png rename to website/assets/sprites/spritesmith/gear/events/fall/weapon_special_fallRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/fall/weapon_special_fallWarrior.png b/website/assets/sprites/spritesmith/gear/events/fall/weapon_special_fallWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/fall/weapon_special_fallWarrior.png rename to website/assets/sprites/spritesmith/gear/events/fall/weapon_special_fallWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/gaymerx/broad_armor_special_gaymerx.png b/website/assets/sprites/spritesmith/gear/events/gaymerx/broad_armor_special_gaymerx.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/gaymerx/broad_armor_special_gaymerx.png rename to website/assets/sprites/spritesmith/gear/events/gaymerx/broad_armor_special_gaymerx.png diff --git a/common/img/sprites/spritesmith/gear/events/gaymerx/head_special_gaymerx.png b/website/assets/sprites/spritesmith/gear/events/gaymerx/head_special_gaymerx.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/gaymerx/head_special_gaymerx.png rename to website/assets/sprites/spritesmith/gear/events/gaymerx/head_special_gaymerx.png diff --git a/common/img/sprites/spritesmith/gear/events/gaymerx/shop_armor_special_gaymerx.png b/website/assets/sprites/spritesmith/gear/events/gaymerx/shop_armor_special_gaymerx.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/gaymerx/shop_armor_special_gaymerx.png rename to website/assets/sprites/spritesmith/gear/events/gaymerx/shop_armor_special_gaymerx.png diff --git a/common/img/sprites/spritesmith/gear/events/gaymerx/shop_head_special_gaymerx.png b/website/assets/sprites/spritesmith/gear/events/gaymerx/shop_head_special_gaymerx.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/gaymerx/shop_head_special_gaymerx.png rename to website/assets/sprites/spritesmith/gear/events/gaymerx/shop_head_special_gaymerx.png diff --git a/common/img/sprites/spritesmith/gear/events/gaymerx/slim_armor_special_gaymerx.png b/website/assets/sprites/spritesmith/gear/events/gaymerx/slim_armor_special_gaymerx.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/gaymerx/slim_armor_special_gaymerx.png rename to website/assets/sprites/spritesmith/gear/events/gaymerx/slim_armor_special_gaymerx.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201402/back_mystery_201402.png b/website/assets/sprites/spritesmith/gear/events/mystery_201402/back_mystery_201402.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201402/back_mystery_201402.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201402/back_mystery_201402.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201402/broad_armor_mystery_201402.png b/website/assets/sprites/spritesmith/gear/events/mystery_201402/broad_armor_mystery_201402.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201402/broad_armor_mystery_201402.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201402/broad_armor_mystery_201402.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201402/head_mystery_201402.png b/website/assets/sprites/spritesmith/gear/events/mystery_201402/head_mystery_201402.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201402/head_mystery_201402.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201402/head_mystery_201402.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201402/shop_armor_mystery_201402.png b/website/assets/sprites/spritesmith/gear/events/mystery_201402/shop_armor_mystery_201402.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201402/shop_armor_mystery_201402.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201402/shop_armor_mystery_201402.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201402/shop_back_mystery_201402.png b/website/assets/sprites/spritesmith/gear/events/mystery_201402/shop_back_mystery_201402.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201402/shop_back_mystery_201402.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201402/shop_back_mystery_201402.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201402/shop_head_mystery_201402.png b/website/assets/sprites/spritesmith/gear/events/mystery_201402/shop_head_mystery_201402.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201402/shop_head_mystery_201402.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201402/shop_head_mystery_201402.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201402/slim_armor_mystery_201402.png b/website/assets/sprites/spritesmith/gear/events/mystery_201402/slim_armor_mystery_201402.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201402/slim_armor_mystery_201402.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201402/slim_armor_mystery_201402.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201403/broad_armor_mystery_201403.png b/website/assets/sprites/spritesmith/gear/events/mystery_201403/broad_armor_mystery_201403.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201403/broad_armor_mystery_201403.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201403/broad_armor_mystery_201403.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201403/headAccessory_mystery_201403.png b/website/assets/sprites/spritesmith/gear/events/mystery_201403/headAccessory_mystery_201403.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201403/headAccessory_mystery_201403.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201403/headAccessory_mystery_201403.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201403/shop_armor_mystery_201403.png b/website/assets/sprites/spritesmith/gear/events/mystery_201403/shop_armor_mystery_201403.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201403/shop_armor_mystery_201403.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201403/shop_armor_mystery_201403.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201403/shop_headAccessory_mystery_201403.png b/website/assets/sprites/spritesmith/gear/events/mystery_201403/shop_headAccessory_mystery_201403.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201403/shop_headAccessory_mystery_201403.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201403/shop_headAccessory_mystery_201403.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201403/slim_armor_mystery_201403.png b/website/assets/sprites/spritesmith/gear/events/mystery_201403/slim_armor_mystery_201403.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201403/slim_armor_mystery_201403.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201403/slim_armor_mystery_201403.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201404/back_mystery_201404.png b/website/assets/sprites/spritesmith/gear/events/mystery_201404/back_mystery_201404.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201404/back_mystery_201404.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201404/back_mystery_201404.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201404/headAccessory_mystery_201404.png b/website/assets/sprites/spritesmith/gear/events/mystery_201404/headAccessory_mystery_201404.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201404/headAccessory_mystery_201404.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201404/headAccessory_mystery_201404.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201404/shop_back_mystery_201404.png b/website/assets/sprites/spritesmith/gear/events/mystery_201404/shop_back_mystery_201404.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201404/shop_back_mystery_201404.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201404/shop_back_mystery_201404.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201404/shop_headAccessory_mystery_201404.png b/website/assets/sprites/spritesmith/gear/events/mystery_201404/shop_headAccessory_mystery_201404.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201404/shop_headAccessory_mystery_201404.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201404/shop_headAccessory_mystery_201404.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201405/broad_armor_mystery_201405.png b/website/assets/sprites/spritesmith/gear/events/mystery_201405/broad_armor_mystery_201405.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201405/broad_armor_mystery_201405.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201405/broad_armor_mystery_201405.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201405/head_mystery_201405.png b/website/assets/sprites/spritesmith/gear/events/mystery_201405/head_mystery_201405.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201405/head_mystery_201405.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201405/head_mystery_201405.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201405/shop_armor_mystery_201405.png b/website/assets/sprites/spritesmith/gear/events/mystery_201405/shop_armor_mystery_201405.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201405/shop_armor_mystery_201405.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201405/shop_armor_mystery_201405.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201405/shop_head_mystery_201405.png b/website/assets/sprites/spritesmith/gear/events/mystery_201405/shop_head_mystery_201405.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201405/shop_head_mystery_201405.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201405/shop_head_mystery_201405.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201405/slim_armor_mystery_201405.png b/website/assets/sprites/spritesmith/gear/events/mystery_201405/slim_armor_mystery_201405.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201405/slim_armor_mystery_201405.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201405/slim_armor_mystery_201405.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201406/broad_armor_mystery_201406.png b/website/assets/sprites/spritesmith/gear/events/mystery_201406/broad_armor_mystery_201406.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201406/broad_armor_mystery_201406.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201406/broad_armor_mystery_201406.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201406/head_mystery_201406.png b/website/assets/sprites/spritesmith/gear/events/mystery_201406/head_mystery_201406.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201406/head_mystery_201406.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201406/head_mystery_201406.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201406/shop_armor_mystery_201406.png b/website/assets/sprites/spritesmith/gear/events/mystery_201406/shop_armor_mystery_201406.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201406/shop_armor_mystery_201406.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201406/shop_armor_mystery_201406.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201406/shop_head_mystery_201406.png b/website/assets/sprites/spritesmith/gear/events/mystery_201406/shop_head_mystery_201406.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201406/shop_head_mystery_201406.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201406/shop_head_mystery_201406.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201406/slim_armor_mystery_201406.png b/website/assets/sprites/spritesmith/gear/events/mystery_201406/slim_armor_mystery_201406.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201406/slim_armor_mystery_201406.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201406/slim_armor_mystery_201406.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201407/broad_armor_mystery_201407.png b/website/assets/sprites/spritesmith/gear/events/mystery_201407/broad_armor_mystery_201407.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201407/broad_armor_mystery_201407.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201407/broad_armor_mystery_201407.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201407/head_mystery_201407.png b/website/assets/sprites/spritesmith/gear/events/mystery_201407/head_mystery_201407.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201407/head_mystery_201407.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201407/head_mystery_201407.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201407/shop_armor_mystery_201407.png b/website/assets/sprites/spritesmith/gear/events/mystery_201407/shop_armor_mystery_201407.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201407/shop_armor_mystery_201407.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201407/shop_armor_mystery_201407.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201407/shop_head_mystery_201407.png b/website/assets/sprites/spritesmith/gear/events/mystery_201407/shop_head_mystery_201407.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201407/shop_head_mystery_201407.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201407/shop_head_mystery_201407.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201407/slim_armor_mystery_201407.png b/website/assets/sprites/spritesmith/gear/events/mystery_201407/slim_armor_mystery_201407.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201407/slim_armor_mystery_201407.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201407/slim_armor_mystery_201407.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201408/broad_armor_mystery_201408.png b/website/assets/sprites/spritesmith/gear/events/mystery_201408/broad_armor_mystery_201408.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201408/broad_armor_mystery_201408.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201408/broad_armor_mystery_201408.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201408/head_mystery_201408.png b/website/assets/sprites/spritesmith/gear/events/mystery_201408/head_mystery_201408.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201408/head_mystery_201408.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201408/head_mystery_201408.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201408/shop_armor_mystery_201408.png b/website/assets/sprites/spritesmith/gear/events/mystery_201408/shop_armor_mystery_201408.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201408/shop_armor_mystery_201408.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201408/shop_armor_mystery_201408.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201408/shop_head_mystery_201408.png b/website/assets/sprites/spritesmith/gear/events/mystery_201408/shop_head_mystery_201408.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201408/shop_head_mystery_201408.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201408/shop_head_mystery_201408.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201408/slim_armor_mystery_201408.png b/website/assets/sprites/spritesmith/gear/events/mystery_201408/slim_armor_mystery_201408.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201408/slim_armor_mystery_201408.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201408/slim_armor_mystery_201408.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201409/broad_armor_mystery_201409.png b/website/assets/sprites/spritesmith/gear/events/mystery_201409/broad_armor_mystery_201409.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201409/broad_armor_mystery_201409.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201409/broad_armor_mystery_201409.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201409/headAccessory_mystery_201409.png b/website/assets/sprites/spritesmith/gear/events/mystery_201409/headAccessory_mystery_201409.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201409/headAccessory_mystery_201409.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201409/headAccessory_mystery_201409.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201409/shop_armor_mystery_201409.png b/website/assets/sprites/spritesmith/gear/events/mystery_201409/shop_armor_mystery_201409.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201409/shop_armor_mystery_201409.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201409/shop_armor_mystery_201409.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201409/shop_headAccessory_mystery_201409.png b/website/assets/sprites/spritesmith/gear/events/mystery_201409/shop_headAccessory_mystery_201409.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201409/shop_headAccessory_mystery_201409.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201409/shop_headAccessory_mystery_201409.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201409/slim_armor_mystery_201409.png b/website/assets/sprites/spritesmith/gear/events/mystery_201409/slim_armor_mystery_201409.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201409/slim_armor_mystery_201409.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201409/slim_armor_mystery_201409.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201410/back_mystery_201410.png b/website/assets/sprites/spritesmith/gear/events/mystery_201410/back_mystery_201410.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201410/back_mystery_201410.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201410/back_mystery_201410.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201410/broad_armor_mystery_201410.png b/website/assets/sprites/spritesmith/gear/events/mystery_201410/broad_armor_mystery_201410.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201410/broad_armor_mystery_201410.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201410/broad_armor_mystery_201410.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201410/shop_armor_mystery_201410.png b/website/assets/sprites/spritesmith/gear/events/mystery_201410/shop_armor_mystery_201410.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201410/shop_armor_mystery_201410.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201410/shop_armor_mystery_201410.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201410/shop_back_mystery_201410.png b/website/assets/sprites/spritesmith/gear/events/mystery_201410/shop_back_mystery_201410.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201410/shop_back_mystery_201410.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201410/shop_back_mystery_201410.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201410/slim_armor_mystery_201410.png b/website/assets/sprites/spritesmith/gear/events/mystery_201410/slim_armor_mystery_201410.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201410/slim_armor_mystery_201410.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201410/slim_armor_mystery_201410.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201411/head_mystery_201411.png b/website/assets/sprites/spritesmith/gear/events/mystery_201411/head_mystery_201411.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201411/head_mystery_201411.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201411/head_mystery_201411.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201411/shop_head_mystery_201411.png b/website/assets/sprites/spritesmith/gear/events/mystery_201411/shop_head_mystery_201411.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201411/shop_head_mystery_201411.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201411/shop_head_mystery_201411.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201411/shop_weapon_mystery_201411.png b/website/assets/sprites/spritesmith/gear/events/mystery_201411/shop_weapon_mystery_201411.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201411/shop_weapon_mystery_201411.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201411/shop_weapon_mystery_201411.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201411/weapon_mystery_201411.png b/website/assets/sprites/spritesmith/gear/events/mystery_201411/weapon_mystery_201411.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201411/weapon_mystery_201411.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201411/weapon_mystery_201411.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201412/broad_armor_mystery_201412.png b/website/assets/sprites/spritesmith/gear/events/mystery_201412/broad_armor_mystery_201412.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201412/broad_armor_mystery_201412.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201412/broad_armor_mystery_201412.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201412/head_mystery_201412.png b/website/assets/sprites/spritesmith/gear/events/mystery_201412/head_mystery_201412.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201412/head_mystery_201412.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201412/head_mystery_201412.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201412/shop_armor_mystery_201412.png b/website/assets/sprites/spritesmith/gear/events/mystery_201412/shop_armor_mystery_201412.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201412/shop_armor_mystery_201412.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201412/shop_armor_mystery_201412.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201412/shop_head_mystery_201412.png b/website/assets/sprites/spritesmith/gear/events/mystery_201412/shop_head_mystery_201412.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201412/shop_head_mystery_201412.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201412/shop_head_mystery_201412.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201412/slim_armor_mystery_201412.png b/website/assets/sprites/spritesmith/gear/events/mystery_201412/slim_armor_mystery_201412.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201412/slim_armor_mystery_201412.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201412/slim_armor_mystery_201412.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201501/broad_armor_mystery_201501.png b/website/assets/sprites/spritesmith/gear/events/mystery_201501/broad_armor_mystery_201501.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201501/broad_armor_mystery_201501.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201501/broad_armor_mystery_201501.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201501/head_mystery_201501.png b/website/assets/sprites/spritesmith/gear/events/mystery_201501/head_mystery_201501.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201501/head_mystery_201501.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201501/head_mystery_201501.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201501/shop_armor_mystery_201501.png b/website/assets/sprites/spritesmith/gear/events/mystery_201501/shop_armor_mystery_201501.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201501/shop_armor_mystery_201501.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201501/shop_armor_mystery_201501.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201501/shop_head_mystery_201501.png b/website/assets/sprites/spritesmith/gear/events/mystery_201501/shop_head_mystery_201501.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201501/shop_head_mystery_201501.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201501/shop_head_mystery_201501.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201501/slim_armor_mystery_201501.png b/website/assets/sprites/spritesmith/gear/events/mystery_201501/slim_armor_mystery_201501.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201501/slim_armor_mystery_201501.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201501/slim_armor_mystery_201501.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201502/headAccessory_mystery_201502.png b/website/assets/sprites/spritesmith/gear/events/mystery_201502/headAccessory_mystery_201502.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201502/headAccessory_mystery_201502.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201502/headAccessory_mystery_201502.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201502/shop_headAccessory_mystery_201502.png b/website/assets/sprites/spritesmith/gear/events/mystery_201502/shop_headAccessory_mystery_201502.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201502/shop_headAccessory_mystery_201502.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201502/shop_headAccessory_mystery_201502.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201502/shop_weapon_mystery_201502.png b/website/assets/sprites/spritesmith/gear/events/mystery_201502/shop_weapon_mystery_201502.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201502/shop_weapon_mystery_201502.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201502/shop_weapon_mystery_201502.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201502/weapon_mystery_201502.png b/website/assets/sprites/spritesmith/gear/events/mystery_201502/weapon_mystery_201502.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201502/weapon_mystery_201502.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201502/weapon_mystery_201502.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201503/broad_armor_mystery_201503.png b/website/assets/sprites/spritesmith/gear/events/mystery_201503/broad_armor_mystery_201503.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201503/broad_armor_mystery_201503.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201503/broad_armor_mystery_201503.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201503/eyewear_mystery_201503.png b/website/assets/sprites/spritesmith/gear/events/mystery_201503/eyewear_mystery_201503.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201503/eyewear_mystery_201503.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201503/eyewear_mystery_201503.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201503/shop_armor_mystery_201503.png b/website/assets/sprites/spritesmith/gear/events/mystery_201503/shop_armor_mystery_201503.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201503/shop_armor_mystery_201503.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201503/shop_armor_mystery_201503.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201503/shop_eyewear_mystery_201503.png b/website/assets/sprites/spritesmith/gear/events/mystery_201503/shop_eyewear_mystery_201503.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201503/shop_eyewear_mystery_201503.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201503/shop_eyewear_mystery_201503.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201503/slim_armor_mystery_201503.png b/website/assets/sprites/spritesmith/gear/events/mystery_201503/slim_armor_mystery_201503.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201503/slim_armor_mystery_201503.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201503/slim_armor_mystery_201503.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201504/back_mystery_201504.png b/website/assets/sprites/spritesmith/gear/events/mystery_201504/back_mystery_201504.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201504/back_mystery_201504.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201504/back_mystery_201504.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201504/broad_armor_mystery_201504.png b/website/assets/sprites/spritesmith/gear/events/mystery_201504/broad_armor_mystery_201504.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201504/broad_armor_mystery_201504.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201504/broad_armor_mystery_201504.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201504/shop_armor_mystery_201504.png b/website/assets/sprites/spritesmith/gear/events/mystery_201504/shop_armor_mystery_201504.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201504/shop_armor_mystery_201504.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201504/shop_armor_mystery_201504.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201504/shop_back_mystery_201504.png b/website/assets/sprites/spritesmith/gear/events/mystery_201504/shop_back_mystery_201504.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201504/shop_back_mystery_201504.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201504/shop_back_mystery_201504.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201504/slim_armor_mystery_201504.png b/website/assets/sprites/spritesmith/gear/events/mystery_201504/slim_armor_mystery_201504.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201504/slim_armor_mystery_201504.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201504/slim_armor_mystery_201504.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201505/head_mystery_201505.png b/website/assets/sprites/spritesmith/gear/events/mystery_201505/head_mystery_201505.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201505/head_mystery_201505.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201505/head_mystery_201505.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201505/shop_head_mystery_201505.png b/website/assets/sprites/spritesmith/gear/events/mystery_201505/shop_head_mystery_201505.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201505/shop_head_mystery_201505.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201505/shop_head_mystery_201505.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201505/shop_weapon_mystery_201505.png b/website/assets/sprites/spritesmith/gear/events/mystery_201505/shop_weapon_mystery_201505.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201505/shop_weapon_mystery_201505.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201505/shop_weapon_mystery_201505.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201505/weapon_mystery_201505.png b/website/assets/sprites/spritesmith/gear/events/mystery_201505/weapon_mystery_201505.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201505/weapon_mystery_201505.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201505/weapon_mystery_201505.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201506/broad_armor_mystery_201506.png b/website/assets/sprites/spritesmith/gear/events/mystery_201506/broad_armor_mystery_201506.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201506/broad_armor_mystery_201506.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201506/broad_armor_mystery_201506.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201506/eyewear_mystery_201506.png b/website/assets/sprites/spritesmith/gear/events/mystery_201506/eyewear_mystery_201506.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201506/eyewear_mystery_201506.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201506/eyewear_mystery_201506.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201506/shop_armor_mystery_201506.png b/website/assets/sprites/spritesmith/gear/events/mystery_201506/shop_armor_mystery_201506.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201506/shop_armor_mystery_201506.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201506/shop_armor_mystery_201506.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201506/shop_eyewear_mystery_201506.png b/website/assets/sprites/spritesmith/gear/events/mystery_201506/shop_eyewear_mystery_201506.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201506/shop_eyewear_mystery_201506.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201506/shop_eyewear_mystery_201506.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201506/slim_armor_mystery_201506.png b/website/assets/sprites/spritesmith/gear/events/mystery_201506/slim_armor_mystery_201506.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201506/slim_armor_mystery_201506.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201506/slim_armor_mystery_201506.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201507/back_mystery_201507.png b/website/assets/sprites/spritesmith/gear/events/mystery_201507/back_mystery_201507.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201507/back_mystery_201507.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201507/back_mystery_201507.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201507/eyewear_mystery_201507.png b/website/assets/sprites/spritesmith/gear/events/mystery_201507/eyewear_mystery_201507.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201507/eyewear_mystery_201507.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201507/eyewear_mystery_201507.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201507/shop_back_mystery_201507.png b/website/assets/sprites/spritesmith/gear/events/mystery_201507/shop_back_mystery_201507.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201507/shop_back_mystery_201507.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201507/shop_back_mystery_201507.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201507/shop_eyewear_mystery_201507.png b/website/assets/sprites/spritesmith/gear/events/mystery_201507/shop_eyewear_mystery_201507.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201507/shop_eyewear_mystery_201507.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201507/shop_eyewear_mystery_201507.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201508/broad_armor_mystery_201508.png b/website/assets/sprites/spritesmith/gear/events/mystery_201508/broad_armor_mystery_201508.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201508/broad_armor_mystery_201508.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201508/broad_armor_mystery_201508.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201508/head_mystery_201508.png b/website/assets/sprites/spritesmith/gear/events/mystery_201508/head_mystery_201508.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201508/head_mystery_201508.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201508/head_mystery_201508.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201508/shop_armor_mystery_201508.png b/website/assets/sprites/spritesmith/gear/events/mystery_201508/shop_armor_mystery_201508.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201508/shop_armor_mystery_201508.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201508/shop_armor_mystery_201508.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201508/shop_head_mystery_201508.png b/website/assets/sprites/spritesmith/gear/events/mystery_201508/shop_head_mystery_201508.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201508/shop_head_mystery_201508.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201508/shop_head_mystery_201508.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201508/slim_armor_mystery_201508.png b/website/assets/sprites/spritesmith/gear/events/mystery_201508/slim_armor_mystery_201508.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201508/slim_armor_mystery_201508.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201508/slim_armor_mystery_201508.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201509/broad_armor_mystery_201509.png b/website/assets/sprites/spritesmith/gear/events/mystery_201509/broad_armor_mystery_201509.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201509/broad_armor_mystery_201509.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201509/broad_armor_mystery_201509.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201509/head_mystery_201509.png b/website/assets/sprites/spritesmith/gear/events/mystery_201509/head_mystery_201509.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201509/head_mystery_201509.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201509/head_mystery_201509.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201509/shop_armor_mystery_201509.png b/website/assets/sprites/spritesmith/gear/events/mystery_201509/shop_armor_mystery_201509.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201509/shop_armor_mystery_201509.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201509/shop_armor_mystery_201509.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201509/shop_head_mystery_201509.png b/website/assets/sprites/spritesmith/gear/events/mystery_201509/shop_head_mystery_201509.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201509/shop_head_mystery_201509.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201509/shop_head_mystery_201509.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201509/slim_armor_mystery_201509.png b/website/assets/sprites/spritesmith/gear/events/mystery_201509/slim_armor_mystery_201509.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201509/slim_armor_mystery_201509.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201509/slim_armor_mystery_201509.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201510/back_mystery_201510.png b/website/assets/sprites/spritesmith/gear/events/mystery_201510/back_mystery_201510.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201510/back_mystery_201510.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201510/back_mystery_201510.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201510/headAccessory_mystery_201510.png b/website/assets/sprites/spritesmith/gear/events/mystery_201510/headAccessory_mystery_201510.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201510/headAccessory_mystery_201510.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201510/headAccessory_mystery_201510.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201510/shop_back_mystery_201510.png b/website/assets/sprites/spritesmith/gear/events/mystery_201510/shop_back_mystery_201510.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201510/shop_back_mystery_201510.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201510/shop_back_mystery_201510.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201510/shop_headAccessory_mystery_201510.png b/website/assets/sprites/spritesmith/gear/events/mystery_201510/shop_headAccessory_mystery_201510.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201510/shop_headAccessory_mystery_201510.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201510/shop_headAccessory_mystery_201510.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201511/broad_armor_mystery_201511.png b/website/assets/sprites/spritesmith/gear/events/mystery_201511/broad_armor_mystery_201511.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201511/broad_armor_mystery_201511.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201511/broad_armor_mystery_201511.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201511/head_mystery_201511.png b/website/assets/sprites/spritesmith/gear/events/mystery_201511/head_mystery_201511.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201511/head_mystery_201511.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201511/head_mystery_201511.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201511/shop_armor_mystery_201511.png b/website/assets/sprites/spritesmith/gear/events/mystery_201511/shop_armor_mystery_201511.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201511/shop_armor_mystery_201511.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201511/shop_armor_mystery_201511.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201511/shop_head_mystery_201511.png b/website/assets/sprites/spritesmith/gear/events/mystery_201511/shop_head_mystery_201511.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201511/shop_head_mystery_201511.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201511/shop_head_mystery_201511.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201511/slim_armor_mystery_201511.png b/website/assets/sprites/spritesmith/gear/events/mystery_201511/slim_armor_mystery_201511.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201511/slim_armor_mystery_201511.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201511/slim_armor_mystery_201511.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201512/broad_armor_mystery_201512.png b/website/assets/sprites/spritesmith/gear/events/mystery_201512/broad_armor_mystery_201512.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201512/broad_armor_mystery_201512.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201512/broad_armor_mystery_201512.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201512/head_mystery_201512.png b/website/assets/sprites/spritesmith/gear/events/mystery_201512/head_mystery_201512.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201512/head_mystery_201512.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201512/head_mystery_201512.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201512/shop_armor_mystery_201512.png b/website/assets/sprites/spritesmith/gear/events/mystery_201512/shop_armor_mystery_201512.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201512/shop_armor_mystery_201512.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201512/shop_armor_mystery_201512.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201512/shop_head_mystery_201512.png b/website/assets/sprites/spritesmith/gear/events/mystery_201512/shop_head_mystery_201512.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201512/shop_head_mystery_201512.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201512/shop_head_mystery_201512.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201512/slim_armor_mystery_201512.png b/website/assets/sprites/spritesmith/gear/events/mystery_201512/slim_armor_mystery_201512.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201512/slim_armor_mystery_201512.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201512/slim_armor_mystery_201512.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201601/head_mystery_201601.png b/website/assets/sprites/spritesmith/gear/events/mystery_201601/head_mystery_201601.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201601/head_mystery_201601.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201601/head_mystery_201601.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201601/shield_mystery_201601.png b/website/assets/sprites/spritesmith/gear/events/mystery_201601/shield_mystery_201601.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201601/shield_mystery_201601.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201601/shield_mystery_201601.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201601/shop_head_mystery_201601.png b/website/assets/sprites/spritesmith/gear/events/mystery_201601/shop_head_mystery_201601.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201601/shop_head_mystery_201601.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201601/shop_head_mystery_201601.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201601/shop_shield_mystery_201601.png b/website/assets/sprites/spritesmith/gear/events/mystery_201601/shop_shield_mystery_201601.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201601/shop_shield_mystery_201601.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201601/shop_shield_mystery_201601.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201602/back_mystery_201602.png b/website/assets/sprites/spritesmith/gear/events/mystery_201602/back_mystery_201602.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201602/back_mystery_201602.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201602/back_mystery_201602.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201602/head_mystery_201602.png b/website/assets/sprites/spritesmith/gear/events/mystery_201602/head_mystery_201602.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201602/head_mystery_201602.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201602/head_mystery_201602.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201602/shop_back_mystery_201602.png b/website/assets/sprites/spritesmith/gear/events/mystery_201602/shop_back_mystery_201602.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201602/shop_back_mystery_201602.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201602/shop_back_mystery_201602.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201602/shop_head_mystery_201602.png b/website/assets/sprites/spritesmith/gear/events/mystery_201602/shop_head_mystery_201602.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201602/shop_head_mystery_201602.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201602/shop_head_mystery_201602.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201603/broad_armor_mystery_201603.png b/website/assets/sprites/spritesmith/gear/events/mystery_201603/broad_armor_mystery_201603.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201603/broad_armor_mystery_201603.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201603/broad_armor_mystery_201603.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201603/head_mystery_201603.png b/website/assets/sprites/spritesmith/gear/events/mystery_201603/head_mystery_201603.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201603/head_mystery_201603.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201603/head_mystery_201603.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201603/shop_armor_mystery_201603.png b/website/assets/sprites/spritesmith/gear/events/mystery_201603/shop_armor_mystery_201603.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201603/shop_armor_mystery_201603.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201603/shop_armor_mystery_201603.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201603/shop_head_mystery_201603.png b/website/assets/sprites/spritesmith/gear/events/mystery_201603/shop_head_mystery_201603.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201603/shop_head_mystery_201603.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201603/shop_head_mystery_201603.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201603/slim_armor_mystery_201603.png b/website/assets/sprites/spritesmith/gear/events/mystery_201603/slim_armor_mystery_201603.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201603/slim_armor_mystery_201603.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201603/slim_armor_mystery_201603.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201604/broad_armor_mystery_201604.png b/website/assets/sprites/spritesmith/gear/events/mystery_201604/broad_armor_mystery_201604.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201604/broad_armor_mystery_201604.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201604/broad_armor_mystery_201604.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201604/head_mystery_201604.png b/website/assets/sprites/spritesmith/gear/events/mystery_201604/head_mystery_201604.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201604/head_mystery_201604.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201604/head_mystery_201604.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201604/shop_armor_mystery_201604.png b/website/assets/sprites/spritesmith/gear/events/mystery_201604/shop_armor_mystery_201604.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201604/shop_armor_mystery_201604.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201604/shop_armor_mystery_201604.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201604/shop_head_mystery_201604.png b/website/assets/sprites/spritesmith/gear/events/mystery_201604/shop_head_mystery_201604.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201604/shop_head_mystery_201604.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201604/shop_head_mystery_201604.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201604/slim_armor_mystery_201604.png b/website/assets/sprites/spritesmith/gear/events/mystery_201604/slim_armor_mystery_201604.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201604/slim_armor_mystery_201604.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201604/slim_armor_mystery_201604.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201605/broad_armor_mystery_201605.png b/website/assets/sprites/spritesmith/gear/events/mystery_201605/broad_armor_mystery_201605.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201605/broad_armor_mystery_201605.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201605/broad_armor_mystery_201605.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201605/head_mystery_201605.png b/website/assets/sprites/spritesmith/gear/events/mystery_201605/head_mystery_201605.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201605/head_mystery_201605.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201605/head_mystery_201605.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201605/shop_armor_mystery_201605.png b/website/assets/sprites/spritesmith/gear/events/mystery_201605/shop_armor_mystery_201605.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201605/shop_armor_mystery_201605.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201605/shop_armor_mystery_201605.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201605/shop_head_mystery_201605.png b/website/assets/sprites/spritesmith/gear/events/mystery_201605/shop_head_mystery_201605.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201605/shop_head_mystery_201605.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201605/shop_head_mystery_201605.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201605/slim_armor_mystery_201605.png b/website/assets/sprites/spritesmith/gear/events/mystery_201605/slim_armor_mystery_201605.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201605/slim_armor_mystery_201605.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201605/slim_armor_mystery_201605.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201606/broad_armor_mystery_201606.png b/website/assets/sprites/spritesmith/gear/events/mystery_201606/broad_armor_mystery_201606.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201606/broad_armor_mystery_201606.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201606/broad_armor_mystery_201606.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201606/head_mystery_201606.png b/website/assets/sprites/spritesmith/gear/events/mystery_201606/head_mystery_201606.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201606/head_mystery_201606.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201606/head_mystery_201606.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201606/shop_armor_mystery_201606.png b/website/assets/sprites/spritesmith/gear/events/mystery_201606/shop_armor_mystery_201606.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201606/shop_armor_mystery_201606.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201606/shop_armor_mystery_201606.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201606/shop_head_mystery_201606.png b/website/assets/sprites/spritesmith/gear/events/mystery_201606/shop_head_mystery_201606.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201606/shop_head_mystery_201606.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201606/shop_head_mystery_201606.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201606/slim_armor_mystery_201606.png b/website/assets/sprites/spritesmith/gear/events/mystery_201606/slim_armor_mystery_201606.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201606/slim_armor_mystery_201606.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201606/slim_armor_mystery_201606.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201607/broad_armor_mystery_201607.png b/website/assets/sprites/spritesmith/gear/events/mystery_201607/broad_armor_mystery_201607.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201607/broad_armor_mystery_201607.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201607/broad_armor_mystery_201607.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201607/head_mystery_201607.png b/website/assets/sprites/spritesmith/gear/events/mystery_201607/head_mystery_201607.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201607/head_mystery_201607.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201607/head_mystery_201607.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201607/shop_armor_mystery_201607.png b/website/assets/sprites/spritesmith/gear/events/mystery_201607/shop_armor_mystery_201607.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201607/shop_armor_mystery_201607.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201607/shop_armor_mystery_201607.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201607/shop_head_mystery_201607.png b/website/assets/sprites/spritesmith/gear/events/mystery_201607/shop_head_mystery_201607.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201607/shop_head_mystery_201607.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201607/shop_head_mystery_201607.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201607/slim_armor_mystery_201607.png b/website/assets/sprites/spritesmith/gear/events/mystery_201607/slim_armor_mystery_201607.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201607/slim_armor_mystery_201607.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201607/slim_armor_mystery_201607.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201608/back_mystery_201608.png b/website/assets/sprites/spritesmith/gear/events/mystery_201608/back_mystery_201608.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201608/back_mystery_201608.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201608/back_mystery_201608.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201608/head_mystery_201608.png b/website/assets/sprites/spritesmith/gear/events/mystery_201608/head_mystery_201608.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201608/head_mystery_201608.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201608/head_mystery_201608.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201608/shop_back_mystery_201608.png b/website/assets/sprites/spritesmith/gear/events/mystery_201608/shop_back_mystery_201608.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201608/shop_back_mystery_201608.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201608/shop_back_mystery_201608.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_201608/shop_head_mystery_201608.png b/website/assets/sprites/spritesmith/gear/events/mystery_201608/shop_head_mystery_201608.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_201608/shop_head_mystery_201608.png rename to website/assets/sprites/spritesmith/gear/events/mystery_201608/shop_head_mystery_201608.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/broad_armor_mystery_301404.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/broad_armor_mystery_301404.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/broad_armor_mystery_301404.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/broad_armor_mystery_301404.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/eyewear_mystery_301404.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/eyewear_mystery_301404.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/eyewear_mystery_301404.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/eyewear_mystery_301404.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/head_mystery_301404.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/head_mystery_301404.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/head_mystery_301404.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/head_mystery_301404.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/shop_armor_mystery_301404.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/shop_armor_mystery_301404.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/shop_armor_mystery_301404.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/shop_armor_mystery_301404.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/shop_eyewear_mystery_301404.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/shop_eyewear_mystery_301404.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/shop_eyewear_mystery_301404.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/shop_eyewear_mystery_301404.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/shop_head_mystery_301404.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/shop_head_mystery_301404.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/shop_head_mystery_301404.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/shop_head_mystery_301404.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/shop_weapon_mystery_301404.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/shop_weapon_mystery_301404.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/shop_weapon_mystery_301404.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/shop_weapon_mystery_301404.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/slim_armor_mystery_301404.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/slim_armor_mystery_301404.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/slim_armor_mystery_301404.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/slim_armor_mystery_301404.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/weapon_mystery_301404.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/weapon_mystery_301404.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/weapon_mystery_301404.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301404/weapon_mystery_301404.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/eyewear_mystery_301405.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/eyewear_mystery_301405.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/eyewear_mystery_301405.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/eyewear_mystery_301405.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/headAccessory_mystery_301405.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/headAccessory_mystery_301405.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/headAccessory_mystery_301405.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/headAccessory_mystery_301405.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/head_mystery_301405.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/head_mystery_301405.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/head_mystery_301405.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/head_mystery_301405.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shield_mystery_301405.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shield_mystery_301405.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shield_mystery_301405.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shield_mystery_301405.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shop_eyewear_mystery_301405.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shop_eyewear_mystery_301405.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shop_eyewear_mystery_301405.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shop_eyewear_mystery_301405.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shop_headAccessory_mystery_301405.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shop_headAccessory_mystery_301405.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shop_headAccessory_mystery_301405.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shop_headAccessory_mystery_301405.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shop_head_mystery_301405.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shop_head_mystery_301405.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shop_head_mystery_301405.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shop_head_mystery_301405.png diff --git a/common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shop_shield_mystery_301405.png b/website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shop_shield_mystery_301405.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shop_shield_mystery_301405.png rename to website/assets/sprites/spritesmith/gear/events/mystery_3014/mystery_301405/shop_shield_mystery_301405.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2015Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2015Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_spring2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_springHealer.png b/website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_springHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_springHealer.png rename to website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_springHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_springMage.png b/website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_springMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_springMage.png rename to website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_springMage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_springRogue.png b/website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_springRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_springRogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_springRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_springWarrior.png b/website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_springWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/broad_armor_special_springWarrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/broad_armor_special_springWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2015Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2015Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_spring2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_springHealer.png b/website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_springHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_springHealer.png rename to website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_springHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_springMage.png b/website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_springMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_springMage.png rename to website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_springMage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_springRogue.png b/website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_springRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_springRogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_springRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_springWarrior.png b/website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_springWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/headAccessory_special_springWarrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/headAccessory_special_springWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2015Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/head_special_spring2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/head_special_spring2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/head_special_spring2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2015Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/head_special_spring2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/head_special_spring2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/head_special_spring2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/head_special_spring2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/head_special_spring2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/head_special_spring2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/head_special_spring2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/head_special_spring2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/head_special_spring2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/head_special_spring2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/head_special_spring2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/head_special_spring2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/head_special_spring2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/head_special_spring2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/head_special_spring2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/head_special_spring2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/head_special_spring2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/head_special_spring2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/head_special_springHealer.png b/website/assets/sprites/spritesmith/gear/events/spring/head_special_springHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/head_special_springHealer.png rename to website/assets/sprites/spritesmith/gear/events/spring/head_special_springHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/head_special_springMage.png b/website/assets/sprites/spritesmith/gear/events/spring/head_special_springMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/head_special_springMage.png rename to website/assets/sprites/spritesmith/gear/events/spring/head_special_springMage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/head_special_springRogue.png b/website/assets/sprites/spritesmith/gear/events/spring/head_special_springRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/head_special_springRogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/head_special_springRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/head_special_springWarrior.png b/website/assets/sprites/spritesmith/gear/events/spring/head_special_springWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/head_special_springWarrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/head_special_springWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2015Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/shield_special_spring2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shield_special_spring2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shield_special_spring2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shield_special_spring2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shield_special_spring2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shield_special_spring2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2016Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/shield_special_spring2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shield_special_spring2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shield_special_spring2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shield_special_spring2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shield_special_spring2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shield_special_spring2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shield_special_spring2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shield_special_springHealer.png b/website/assets/sprites/spritesmith/gear/events/spring/shield_special_springHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shield_special_springHealer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shield_special_springHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shield_special_springRogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shield_special_springRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shield_special_springRogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shield_special_springRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shield_special_springWarrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shield_special_springWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shield_special_springWarrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shield_special_springWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2015Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2015Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_spring2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_springHealer.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_springHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_springHealer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_springHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_springMage.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_springMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_springMage.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_springMage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_springRogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_springRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_springRogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_springRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_springWarrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_springWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_springWarrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_armor_special_springWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2015Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2015Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_spring2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_springHealer.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_springHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_springHealer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_springHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_springMage.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_springMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_springMage.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_springMage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_springRogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_springRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_springRogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_springRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_springWarrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_springWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_springWarrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_headAccessory_special_springWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2015Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2015Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_spring2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_springHealer.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_springHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_springHealer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_springHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_springMage.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_springMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_springMage.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_springMage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_springRogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_springRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_springRogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_springRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_springWarrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_springWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_head_special_springWarrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_head_special_springWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2015Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_spring2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_springHealer.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_springHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_springHealer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_springHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_springRogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_springRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_springRogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_springRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_springWarrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_springWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_springWarrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_shield_special_springWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2015Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2015Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_spring2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_springHealer.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_springHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_springHealer.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_springHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_springMage.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_springMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_springMage.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_springMage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_springRogue.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_springRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_springRogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_springRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_springWarrior.png b/website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_springWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_springWarrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/shop/shop_weapon_special_springWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2015Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2015Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_spring2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_springHealer.png b/website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_springHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_springHealer.png rename to website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_springHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_springMage.png b/website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_springMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_springMage.png rename to website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_springMage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_springRogue.png b/website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_springRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_springRogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_springRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_springWarrior.png b/website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_springWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/slim_armor_special_springWarrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/slim_armor_special_springWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2015Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/weapon_special_spring2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/weapon_special_spring2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2015Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/weapon_special_spring2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/weapon_special_spring2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/weapon_special_spring2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/weapon_special_spring2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/weapon_special_spring2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/weapon_special_spring2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Healer.png b/website/assets/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Mage.png b/website/assets/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/weapon_special_spring2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/weapon_special_springHealer.png b/website/assets/sprites/spritesmith/gear/events/spring/weapon_special_springHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/weapon_special_springHealer.png rename to website/assets/sprites/spritesmith/gear/events/spring/weapon_special_springHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/weapon_special_springMage.png b/website/assets/sprites/spritesmith/gear/events/spring/weapon_special_springMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/weapon_special_springMage.png rename to website/assets/sprites/spritesmith/gear/events/spring/weapon_special_springMage.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/weapon_special_springRogue.png b/website/assets/sprites/spritesmith/gear/events/spring/weapon_special_springRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/weapon_special_springRogue.png rename to website/assets/sprites/spritesmith/gear/events/spring/weapon_special_springRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/spring/weapon_special_springWarrior.png b/website/assets/sprites/spritesmith/gear/events/spring/weapon_special_springWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/spring/weapon_special_springWarrior.png rename to website/assets/sprites/spritesmith/gear/events/spring/weapon_special_springWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/body_special_summer2015Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/body_special_summer2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/body_special_summer2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/body_special_summer2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/body_special_summer2015Mage.png b/website/assets/sprites/spritesmith/gear/events/summer/body_special_summer2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/body_special_summer2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/summer/body_special_summer2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/body_special_summer2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/body_special_summer2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/body_special_summer2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/body_special_summer2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/body_special_summer2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/body_special_summer2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/body_special_summer2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/body_special_summer2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/body_special_summerHealer.png b/website/assets/sprites/spritesmith/gear/events/summer/body_special_summerHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/body_special_summerHealer.png rename to website/assets/sprites/spritesmith/gear/events/summer/body_special_summerHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/body_special_summerMage.png b/website/assets/sprites/spritesmith/gear/events/summer/body_special_summerMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/body_special_summerMage.png rename to website/assets/sprites/spritesmith/gear/events/summer/body_special_summerMage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2015Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2015Mage.png b/website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2016Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2016Mage.png b/website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summer2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summerHealer.png b/website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summerHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summerHealer.png rename to website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summerHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summerMage.png b/website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summerMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summerMage.png rename to website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summerMage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summerRogue.png b/website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summerRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summerRogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summerRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summerWarrior.png b/website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summerWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/broad_armor_special_summerWarrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/broad_armor_special_summerWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/eyewear_special_summerRogue.png b/website/assets/sprites/spritesmith/gear/events/summer/eyewear_special_summerRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/eyewear_special_summerRogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/eyewear_special_summerRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/eyewear_special_summerWarrior.png b/website/assets/sprites/spritesmith/gear/events/summer/eyewear_special_summerWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/eyewear_special_summerWarrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/eyewear_special_summerWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/head_special_summer2015Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/head_special_summer2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/head_special_summer2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/head_special_summer2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/head_special_summer2015Mage.png b/website/assets/sprites/spritesmith/gear/events/summer/head_special_summer2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/head_special_summer2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/summer/head_special_summer2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/head_special_summer2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/head_special_summer2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/head_special_summer2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/head_special_summer2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/head_special_summer2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/head_special_summer2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/head_special_summer2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/head_special_summer2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/head_special_summer2016Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/head_special_summer2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/head_special_summer2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/head_special_summer2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/head_special_summer2016Mage.png b/website/assets/sprites/spritesmith/gear/events/summer/head_special_summer2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/head_special_summer2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/summer/head_special_summer2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/head_special_summer2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/head_special_summer2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/head_special_summer2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/head_special_summer2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/head_special_summer2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/head_special_summer2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/head_special_summer2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/head_special_summer2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/head_special_summerHealer.png b/website/assets/sprites/spritesmith/gear/events/summer/head_special_summerHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/head_special_summerHealer.png rename to website/assets/sprites/spritesmith/gear/events/summer/head_special_summerHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/head_special_summerMage.png b/website/assets/sprites/spritesmith/gear/events/summer/head_special_summerMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/head_special_summerMage.png rename to website/assets/sprites/spritesmith/gear/events/summer/head_special_summerMage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/head_special_summerRogue.png b/website/assets/sprites/spritesmith/gear/events/summer/head_special_summerRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/head_special_summerRogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/head_special_summerRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/head_special_summerWarrior.png b/website/assets/sprites/spritesmith/gear/events/summer/head_special_summerWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/head_special_summerWarrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/head_special_summerWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/promo/Healer_Summer.png b/website/assets/sprites/spritesmith/gear/events/summer/promo/Healer_Summer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/promo/Healer_Summer.png rename to website/assets/sprites/spritesmith/gear/events/summer/promo/Healer_Summer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/promo/Mage_Summer.png b/website/assets/sprites/spritesmith/gear/events/summer/promo/Mage_Summer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/promo/Mage_Summer.png rename to website/assets/sprites/spritesmith/gear/events/summer/promo/Mage_Summer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/promo/SummerRogue14.png b/website/assets/sprites/spritesmith/gear/events/summer/promo/SummerRogue14.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/promo/SummerRogue14.png rename to website/assets/sprites/spritesmith/gear/events/summer/promo/SummerRogue14.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/promo/SummerWarrior14.png b/website/assets/sprites/spritesmith/gear/events/summer/promo/SummerWarrior14.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/promo/SummerWarrior14.png rename to website/assets/sprites/spritesmith/gear/events/summer/promo/SummerWarrior14.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shield_special_summer2015Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/shield_special_summer2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shield_special_summer2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shield_special_summer2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shield_special_summer2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shield_special_summer2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shield_special_summer2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shield_special_summer2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shield_special_summer2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shield_special_summer2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shield_special_summer2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shield_special_summer2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shield_special_summer2016Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/shield_special_summer2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shield_special_summer2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shield_special_summer2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shield_special_summer2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shield_special_summer2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shield_special_summer2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shield_special_summer2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shield_special_summer2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shield_special_summer2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shield_special_summer2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shield_special_summer2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shield_special_summerHealer.png b/website/assets/sprites/spritesmith/gear/events/summer/shield_special_summerHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shield_special_summerHealer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shield_special_summerHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shield_special_summerRogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shield_special_summerRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shield_special_summerRogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shield_special_summerRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shield_special_summerWarrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shield_special_summerWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shield_special_summerWarrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shield_special_summerWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2015Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2015Mage.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2016Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2016Mage.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summer2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summerHealer.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summerHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summerHealer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summerHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summerMage.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summerMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summerMage.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summerMage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summerRogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summerRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summerRogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summerRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summerWarrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summerWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summerWarrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_armor_special_summerWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summer2015Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summer2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summer2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summer2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summer2015Mage.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summer2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summer2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summer2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summer2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summer2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summer2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summer2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summer2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summer2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summer2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summer2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summerHealer.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summerHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summerHealer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summerHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summerMage.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summerMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summerMage.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_body_special_summerMage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_eyewear_special_summerRogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_eyewear_special_summerRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_eyewear_special_summerRogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_eyewear_special_summerRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_eyewear_special_summerWarrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_eyewear_special_summerWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_eyewear_special_summerWarrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_eyewear_special_summerWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2015Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2015Mage.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2016Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2016Mage.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summer2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summerHealer.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summerHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summerHealer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summerHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summerMage.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summerMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summerMage.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summerMage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summerRogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summerRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summerRogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summerRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summerWarrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summerWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summerWarrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_head_special_summerWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2015Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2016Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summer2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summerHealer.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summerHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summerHealer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summerHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summerRogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summerRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summerRogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summerRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summerWarrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summerWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summerWarrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_shield_special_summerWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2015Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2015Mage.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2016Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2016Mage.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summer2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summerHealer.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summerHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summerHealer.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summerHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summerMage.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summerMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summerMage.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summerMage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summerRogue.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summerRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summerRogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summerRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summerWarrior.png b/website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summerWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summerWarrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/shop/shop_weapon_special_summerWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2015Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2015Mage.png b/website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2016Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2016Mage.png b/website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summer2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summerHealer.png b/website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summerHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summerHealer.png rename to website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summerHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summerMage.png b/website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summerMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summerMage.png rename to website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summerMage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summerRogue.png b/website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summerRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summerRogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summerRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summerWarrior.png b/website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summerWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/slim_armor_special_summerWarrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/slim_armor_special_summerWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/weapon_special_summer2015Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summer2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/weapon_special_summer2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summer2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/weapon_special_summer2015Mage.png b/website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summer2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/weapon_special_summer2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summer2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/weapon_special_summer2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summer2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/weapon_special_summer2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summer2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/weapon_special_summer2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summer2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/weapon_special_summer2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summer2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/weapon_special_summer2016Healer.png b/website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summer2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/weapon_special_summer2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summer2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/weapon_special_summer2016Mage.png b/website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summer2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/weapon_special_summer2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summer2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/weapon_special_summer2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summer2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/weapon_special_summer2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summer2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/weapon_special_summer2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summer2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/weapon_special_summer2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summer2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/weapon_special_summerHealer.png b/website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summerHealer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/weapon_special_summerHealer.png rename to website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summerHealer.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/weapon_special_summerMage.png b/website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summerMage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/weapon_special_summerMage.png rename to website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summerMage.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/weapon_special_summerRogue.png b/website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summerRogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/weapon_special_summerRogue.png rename to website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summerRogue.png diff --git a/common/img/sprites/spritesmith/gear/events/summer/weapon_special_summerWarrior.png b/website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summerWarrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/summer/weapon_special_summerWarrior.png rename to website/assets/sprites/spritesmith/gear/events/summer/weapon_special_summerWarrior.png diff --git a/common/img/sprites/spritesmith/gear/events/takeThis/back_special_takeThis.png b/website/assets/sprites/spritesmith/gear/events/takeThis/back_special_takeThis.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/takeThis/back_special_takeThis.png rename to website/assets/sprites/spritesmith/gear/events/takeThis/back_special_takeThis.png diff --git a/common/img/sprites/spritesmith/gear/events/takeThis/body_special_takeThis.png b/website/assets/sprites/spritesmith/gear/events/takeThis/body_special_takeThis.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/takeThis/body_special_takeThis.png rename to website/assets/sprites/spritesmith/gear/events/takeThis/body_special_takeThis.png diff --git a/common/img/sprites/spritesmith/gear/events/takeThis/broad_armor_special_takeThis.png b/website/assets/sprites/spritesmith/gear/events/takeThis/broad_armor_special_takeThis.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/takeThis/broad_armor_special_takeThis.png rename to website/assets/sprites/spritesmith/gear/events/takeThis/broad_armor_special_takeThis.png diff --git a/common/img/sprites/spritesmith/gear/events/takeThis/head_special_takeThis.png b/website/assets/sprites/spritesmith/gear/events/takeThis/head_special_takeThis.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/takeThis/head_special_takeThis.png rename to website/assets/sprites/spritesmith/gear/events/takeThis/head_special_takeThis.png diff --git a/common/img/sprites/spritesmith/gear/events/takeThis/shield_special_takeThis.png b/website/assets/sprites/spritesmith/gear/events/takeThis/shield_special_takeThis.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/takeThis/shield_special_takeThis.png rename to website/assets/sprites/spritesmith/gear/events/takeThis/shield_special_takeThis.png diff --git a/common/img/sprites/spritesmith/gear/events/takeThis/shop_armor_special_takeThis.png b/website/assets/sprites/spritesmith/gear/events/takeThis/shop_armor_special_takeThis.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/takeThis/shop_armor_special_takeThis.png rename to website/assets/sprites/spritesmith/gear/events/takeThis/shop_armor_special_takeThis.png diff --git a/common/img/sprites/spritesmith/gear/events/takeThis/shop_back_special_takeThis.png b/website/assets/sprites/spritesmith/gear/events/takeThis/shop_back_special_takeThis.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/takeThis/shop_back_special_takeThis.png rename to website/assets/sprites/spritesmith/gear/events/takeThis/shop_back_special_takeThis.png diff --git a/common/img/sprites/spritesmith/gear/events/takeThis/shop_body_special_takeThis.png b/website/assets/sprites/spritesmith/gear/events/takeThis/shop_body_special_takeThis.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/takeThis/shop_body_special_takeThis.png rename to website/assets/sprites/spritesmith/gear/events/takeThis/shop_body_special_takeThis.png diff --git a/common/img/sprites/spritesmith/gear/events/takeThis/shop_head_special_takeThis.png b/website/assets/sprites/spritesmith/gear/events/takeThis/shop_head_special_takeThis.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/takeThis/shop_head_special_takeThis.png rename to website/assets/sprites/spritesmith/gear/events/takeThis/shop_head_special_takeThis.png diff --git a/common/img/sprites/spritesmith/gear/events/takeThis/shop_shield_special_takeThis.png b/website/assets/sprites/spritesmith/gear/events/takeThis/shop_shield_special_takeThis.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/takeThis/shop_shield_special_takeThis.png rename to website/assets/sprites/spritesmith/gear/events/takeThis/shop_shield_special_takeThis.png diff --git a/common/img/sprites/spritesmith/gear/events/takeThis/shop_weapon_special_takeThis.png b/website/assets/sprites/spritesmith/gear/events/takeThis/shop_weapon_special_takeThis.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/takeThis/shop_weapon_special_takeThis.png rename to website/assets/sprites/spritesmith/gear/events/takeThis/shop_weapon_special_takeThis.png diff --git a/common/img/sprites/spritesmith/gear/events/takeThis/slim_armor_special_takeThis.png b/website/assets/sprites/spritesmith/gear/events/takeThis/slim_armor_special_takeThis.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/takeThis/slim_armor_special_takeThis.png rename to website/assets/sprites/spritesmith/gear/events/takeThis/slim_armor_special_takeThis.png diff --git a/common/img/sprites/spritesmith/gear/events/takeThis/weapon_special_takeThis.png b/website/assets/sprites/spritesmith/gear/events/takeThis/weapon_special_takeThis.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/takeThis/weapon_special_takeThis.png rename to website/assets/sprites/spritesmith/gear/events/takeThis/weapon_special_takeThis.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_candycane.png b/website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_candycane.png rename to website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_candycane.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_ski.png b/website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_ski.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_ski.png rename to website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_ski.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_snowflake.png b/website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_snowflake.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_snowflake.png rename to website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_snowflake.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2015Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2015Mage.png b/website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2016Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2016Mage.png b/website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_winter2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_yeti.png b/website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_yeti.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/broad_armor_special_yeti.png rename to website/assets/sprites/spritesmith/gear/events/winter/broad_armor_special_yeti.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/head_special_candycane.png b/website/assets/sprites/spritesmith/gear/events/winter/head_special_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/head_special_candycane.png rename to website/assets/sprites/spritesmith/gear/events/winter/head_special_candycane.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/head_special_nye.png b/website/assets/sprites/spritesmith/gear/events/winter/head_special_nye.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/head_special_nye.png rename to website/assets/sprites/spritesmith/gear/events/winter/head_special_nye.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/head_special_nye2014.png b/website/assets/sprites/spritesmith/gear/events/winter/head_special_nye2014.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/head_special_nye2014.png rename to website/assets/sprites/spritesmith/gear/events/winter/head_special_nye2014.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/head_special_nye2015.png b/website/assets/sprites/spritesmith/gear/events/winter/head_special_nye2015.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/head_special_nye2015.png rename to website/assets/sprites/spritesmith/gear/events/winter/head_special_nye2015.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/head_special_ski.png b/website/assets/sprites/spritesmith/gear/events/winter/head_special_ski.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/head_special_ski.png rename to website/assets/sprites/spritesmith/gear/events/winter/head_special_ski.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/head_special_snowflake.png b/website/assets/sprites/spritesmith/gear/events/winter/head_special_snowflake.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/head_special_snowflake.png rename to website/assets/sprites/spritesmith/gear/events/winter/head_special_snowflake.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/head_special_winter2015Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/head_special_winter2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/head_special_winter2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/head_special_winter2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/head_special_winter2015Mage.png b/website/assets/sprites/spritesmith/gear/events/winter/head_special_winter2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/head_special_winter2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/winter/head_special_winter2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/head_special_winter2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/head_special_winter2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/head_special_winter2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/head_special_winter2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/head_special_winter2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/head_special_winter2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/head_special_winter2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/head_special_winter2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/head_special_winter2016Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/head_special_winter2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/head_special_winter2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/head_special_winter2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/head_special_winter2016Mage.png b/website/assets/sprites/spritesmith/gear/events/winter/head_special_winter2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/head_special_winter2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/winter/head_special_winter2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/head_special_winter2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/head_special_winter2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/head_special_winter2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/head_special_winter2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/head_special_winter2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/head_special_winter2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/head_special_winter2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/head_special_winter2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/head_special_yeti.png b/website/assets/sprites/spritesmith/gear/events/winter/head_special_yeti.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/head_special_yeti.png rename to website/assets/sprites/spritesmith/gear/events/winter/head_special_yeti.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shield_special_ski.png b/website/assets/sprites/spritesmith/gear/events/winter/shield_special_ski.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shield_special_ski.png rename to website/assets/sprites/spritesmith/gear/events/winter/shield_special_ski.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shield_special_snowflake.png b/website/assets/sprites/spritesmith/gear/events/winter/shield_special_snowflake.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shield_special_snowflake.png rename to website/assets/sprites/spritesmith/gear/events/winter/shield_special_snowflake.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shield_special_winter2015Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/shield_special_winter2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shield_special_winter2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/shield_special_winter2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shield_special_winter2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/shield_special_winter2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shield_special_winter2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/shield_special_winter2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shield_special_winter2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/shield_special_winter2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shield_special_winter2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/shield_special_winter2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shield_special_winter2016Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/shield_special_winter2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shield_special_winter2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/shield_special_winter2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shield_special_winter2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/shield_special_winter2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shield_special_winter2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/shield_special_winter2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shield_special_winter2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/shield_special_winter2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shield_special_winter2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/shield_special_winter2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shield_special_yeti.png b/website/assets/sprites/spritesmith/gear/events/winter/shield_special_yeti.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shield_special_yeti.png rename to website/assets/sprites/spritesmith/gear/events/winter/shield_special_yeti.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_candycane.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_candycane.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_candycane.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_ski.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_ski.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_ski.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_ski.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_snowflake.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_snowflake.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_snowflake.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_snowflake.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2015Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2015Mage.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2016Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2016Mage.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_winter2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_yeti.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_yeti.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_yeti.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_armor_special_yeti.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_candycane.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_candycane.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_candycane.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_nye.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_nye.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_nye.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_nye.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_nye2014.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_nye2014.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_nye2014.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_nye2014.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_nye2015.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_nye2015.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_nye2015.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_nye2015.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_ski.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_ski.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_ski.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_ski.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_snowflake.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_snowflake.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_snowflake.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_snowflake.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2015Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2015Mage.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2016Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2016Mage.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_winter2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_yeti.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_yeti.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_head_special_yeti.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_head_special_yeti.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_ski.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_ski.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_ski.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_ski.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_snowflake.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_snowflake.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_snowflake.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_snowflake.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2015Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2016Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_winter2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_yeti.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_yeti.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_yeti.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_shield_special_yeti.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_candycane.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_candycane.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_candycane.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_ski.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_ski.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_ski.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_ski.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_snowflake.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_snowflake.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_snowflake.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_snowflake.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2015Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2015Mage.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2016Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2016Mage.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_winter2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_yeti.png b/website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_yeti.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_yeti.png rename to website/assets/sprites/spritesmith/gear/events/winter/shop/shop_weapon_special_yeti.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_candycane.png b/website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_candycane.png rename to website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_candycane.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_ski.png b/website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_ski.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_ski.png rename to website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_ski.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_snowflake.png b/website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_snowflake.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_snowflake.png rename to website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_snowflake.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2015Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2015Mage.png b/website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2016Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2016Mage.png b/website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_winter2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_yeti.png b/website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_yeti.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/slim_armor_special_yeti.png rename to website/assets/sprites/spritesmith/gear/events/winter/slim_armor_special_yeti.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/weapon_special_candycane.png b/website/assets/sprites/spritesmith/gear/events/winter/weapon_special_candycane.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/weapon_special_candycane.png rename to website/assets/sprites/spritesmith/gear/events/winter/weapon_special_candycane.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/weapon_special_ski.png b/website/assets/sprites/spritesmith/gear/events/winter/weapon_special_ski.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/weapon_special_ski.png rename to website/assets/sprites/spritesmith/gear/events/winter/weapon_special_ski.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/weapon_special_snowflake.png b/website/assets/sprites/spritesmith/gear/events/winter/weapon_special_snowflake.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/weapon_special_snowflake.png rename to website/assets/sprites/spritesmith/gear/events/winter/weapon_special_snowflake.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/weapon_special_winter2015Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/weapon_special_winter2015Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/weapon_special_winter2015Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/weapon_special_winter2015Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/weapon_special_winter2015Mage.png b/website/assets/sprites/spritesmith/gear/events/winter/weapon_special_winter2015Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/weapon_special_winter2015Mage.png rename to website/assets/sprites/spritesmith/gear/events/winter/weapon_special_winter2015Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/weapon_special_winter2015Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/weapon_special_winter2015Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/weapon_special_winter2015Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/weapon_special_winter2015Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/weapon_special_winter2015Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/weapon_special_winter2015Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/weapon_special_winter2015Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/weapon_special_winter2015Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/weapon_special_winter2016Healer.png b/website/assets/sprites/spritesmith/gear/events/winter/weapon_special_winter2016Healer.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/weapon_special_winter2016Healer.png rename to website/assets/sprites/spritesmith/gear/events/winter/weapon_special_winter2016Healer.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/weapon_special_winter2016Mage.png b/website/assets/sprites/spritesmith/gear/events/winter/weapon_special_winter2016Mage.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/weapon_special_winter2016Mage.png rename to website/assets/sprites/spritesmith/gear/events/winter/weapon_special_winter2016Mage.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/weapon_special_winter2016Rogue.png b/website/assets/sprites/spritesmith/gear/events/winter/weapon_special_winter2016Rogue.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/weapon_special_winter2016Rogue.png rename to website/assets/sprites/spritesmith/gear/events/winter/weapon_special_winter2016Rogue.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/weapon_special_winter2016Warrior.png b/website/assets/sprites/spritesmith/gear/events/winter/weapon_special_winter2016Warrior.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/weapon_special_winter2016Warrior.png rename to website/assets/sprites/spritesmith/gear/events/winter/weapon_special_winter2016Warrior.png diff --git a/common/img/sprites/spritesmith/gear/events/winter/weapon_special_yeti.png b/website/assets/sprites/spritesmith/gear/events/winter/weapon_special_yeti.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/winter/weapon_special_yeti.png rename to website/assets/sprites/spritesmith/gear/events/winter/weapon_special_yeti.png diff --git a/common/img/sprites/spritesmith/gear/events/wondercon/back_special_wondercon_black.png b/website/assets/sprites/spritesmith/gear/events/wondercon/back_special_wondercon_black.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/wondercon/back_special_wondercon_black.png rename to website/assets/sprites/spritesmith/gear/events/wondercon/back_special_wondercon_black.png diff --git a/common/img/sprites/spritesmith/gear/events/wondercon/back_special_wondercon_red.png b/website/assets/sprites/spritesmith/gear/events/wondercon/back_special_wondercon_red.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/wondercon/back_special_wondercon_red.png rename to website/assets/sprites/spritesmith/gear/events/wondercon/back_special_wondercon_red.png diff --git a/common/img/sprites/spritesmith/gear/events/wondercon/body_special_wondercon_black.png b/website/assets/sprites/spritesmith/gear/events/wondercon/body_special_wondercon_black.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/wondercon/body_special_wondercon_black.png rename to website/assets/sprites/spritesmith/gear/events/wondercon/body_special_wondercon_black.png diff --git a/common/img/sprites/spritesmith/gear/events/wondercon/body_special_wondercon_gold.png b/website/assets/sprites/spritesmith/gear/events/wondercon/body_special_wondercon_gold.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/wondercon/body_special_wondercon_gold.png rename to website/assets/sprites/spritesmith/gear/events/wondercon/body_special_wondercon_gold.png diff --git a/common/img/sprites/spritesmith/gear/events/wondercon/body_special_wondercon_red.png b/website/assets/sprites/spritesmith/gear/events/wondercon/body_special_wondercon_red.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/wondercon/body_special_wondercon_red.png rename to website/assets/sprites/spritesmith/gear/events/wondercon/body_special_wondercon_red.png diff --git a/common/img/sprites/spritesmith/gear/events/wondercon/eyewear_special_wondercon_black.png b/website/assets/sprites/spritesmith/gear/events/wondercon/eyewear_special_wondercon_black.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/wondercon/eyewear_special_wondercon_black.png rename to website/assets/sprites/spritesmith/gear/events/wondercon/eyewear_special_wondercon_black.png diff --git a/common/img/sprites/spritesmith/gear/events/wondercon/eyewear_special_wondercon_red.png b/website/assets/sprites/spritesmith/gear/events/wondercon/eyewear_special_wondercon_red.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/wondercon/eyewear_special_wondercon_red.png rename to website/assets/sprites/spritesmith/gear/events/wondercon/eyewear_special_wondercon_red.png diff --git a/common/img/sprites/spritesmith/gear/events/wondercon/shop/shop_back_special_wondercon_black.png b/website/assets/sprites/spritesmith/gear/events/wondercon/shop/shop_back_special_wondercon_black.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/wondercon/shop/shop_back_special_wondercon_black.png rename to website/assets/sprites/spritesmith/gear/events/wondercon/shop/shop_back_special_wondercon_black.png diff --git a/common/img/sprites/spritesmith/gear/events/wondercon/shop/shop_back_special_wondercon_red.png b/website/assets/sprites/spritesmith/gear/events/wondercon/shop/shop_back_special_wondercon_red.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/wondercon/shop/shop_back_special_wondercon_red.png rename to website/assets/sprites/spritesmith/gear/events/wondercon/shop/shop_back_special_wondercon_red.png diff --git a/common/img/sprites/spritesmith/gear/events/wondercon/shop/shop_body_special_wondercon_black.png b/website/assets/sprites/spritesmith/gear/events/wondercon/shop/shop_body_special_wondercon_black.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/wondercon/shop/shop_body_special_wondercon_black.png rename to website/assets/sprites/spritesmith/gear/events/wondercon/shop/shop_body_special_wondercon_black.png diff --git a/common/img/sprites/spritesmith/gear/events/wondercon/shop/shop_body_special_wondercon_gold.png b/website/assets/sprites/spritesmith/gear/events/wondercon/shop/shop_body_special_wondercon_gold.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/wondercon/shop/shop_body_special_wondercon_gold.png rename to website/assets/sprites/spritesmith/gear/events/wondercon/shop/shop_body_special_wondercon_gold.png diff --git a/common/img/sprites/spritesmith/gear/events/wondercon/shop/shop_body_special_wondercon_red.png b/website/assets/sprites/spritesmith/gear/events/wondercon/shop/shop_body_special_wondercon_red.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/wondercon/shop/shop_body_special_wondercon_red.png rename to website/assets/sprites/spritesmith/gear/events/wondercon/shop/shop_body_special_wondercon_red.png diff --git a/common/img/sprites/spritesmith/gear/events/wondercon/shop/shop_eyewear_special_wondercon_black.png b/website/assets/sprites/spritesmith/gear/events/wondercon/shop/shop_eyewear_special_wondercon_black.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/wondercon/shop/shop_eyewear_special_wondercon_black.png rename to website/assets/sprites/spritesmith/gear/events/wondercon/shop/shop_eyewear_special_wondercon_black.png diff --git a/common/img/sprites/spritesmith/gear/events/wondercon/shop/shop_eyewear_special_wondercon_red.png b/website/assets/sprites/spritesmith/gear/events/wondercon/shop/shop_eyewear_special_wondercon_red.png similarity index 100% rename from common/img/sprites/spritesmith/gear/events/wondercon/shop/shop_eyewear_special_wondercon_red.png rename to website/assets/sprites/spritesmith/gear/events/wondercon/shop/shop_eyewear_special_wondercon_red.png diff --git a/common/img/sprites/spritesmith/gear/eyewear/eyewear_special_blackTopFrame.png b/website/assets/sprites/spritesmith/gear/eyewear/eyewear_special_blackTopFrame.png similarity index 100% rename from common/img/sprites/spritesmith/gear/eyewear/eyewear_special_blackTopFrame.png rename to website/assets/sprites/spritesmith/gear/eyewear/eyewear_special_blackTopFrame.png diff --git a/common/img/sprites/spritesmith/gear/eyewear/eyewear_special_blueTopFrame.png b/website/assets/sprites/spritesmith/gear/eyewear/eyewear_special_blueTopFrame.png similarity index 100% rename from common/img/sprites/spritesmith/gear/eyewear/eyewear_special_blueTopFrame.png rename to website/assets/sprites/spritesmith/gear/eyewear/eyewear_special_blueTopFrame.png diff --git a/common/img/sprites/spritesmith/gear/eyewear/eyewear_special_greenTopFrame.png b/website/assets/sprites/spritesmith/gear/eyewear/eyewear_special_greenTopFrame.png similarity index 100% rename from common/img/sprites/spritesmith/gear/eyewear/eyewear_special_greenTopFrame.png rename to website/assets/sprites/spritesmith/gear/eyewear/eyewear_special_greenTopFrame.png diff --git a/common/img/sprites/spritesmith/gear/eyewear/eyewear_special_pinkTopFrame.png b/website/assets/sprites/spritesmith/gear/eyewear/eyewear_special_pinkTopFrame.png similarity index 100% rename from common/img/sprites/spritesmith/gear/eyewear/eyewear_special_pinkTopFrame.png rename to website/assets/sprites/spritesmith/gear/eyewear/eyewear_special_pinkTopFrame.png diff --git a/common/img/sprites/spritesmith/gear/eyewear/eyewear_special_redTopFrame.png b/website/assets/sprites/spritesmith/gear/eyewear/eyewear_special_redTopFrame.png similarity index 100% rename from common/img/sprites/spritesmith/gear/eyewear/eyewear_special_redTopFrame.png rename to website/assets/sprites/spritesmith/gear/eyewear/eyewear_special_redTopFrame.png diff --git a/common/img/sprites/spritesmith/gear/eyewear/eyewear_special_whiteTopFrame.png b/website/assets/sprites/spritesmith/gear/eyewear/eyewear_special_whiteTopFrame.png similarity index 100% rename from common/img/sprites/spritesmith/gear/eyewear/eyewear_special_whiteTopFrame.png rename to website/assets/sprites/spritesmith/gear/eyewear/eyewear_special_whiteTopFrame.png diff --git a/common/img/sprites/spritesmith/gear/eyewear/eyewear_special_yellowTopFrame.png b/website/assets/sprites/spritesmith/gear/eyewear/eyewear_special_yellowTopFrame.png similarity index 100% rename from common/img/sprites/spritesmith/gear/eyewear/eyewear_special_yellowTopFrame.png rename to website/assets/sprites/spritesmith/gear/eyewear/eyewear_special_yellowTopFrame.png diff --git a/common/img/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_blackTopFrame.png b/website/assets/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_blackTopFrame.png similarity index 100% rename from common/img/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_blackTopFrame.png rename to website/assets/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_blackTopFrame.png diff --git a/common/img/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_blueTopFrame.png b/website/assets/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_blueTopFrame.png similarity index 100% rename from common/img/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_blueTopFrame.png rename to website/assets/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_blueTopFrame.png diff --git a/common/img/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_greenTopFrame.png b/website/assets/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_greenTopFrame.png similarity index 100% rename from common/img/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_greenTopFrame.png rename to website/assets/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_greenTopFrame.png diff --git a/common/img/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_pinkTopFrame.png b/website/assets/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_pinkTopFrame.png similarity index 100% rename from common/img/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_pinkTopFrame.png rename to website/assets/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_pinkTopFrame.png diff --git a/common/img/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_redTopFrame.png b/website/assets/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_redTopFrame.png similarity index 100% rename from common/img/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_redTopFrame.png rename to website/assets/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_redTopFrame.png diff --git a/common/img/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_whiteTopFrame.png b/website/assets/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_whiteTopFrame.png similarity index 100% rename from common/img/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_whiteTopFrame.png rename to website/assets/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_whiteTopFrame.png diff --git a/common/img/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_yellowTopFrame.png b/website/assets/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_yellowTopFrame.png similarity index 100% rename from common/img/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_yellowTopFrame.png rename to website/assets/sprites/spritesmith/gear/eyewear/shop/shop_eyewear_special_yellowTopFrame.png diff --git a/common/img/sprites/spritesmith/gear/head/head_0.png b/website/assets/sprites/spritesmith/gear/head/head_0.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_0.png rename to website/assets/sprites/spritesmith/gear/head/head_0.png diff --git a/common/img/sprites/spritesmith/gear/head/head_healer_1.png b/website/assets/sprites/spritesmith/gear/head/head_healer_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_healer_1.png rename to website/assets/sprites/spritesmith/gear/head/head_healer_1.png diff --git a/common/img/sprites/spritesmith/gear/head/head_healer_2.png b/website/assets/sprites/spritesmith/gear/head/head_healer_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_healer_2.png rename to website/assets/sprites/spritesmith/gear/head/head_healer_2.png diff --git a/common/img/sprites/spritesmith/gear/head/head_healer_3.png b/website/assets/sprites/spritesmith/gear/head/head_healer_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_healer_3.png rename to website/assets/sprites/spritesmith/gear/head/head_healer_3.png diff --git a/common/img/sprites/spritesmith/gear/head/head_healer_4.png b/website/assets/sprites/spritesmith/gear/head/head_healer_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_healer_4.png rename to website/assets/sprites/spritesmith/gear/head/head_healer_4.png diff --git a/common/img/sprites/spritesmith/gear/head/head_healer_5.png b/website/assets/sprites/spritesmith/gear/head/head_healer_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_healer_5.png rename to website/assets/sprites/spritesmith/gear/head/head_healer_5.png diff --git a/common/img/sprites/spritesmith/gear/head/head_rogue_1.png b/website/assets/sprites/spritesmith/gear/head/head_rogue_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_rogue_1.png rename to website/assets/sprites/spritesmith/gear/head/head_rogue_1.png diff --git a/common/img/sprites/spritesmith/gear/head/head_rogue_2.png b/website/assets/sprites/spritesmith/gear/head/head_rogue_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_rogue_2.png rename to website/assets/sprites/spritesmith/gear/head/head_rogue_2.png diff --git a/common/img/sprites/spritesmith/gear/head/head_rogue_3.png b/website/assets/sprites/spritesmith/gear/head/head_rogue_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_rogue_3.png rename to website/assets/sprites/spritesmith/gear/head/head_rogue_3.png diff --git a/common/img/sprites/spritesmith/gear/head/head_rogue_4.png b/website/assets/sprites/spritesmith/gear/head/head_rogue_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_rogue_4.png rename to website/assets/sprites/spritesmith/gear/head/head_rogue_4.png diff --git a/common/img/sprites/spritesmith/gear/head/head_rogue_5.png b/website/assets/sprites/spritesmith/gear/head/head_rogue_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_rogue_5.png rename to website/assets/sprites/spritesmith/gear/head/head_rogue_5.png diff --git a/common/img/sprites/spritesmith/gear/head/head_special_2.png b/website/assets/sprites/spritesmith/gear/head/head_special_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_special_2.png rename to website/assets/sprites/spritesmith/gear/head/head_special_2.png diff --git a/common/img/sprites/spritesmith/gear/head/head_special_fireCoralCirclet.png b/website/assets/sprites/spritesmith/gear/head/head_special_fireCoralCirclet.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_special_fireCoralCirclet.png rename to website/assets/sprites/spritesmith/gear/head/head_special_fireCoralCirclet.png diff --git a/common/img/sprites/spritesmith/gear/head/head_warrior_1.png b/website/assets/sprites/spritesmith/gear/head/head_warrior_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_warrior_1.png rename to website/assets/sprites/spritesmith/gear/head/head_warrior_1.png diff --git a/common/img/sprites/spritesmith/gear/head/head_warrior_2.png b/website/assets/sprites/spritesmith/gear/head/head_warrior_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_warrior_2.png rename to website/assets/sprites/spritesmith/gear/head/head_warrior_2.png diff --git a/common/img/sprites/spritesmith/gear/head/head_warrior_3.png b/website/assets/sprites/spritesmith/gear/head/head_warrior_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_warrior_3.png rename to website/assets/sprites/spritesmith/gear/head/head_warrior_3.png diff --git a/common/img/sprites/spritesmith/gear/head/head_warrior_4.png b/website/assets/sprites/spritesmith/gear/head/head_warrior_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_warrior_4.png rename to website/assets/sprites/spritesmith/gear/head/head_warrior_4.png diff --git a/common/img/sprites/spritesmith/gear/head/head_warrior_5.png b/website/assets/sprites/spritesmith/gear/head/head_warrior_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_warrior_5.png rename to website/assets/sprites/spritesmith/gear/head/head_warrior_5.png diff --git a/common/img/sprites/spritesmith/gear/head/head_wizard_1.png b/website/assets/sprites/spritesmith/gear/head/head_wizard_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_wizard_1.png rename to website/assets/sprites/spritesmith/gear/head/head_wizard_1.png diff --git a/common/img/sprites/spritesmith/gear/head/head_wizard_2.png b/website/assets/sprites/spritesmith/gear/head/head_wizard_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_wizard_2.png rename to website/assets/sprites/spritesmith/gear/head/head_wizard_2.png diff --git a/common/img/sprites/spritesmith/gear/head/head_wizard_3.png b/website/assets/sprites/spritesmith/gear/head/head_wizard_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_wizard_3.png rename to website/assets/sprites/spritesmith/gear/head/head_wizard_3.png diff --git a/common/img/sprites/spritesmith/gear/head/head_wizard_4.png b/website/assets/sprites/spritesmith/gear/head/head_wizard_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_wizard_4.png rename to website/assets/sprites/spritesmith/gear/head/head_wizard_4.png diff --git a/common/img/sprites/spritesmith/gear/head/head_wizard_5.png b/website/assets/sprites/spritesmith/gear/head/head_wizard_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/head_wizard_5.png rename to website/assets/sprites/spritesmith/gear/head/head_wizard_5.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_healer_1.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_healer_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_healer_1.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_healer_1.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_healer_2.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_healer_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_healer_2.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_healer_2.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_healer_3.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_healer_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_healer_3.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_healer_3.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_healer_4.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_healer_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_healer_4.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_healer_4.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_healer_5.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_healer_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_healer_5.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_healer_5.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_rogue_1.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_rogue_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_rogue_1.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_rogue_1.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_rogue_2.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_rogue_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_rogue_2.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_rogue_2.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_rogue_3.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_rogue_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_rogue_3.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_rogue_3.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_rogue_4.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_rogue_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_rogue_4.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_rogue_4.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_rogue_5.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_rogue_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_rogue_5.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_rogue_5.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_special_0.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_special_0.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_special_0.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_special_0.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_special_1.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_special_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_special_1.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_special_1.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_special_2.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_special_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_special_2.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_special_2.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_special_fireCoralCirclet.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_special_fireCoralCirclet.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_special_fireCoralCirclet.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_special_fireCoralCirclet.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_warrior_1.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_warrior_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_warrior_1.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_warrior_1.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_warrior_2.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_warrior_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_warrior_2.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_warrior_2.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_warrior_3.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_warrior_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_warrior_3.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_warrior_3.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_warrior_4.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_warrior_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_warrior_4.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_warrior_4.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_warrior_5.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_warrior_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_warrior_5.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_warrior_5.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_wizard_1.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_wizard_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_wizard_1.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_wizard_1.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_wizard_2.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_wizard_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_wizard_2.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_wizard_2.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_wizard_3.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_wizard_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_wizard_3.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_wizard_3.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_wizard_4.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_wizard_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_wizard_4.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_wizard_4.png diff --git a/common/img/sprites/spritesmith/gear/head/shop/shop_head_wizard_5.png b/website/assets/sprites/spritesmith/gear/head/shop/shop_head_wizard_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/head/shop/shop_head_wizard_5.png rename to website/assets/sprites/spritesmith/gear/head/shop/shop_head_wizard_5.png diff --git a/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_bearEars.png b/website/assets/sprites/spritesmith/gear/headAccessory/headAccessory_special_bearEars.png similarity index 100% rename from common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_bearEars.png rename to website/assets/sprites/spritesmith/gear/headAccessory/headAccessory_special_bearEars.png diff --git a/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_cactusEars.png b/website/assets/sprites/spritesmith/gear/headAccessory/headAccessory_special_cactusEars.png similarity index 100% rename from common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_cactusEars.png rename to website/assets/sprites/spritesmith/gear/headAccessory/headAccessory_special_cactusEars.png diff --git a/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_foxEars.png b/website/assets/sprites/spritesmith/gear/headAccessory/headAccessory_special_foxEars.png similarity index 100% rename from common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_foxEars.png rename to website/assets/sprites/spritesmith/gear/headAccessory/headAccessory_special_foxEars.png diff --git a/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_lionEars.png b/website/assets/sprites/spritesmith/gear/headAccessory/headAccessory_special_lionEars.png similarity index 100% rename from common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_lionEars.png rename to website/assets/sprites/spritesmith/gear/headAccessory/headAccessory_special_lionEars.png diff --git a/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_pandaEars.png b/website/assets/sprites/spritesmith/gear/headAccessory/headAccessory_special_pandaEars.png similarity index 100% rename from common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_pandaEars.png rename to website/assets/sprites/spritesmith/gear/headAccessory/headAccessory_special_pandaEars.png diff --git a/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_pigEars.png b/website/assets/sprites/spritesmith/gear/headAccessory/headAccessory_special_pigEars.png similarity index 100% rename from common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_pigEars.png rename to website/assets/sprites/spritesmith/gear/headAccessory/headAccessory_special_pigEars.png diff --git a/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_tigerEars.png b/website/assets/sprites/spritesmith/gear/headAccessory/headAccessory_special_tigerEars.png similarity index 100% rename from common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_tigerEars.png rename to website/assets/sprites/spritesmith/gear/headAccessory/headAccessory_special_tigerEars.png diff --git a/common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_wolfEars.png b/website/assets/sprites/spritesmith/gear/headAccessory/headAccessory_special_wolfEars.png similarity index 100% rename from common/img/sprites/spritesmith/gear/headAccessory/headAccessory_special_wolfEars.png rename to website/assets/sprites/spritesmith/gear/headAccessory/headAccessory_special_wolfEars.png diff --git a/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_bearEars.png b/website/assets/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_bearEars.png similarity index 100% rename from common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_bearEars.png rename to website/assets/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_bearEars.png diff --git a/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_cactusEars.png b/website/assets/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_cactusEars.png similarity index 100% rename from common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_cactusEars.png rename to website/assets/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_cactusEars.png diff --git a/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_foxEars.png b/website/assets/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_foxEars.png similarity index 100% rename from common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_foxEars.png rename to website/assets/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_foxEars.png diff --git a/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_lionEars.png b/website/assets/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_lionEars.png similarity index 100% rename from common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_lionEars.png rename to website/assets/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_lionEars.png diff --git a/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_pandaEars.png b/website/assets/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_pandaEars.png similarity index 100% rename from common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_pandaEars.png rename to website/assets/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_pandaEars.png diff --git a/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_pigEars.png b/website/assets/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_pigEars.png similarity index 100% rename from common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_pigEars.png rename to website/assets/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_pigEars.png diff --git a/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_tigerEars.png b/website/assets/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_tigerEars.png similarity index 100% rename from common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_tigerEars.png rename to website/assets/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_tigerEars.png diff --git a/common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_wolfEars.png b/website/assets/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_wolfEars.png similarity index 100% rename from common/img/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_wolfEars.png rename to website/assets/sprites/spritesmith/gear/headAccessory/shop/shop_headAccessory_special_wolfEars.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_healer_1.png b/website/assets/sprites/spritesmith/gear/shield/shield_healer_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_healer_1.png rename to website/assets/sprites/spritesmith/gear/shield/shield_healer_1.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_healer_2.png b/website/assets/sprites/spritesmith/gear/shield/shield_healer_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_healer_2.png rename to website/assets/sprites/spritesmith/gear/shield/shield_healer_2.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_healer_3.png b/website/assets/sprites/spritesmith/gear/shield/shield_healer_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_healer_3.png rename to website/assets/sprites/spritesmith/gear/shield/shield_healer_3.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_healer_4.png b/website/assets/sprites/spritesmith/gear/shield/shield_healer_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_healer_4.png rename to website/assets/sprites/spritesmith/gear/shield/shield_healer_4.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_healer_5.png b/website/assets/sprites/spritesmith/gear/shield/shield_healer_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_healer_5.png rename to website/assets/sprites/spritesmith/gear/shield/shield_healer_5.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_rogue_0.png b/website/assets/sprites/spritesmith/gear/shield/shield_rogue_0.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_rogue_0.png rename to website/assets/sprites/spritesmith/gear/shield/shield_rogue_0.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_rogue_1.png b/website/assets/sprites/spritesmith/gear/shield/shield_rogue_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_rogue_1.png rename to website/assets/sprites/spritesmith/gear/shield/shield_rogue_1.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_rogue_2.png b/website/assets/sprites/spritesmith/gear/shield/shield_rogue_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_rogue_2.png rename to website/assets/sprites/spritesmith/gear/shield/shield_rogue_2.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_rogue_3.png b/website/assets/sprites/spritesmith/gear/shield/shield_rogue_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_rogue_3.png rename to website/assets/sprites/spritesmith/gear/shield/shield_rogue_3.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_rogue_4.png b/website/assets/sprites/spritesmith/gear/shield/shield_rogue_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_rogue_4.png rename to website/assets/sprites/spritesmith/gear/shield/shield_rogue_4.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_rogue_5.png b/website/assets/sprites/spritesmith/gear/shield/shield_rogue_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_rogue_5.png rename to website/assets/sprites/spritesmith/gear/shield/shield_rogue_5.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_rogue_6.png b/website/assets/sprites/spritesmith/gear/shield/shield_rogue_6.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_rogue_6.png rename to website/assets/sprites/spritesmith/gear/shield/shield_rogue_6.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_special_1.png b/website/assets/sprites/spritesmith/gear/shield/shield_special_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_special_1.png rename to website/assets/sprites/spritesmith/gear/shield/shield_special_1.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_special_goldenknight.png b/website/assets/sprites/spritesmith/gear/shield/shield_special_goldenknight.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_special_goldenknight.png rename to website/assets/sprites/spritesmith/gear/shield/shield_special_goldenknight.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_special_moonpearlShield.png b/website/assets/sprites/spritesmith/gear/shield/shield_special_moonpearlShield.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_special_moonpearlShield.png rename to website/assets/sprites/spritesmith/gear/shield/shield_special_moonpearlShield.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_warrior_1.png b/website/assets/sprites/spritesmith/gear/shield/shield_warrior_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_warrior_1.png rename to website/assets/sprites/spritesmith/gear/shield/shield_warrior_1.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_warrior_2.png b/website/assets/sprites/spritesmith/gear/shield/shield_warrior_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_warrior_2.png rename to website/assets/sprites/spritesmith/gear/shield/shield_warrior_2.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_warrior_3.png b/website/assets/sprites/spritesmith/gear/shield/shield_warrior_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_warrior_3.png rename to website/assets/sprites/spritesmith/gear/shield/shield_warrior_3.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_warrior_4.png b/website/assets/sprites/spritesmith/gear/shield/shield_warrior_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_warrior_4.png rename to website/assets/sprites/spritesmith/gear/shield/shield_warrior_4.png diff --git a/common/img/sprites/spritesmith/gear/shield/shield_warrior_5.png b/website/assets/sprites/spritesmith/gear/shield/shield_warrior_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shield_warrior_5.png rename to website/assets/sprites/spritesmith/gear/shield/shield_warrior_5.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_healer_1.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_healer_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_healer_1.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_healer_1.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_healer_2.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_healer_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_healer_2.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_healer_2.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_healer_3.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_healer_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_healer_3.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_healer_3.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_healer_4.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_healer_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_healer_4.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_healer_4.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_healer_5.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_healer_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_healer_5.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_healer_5.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_0.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_0.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_0.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_0.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_1.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_1.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_1.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_2.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_2.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_2.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_3.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_3.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_3.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_4.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_4.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_4.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_5.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_5.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_5.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_6.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_6.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_6.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_rogue_6.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_special_0.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_special_0.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_special_0.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_special_0.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_special_1.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_special_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_special_1.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_special_1.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_special_goldenknight.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_special_goldenknight.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_special_goldenknight.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_special_goldenknight.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_special_moonpearlShield.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_special_moonpearlShield.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_special_moonpearlShield.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_special_moonpearlShield.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_1.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_1.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_1.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_2.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_2.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_2.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_3.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_3.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_3.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_4.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_4.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_4.png diff --git a/common/img/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_5.png b/website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_5.png rename to website/assets/sprites/spritesmith/gear/shield/shop/shop_shield_warrior_5.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_0.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_0.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_0.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_0.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_1.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_1.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_1.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_2.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_2.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_2.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_3.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_3.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_3.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_4.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_4.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_4.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_5.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_5.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_5.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_6.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_6.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_6.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_healer_6.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_0.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_0.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_0.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_0.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_1.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_1.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_1.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_2.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_2.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_2.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_3.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_3.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_3.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_4.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_4.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_4.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_5.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_5.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_5.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_6.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_6.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_6.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_rogue_6.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_0.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_0.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_0.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_0.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_1.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_1.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_1.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_2.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_2.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_2.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_3.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_3.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_3.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_critical.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_critical.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_critical.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_critical.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_tridentOfCrashingTides.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_tridentOfCrashingTides.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_tridentOfCrashingTides.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_special_tridentOfCrashingTides.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_0.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_0.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_0.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_0.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_1.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_1.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_1.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_2.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_2.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_2.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_3.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_3.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_3.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_4.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_4.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_4.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_5.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_5.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_5.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_6.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_6.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_6.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_warrior_6.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_0.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_0.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_0.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_0.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_1.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_1.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_1.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_2.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_2.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_2.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_3.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_3.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_3.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_4.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_4.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_4.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_5.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_5.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_5.png diff --git a/common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_6.png b/website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_6.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_6.png rename to website/assets/sprites/spritesmith/gear/weapon/shop/shop_weapon_wizard_6.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_healer_0.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_healer_0.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_healer_0.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_healer_0.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_healer_1.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_healer_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_healer_1.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_healer_1.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_healer_2.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_healer_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_healer_2.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_healer_2.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_healer_3.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_healer_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_healer_3.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_healer_3.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_healer_4.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_healer_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_healer_4.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_healer_4.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_healer_5.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_healer_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_healer_5.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_healer_5.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_healer_6.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_healer_6.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_healer_6.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_healer_6.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_rogue_0.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_rogue_0.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_rogue_0.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_rogue_0.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_rogue_1.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_rogue_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_rogue_1.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_rogue_1.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_rogue_2.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_rogue_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_rogue_2.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_rogue_2.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_rogue_3.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_rogue_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_rogue_3.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_rogue_3.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_rogue_4.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_rogue_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_rogue_4.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_rogue_4.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_rogue_5.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_rogue_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_rogue_5.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_rogue_5.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_rogue_6.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_rogue_6.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_rogue_6.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_rogue_6.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_special_1.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_special_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_special_1.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_special_1.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_special_2.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_special_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_special_2.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_special_2.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_special_3.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_special_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_special_3.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_special_3.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_special_tridentOfCrashingTides.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_special_tridentOfCrashingTides.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_special_tridentOfCrashingTides.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_special_tridentOfCrashingTides.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_warrior_0.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_warrior_0.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_warrior_0.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_warrior_0.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_warrior_1.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_warrior_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_warrior_1.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_warrior_1.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_warrior_2.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_warrior_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_warrior_2.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_warrior_2.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_warrior_3.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_warrior_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_warrior_3.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_warrior_3.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_warrior_4.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_warrior_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_warrior_4.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_warrior_4.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_warrior_5.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_warrior_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_warrior_5.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_warrior_5.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_warrior_6.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_warrior_6.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_warrior_6.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_warrior_6.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_wizard_0.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_wizard_0.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_wizard_0.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_wizard_0.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_wizard_1.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_wizard_1.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_wizard_1.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_wizard_1.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_wizard_2.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_wizard_2.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_wizard_2.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_wizard_2.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_wizard_3.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_wizard_3.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_wizard_3.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_wizard_3.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_wizard_4.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_wizard_4.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_wizard_4.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_wizard_4.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_wizard_5.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_wizard_5.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_wizard_5.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_wizard_5.png diff --git a/common/img/sprites/spritesmith/gear/weapon/weapon_wizard_6.png b/website/assets/sprites/spritesmith/gear/weapon/weapon_wizard_6.png similarity index 100% rename from common/img/sprites/spritesmith/gear/weapon/weapon_wizard_6.png rename to website/assets/sprites/spritesmith/gear/weapon/weapon_wizard_6.png diff --git a/common/img/sprites/spritesmith/misc/GrimReaper.png b/website/assets/sprites/spritesmith/misc/GrimReaper.png similarity index 100% rename from common/img/sprites/spritesmith/misc/GrimReaper.png rename to website/assets/sprites/spritesmith/misc/GrimReaper.png diff --git a/common/img/sprites/spritesmith/misc/Pet_Currency_Gem.png b/website/assets/sprites/spritesmith/misc/Pet_Currency_Gem.png similarity index 100% rename from common/img/sprites/spritesmith/misc/Pet_Currency_Gem.png rename to website/assets/sprites/spritesmith/misc/Pet_Currency_Gem.png diff --git a/common/img/sprites/spritesmith/misc/Pet_Currency_Gem1x.png b/website/assets/sprites/spritesmith/misc/Pet_Currency_Gem1x.png similarity index 100% rename from common/img/sprites/spritesmith/misc/Pet_Currency_Gem1x.png rename to website/assets/sprites/spritesmith/misc/Pet_Currency_Gem1x.png diff --git a/common/img/sprites/spritesmith/misc/Pet_Currency_Gem2x.png b/website/assets/sprites/spritesmith/misc/Pet_Currency_Gem2x.png similarity index 100% rename from common/img/sprites/spritesmith/misc/Pet_Currency_Gem2x.png rename to website/assets/sprites/spritesmith/misc/Pet_Currency_Gem2x.png diff --git a/common/img/sprites/spritesmith/misc/PixelPaw-Gold.png b/website/assets/sprites/spritesmith/misc/PixelPaw-Gold.png similarity index 100% rename from common/img/sprites/spritesmith/misc/PixelPaw-Gold.png rename to website/assets/sprites/spritesmith/misc/PixelPaw-Gold.png diff --git a/common/img/sprites/spritesmith/misc/PixelPaw.png b/website/assets/sprites/spritesmith/misc/PixelPaw.png similarity index 100% rename from common/img/sprites/spritesmith/misc/PixelPaw.png rename to website/assets/sprites/spritesmith/misc/PixelPaw.png diff --git a/common/img/sprites/spritesmith/misc/PixelPaw002.png b/website/assets/sprites/spritesmith/misc/PixelPaw002.png similarity index 100% rename from common/img/sprites/spritesmith/misc/PixelPaw002.png rename to website/assets/sprites/spritesmith/misc/PixelPaw002.png diff --git a/common/img/sprites/spritesmith/misc/avatar_floral_healer.png b/website/assets/sprites/spritesmith/misc/avatar_floral_healer.png similarity index 100% rename from common/img/sprites/spritesmith/misc/avatar_floral_healer.png rename to website/assets/sprites/spritesmith/misc/avatar_floral_healer.png diff --git a/common/img/sprites/spritesmith/misc/avatar_floral_rogue.png b/website/assets/sprites/spritesmith/misc/avatar_floral_rogue.png similarity index 100% rename from common/img/sprites/spritesmith/misc/avatar_floral_rogue.png rename to website/assets/sprites/spritesmith/misc/avatar_floral_rogue.png diff --git a/common/img/sprites/spritesmith/misc/avatar_floral_warrior.png b/website/assets/sprites/spritesmith/misc/avatar_floral_warrior.png similarity index 100% rename from common/img/sprites/spritesmith/misc/avatar_floral_warrior.png rename to website/assets/sprites/spritesmith/misc/avatar_floral_warrior.png diff --git a/common/img/sprites/spritesmith/misc/avatar_floral_wizard.png b/website/assets/sprites/spritesmith/misc/avatar_floral_wizard.png similarity index 100% rename from common/img/sprites/spritesmith/misc/avatar_floral_wizard.png rename to website/assets/sprites/spritesmith/misc/avatar_floral_wizard.png diff --git a/common/img/sprites/spritesmith/misc/empty_bottles.png b/website/assets/sprites/spritesmith/misc/empty_bottles.png similarity index 100% rename from common/img/sprites/spritesmith/misc/empty_bottles.png rename to website/assets/sprites/spritesmith/misc/empty_bottles.png diff --git a/common/img/sprites/spritesmith/misc/ghost.png b/website/assets/sprites/spritesmith/misc/ghost.png similarity index 100% rename from common/img/sprites/spritesmith/misc/ghost.png rename to website/assets/sprites/spritesmith/misc/ghost.png diff --git a/common/img/sprites/spritesmith/misc/inventory_present.png b/website/assets/sprites/spritesmith/misc/inventory_present.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_present.png rename to website/assets/sprites/spritesmith/misc/inventory_present.png diff --git a/common/img/sprites/spritesmith/misc/inventory_present_01.png b/website/assets/sprites/spritesmith/misc/inventory_present_01.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_present_01.png rename to website/assets/sprites/spritesmith/misc/inventory_present_01.png diff --git a/common/img/sprites/spritesmith/misc/inventory_present_02.png b/website/assets/sprites/spritesmith/misc/inventory_present_02.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_present_02.png rename to website/assets/sprites/spritesmith/misc/inventory_present_02.png diff --git a/common/img/sprites/spritesmith/misc/inventory_present_03.png b/website/assets/sprites/spritesmith/misc/inventory_present_03.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_present_03.png rename to website/assets/sprites/spritesmith/misc/inventory_present_03.png diff --git a/common/img/sprites/spritesmith/misc/inventory_present_04.png b/website/assets/sprites/spritesmith/misc/inventory_present_04.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_present_04.png rename to website/assets/sprites/spritesmith/misc/inventory_present_04.png diff --git a/common/img/sprites/spritesmith/misc/inventory_present_05.png b/website/assets/sprites/spritesmith/misc/inventory_present_05.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_present_05.png rename to website/assets/sprites/spritesmith/misc/inventory_present_05.png diff --git a/common/img/sprites/spritesmith/misc/inventory_present_06.png b/website/assets/sprites/spritesmith/misc/inventory_present_06.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_present_06.png rename to website/assets/sprites/spritesmith/misc/inventory_present_06.png diff --git a/common/img/sprites/spritesmith/misc/inventory_present_07.png b/website/assets/sprites/spritesmith/misc/inventory_present_07.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_present_07.png rename to website/assets/sprites/spritesmith/misc/inventory_present_07.png diff --git a/common/img/sprites/spritesmith/misc/inventory_present_08.png b/website/assets/sprites/spritesmith/misc/inventory_present_08.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_present_08.png rename to website/assets/sprites/spritesmith/misc/inventory_present_08.png diff --git a/common/img/sprites/spritesmith/misc/inventory_present_09.png b/website/assets/sprites/spritesmith/misc/inventory_present_09.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_present_09.png rename to website/assets/sprites/spritesmith/misc/inventory_present_09.png diff --git a/common/img/sprites/spritesmith/misc/inventory_present_10.png b/website/assets/sprites/spritesmith/misc/inventory_present_10.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_present_10.png rename to website/assets/sprites/spritesmith/misc/inventory_present_10.png diff --git a/common/img/sprites/spritesmith/misc/inventory_present_11.png b/website/assets/sprites/spritesmith/misc/inventory_present_11.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_present_11.png rename to website/assets/sprites/spritesmith/misc/inventory_present_11.png diff --git a/common/img/sprites/spritesmith/misc/inventory_present_12.png b/website/assets/sprites/spritesmith/misc/inventory_present_12.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_present_12.png rename to website/assets/sprites/spritesmith/misc/inventory_present_12.png diff --git a/common/img/sprites/spritesmith/misc/inventory_quest_scroll.png b/website/assets/sprites/spritesmith/misc/inventory_quest_scroll.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_quest_scroll.png rename to website/assets/sprites/spritesmith/misc/inventory_quest_scroll.png diff --git a/common/img/sprites/spritesmith/misc/inventory_quest_scroll_locked.png b/website/assets/sprites/spritesmith/misc/inventory_quest_scroll_locked.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_quest_scroll_locked.png rename to website/assets/sprites/spritesmith/misc/inventory_quest_scroll_locked.png diff --git a/common/img/sprites/spritesmith/misc/inventory_special_birthday.png b/website/assets/sprites/spritesmith/misc/inventory_special_birthday.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_special_birthday.png rename to website/assets/sprites/spritesmith/misc/inventory_special_birthday.png diff --git a/common/img/sprites/spritesmith/misc/inventory_special_fortify.png b/website/assets/sprites/spritesmith/misc/inventory_special_fortify.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_special_fortify.png rename to website/assets/sprites/spritesmith/misc/inventory_special_fortify.png diff --git a/common/img/sprites/spritesmith/misc/inventory_special_greeting.png b/website/assets/sprites/spritesmith/misc/inventory_special_greeting.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_special_greeting.png rename to website/assets/sprites/spritesmith/misc/inventory_special_greeting.png diff --git a/common/img/sprites/spritesmith/misc/inventory_special_nye.png b/website/assets/sprites/spritesmith/misc/inventory_special_nye.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_special_nye.png rename to website/assets/sprites/spritesmith/misc/inventory_special_nye.png diff --git a/common/img/sprites/spritesmith/misc/inventory_special_opaquePotion.png b/website/assets/sprites/spritesmith/misc/inventory_special_opaquePotion.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_special_opaquePotion.png rename to website/assets/sprites/spritesmith/misc/inventory_special_opaquePotion.png diff --git a/common/img/sprites/spritesmith/misc/inventory_special_seafoam.png b/website/assets/sprites/spritesmith/misc/inventory_special_seafoam.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_special_seafoam.png rename to website/assets/sprites/spritesmith/misc/inventory_special_seafoam.png diff --git a/common/img/sprites/spritesmith/misc/inventory_special_shinySeed.png b/website/assets/sprites/spritesmith/misc/inventory_special_shinySeed.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_special_shinySeed.png rename to website/assets/sprites/spritesmith/misc/inventory_special_shinySeed.png diff --git a/common/img/sprites/spritesmith/misc/inventory_special_snowball.png b/website/assets/sprites/spritesmith/misc/inventory_special_snowball.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_special_snowball.png rename to website/assets/sprites/spritesmith/misc/inventory_special_snowball.png diff --git a/common/img/sprites/spritesmith/misc/inventory_special_spookySparkles.png b/website/assets/sprites/spritesmith/misc/inventory_special_spookySparkles.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_special_spookySparkles.png rename to website/assets/sprites/spritesmith/misc/inventory_special_spookySparkles.png diff --git a/common/img/sprites/spritesmith/misc/inventory_special_thankyou.png b/website/assets/sprites/spritesmith/misc/inventory_special_thankyou.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_special_thankyou.png rename to website/assets/sprites/spritesmith/misc/inventory_special_thankyou.png diff --git a/common/img/sprites/spritesmith/misc/inventory_special_trinket.png b/website/assets/sprites/spritesmith/misc/inventory_special_trinket.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_special_trinket.png rename to website/assets/sprites/spritesmith/misc/inventory_special_trinket.png diff --git a/common/img/sprites/spritesmith/misc/inventory_special_valentine.png b/website/assets/sprites/spritesmith/misc/inventory_special_valentine.png similarity index 100% rename from common/img/sprites/spritesmith/misc/inventory_special_valentine.png rename to website/assets/sprites/spritesmith/misc/inventory_special_valentine.png diff --git a/common/img/sprites/spritesmith/misc/knockout.png b/website/assets/sprites/spritesmith/misc/knockout.png similarity index 100% rename from common/img/sprites/spritesmith/misc/knockout.png rename to website/assets/sprites/spritesmith/misc/knockout.png diff --git a/common/img/sprites/spritesmith/misc/pet_key.png b/website/assets/sprites/spritesmith/misc/pet_key.png similarity index 100% rename from common/img/sprites/spritesmith/misc/pet_key.png rename to website/assets/sprites/spritesmith/misc/pet_key.png diff --git a/common/img/sprites/spritesmith/misc/rebirth_orb.png b/website/assets/sprites/spritesmith/misc/rebirth_orb.png similarity index 100% rename from common/img/sprites/spritesmith/misc/rebirth_orb.png rename to website/assets/sprites/spritesmith/misc/rebirth_orb.png diff --git a/common/img/sprites/spritesmith/misc/seafoam_star.png b/website/assets/sprites/spritesmith/misc/seafoam_star.png similarity index 100% rename from common/img/sprites/spritesmith/misc/seafoam_star.png rename to website/assets/sprites/spritesmith/misc/seafoam_star.png diff --git a/common/img/sprites/spritesmith/misc/shop_armoire.png b/website/assets/sprites/spritesmith/misc/shop_armoire.png similarity index 100% rename from common/img/sprites/spritesmith/misc/shop_armoire.png rename to website/assets/sprites/spritesmith/misc/shop_armoire.png diff --git a/common/img/sprites/spritesmith/misc/snowman.png b/website/assets/sprites/spritesmith/misc/snowman.png similarity index 100% rename from common/img/sprites/spritesmith/misc/snowman.png rename to website/assets/sprites/spritesmith/misc/snowman.png diff --git a/common/img/sprites/spritesmith/misc/zzz.png b/website/assets/sprites/spritesmith/misc/zzz.png similarity index 100% rename from common/img/sprites/spritesmith/misc/zzz.png rename to website/assets/sprites/spritesmith/misc/zzz.png diff --git a/common/img/sprites/spritesmith/misc/zzz_light.png b/website/assets/sprites/spritesmith/misc/zzz_light.png similarity index 100% rename from common/img/sprites/spritesmith/misc/zzz_light.png rename to website/assets/sprites/spritesmith/misc/zzz_light.png diff --git a/common/img/sprites/spritesmith/npcs/npc_alex.png b/website/assets/sprites/spritesmith/npcs/npc_alex.png similarity index 100% rename from common/img/sprites/spritesmith/npcs/npc_alex.png rename to website/assets/sprites/spritesmith/npcs/npc_alex.png diff --git a/common/img/sprites/spritesmith/npcs/npc_aprilFool.png b/website/assets/sprites/spritesmith/npcs/npc_aprilFool.png similarity index 100% rename from common/img/sprites/spritesmith/npcs/npc_aprilFool.png rename to website/assets/sprites/spritesmith/npcs/npc_aprilFool.png diff --git a/common/img/sprites/spritesmith/npcs/npc_bailey.png b/website/assets/sprites/spritesmith/npcs/npc_bailey.png similarity index 100% rename from common/img/sprites/spritesmith/npcs/npc_bailey.png rename to website/assets/sprites/spritesmith/npcs/npc_bailey.png diff --git a/common/img/sprites/spritesmith/npcs/npc_daniel.png b/website/assets/sprites/spritesmith/npcs/npc_daniel.png similarity index 100% rename from common/img/sprites/spritesmith/npcs/npc_daniel.png rename to website/assets/sprites/spritesmith/npcs/npc_daniel.png diff --git a/common/img/sprites/spritesmith/npcs/npc_justin.png b/website/assets/sprites/spritesmith/npcs/npc_justin.png similarity index 100% rename from common/img/sprites/spritesmith/npcs/npc_justin.png rename to website/assets/sprites/spritesmith/npcs/npc_justin.png diff --git a/common/img/sprites/spritesmith/npcs/npc_justin_head.png b/website/assets/sprites/spritesmith/npcs/npc_justin_head.png similarity index 100% rename from common/img/sprites/spritesmith/npcs/npc_justin_head.png rename to website/assets/sprites/spritesmith/npcs/npc_justin_head.png diff --git a/common/img/sprites/spritesmith/npcs/npc_matt.png b/website/assets/sprites/spritesmith/npcs/npc_matt.png similarity index 100% rename from common/img/sprites/spritesmith/npcs/npc_matt.png rename to website/assets/sprites/spritesmith/npcs/npc_matt.png diff --git a/common/img/sprites/spritesmith/npcs/npc_sabe.png b/website/assets/sprites/spritesmith/npcs/npc_sabe.png similarity index 100% rename from common/img/sprites/spritesmith/npcs/npc_sabe.png rename to website/assets/sprites/spritesmith/npcs/npc_sabe.png diff --git a/common/img/sprites/spritesmith/npcs/npc_timetravelers.png b/website/assets/sprites/spritesmith/npcs/npc_timetravelers.png similarity index 100% rename from common/img/sprites/spritesmith/npcs/npc_timetravelers.png rename to website/assets/sprites/spritesmith/npcs/npc_timetravelers.png diff --git a/common/img/sprites/spritesmith/npcs/npc_timetravelers_active.png b/website/assets/sprites/spritesmith/npcs/npc_timetravelers_active.png similarity index 100% rename from common/img/sprites/spritesmith/npcs/npc_timetravelers_active.png rename to website/assets/sprites/spritesmith/npcs/npc_timetravelers_active.png diff --git a/common/img/sprites/spritesmith/npcs/npc_tyler.png b/website/assets/sprites/spritesmith/npcs/npc_tyler.png similarity index 100% rename from common/img/sprites/spritesmith/npcs/npc_tyler.png rename to website/assets/sprites/spritesmith/npcs/npc_tyler.png diff --git a/common/img/sprites/spritesmith/npcs/npc_vicky.png b/website/assets/sprites/spritesmith/npcs/npc_vicky.png similarity index 100% rename from common/img/sprites/spritesmith/npcs/npc_vicky.png rename to website/assets/sprites/spritesmith/npcs/npc_vicky.png diff --git a/common/img/sprites/spritesmith/npcs/seasonalshop_closed.png b/website/assets/sprites/spritesmith/npcs/seasonalshop_closed.png similarity index 100% rename from common/img/sprites/spritesmith/npcs/seasonalshop_closed.png rename to website/assets/sprites/spritesmith/npcs/seasonalshop_closed.png diff --git a/common/img/sprites/spritesmith/npcs/seasonalshop_open.png b/website/assets/sprites/spritesmith/npcs/seasonalshop_open.png similarity index 100% rename from common/img/sprites/spritesmith/npcs/seasonalshop_open.png rename to website/assets/sprites/spritesmith/npcs/seasonalshop_open.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_TEMPLATE_FOR_MISSING_IMAGE.png b/website/assets/sprites/spritesmith/quests/bosses/quest_TEMPLATE_FOR_MISSING_IMAGE.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_TEMPLATE_FOR_MISSING_IMAGE.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_TEMPLATE_FOR_MISSING_IMAGE.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_armadillo.png b/website/assets/sprites/spritesmith/quests/bosses/quest_armadillo.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_armadillo.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_armadillo.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_atom1.png b/website/assets/sprites/spritesmith/quests/bosses/quest_atom1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_atom1.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_atom1.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_atom2.png b/website/assets/sprites/spritesmith/quests/bosses/quest_atom2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_atom2.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_atom2.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_atom3.png b/website/assets/sprites/spritesmith/quests/bosses/quest_atom3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_atom3.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_atom3.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_axolotl.png b/website/assets/sprites/spritesmith/quests/bosses/quest_axolotl.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_axolotl.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_axolotl.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_basilist.png b/website/assets/sprites/spritesmith/quests/bosses/quest_basilist.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_basilist.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_basilist.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_bunny.png b/website/assets/sprites/spritesmith/quests/bosses/quest_bunny.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_bunny.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_bunny.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_cheetah.png b/website/assets/sprites/spritesmith/quests/bosses/quest_cheetah.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_cheetah.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_cheetah.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_cow.png b/website/assets/sprites/spritesmith/quests/bosses/quest_cow.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_cow.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_cow.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_dilatory.png b/website/assets/sprites/spritesmith/quests/bosses/quest_dilatory.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_dilatory.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_dilatory.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_dilatoryDistress1.png b/website/assets/sprites/spritesmith/quests/bosses/quest_dilatoryDistress1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_dilatoryDistress1.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_dilatoryDistress1.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_dilatoryDistress2.png b/website/assets/sprites/spritesmith/quests/bosses/quest_dilatoryDistress2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_dilatoryDistress2.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_dilatoryDistress2.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_dilatoryDistress3.png b/website/assets/sprites/spritesmith/quests/bosses/quest_dilatoryDistress3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_dilatoryDistress3.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_dilatoryDistress3.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_dilatory_derby.png b/website/assets/sprites/spritesmith/quests/bosses/quest_dilatory_derby.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_dilatory_derby.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_dilatory_derby.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_egg.png b/website/assets/sprites/spritesmith/quests/bosses/quest_egg.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_egg.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_egg.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_evilsanta.png b/website/assets/sprites/spritesmith/quests/bosses/quest_evilsanta.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_evilsanta.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_evilsanta.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_evilsanta2.png b/website/assets/sprites/spritesmith/quests/bosses/quest_evilsanta2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_evilsanta2.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_evilsanta2.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_falcon.png b/website/assets/sprites/spritesmith/quests/bosses/quest_falcon.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_falcon.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_falcon.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_frog.png b/website/assets/sprites/spritesmith/quests/bosses/quest_frog.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_frog.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_frog.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_ghost_stag.png b/website/assets/sprites/spritesmith/quests/bosses/quest_ghost_stag.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_ghost_stag.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_ghost_stag.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_goldenknight1.png b/website/assets/sprites/spritesmith/quests/bosses/quest_goldenknight1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_goldenknight1.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_goldenknight1.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_goldenknight2.png b/website/assets/sprites/spritesmith/quests/bosses/quest_goldenknight2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_goldenknight2.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_goldenknight2.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_goldenknight3.png b/website/assets/sprites/spritesmith/quests/bosses/quest_goldenknight3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_goldenknight3.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_goldenknight3.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_gryphon.png b/website/assets/sprites/spritesmith/quests/bosses/quest_gryphon.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_gryphon.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_gryphon.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_harpy.png b/website/assets/sprites/spritesmith/quests/bosses/quest_harpy.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_harpy.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_harpy.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_hedgehog.png b/website/assets/sprites/spritesmith/quests/bosses/quest_hedgehog.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_hedgehog.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_hedgehog.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_horse.png b/website/assets/sprites/spritesmith/quests/bosses/quest_horse.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_horse.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_horse.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_kraken.png b/website/assets/sprites/spritesmith/quests/bosses/quest_kraken.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_kraken.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_kraken.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_monkey.png b/website/assets/sprites/spritesmith/quests/bosses/quest_monkey.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_monkey.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_monkey.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_moonstone1.png b/website/assets/sprites/spritesmith/quests/bosses/quest_moonstone1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_moonstone1.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_moonstone1.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_moonstone2.png b/website/assets/sprites/spritesmith/quests/bosses/quest_moonstone2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_moonstone2.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_moonstone2.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_moonstone3.png b/website/assets/sprites/spritesmith/quests/bosses/quest_moonstone3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_moonstone3.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_moonstone3.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_octopus.png b/website/assets/sprites/spritesmith/quests/bosses/quest_octopus.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_octopus.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_octopus.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_owl.png b/website/assets/sprites/spritesmith/quests/bosses/quest_owl.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_owl.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_owl.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_penguin.png b/website/assets/sprites/spritesmith/quests/bosses/quest_penguin.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_penguin.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_penguin.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_rat.png b/website/assets/sprites/spritesmith/quests/bosses/quest_rat.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_rat.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_rat.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_rock.png b/website/assets/sprites/spritesmith/quests/bosses/quest_rock.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_rock.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_rock.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_rooster.png b/website/assets/sprites/spritesmith/quests/bosses/quest_rooster.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_rooster.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_rooster.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_sabretooth.png b/website/assets/sprites/spritesmith/quests/bosses/quest_sabretooth.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_sabretooth.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_sabretooth.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_sheep.png b/website/assets/sprites/spritesmith/quests/bosses/quest_sheep.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_sheep.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_sheep.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_slime.png b/website/assets/sprites/spritesmith/quests/bosses/quest_slime.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_slime.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_slime.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_snail.png b/website/assets/sprites/spritesmith/quests/bosses/quest_snail.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_snail.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_snail.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_snake.png b/website/assets/sprites/spritesmith/quests/bosses/quest_snake.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_snake.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_snake.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_spider.png b/website/assets/sprites/spritesmith/quests/bosses/quest_spider.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_spider.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_spider.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_stressbeast.png b/website/assets/sprites/spritesmith/quests/bosses/quest_stressbeast.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_stressbeast.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_stressbeast.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_stressbeast_bailey.png b/website/assets/sprites/spritesmith/quests/bosses/quest_stressbeast_bailey.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_stressbeast_bailey.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_stressbeast_bailey.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_stressbeast_guide.png b/website/assets/sprites/spritesmith/quests/bosses/quest_stressbeast_guide.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_stressbeast_guide.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_stressbeast_guide.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_stressbeast_stables.png b/website/assets/sprites/spritesmith/quests/bosses/quest_stressbeast_stables.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_stressbeast_stables.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_stressbeast_stables.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_treeling.png b/website/assets/sprites/spritesmith/quests/bosses/quest_treeling.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_treeling.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_treeling.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_trex.png b/website/assets/sprites/spritesmith/quests/bosses/quest_trex.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_trex.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_trex.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_trex_undead.png b/website/assets/sprites/spritesmith/quests/bosses/quest_trex_undead.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_trex_undead.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_trex_undead.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_turtle.png b/website/assets/sprites/spritesmith/quests/bosses/quest_turtle.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_turtle.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_turtle.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_unicorn.png b/website/assets/sprites/spritesmith/quests/bosses/quest_unicorn.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_unicorn.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_unicorn.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_vice1.png b/website/assets/sprites/spritesmith/quests/bosses/quest_vice1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_vice1.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_vice1.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_vice2.png b/website/assets/sprites/spritesmith/quests/bosses/quest_vice2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_vice2.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_vice2.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_vice3.png b/website/assets/sprites/spritesmith/quests/bosses/quest_vice3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_vice3.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_vice3.png diff --git a/common/img/sprites/spritesmith/quests/bosses/quest_whale.png b/website/assets/sprites/spritesmith/quests/bosses/quest_whale.png similarity index 100% rename from common/img/sprites/spritesmith/quests/bosses/quest_whale.png rename to website/assets/sprites/spritesmith/quests/bosses/quest_whale.png diff --git a/common/img/sprites/spritesmith/quests/items/quest_dilatoryDistress1_blueFins.png b/website/assets/sprites/spritesmith/quests/items/quest_dilatoryDistress1_blueFins.png similarity index 100% rename from common/img/sprites/spritesmith/quests/items/quest_dilatoryDistress1_blueFins.png rename to website/assets/sprites/spritesmith/quests/items/quest_dilatoryDistress1_blueFins.png diff --git a/common/img/sprites/spritesmith/quests/items/quest_dilatoryDistress1_fireCoral.png b/website/assets/sprites/spritesmith/quests/items/quest_dilatoryDistress1_fireCoral.png similarity index 100% rename from common/img/sprites/spritesmith/quests/items/quest_dilatoryDistress1_fireCoral.png rename to website/assets/sprites/spritesmith/quests/items/quest_dilatoryDistress1_fireCoral.png diff --git a/common/img/sprites/spritesmith/quests/items/quest_egg_plainEgg.png b/website/assets/sprites/spritesmith/quests/items/quest_egg_plainEgg.png similarity index 100% rename from common/img/sprites/spritesmith/quests/items/quest_egg_plainEgg.png rename to website/assets/sprites/spritesmith/quests/items/quest_egg_plainEgg.png diff --git a/common/img/sprites/spritesmith/quests/items/quest_goldenknight1_testimony.png b/website/assets/sprites/spritesmith/quests/items/quest_goldenknight1_testimony.png similarity index 100% rename from common/img/sprites/spritesmith/quests/items/quest_goldenknight1_testimony.png rename to website/assets/sprites/spritesmith/quests/items/quest_goldenknight1_testimony.png diff --git a/common/img/sprites/spritesmith/quests/items/quest_moonstone1_moonstone.png b/website/assets/sprites/spritesmith/quests/items/quest_moonstone1_moonstone.png similarity index 100% rename from common/img/sprites/spritesmith/quests/items/quest_moonstone1_moonstone.png rename to website/assets/sprites/spritesmith/quests/items/quest_moonstone1_moonstone.png diff --git a/common/img/sprites/spritesmith/quests/items/quest_vice2_lightCrystal.png b/website/assets/sprites/spritesmith/quests/items/quest_vice2_lightCrystal.png similarity index 100% rename from common/img/sprites/spritesmith/quests/items/quest_vice2_lightCrystal.png rename to website/assets/sprites/spritesmith/quests/items/quest_vice2_lightCrystal.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_armadillo.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_armadillo.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_armadillo.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_armadillo.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom1.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom1.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom1.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom1_locked.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom1_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom1_locked.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom1_locked.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom2.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom2.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom2.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom2_locked.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom2_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom2_locked.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom2_locked.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom3.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom3.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom3.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom3_locked.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom3_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom3_locked.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_atom3_locked.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_axolotl.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_axolotl.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_axolotl.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_axolotl.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_basilist.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_basilist.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_basilist.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_basilist.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_bunny.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_bunny.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_bunny.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_bunny.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_cheetah.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_cheetah.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_cheetah.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_cheetah.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_cow.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_cow.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_cow.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_cow.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress1.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress1.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress1.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress2.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress2.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress2.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress2_locked.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress2_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress2_locked.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress2_locked.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress3.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress3.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress3.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress3_locked.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress3_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress3_locked.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatoryDistress3_locked.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatory_derby.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatory_derby.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatory_derby.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_dilatory_derby.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_egg.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_egg.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_egg.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_egg.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_evilsanta.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_evilsanta.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_evilsanta.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_evilsanta.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_evilsanta2.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_evilsanta2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_evilsanta2.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_evilsanta2.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_falcon.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_falcon.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_falcon.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_falcon.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_frog.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_frog.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_frog.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_frog.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_ghost_stag.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_ghost_stag.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_ghost_stag.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_ghost_stag.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight1.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight1.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight1.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight1_locked.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight1_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight1_locked.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight1_locked.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight2.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight2.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight2.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight2_locked.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight2_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight2_locked.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight2_locked.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight3.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight3.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight3.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight3_locked.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight3_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight3_locked.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_goldenknight3_locked.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_gryphon.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_gryphon.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_gryphon.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_gryphon.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_harpy.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_harpy.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_harpy.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_harpy.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_hedgehog.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_hedgehog.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_hedgehog.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_hedgehog.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_horse.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_horse.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_horse.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_horse.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_kraken.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_kraken.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_kraken.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_kraken.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_monkey.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_monkey.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_monkey.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_monkey.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone1.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone1.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone1.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone1_locked.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone1_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone1_locked.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone1_locked.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone2.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone2.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone2.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone2_locked.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone2_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone2_locked.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone2_locked.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone3.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone3.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone3.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone3_locked.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone3_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone3_locked.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_moonstone3_locked.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_octopus.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_octopus.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_octopus.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_octopus.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_owl.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_owl.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_owl.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_owl.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_penguin.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_penguin.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_penguin.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_penguin.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rat.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rat.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rat.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rat.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rock.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rock.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rock.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rock.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rooster.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rooster.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rooster.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_rooster.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_sabretooth.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_sabretooth.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_sabretooth.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_sabretooth.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_sheep.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_sheep.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_sheep.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_sheep.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_slime.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_slime.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_slime.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_slime.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_snail.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_snail.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_snail.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_snail.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_snake.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_snake.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_snake.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_snake.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_spider.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_spider.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_spider.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_spider.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_treeling.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_treeling.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_treeling.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_treeling.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_trex.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_trex.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_trex.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_trex.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_trex_undead.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_trex_undead.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_trex_undead.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_trex_undead.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_turtle.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_turtle.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_turtle.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_turtle.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_unicorn.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_unicorn.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_unicorn.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_unicorn.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice1.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice1.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice1.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice1.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice1_locked.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice1_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice1_locked.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice1_locked.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice2.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice2.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice2.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice2.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice2_locked.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice2_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice2_locked.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice2_locked.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice3.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice3.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice3.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice3.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice3_locked.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice3_locked.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice3_locked.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_vice3_locked.png diff --git a/common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_whale.png b/website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_whale.png similarity index 100% rename from common/img/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_whale.png rename to website/assets/sprites/spritesmith/quests/scrolls/inventory_quest_scroll_whale.png diff --git a/common/img/sprites/spritesmith/shop/shop_copper.png b/website/assets/sprites/spritesmith/shop/shop_copper.png similarity index 100% rename from common/img/sprites/spritesmith/shop/shop_copper.png rename to website/assets/sprites/spritesmith/shop/shop_copper.png diff --git a/common/img/sprites/spritesmith/shop/shop_eyes.png b/website/assets/sprites/spritesmith/shop/shop_eyes.png similarity index 100% rename from common/img/sprites/spritesmith/shop/shop_eyes.png rename to website/assets/sprites/spritesmith/shop/shop_eyes.png diff --git a/common/img/sprites/spritesmith/shop/shop_gold.png b/website/assets/sprites/spritesmith/shop/shop_gold.png similarity index 100% rename from common/img/sprites/spritesmith/shop/shop_gold.png rename to website/assets/sprites/spritesmith/shop/shop_gold.png diff --git a/common/img/sprites/spritesmith/shop/shop_opaquePotion.png b/website/assets/sprites/spritesmith/shop/shop_opaquePotion.png similarity index 100% rename from common/img/sprites/spritesmith/shop/shop_opaquePotion.png rename to website/assets/sprites/spritesmith/shop/shop_opaquePotion.png diff --git a/common/img/sprites/spritesmith/shop/shop_potion.png b/website/assets/sprites/spritesmith/shop/shop_potion.png similarity index 100% rename from common/img/sprites/spritesmith/shop/shop_potion.png rename to website/assets/sprites/spritesmith/shop/shop_potion.png diff --git a/common/img/sprites/spritesmith/shop/shop_reroll.png b/website/assets/sprites/spritesmith/shop/shop_reroll.png similarity index 100% rename from common/img/sprites/spritesmith/shop/shop_reroll.png rename to website/assets/sprites/spritesmith/shop/shop_reroll.png diff --git a/common/img/sprites/spritesmith/shop/shop_seafoam.png b/website/assets/sprites/spritesmith/shop/shop_seafoam.png similarity index 100% rename from common/img/sprites/spritesmith/shop/shop_seafoam.png rename to website/assets/sprites/spritesmith/shop/shop_seafoam.png diff --git a/common/img/sprites/spritesmith/shop/shop_shinySeed.png b/website/assets/sprites/spritesmith/shop/shop_shinySeed.png similarity index 100% rename from common/img/sprites/spritesmith/shop/shop_shinySeed.png rename to website/assets/sprites/spritesmith/shop/shop_shinySeed.png diff --git a/common/img/sprites/spritesmith/shop/shop_silver.png b/website/assets/sprites/spritesmith/shop/shop_silver.png similarity index 100% rename from common/img/sprites/spritesmith/shop/shop_silver.png rename to website/assets/sprites/spritesmith/shop/shop_silver.png diff --git a/common/img/sprites/spritesmith/shop/shop_snowball.png b/website/assets/sprites/spritesmith/shop/shop_snowball.png similarity index 100% rename from common/img/sprites/spritesmith/shop/shop_snowball.png rename to website/assets/sprites/spritesmith/shop/shop_snowball.png diff --git a/common/img/sprites/spritesmith/shop/shop_spookySparkles.png b/website/assets/sprites/spritesmith/shop/shop_spookySparkles.png similarity index 100% rename from common/img/sprites/spritesmith/shop/shop_spookySparkles.png rename to website/assets/sprites/spritesmith/shop/shop_spookySparkles.png diff --git a/common/img/sprites/spritesmith/skills/shop_backStab.png b/website/assets/sprites/spritesmith/skills/shop_backStab.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_backStab.png rename to website/assets/sprites/spritesmith/skills/shop_backStab.png diff --git a/common/img/sprites/spritesmith/skills/shop_brightness.png b/website/assets/sprites/spritesmith/skills/shop_brightness.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_brightness.png rename to website/assets/sprites/spritesmith/skills/shop_brightness.png diff --git a/common/img/sprites/spritesmith/skills/shop_defensiveStance.png b/website/assets/sprites/spritesmith/skills/shop_defensiveStance.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_defensiveStance.png rename to website/assets/sprites/spritesmith/skills/shop_defensiveStance.png diff --git a/common/img/sprites/spritesmith/skills/shop_earth.png b/website/assets/sprites/spritesmith/skills/shop_earth.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_earth.png rename to website/assets/sprites/spritesmith/skills/shop_earth.png diff --git a/common/img/sprites/spritesmith/skills/shop_fireball.png b/website/assets/sprites/spritesmith/skills/shop_fireball.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_fireball.png rename to website/assets/sprites/spritesmith/skills/shop_fireball.png diff --git a/common/img/sprites/spritesmith/skills/shop_frost.png b/website/assets/sprites/spritesmith/skills/shop_frost.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_frost.png rename to website/assets/sprites/spritesmith/skills/shop_frost.png diff --git a/common/img/sprites/spritesmith/skills/shop_heal.png b/website/assets/sprites/spritesmith/skills/shop_heal.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_heal.png rename to website/assets/sprites/spritesmith/skills/shop_heal.png diff --git a/common/img/sprites/spritesmith/skills/shop_healAll.png b/website/assets/sprites/spritesmith/skills/shop_healAll.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_healAll.png rename to website/assets/sprites/spritesmith/skills/shop_healAll.png diff --git a/common/img/sprites/spritesmith/skills/shop_intimidate.png b/website/assets/sprites/spritesmith/skills/shop_intimidate.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_intimidate.png rename to website/assets/sprites/spritesmith/skills/shop_intimidate.png diff --git a/common/img/sprites/spritesmith/skills/shop_mpheal.png b/website/assets/sprites/spritesmith/skills/shop_mpheal.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_mpheal.png rename to website/assets/sprites/spritesmith/skills/shop_mpheal.png diff --git a/common/img/sprites/spritesmith/skills/shop_pickPocket.png b/website/assets/sprites/spritesmith/skills/shop_pickPocket.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_pickPocket.png rename to website/assets/sprites/spritesmith/skills/shop_pickPocket.png diff --git a/common/img/sprites/spritesmith/skills/shop_protectAura.png b/website/assets/sprites/spritesmith/skills/shop_protectAura.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_protectAura.png rename to website/assets/sprites/spritesmith/skills/shop_protectAura.png diff --git a/common/img/sprites/spritesmith/skills/shop_smash.png b/website/assets/sprites/spritesmith/skills/shop_smash.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_smash.png rename to website/assets/sprites/spritesmith/skills/shop_smash.png diff --git a/common/img/sprites/spritesmith/skills/shop_stealth.png b/website/assets/sprites/spritesmith/skills/shop_stealth.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_stealth.png rename to website/assets/sprites/spritesmith/skills/shop_stealth.png diff --git a/common/img/sprites/spritesmith/skills/shop_toolsOfTrade.png b/website/assets/sprites/spritesmith/skills/shop_toolsOfTrade.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_toolsOfTrade.png rename to website/assets/sprites/spritesmith/skills/shop_toolsOfTrade.png diff --git a/common/img/sprites/spritesmith/skills/shop_valorousPresence.png b/website/assets/sprites/spritesmith/skills/shop_valorousPresence.png similarity index 100% rename from common/img/sprites/spritesmith/skills/shop_valorousPresence.png rename to website/assets/sprites/spritesmith/skills/shop_valorousPresence.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Armadillo.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Armadillo.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Armadillo.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Armadillo.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Axolotl.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Axolotl.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Axolotl.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Axolotl.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_BearCub.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_BearCub.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_BearCub.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_BearCub.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Bunny.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Bunny.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Bunny.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Bunny.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Cactus.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Cactus.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Cactus.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Cactus.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Cheetah.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Cheetah.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Cheetah.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Cheetah.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Cow.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Cow.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Cow.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Cow.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Cuttlefish.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Cuttlefish.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Cuttlefish.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Cuttlefish.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Deer.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Deer.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Deer.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Deer.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Dragon.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Dragon.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Dragon.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Dragon.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Egg.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Egg.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Egg.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Egg.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Falcon.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Falcon.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Falcon.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Falcon.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_FlyingPig.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_FlyingPig.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_FlyingPig.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_FlyingPig.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Fox.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Fox.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Fox.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Fox.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Frog.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Frog.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Frog.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Frog.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Gryphon.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Gryphon.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Gryphon.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Gryphon.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Hedgehog.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Hedgehog.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Hedgehog.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Hedgehog.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Horse.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Horse.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Horse.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Horse.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_LionCub.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_LionCub.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_LionCub.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_LionCub.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Monkey.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Monkey.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Monkey.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Monkey.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Octopus.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Octopus.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Octopus.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Octopus.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Owl.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Owl.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Owl.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Owl.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_PandaCub.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_PandaCub.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_PandaCub.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_PandaCub.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Parrot.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Parrot.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Parrot.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Parrot.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Penguin.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Penguin.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Penguin.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Penguin.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_PolarBear.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_PolarBear.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_PolarBear.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_PolarBear.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Rat.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Rat.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Rat.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Rat.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Rock.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Rock.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Rock.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Rock.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Rooster.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Rooster.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Rooster.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Rooster.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Sabretooth.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Sabretooth.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Sabretooth.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Sabretooth.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Seahorse.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Seahorse.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Seahorse.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Seahorse.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Sheep.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Sheep.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Sheep.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Sheep.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Slime.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Slime.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Slime.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Slime.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Snail.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Snail.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Snail.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Snail.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Snake.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Snake.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Snake.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Snake.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Spider.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Spider.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Spider.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Spider.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_TRex.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_TRex.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_TRex.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_TRex.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_TigerCub.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_TigerCub.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_TigerCub.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_TigerCub.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Treeling.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Treeling.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Treeling.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Treeling.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Turtle.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Turtle.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Turtle.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Turtle.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Unicorn.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Unicorn.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Unicorn.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Unicorn.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Whale.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Whale.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Whale.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Whale.png diff --git a/common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Wolf.png b/website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Wolf.png similarity index 100% rename from common/img/sprites/spritesmith/stable/eggs/Pet_Egg_Wolf.png rename to website/assets/sprites/spritesmith/stable/eggs/Pet_Egg_Wolf.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_Base.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_Base.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_Base.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_Desert.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_Desert.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_Desert.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_Golden.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_Golden.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_Golden.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_Red.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_Red.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_Red.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_Shade.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_Shade.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_Shade.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_Skeleton.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_Skeleton.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_White.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_White.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_White.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_Zombie.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Cake_Zombie.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Cake_Zombie.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_Base.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_Base.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_Base.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_Desert.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_Desert.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_Desert.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_Golden.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_Golden.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_Golden.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_Red.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_Red.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_Red.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_Shade.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_Shade.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_Shade.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_Skeleton.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_Skeleton.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_White.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_White.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_White.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_Zombie.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Candy_Zombie.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Candy_Zombie.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Chocolate.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Chocolate.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Chocolate.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Chocolate.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Fish.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Fish.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Fish.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Fish.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Honey.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Honey.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Honey.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Honey.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Meat.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Meat.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Meat.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Meat.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Milk.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Milk.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Milk.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Milk.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Potatoe.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Potatoe.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Potatoe.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Potatoe.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_RottenMeat.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_RottenMeat.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_RottenMeat.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_RottenMeat.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Saddle.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Saddle.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Saddle.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Saddle.png diff --git a/common/img/sprites/spritesmith/stable/food/Pet_Food_Strawberry.png b/website/assets/sprites/spritesmith/stable/food/Pet_Food_Strawberry.png similarity index 100% rename from common/img/sprites/spritesmith/stable/food/Pet_Food_Strawberry.png rename to website/assets/sprites/spritesmith/stable/food/Pet_Food_Strawberry.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Armadillo-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Axolotl-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Polar.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Polar.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Polar.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Polar.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Bunny-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cheetah-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cow-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Cuttlefish-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Deer-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Egg-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Falcon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Frog-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-RoyalPurple.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-RoyalPurple.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-RoyalPurple.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-RoyalPurple.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Gryphon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Hedgehog-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Horse-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_JackOLantern-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_JackOLantern-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_JackOLantern-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_JackOLantern-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Ethereal.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Ethereal.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Ethereal.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Ethereal.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_MagicalBee-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_MagicalBee-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_MagicalBee-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_MagicalBee-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Mammoth-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Mammoth-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Mammoth-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Mammoth-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_MantisShrimp-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_MantisShrimp-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_MantisShrimp-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_MantisShrimp-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Monkey-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Octopus-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Orca-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Orca-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Orca-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Orca-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Owl-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Parrot-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Penguin-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Phoenix-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Phoenix-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Phoenix-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Phoenix-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rat-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rock-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Rooster-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sabretooth-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Seahorse-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Sheep-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Slime-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snail-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Snake-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Spider-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TRex-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Treeling-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turkey-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turkey-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turkey-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turkey-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Turtle-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Unicorn-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Whale-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Base.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Red.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-White.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-White.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Armadillo-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Axolotl-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Polar.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Polar.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Polar.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Polar.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Bunny-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cheetah-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cow-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Cuttlefish-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Deer-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Egg-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Falcon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Frog-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-RoyalPurple.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-RoyalPurple.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-RoyalPurple.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-RoyalPurple.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Gryphon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Hedgehog-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Horse-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_JackOLantern-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_JackOLantern-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_JackOLantern-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_JackOLantern-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Ethereal.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Ethereal.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Ethereal.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Ethereal.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_MagicalBee-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_MagicalBee-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_MagicalBee-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_MagicalBee-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Mammoth-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Mammoth-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Mammoth-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Mammoth-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_MantisShrimp-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_MantisShrimp-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_MantisShrimp-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_MantisShrimp-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Monkey-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Octopus-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Orca-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Orca-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Orca-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Orca-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Owl-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Parrot-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Penguin-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Phoenix-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Phoenix-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Phoenix-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Phoenix-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rat-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rock-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Rooster-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sabretooth-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Seahorse-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Sheep-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Slime-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snail-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Snake-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Spider-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TRex-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Treeling-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turkey-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turkey-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turkey-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turkey-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Turtle-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Unicorn-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Whale-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Base.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Red.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-White.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-White.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Armadillo-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Axolotl-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Polar.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Polar.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Polar.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Polar.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Bunny-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cheetah-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cow-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cuttlefish-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Deer-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Egg-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Falcon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Frog-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-RoyalPurple.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-RoyalPurple.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-RoyalPurple.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-RoyalPurple.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Gryphon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Hedgehog-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Horse-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_JackOLantern-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_JackOLantern-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_JackOLantern-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_JackOLantern-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Ethereal.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Ethereal.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Ethereal.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Ethereal.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_MagicalBee-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_MagicalBee-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_MagicalBee-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_MagicalBee-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Mammoth-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Mammoth-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Mammoth-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Mammoth-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_MantisShrimp-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_MantisShrimp-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_MantisShrimp-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_MantisShrimp-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Monkey-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Octopus-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Orca-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Orca-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Orca-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Orca-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Owl-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Parrot-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Penguin-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Phoenix-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Phoenix-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Phoenix-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Phoenix-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rat-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rock-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Rooster-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sabretooth-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Seahorse-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Sheep-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Slime-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snail-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Snake-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Spider-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TRex-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Treeling-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turkey-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turkey-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turkey-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turkey-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Turtle-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Unicorn-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Whale-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Base.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Base.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Base.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Desert.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Desert.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Desert.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Floral.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Floral.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Floral.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Golden.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Golden.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Golden.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Peppermint.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Peppermint.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Red.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Red.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Red.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Shade.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Shade.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Shade.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Skeleton.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Skeleton.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Spooky.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Spooky.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-White.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-White.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-White.png diff --git a/common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Zombie.png b/website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Zombie.png rename to website/assets/sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Armadillo-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Armadillo-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Axolotl-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Axolotl-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-BearCub-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-BearCub-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Floral.png b/website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Floral.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Floral.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Peppermint.png b/website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Peppermint.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Polar.png b/website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Polar.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Polar.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Polar.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Spooky.png b/website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Spooky.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-BearCub-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-BearCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Bunny-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Bunny-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Bunny-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Bunny-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Bunny-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Bunny-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Bunny-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Bunny-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Bunny-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Bunny-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Bunny-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Bunny-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Bunny-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Bunny-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Bunny-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Bunny-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Bunny-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Bunny-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Bunny-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Bunny-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Bunny-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cactus-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cactus-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Floral.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Floral.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Floral.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Peppermint.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Peppermint.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Spooky.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Spooky.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cactus-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cactus-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cheetah-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cheetah-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cow-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cow-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cow-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cow-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cow-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cow-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cow-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cow-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cow-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cow-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cow-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cow-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cow-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cow-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cow-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cow-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cow-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cow-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cow-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cow-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cow-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cow-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cow-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cow-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cow-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cow-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cow-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cow-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cow-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cow-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cow-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cow-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cow-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cow-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cow-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cow-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cow-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cow-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cow-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cow-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Cuttlefish-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Deer-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Deer-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Deer-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Deer-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Deer-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Deer-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Deer-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Deer-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Deer-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Deer-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Deer-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Deer-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Deer-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Deer-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Deer-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Deer-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Deer-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Deer-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Deer-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Deer-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Deer-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Deer-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Deer-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Deer-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Deer-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Deer-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Deer-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Deer-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Deer-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Deer-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Deer-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Deer-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Deer-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Deer-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Deer-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Deer-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Deer-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Deer-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Deer-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Deer-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Dragon-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Dragon-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Floral.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Floral.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Floral.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Hydra.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Hydra.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Hydra.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Hydra.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Peppermint.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Peppermint.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Spooky.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Spooky.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Dragon-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Dragon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Egg-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Egg-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Egg-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Egg-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Egg-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Egg-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Egg-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Egg-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Egg-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Egg-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Egg-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Egg-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Egg-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Egg-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Egg-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Egg-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Egg-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Egg-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Egg-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Egg-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Egg-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Egg-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Egg-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Egg-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Egg-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Egg-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Egg-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Egg-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Egg-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Egg-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Egg-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Egg-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Egg-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Egg-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Egg-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Egg-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Egg-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Egg-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Egg-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Egg-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Falcon-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Falcon-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Falcon-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Falcon-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Falcon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Floral.png b/website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Floral.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Floral.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Peppermint.png b/website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Peppermint.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Spooky.png b/website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Spooky.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-FlyingPig-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Fox-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Fox-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Fox-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Fox-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Fox-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Fox-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Fox-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Fox-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Floral.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Fox-Floral.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Floral.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Fox-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Peppermint.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Fox-Peppermint.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Fox-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Fox-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Fox-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Spooky.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Fox-Spooky.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Fox-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Fox-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Fox-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Fox-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Fox-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Fox-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Frog-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Frog-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Frog-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Frog-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Frog-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Frog-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Frog-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Frog-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Frog-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Frog-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Frog-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Frog-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Frog-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Frog-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Frog-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Frog-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Frog-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Frog-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Frog-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Frog-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Frog-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Frog-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Frog-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Frog-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Frog-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Frog-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Frog-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Frog-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Frog-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Frog-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Frog-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Frog-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Frog-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Frog-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Frog-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Frog-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Frog-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Frog-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Frog-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Frog-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-RoyalPurple.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-RoyalPurple.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-RoyalPurple.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-RoyalPurple.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Gryphon-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Gryphon-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Hedgehog-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Hedgehog-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Horse-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Horse-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Horse-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Horse-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Horse-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Horse-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Horse-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Horse-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Horse-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Horse-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Horse-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Horse-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Horse-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Horse-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Horse-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Horse-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Horse-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Horse-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Horse-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Horse-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Horse-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Horse-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Horse-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Horse-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Horse-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Horse-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Horse-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Horse-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Horse-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Horse-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Horse-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Horse-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Horse-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Horse-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Horse-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Horse-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Horse-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Horse-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Horse-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Horse-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-JackOLantern-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-JackOLantern-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-JackOLantern-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-JackOLantern-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Lion-Veteran.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Lion-Veteran.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Lion-Veteran.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Lion-Veteran.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-LionCub-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-LionCub-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Floral.png b/website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Floral.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Floral.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Peppermint.png b/website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Peppermint.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Spooky.png b/website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Spooky.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-LionCub-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-LionCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-MagicalBee-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-MagicalBee-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-MagicalBee-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-MagicalBee-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Mammoth-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Mammoth-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Mammoth-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Mammoth-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-MantisShrimp-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-MantisShrimp-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-MantisShrimp-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-MantisShrimp-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Monkey-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Monkey-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Monkey-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Monkey-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Monkey-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Monkey-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Monkey-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Monkey-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Monkey-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Monkey-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Monkey-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Monkey-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Monkey-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Monkey-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Monkey-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Monkey-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Monkey-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Monkey-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Monkey-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Monkey-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Monkey-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Octopus-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Octopus-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Octopus-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Octopus-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Octopus-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Octopus-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Octopus-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Octopus-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Octopus-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Octopus-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Octopus-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Octopus-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Octopus-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Octopus-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Octopus-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Octopus-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Octopus-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Octopus-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Octopus-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Octopus-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Octopus-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Owl-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Owl-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Owl-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Owl-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Owl-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Owl-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Owl-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Owl-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Owl-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Owl-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Owl-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Owl-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Owl-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Owl-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Owl-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Owl-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Owl-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Owl-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Owl-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Owl-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Owl-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Owl-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Owl-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Owl-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Owl-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Owl-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Owl-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Owl-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Owl-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Owl-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Owl-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Owl-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Owl-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Owl-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Owl-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Owl-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Owl-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Owl-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Owl-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Owl-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Floral.png b/website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Floral.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Floral.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Peppermint.png b/website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Peppermint.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Spooky.png b/website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Spooky.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-PandaCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Parrot-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Parrot-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Parrot-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Parrot-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Parrot-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Parrot-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Parrot-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Parrot-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Parrot-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Parrot-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Parrot-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Parrot-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Parrot-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Parrot-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Parrot-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Parrot-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Parrot-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Parrot-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Parrot-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Parrot-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Parrot-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Penguin-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Penguin-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Penguin-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Penguin-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Penguin-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Penguin-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Penguin-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Penguin-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Penguin-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Penguin-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Penguin-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Penguin-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Penguin-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Penguin-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Penguin-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Penguin-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Penguin-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Penguin-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Penguin-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Penguin-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Penguin-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Phoenix-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Phoenix-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Phoenix-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Phoenix-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rat-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rat-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rat-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rat-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rat-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rat-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rat-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rat-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rat-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rat-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rat-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rat-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rat-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rat-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rat-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rat-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rat-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rat-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rat-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rat-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rat-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rat-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rat-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rat-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rat-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rat-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rat-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rat-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rat-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rat-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rat-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rat-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rat-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rat-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rat-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rat-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rat-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rat-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rat-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rat-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rock-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rock-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rock-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rock-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rock-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rock-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rock-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rock-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rock-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rock-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rock-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rock-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rock-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rock-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rock-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rock-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rock-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rock-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rock-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rock-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rock-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rock-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rock-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rock-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rock-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rock-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rock-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rock-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rock-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rock-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rock-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rock-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rock-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rock-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rock-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rock-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rock-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rock-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rock-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rock-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rooster-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rooster-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rooster-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rooster-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rooster-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rooster-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rooster-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rooster-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rooster-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rooster-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rooster-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rooster-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rooster-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rooster-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rooster-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rooster-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rooster-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rooster-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Rooster-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Rooster-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Rooster-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sabretooth-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sabretooth-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Seahorse-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Seahorse-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sheep-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sheep-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sheep-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Sheep-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Sheep-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Slime-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Slime-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Slime-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Slime-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Slime-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Slime-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Slime-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Slime-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Slime-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Slime-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Slime-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Slime-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Slime-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Slime-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Slime-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Slime-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Slime-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Slime-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Slime-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Slime-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Slime-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Slime-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Slime-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Slime-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Slime-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Slime-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Slime-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Slime-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Slime-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Slime-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Slime-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Slime-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Slime-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Slime-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Slime-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Slime-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Slime-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Slime-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Slime-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Slime-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snail-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snail-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snail-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snail-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snail-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snail-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snail-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snail-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snail-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snail-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snail-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snail-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snail-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snail-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snail-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snail-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snail-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snail-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snail-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snail-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snail-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snail-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snail-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snail-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snail-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snail-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snail-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snail-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snail-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snail-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snail-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snake-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snake-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snake-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snake-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snake-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snake-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snake-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snake-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snake-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snake-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snake-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snake-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snake-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snake-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snake-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snake-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snake-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snake-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snake-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snake-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snake-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snake-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snake-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snake-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snake-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snake-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snake-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snake-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snake-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snake-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snake-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snake-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snake-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snake-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snake-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snake-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Snake-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Snake-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Snake-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Snake-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Spider-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Spider-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Spider-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Spider-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Spider-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Spider-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Spider-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Spider-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Spider-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Spider-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Spider-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Spider-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Spider-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Spider-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Spider-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Spider-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Spider-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Spider-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Spider-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Spider-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Spider-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Spider-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Spider-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Spider-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Spider-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Spider-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Spider-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Spider-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Spider-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Spider-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Spider-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Spider-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Spider-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Spider-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Spider-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Spider-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Spider-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Spider-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Spider-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Spider-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TRex-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TRex-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TRex-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TRex-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TRex-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TRex-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TRex-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TRex-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TRex-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TRex-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TRex-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TRex-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TRex-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TRex-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TRex-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TRex-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TRex-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TRex-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TRex-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TRex-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TRex-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TRex-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TRex-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TRex-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TRex-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TRex-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TRex-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TRex-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TRex-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TRex-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TRex-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TRex-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TRex-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TRex-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TRex-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TRex-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TRex-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TRex-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TRex-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TRex-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Tiger-Veteran.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Tiger-Veteran.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Tiger-Veteran.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Tiger-Veteran.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Floral.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Floral.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Floral.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Peppermint.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Peppermint.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Spooky.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Spooky.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-TigerCub-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Treeling-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Treeling-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Treeling-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Treeling-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Treeling-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Treeling-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Treeling-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Treeling-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Treeling-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Treeling-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Treeling-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Treeling-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Treeling-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Treeling-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Treeling-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Treeling-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Treeling-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Treeling-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Treeling-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Treeling-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Treeling-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Turkey-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Turkey-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Turkey-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Turkey-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Turkey-Gilded.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Turkey-Gilded.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Turkey-Gilded.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Turkey-Gilded.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Turtle-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Turtle-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Turtle-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Turtle-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Turtle-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Turtle-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Turtle-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Turtle-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Turtle-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Turtle-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Turtle-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Turtle-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Turtle-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Turtle-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Turtle-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Turtle-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Turtle-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Turtle-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Turtle-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Turtle-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Turtle-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Unicorn-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Unicorn-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Whale-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Whale-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Whale-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Whale-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Whale-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Whale-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Whale-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Whale-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Whale-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Whale-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Whale-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Whale-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Whale-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Whale-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Whale-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Whale-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Whale-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Whale-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Whale-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Whale-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Whale-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Whale-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Whale-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Whale-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Whale-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Whale-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Whale-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Whale-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Whale-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Whale-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Whale-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Whale-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Whale-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Whale-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Whale-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Whale-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Whale-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Whale-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Whale-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Whale-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Base.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Base.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Base.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Wolf-CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Wolf-CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Desert.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Desert.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Desert.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Floral.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Floral.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Floral.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Golden.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Golden.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Golden.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Peppermint.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Peppermint.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Red.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Red.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Red.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Shade.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Shade.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Shade.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Skeleton.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Skeleton.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Spooky.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Spooky.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Spooky.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Thunderstorm.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Veteran.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Veteran.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Veteran.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Veteran.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-White.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Wolf-White.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-White.png diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Zombie.png b/website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Zombie.png rename to website/assets/sprites/spritesmith/stable/pets/Pet-Wolf-Zombie.png diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Base.png b/website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Base.png similarity index 100% rename from common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Base.png rename to website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Base.png diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_CottonCandyBlue.png b/website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_CottonCandyBlue.png similarity index 100% rename from common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_CottonCandyBlue.png rename to website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_CottonCandyBlue.png diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_CottonCandyPink.png b/website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_CottonCandyPink.png similarity index 100% rename from common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_CottonCandyPink.png rename to website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_CottonCandyPink.png diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Desert.png b/website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Desert.png similarity index 100% rename from common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Desert.png rename to website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Desert.png diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Floral.png b/website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Floral.png similarity index 100% rename from common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Floral.png rename to website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Floral.png diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Golden.png b/website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Golden.png similarity index 100% rename from common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Golden.png rename to website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Golden.png diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Peppermint.png b/website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Peppermint.png similarity index 100% rename from common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Peppermint.png rename to website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Peppermint.png diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Red.png b/website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Red.png similarity index 100% rename from common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Red.png rename to website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Red.png diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Shade.png b/website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Shade.png similarity index 100% rename from common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Shade.png rename to website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Shade.png diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Skeleton.png b/website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Skeleton.png similarity index 100% rename from common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Skeleton.png rename to website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Skeleton.png diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Spooky.png b/website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Spooky.png similarity index 100% rename from common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Spooky.png rename to website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Spooky.png diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Thunderstorm.png b/website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Thunderstorm.png similarity index 100% rename from common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Thunderstorm.png rename to website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Thunderstorm.png diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_White.png b/website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_White.png similarity index 100% rename from common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_White.png rename to website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_White.png diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Zombie.png b/website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Zombie.png similarity index 100% rename from common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Zombie.png rename to website/assets/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Zombie.png diff --git a/common/img/sprites/spritesmith_large/promo/2014_Fall_HealerPROMO2.png b/website/assets/sprites/spritesmith_large/promo/2014_Fall_HealerPROMO2.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/2014_Fall_HealerPROMO2.png rename to website/assets/sprites/spritesmith_large/promo/2014_Fall_HealerPROMO2.png diff --git a/common/img/sprites/spritesmith_large/promo/2014_Fall_Mage_PROMO9.png b/website/assets/sprites/spritesmith_large/promo/2014_Fall_Mage_PROMO9.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/2014_Fall_Mage_PROMO9.png rename to website/assets/sprites/spritesmith_large/promo/2014_Fall_Mage_PROMO9.png diff --git a/common/img/sprites/spritesmith_large/promo/2014_Fall_RoguePROMO3.png b/website/assets/sprites/spritesmith_large/promo/2014_Fall_RoguePROMO3.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/2014_Fall_RoguePROMO3.png rename to website/assets/sprites/spritesmith_large/promo/2014_Fall_RoguePROMO3.png diff --git a/common/img/sprites/spritesmith_large/promo/2014_Fall_Warrior_PROMO.png b/website/assets/sprites/spritesmith_large/promo/2014_Fall_Warrior_PROMO.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/2014_Fall_Warrior_PROMO.png rename to website/assets/sprites/spritesmith_large/promo/2014_Fall_Warrior_PROMO.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_android.png b/website/assets/sprites/spritesmith_large/promo/promo_android.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_android.png rename to website/assets/sprites/spritesmith_large/promo/promo_android.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201602.png b/website/assets/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201602.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201602.png rename to website/assets/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201602.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201603.png b/website/assets/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201603.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201603.png rename to website/assets/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201603.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201604.png b/website/assets/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201604.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201604.png rename to website/assets/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201604.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201605.png b/website/assets/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201605.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201605.png rename to website/assets/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201605.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201606.png b/website/assets/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201606.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201606.png rename to website/assets/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201606.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201607.png b/website/assets/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201607.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201607.png rename to website/assets/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201607.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201608.png b/website/assets/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201608.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201608.png rename to website/assets/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201608.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201609.png b/website/assets/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201609.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201609.png rename to website/assets/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201609.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_backtoschool.png b/website/assets/sprites/spritesmith_large/promo/promo_backtoschool.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_backtoschool.png rename to website/assets/sprites/spritesmith_large/promo/promo_backtoschool.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_burnout.png b/website/assets/sprites/spritesmith_large/promo/promo_burnout.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_burnout.png rename to website/assets/sprites/spritesmith_large/promo/promo_burnout.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_chairs_glasses.png b/website/assets/sprites/spritesmith_large/promo/promo_chairs_glasses.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_chairs_glasses.png rename to website/assets/sprites/spritesmith_large/promo/promo_chairs_glasses.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_classes_fall_2014.png b/website/assets/sprites/spritesmith_large/promo/promo_classes_fall_2014.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_classes_fall_2014.png rename to website/assets/sprites/spritesmith_large/promo/promo_classes_fall_2014.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_classes_fall_2015.png b/website/assets/sprites/spritesmith_large/promo/promo_classes_fall_2015.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_classes_fall_2015.png rename to website/assets/sprites/spritesmith_large/promo/promo_classes_fall_2015.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_cow.png b/website/assets/sprites/spritesmith_large/promo/promo_cow.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_cow.png rename to website/assets/sprites/spritesmith_large/promo/promo_cow.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_dilatoryDistress.png b/website/assets/sprites/spritesmith_large/promo/promo_dilatoryDistress.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_dilatoryDistress.png rename to website/assets/sprites/spritesmith_large/promo/promo_dilatoryDistress.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_egg_mounts.png b/website/assets/sprites/spritesmith_large/promo/promo_egg_mounts.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_egg_mounts.png rename to website/assets/sprites/spritesmith_large/promo/promo_egg_mounts.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_enchanted_armoire.png b/website/assets/sprites/spritesmith_large/promo/promo_enchanted_armoire.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_enchanted_armoire.png rename to website/assets/sprites/spritesmith_large/promo/promo_enchanted_armoire.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_enchanted_armoire_201507.png b/website/assets/sprites/spritesmith_large/promo/promo_enchanted_armoire_201507.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_enchanted_armoire_201507.png rename to website/assets/sprites/spritesmith_large/promo/promo_enchanted_armoire_201507.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_enchanted_armoire_201508.png b/website/assets/sprites/spritesmith_large/promo/promo_enchanted_armoire_201508.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_enchanted_armoire_201508.png rename to website/assets/sprites/spritesmith_large/promo/promo_enchanted_armoire_201508.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_enchanted_armoire_201509.png b/website/assets/sprites/spritesmith_large/promo/promo_enchanted_armoire_201509.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_enchanted_armoire_201509.png rename to website/assets/sprites/spritesmith_large/promo/promo_enchanted_armoire_201509.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_enchanted_armoire_201511.png b/website/assets/sprites/spritesmith_large/promo/promo_enchanted_armoire_201511.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_enchanted_armoire_201511.png rename to website/assets/sprites/spritesmith_large/promo/promo_enchanted_armoire_201511.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_enchanted_armoire_201601.png b/website/assets/sprites/spritesmith_large/promo/promo_enchanted_armoire_201601.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_enchanted_armoire_201601.png rename to website/assets/sprites/spritesmith_large/promo/promo_enchanted_armoire_201601.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_floral_potions.png b/website/assets/sprites/spritesmith_large/promo/promo_floral_potions.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_floral_potions.png rename to website/assets/sprites/spritesmith_large/promo/promo_floral_potions.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_habitica.png b/website/assets/sprites/spritesmith_large/promo/promo_habitica.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_habitica.png rename to website/assets/sprites/spritesmith_large/promo/promo_habitica.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_habitica_sticker.png b/website/assets/sprites/spritesmith_large/promo/promo_habitica_sticker.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_habitica_sticker.png rename to website/assets/sprites/spritesmith_large/promo/promo_habitica_sticker.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_haunted_hair.png b/website/assets/sprites/spritesmith_large/promo/promo_haunted_hair.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_haunted_hair.png rename to website/assets/sprites/spritesmith_large/promo/promo_haunted_hair.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_item_notif.png b/website/assets/sprites/spritesmith_large/promo/promo_item_notif.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_item_notif.png rename to website/assets/sprites/spritesmith_large/promo/promo_item_notif.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201405.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201405.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201405.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201405.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201406.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201406.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201406.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201406.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201407.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201407.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201407.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201407.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201408.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201408.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201408.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201408.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201409.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201409.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201409.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201409.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201410.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201410.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201410.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201410.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201411.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201411.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201411.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201411.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201412.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201412.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201412.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201412.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201501.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201501.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201501.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201501.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201502.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201502.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201502.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201502.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201503.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201503.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201503.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201503.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201504.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201504.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201504.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201504.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201505.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201505.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201505.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201505.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201506.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201506.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201506.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201506.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201507.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201507.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201507.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201507.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201508.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201508.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201508.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201508.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201509.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201509.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201509.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201509.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201510.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201510.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201510.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201510.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201511.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201511.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201511.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201511.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201512.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201512.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201512.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201512.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201601.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201601.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201601.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201601.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201602.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201602.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201602.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201602.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201603.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201603.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201603.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201603.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201604.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201604.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201604.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201604.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201605.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201605.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201605.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201605.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201606.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201606.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201606.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201606.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201607.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201607.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201607.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201607.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_201608.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_201608.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_201608.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_201608.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_mystery_3014.png b/website/assets/sprites/spritesmith_large/promo/promo_mystery_3014.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_mystery_3014.png rename to website/assets/sprites/spritesmith_large/promo/promo_mystery_3014.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_orca.png b/website/assets/sprites/spritesmith_large/promo/promo_orca.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_orca.png rename to website/assets/sprites/spritesmith_large/promo/promo_orca.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_partyhats.png b/website/assets/sprites/spritesmith_large/promo/promo_partyhats.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_partyhats.png rename to website/assets/sprites/spritesmith_large/promo/promo_partyhats.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_pastel_skin.png b/website/assets/sprites/spritesmith_large/promo/promo_pastel_skin.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_pastel_skin.png rename to website/assets/sprites/spritesmith_large/promo/promo_pastel_skin.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_peppermint_flame.png b/website/assets/sprites/spritesmith_large/promo/promo_peppermint_flame.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_peppermint_flame.png rename to website/assets/sprites/spritesmith_large/promo/promo_peppermint_flame.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_pet_skins.png b/website/assets/sprites/spritesmith_large/promo/promo_pet_skins.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_pet_skins.png rename to website/assets/sprites/spritesmith_large/promo/promo_pet_skins.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_shimmer_hair.png b/website/assets/sprites/spritesmith_large/promo/promo_shimmer_hair.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_shimmer_hair.png rename to website/assets/sprites/spritesmith_large/promo/promo_shimmer_hair.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_splashyskins.png b/website/assets/sprites/spritesmith_large/promo/promo_splashyskins.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_splashyskins.png rename to website/assets/sprites/spritesmith_large/promo/promo_splashyskins.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_spring_classes_2016.png b/website/assets/sprites/spritesmith_large/promo/promo_spring_classes_2016.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_spring_classes_2016.png rename to website/assets/sprites/spritesmith_large/promo/promo_spring_classes_2016.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_springclasses2014.png b/website/assets/sprites/spritesmith_large/promo/promo_springclasses2014.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_springclasses2014.png rename to website/assets/sprites/spritesmith_large/promo/promo_springclasses2014.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_springclasses2015.png b/website/assets/sprites/spritesmith_large/promo/promo_springclasses2015.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_springclasses2015.png rename to website/assets/sprites/spritesmith_large/promo/promo_springclasses2015.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_staff_spotlight_Lemoness.png b/website/assets/sprites/spritesmith_large/promo/promo_staff_spotlight_Lemoness.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_staff_spotlight_Lemoness.png rename to website/assets/sprites/spritesmith_large/promo/promo_staff_spotlight_Lemoness.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_staff_spotlight_Viirus.png b/website/assets/sprites/spritesmith_large/promo/promo_staff_spotlight_Viirus.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_staff_spotlight_Viirus.png rename to website/assets/sprites/spritesmith_large/promo/promo_staff_spotlight_Viirus.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_staff_spotlight_paglias.png b/website/assets/sprites/spritesmith_large/promo/promo_staff_spotlight_paglias.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_staff_spotlight_paglias.png rename to website/assets/sprites/spritesmith_large/promo/promo_staff_spotlight_paglias.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_summer_classes_2014.png b/website/assets/sprites/spritesmith_large/promo/promo_summer_classes_2014.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_summer_classes_2014.png rename to website/assets/sprites/spritesmith_large/promo/promo_summer_classes_2014.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_summer_classes_2015.png b/website/assets/sprites/spritesmith_large/promo/promo_summer_classes_2015.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_summer_classes_2015.png rename to website/assets/sprites/spritesmith_large/promo/promo_summer_classes_2015.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_summer_classes_2016.png b/website/assets/sprites/spritesmith_large/promo/promo_summer_classes_2016.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_summer_classes_2016.png rename to website/assets/sprites/spritesmith_large/promo/promo_summer_classes_2016.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_takeThis_gear.png b/website/assets/sprites/spritesmith_large/promo/promo_takeThis_gear.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_takeThis_gear.png rename to website/assets/sprites/spritesmith_large/promo/promo_takeThis_gear.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_takethis_armor.png b/website/assets/sprites/spritesmith_large/promo/promo_takethis_armor.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_takethis_armor.png rename to website/assets/sprites/spritesmith_large/promo/promo_takethis_armor.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_unconventional_armor.png b/website/assets/sprites/spritesmith_large/promo/promo_unconventional_armor.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_unconventional_armor.png rename to website/assets/sprites/spritesmith_large/promo/promo_unconventional_armor.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_updos.png b/website/assets/sprites/spritesmith_large/promo/promo_updos.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_updos.png rename to website/assets/sprites/spritesmith_large/promo/promo_updos.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_veteran_pets.png b/website/assets/sprites/spritesmith_large/promo/promo_veteran_pets.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_veteran_pets.png rename to website/assets/sprites/spritesmith_large/promo/promo_veteran_pets.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_winter_classes_2016.png b/website/assets/sprites/spritesmith_large/promo/promo_winter_classes_2016.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_winter_classes_2016.png rename to website/assets/sprites/spritesmith_large/promo/promo_winter_classes_2016.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_winterclasses2015.png b/website/assets/sprites/spritesmith_large/promo/promo_winterclasses2015.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_winterclasses2015.png rename to website/assets/sprites/spritesmith_large/promo/promo_winterclasses2015.png diff --git a/common/img/sprites/spritesmith_large/promo/promo_winteryhair.png b/website/assets/sprites/spritesmith_large/promo/promo_winteryhair.png similarity index 100% rename from common/img/sprites/spritesmith_large/promo/promo_winteryhair.png rename to website/assets/sprites/spritesmith_large/promo/promo_winteryhair.png diff --git a/common/img/sprites/spritesmith_large/scenes/avatar_variety.png b/website/assets/sprites/spritesmith_large/scenes/avatar_variety.png similarity index 100% rename from common/img/sprites/spritesmith_large/scenes/avatar_variety.png rename to website/assets/sprites/spritesmith_large/scenes/avatar_variety.png diff --git a/common/img/sprites/spritesmith_large/scenes/npc_viirus.png b/website/assets/sprites/spritesmith_large/scenes/npc_viirus.png similarity index 100% rename from common/img/sprites/spritesmith_large/scenes/npc_viirus.png rename to website/assets/sprites/spritesmith_large/scenes/npc_viirus.png diff --git a/common/img/sprites/spritesmith_large/scenes/party_preview.png b/website/assets/sprites/spritesmith_large/scenes/party_preview.png similarity index 100% rename from common/img/sprites/spritesmith_large/scenes/party_preview.png rename to website/assets/sprites/spritesmith_large/scenes/party_preview.png diff --git a/common/img/sprites/spritesmith_large/scenes/scene_coding.png b/website/assets/sprites/spritesmith_large/scenes/scene_coding.png similarity index 100% rename from common/img/sprites/spritesmith_large/scenes/scene_coding.png rename to website/assets/sprites/spritesmith_large/scenes/scene_coding.png diff --git a/common/img/sprites/spritesmith_large/scenes/scene_phone_peek.png b/website/assets/sprites/spritesmith_large/scenes/scene_phone_peek.png similarity index 100% rename from common/img/sprites/spritesmith_large/scenes/scene_phone_peek.png rename to website/assets/sprites/spritesmith_large/scenes/scene_phone_peek.png diff --git a/common/img/sprites/spritesmith_large/scenes/welcome_basic_avatars.png b/website/assets/sprites/spritesmith_large/scenes/welcome_basic_avatars.png similarity index 100% rename from common/img/sprites/spritesmith_large/scenes/welcome_basic_avatars.png rename to website/assets/sprites/spritesmith_large/scenes/welcome_basic_avatars.png diff --git a/common/img/sprites/spritesmith_large/scenes/welcome_promo_party.png b/website/assets/sprites/spritesmith_large/scenes/welcome_promo_party.png similarity index 100% rename from common/img/sprites/spritesmith_large/scenes/welcome_promo_party.png rename to website/assets/sprites/spritesmith_large/scenes/welcome_promo_party.png diff --git a/common/img/sprites/spritesmith_large/scenes/welcome_sample_tasks.png b/website/assets/sprites/spritesmith_large/scenes/welcome_sample_tasks.png similarity index 100% rename from common/img/sprites/spritesmith_large/scenes/welcome_sample_tasks.png rename to website/assets/sprites/spritesmith_large/scenes/welcome_sample_tasks.png diff --git a/website/client-old/js/controllers/rootCtrl.js b/website/client-old/js/controllers/rootCtrl.js index c304fbba98..84715fec62 100644 --- a/website/client-old/js/controllers/rootCtrl.js +++ b/website/client-old/js/controllers/rootCtrl.js @@ -28,7 +28,7 @@ habitrpg.controller("RootCtrl", ['$scope', '$rootScope', '$location', 'User', '$ $rootScope.$on('$stateChangeSuccess', function(event, toState, toParams, fromState, fromParams){ $rootScope.pageTitle = $state.current.title; - + if (!($state.current.name in IGNORE_SCROLL_PAGES)) { $window.scrollTo(0, 0); } @@ -101,7 +101,7 @@ habitrpg.controller("RootCtrl", ['$scope', '$rootScope', '$location', 'User', '$ $rootScope.playSound = function(id){ if (!user.preferences.sound || user.preferences.sound == 'off') return; var theme = user.preferences.sound; - var file = 'common/audio/' + theme + '/' + id; + var file = 'assets/audio/' + theme + '/' + id; document.getElementById('oggSource').src = file + '.ogg'; document.getElementById('mp3Source').src = file + '.mp3'; document.getElementById('sound').load(); diff --git a/website/client-old/js/services/pusherService.js b/website/client-old/js/services/pusherService.js index e437f9d9e0..555c88406c 100644 --- a/website/client-old/js/services/pusherService.js +++ b/website/client-old/js/services/pusherService.js @@ -178,7 +178,7 @@ angular.module('habitrpg') groupName: $rootScope.party.name, }), { body: (chatData.user || chatData.uuid) + ': ' + chatData.text, - icon: '/common/img/gryphon_192-20.png', + icon: '/assets/img/gryphon_192-20.png' }); notif.addEventListener('click', function () { diff --git a/website/client-old/manifest.json b/website/client-old/manifest.json index 5a648171ac..a3de35cc09 100644 --- a/website/client-old/manifest.json +++ b/website/client-old/manifest.json @@ -34,7 +34,7 @@ "bower_components/jquery-ui/ui/minified/jquery.ui.sortable.min.js", "bower_components/smart-app-banner/smart-app-banner.js", - "common/dist/scripts/habitrpg-shared.js", + "js/habitrpg-shared.js", "js/env.js", @@ -111,7 +111,7 @@ "app.css", "bower_components/pnotify/jquery.pnotify.default.css", "bower_components/pnotify/jquery.pnotify.default.icons.css", - "common/dist/sprites/habitrpg-shared.css", + "css/habitrpg-shared.css", "bower_components/bootstrap-tour/build/css/bootstrap-tour.css", "fontello/css/fontelico.css" ] @@ -119,7 +119,7 @@ "static": { "js": [ "bower_components/jquery/dist/jquery.min.js", - "common/dist/scripts/habitrpg-shared.js", + "js/habitrpg-shared.js", "bower_components/angular/angular.js", "bower_components/angular-ui/build/angular-ui.js", "bower_components/angular-bootstrap/ui-bootstrap.js", @@ -153,14 +153,14 @@ "bower_components/jquery-colorbox/example1/colorbox.css", "bower_components/smart-app-banner/smart-app-banner.css", "app.css", - "common/dist/sprites/habitrpg-shared.css", + "css/habitrpg-shared.css", "static.css" ] }, "tmp_static_front": { "js": [ "bower_components/jquery/dist/jquery.min.js", - "common/dist/scripts/habitrpg-shared.js", + "js/habitrpg-shared.js", "bower_components/angular/angular.js", "bower_components/angular-ui/build/angular-ui.js", "bower_components/jquery-colorbox/jquery.colorbox-min.js", @@ -189,7 +189,7 @@ "bower_components/css-social-buttons/css/zocial.css", "bower_components/smart-app-banner/smart-app-banner.css", "front/staticstyle.css", - "common/dist/sprites/habitrpg-shared.css", + "css/habitrpg-shared.css", "app.css" ] } diff --git a/website/common/README.md b/website/common/README.md new file mode 100644 index 0000000000..884bf36a30 --- /dev/null +++ b/website/common/README.md @@ -0,0 +1,6 @@ +# Common + +Files that are shared among the server and the client. + + * Code that is run on both the client and the server + * Item definitions - weapons, armor, pets, etc diff --git a/common/browserify.js b/website/common/browserify.js similarity index 100% rename from common/browserify.js rename to website/common/browserify.js diff --git a/common/index.js b/website/common/index.js similarity index 100% rename from common/index.js rename to website/common/index.js diff --git a/common/locales/README.md b/website/common/locales/README.md similarity index 100% rename from common/locales/README.md rename to website/common/locales/README.md diff --git a/common/locales/bg/_README_FIRST.md b/website/common/locales/bg/_README_FIRST.md similarity index 100% rename from common/locales/bg/_README_FIRST.md rename to website/common/locales/bg/_README_FIRST.md diff --git a/common/locales/bg/backgrounds.json b/website/common/locales/bg/backgrounds.json similarity index 100% rename from common/locales/bg/backgrounds.json rename to website/common/locales/bg/backgrounds.json diff --git a/common/locales/bg/challenge.json b/website/common/locales/bg/challenge.json similarity index 100% rename from common/locales/bg/challenge.json rename to website/common/locales/bg/challenge.json diff --git a/common/locales/bg/character.json b/website/common/locales/bg/character.json similarity index 100% rename from common/locales/bg/character.json rename to website/common/locales/bg/character.json diff --git a/common/locales/bg/communityguidelines.json b/website/common/locales/bg/communityguidelines.json similarity index 100% rename from common/locales/bg/communityguidelines.json rename to website/common/locales/bg/communityguidelines.json diff --git a/common/locales/bg/content.json b/website/common/locales/bg/content.json similarity index 100% rename from common/locales/bg/content.json rename to website/common/locales/bg/content.json diff --git a/common/locales/bg/contrib.json b/website/common/locales/bg/contrib.json similarity index 100% rename from common/locales/bg/contrib.json rename to website/common/locales/bg/contrib.json diff --git a/common/locales/bg/death.json b/website/common/locales/bg/death.json similarity index 100% rename from common/locales/bg/death.json rename to website/common/locales/bg/death.json diff --git a/common/locales/bg/defaulttasks.json b/website/common/locales/bg/defaulttasks.json similarity index 100% rename from common/locales/bg/defaulttasks.json rename to website/common/locales/bg/defaulttasks.json diff --git a/common/locales/bg/faq.json b/website/common/locales/bg/faq.json similarity index 100% rename from common/locales/bg/faq.json rename to website/common/locales/bg/faq.json diff --git a/common/locales/bg/front.json b/website/common/locales/bg/front.json similarity index 100% rename from common/locales/bg/front.json rename to website/common/locales/bg/front.json diff --git a/common/locales/bg/gear.json b/website/common/locales/bg/gear.json similarity index 100% rename from common/locales/bg/gear.json rename to website/common/locales/bg/gear.json diff --git a/common/locales/bg/generic.json b/website/common/locales/bg/generic.json similarity index 100% rename from common/locales/bg/generic.json rename to website/common/locales/bg/generic.json diff --git a/common/locales/bg/groups.json b/website/common/locales/bg/groups.json similarity index 100% rename from common/locales/bg/groups.json rename to website/common/locales/bg/groups.json diff --git a/common/locales/bg/limited.json b/website/common/locales/bg/limited.json similarity index 100% rename from common/locales/bg/limited.json rename to website/common/locales/bg/limited.json diff --git a/common/locales/bg/loadingscreentips.json b/website/common/locales/bg/loadingscreentips.json similarity index 100% rename from common/locales/bg/loadingscreentips.json rename to website/common/locales/bg/loadingscreentips.json diff --git a/common/locales/bg/maintenance.json b/website/common/locales/bg/maintenance.json similarity index 100% rename from common/locales/bg/maintenance.json rename to website/common/locales/bg/maintenance.json diff --git a/common/locales/bg/messages.json b/website/common/locales/bg/messages.json similarity index 100% rename from common/locales/bg/messages.json rename to website/common/locales/bg/messages.json diff --git a/common/locales/bg/noscript.json b/website/common/locales/bg/noscript.json similarity index 100% rename from common/locales/bg/noscript.json rename to website/common/locales/bg/noscript.json diff --git a/common/locales/bg/npc.json b/website/common/locales/bg/npc.json similarity index 100% rename from common/locales/bg/npc.json rename to website/common/locales/bg/npc.json diff --git a/common/locales/bg/pets.json b/website/common/locales/bg/pets.json similarity index 100% rename from common/locales/bg/pets.json rename to website/common/locales/bg/pets.json diff --git a/common/locales/bg/quests.json b/website/common/locales/bg/quests.json similarity index 100% rename from common/locales/bg/quests.json rename to website/common/locales/bg/quests.json diff --git a/common/locales/bg/questscontent.json b/website/common/locales/bg/questscontent.json similarity index 100% rename from common/locales/bg/questscontent.json rename to website/common/locales/bg/questscontent.json diff --git a/common/locales/bg/rebirth.json b/website/common/locales/bg/rebirth.json similarity index 100% rename from common/locales/bg/rebirth.json rename to website/common/locales/bg/rebirth.json diff --git a/common/locales/bg/settings.json b/website/common/locales/bg/settings.json similarity index 100% rename from common/locales/bg/settings.json rename to website/common/locales/bg/settings.json diff --git a/common/locales/bg/spells.json b/website/common/locales/bg/spells.json similarity index 100% rename from common/locales/bg/spells.json rename to website/common/locales/bg/spells.json diff --git a/common/locales/bg/subscriber.json b/website/common/locales/bg/subscriber.json similarity index 100% rename from common/locales/bg/subscriber.json rename to website/common/locales/bg/subscriber.json diff --git a/common/locales/bg/tasks.json b/website/common/locales/bg/tasks.json similarity index 100% rename from common/locales/bg/tasks.json rename to website/common/locales/bg/tasks.json diff --git a/common/locales/cs/_README_FIRST.md b/website/common/locales/cs/_README_FIRST.md similarity index 100% rename from common/locales/cs/_README_FIRST.md rename to website/common/locales/cs/_README_FIRST.md diff --git a/common/locales/cs/backgrounds.json b/website/common/locales/cs/backgrounds.json similarity index 100% rename from common/locales/cs/backgrounds.json rename to website/common/locales/cs/backgrounds.json diff --git a/common/locales/cs/challenge.json b/website/common/locales/cs/challenge.json similarity index 100% rename from common/locales/cs/challenge.json rename to website/common/locales/cs/challenge.json diff --git a/common/locales/cs/character.json b/website/common/locales/cs/character.json similarity index 100% rename from common/locales/cs/character.json rename to website/common/locales/cs/character.json diff --git a/common/locales/cs/communityguidelines.json b/website/common/locales/cs/communityguidelines.json similarity index 100% rename from common/locales/cs/communityguidelines.json rename to website/common/locales/cs/communityguidelines.json diff --git a/common/locales/cs/content.json b/website/common/locales/cs/content.json similarity index 100% rename from common/locales/cs/content.json rename to website/common/locales/cs/content.json diff --git a/common/locales/cs/contrib.json b/website/common/locales/cs/contrib.json similarity index 100% rename from common/locales/cs/contrib.json rename to website/common/locales/cs/contrib.json diff --git a/common/locales/cs/death.json b/website/common/locales/cs/death.json similarity index 100% rename from common/locales/cs/death.json rename to website/common/locales/cs/death.json diff --git a/common/locales/cs/defaulttasks.json b/website/common/locales/cs/defaulttasks.json similarity index 100% rename from common/locales/cs/defaulttasks.json rename to website/common/locales/cs/defaulttasks.json diff --git a/common/locales/cs/faq.json b/website/common/locales/cs/faq.json similarity index 100% rename from common/locales/cs/faq.json rename to website/common/locales/cs/faq.json diff --git a/common/locales/cs/front.json b/website/common/locales/cs/front.json similarity index 100% rename from common/locales/cs/front.json rename to website/common/locales/cs/front.json diff --git a/common/locales/cs/gear.json b/website/common/locales/cs/gear.json similarity index 100% rename from common/locales/cs/gear.json rename to website/common/locales/cs/gear.json diff --git a/common/locales/cs/generic.json b/website/common/locales/cs/generic.json similarity index 100% rename from common/locales/cs/generic.json rename to website/common/locales/cs/generic.json diff --git a/common/locales/cs/groups.json b/website/common/locales/cs/groups.json similarity index 100% rename from common/locales/cs/groups.json rename to website/common/locales/cs/groups.json diff --git a/common/locales/cs/limited.json b/website/common/locales/cs/limited.json similarity index 100% rename from common/locales/cs/limited.json rename to website/common/locales/cs/limited.json diff --git a/common/locales/cs/loadingscreentips.json b/website/common/locales/cs/loadingscreentips.json similarity index 100% rename from common/locales/cs/loadingscreentips.json rename to website/common/locales/cs/loadingscreentips.json diff --git a/common/locales/cs/maintenance.json b/website/common/locales/cs/maintenance.json similarity index 100% rename from common/locales/cs/maintenance.json rename to website/common/locales/cs/maintenance.json diff --git a/common/locales/cs/messages.json b/website/common/locales/cs/messages.json similarity index 100% rename from common/locales/cs/messages.json rename to website/common/locales/cs/messages.json diff --git a/common/locales/cs/noscript.json b/website/common/locales/cs/noscript.json similarity index 100% rename from common/locales/cs/noscript.json rename to website/common/locales/cs/noscript.json diff --git a/common/locales/cs/npc.json b/website/common/locales/cs/npc.json similarity index 100% rename from common/locales/cs/npc.json rename to website/common/locales/cs/npc.json diff --git a/common/locales/cs/pets.json b/website/common/locales/cs/pets.json similarity index 100% rename from common/locales/cs/pets.json rename to website/common/locales/cs/pets.json diff --git a/common/locales/cs/quests.json b/website/common/locales/cs/quests.json similarity index 100% rename from common/locales/cs/quests.json rename to website/common/locales/cs/quests.json diff --git a/common/locales/cs/questscontent.json b/website/common/locales/cs/questscontent.json similarity index 100% rename from common/locales/cs/questscontent.json rename to website/common/locales/cs/questscontent.json diff --git a/common/locales/cs/rebirth.json b/website/common/locales/cs/rebirth.json similarity index 100% rename from common/locales/cs/rebirth.json rename to website/common/locales/cs/rebirth.json diff --git a/common/locales/cs/settings.json b/website/common/locales/cs/settings.json similarity index 100% rename from common/locales/cs/settings.json rename to website/common/locales/cs/settings.json diff --git a/common/locales/cs/spells.json b/website/common/locales/cs/spells.json similarity index 100% rename from common/locales/cs/spells.json rename to website/common/locales/cs/spells.json diff --git a/common/locales/cs/subscriber.json b/website/common/locales/cs/subscriber.json similarity index 100% rename from common/locales/cs/subscriber.json rename to website/common/locales/cs/subscriber.json diff --git a/common/locales/cs/tasks.json b/website/common/locales/cs/tasks.json similarity index 100% rename from common/locales/cs/tasks.json rename to website/common/locales/cs/tasks.json diff --git a/common/locales/da/_README_FIRST.md b/website/common/locales/da/_README_FIRST.md similarity index 100% rename from common/locales/da/_README_FIRST.md rename to website/common/locales/da/_README_FIRST.md diff --git a/common/locales/da/backgrounds.json b/website/common/locales/da/backgrounds.json similarity index 100% rename from common/locales/da/backgrounds.json rename to website/common/locales/da/backgrounds.json diff --git a/common/locales/da/challenge.json b/website/common/locales/da/challenge.json similarity index 100% rename from common/locales/da/challenge.json rename to website/common/locales/da/challenge.json diff --git a/common/locales/da/character.json b/website/common/locales/da/character.json similarity index 100% rename from common/locales/da/character.json rename to website/common/locales/da/character.json diff --git a/common/locales/da/communityguidelines.json b/website/common/locales/da/communityguidelines.json similarity index 100% rename from common/locales/da/communityguidelines.json rename to website/common/locales/da/communityguidelines.json diff --git a/common/locales/da/content.json b/website/common/locales/da/content.json similarity index 100% rename from common/locales/da/content.json rename to website/common/locales/da/content.json diff --git a/common/locales/da/contrib.json b/website/common/locales/da/contrib.json similarity index 100% rename from common/locales/da/contrib.json rename to website/common/locales/da/contrib.json diff --git a/common/locales/da/death.json b/website/common/locales/da/death.json similarity index 100% rename from common/locales/da/death.json rename to website/common/locales/da/death.json diff --git a/common/locales/da/defaulttasks.json b/website/common/locales/da/defaulttasks.json similarity index 100% rename from common/locales/da/defaulttasks.json rename to website/common/locales/da/defaulttasks.json diff --git a/common/locales/da/faq.json b/website/common/locales/da/faq.json similarity index 100% rename from common/locales/da/faq.json rename to website/common/locales/da/faq.json diff --git a/common/locales/da/front.json b/website/common/locales/da/front.json similarity index 100% rename from common/locales/da/front.json rename to website/common/locales/da/front.json diff --git a/common/locales/da/gear.json b/website/common/locales/da/gear.json similarity index 100% rename from common/locales/da/gear.json rename to website/common/locales/da/gear.json diff --git a/common/locales/da/generic.json b/website/common/locales/da/generic.json similarity index 100% rename from common/locales/da/generic.json rename to website/common/locales/da/generic.json diff --git a/common/locales/da/groups.json b/website/common/locales/da/groups.json similarity index 100% rename from common/locales/da/groups.json rename to website/common/locales/da/groups.json diff --git a/common/locales/da/limited.json b/website/common/locales/da/limited.json similarity index 100% rename from common/locales/da/limited.json rename to website/common/locales/da/limited.json diff --git a/common/locales/da/loadingscreentips.json b/website/common/locales/da/loadingscreentips.json similarity index 100% rename from common/locales/da/loadingscreentips.json rename to website/common/locales/da/loadingscreentips.json diff --git a/common/locales/da/maintenance.json b/website/common/locales/da/maintenance.json similarity index 100% rename from common/locales/da/maintenance.json rename to website/common/locales/da/maintenance.json diff --git a/common/locales/da/messages.json b/website/common/locales/da/messages.json similarity index 100% rename from common/locales/da/messages.json rename to website/common/locales/da/messages.json diff --git a/common/locales/da/noscript.json b/website/common/locales/da/noscript.json similarity index 100% rename from common/locales/da/noscript.json rename to website/common/locales/da/noscript.json diff --git a/common/locales/da/npc.json b/website/common/locales/da/npc.json similarity index 100% rename from common/locales/da/npc.json rename to website/common/locales/da/npc.json diff --git a/common/locales/da/pets.json b/website/common/locales/da/pets.json similarity index 100% rename from common/locales/da/pets.json rename to website/common/locales/da/pets.json diff --git a/common/locales/da/quests.json b/website/common/locales/da/quests.json similarity index 100% rename from common/locales/da/quests.json rename to website/common/locales/da/quests.json diff --git a/common/locales/da/questscontent.json b/website/common/locales/da/questscontent.json similarity index 100% rename from common/locales/da/questscontent.json rename to website/common/locales/da/questscontent.json diff --git a/common/locales/da/rebirth.json b/website/common/locales/da/rebirth.json similarity index 100% rename from common/locales/da/rebirth.json rename to website/common/locales/da/rebirth.json diff --git a/common/locales/da/settings.json b/website/common/locales/da/settings.json similarity index 100% rename from common/locales/da/settings.json rename to website/common/locales/da/settings.json diff --git a/common/locales/da/spells.json b/website/common/locales/da/spells.json similarity index 100% rename from common/locales/da/spells.json rename to website/common/locales/da/spells.json diff --git a/common/locales/da/subscriber.json b/website/common/locales/da/subscriber.json similarity index 100% rename from common/locales/da/subscriber.json rename to website/common/locales/da/subscriber.json diff --git a/common/locales/da/tasks.json b/website/common/locales/da/tasks.json similarity index 100% rename from common/locales/da/tasks.json rename to website/common/locales/da/tasks.json diff --git a/common/locales/de/_README_FIRST.md b/website/common/locales/de/_README_FIRST.md similarity index 100% rename from common/locales/de/_README_FIRST.md rename to website/common/locales/de/_README_FIRST.md diff --git a/common/locales/de/backgrounds.json b/website/common/locales/de/backgrounds.json similarity index 100% rename from common/locales/de/backgrounds.json rename to website/common/locales/de/backgrounds.json diff --git a/common/locales/de/challenge.json b/website/common/locales/de/challenge.json similarity index 100% rename from common/locales/de/challenge.json rename to website/common/locales/de/challenge.json diff --git a/common/locales/de/character.json b/website/common/locales/de/character.json similarity index 100% rename from common/locales/de/character.json rename to website/common/locales/de/character.json diff --git a/common/locales/de/communityguidelines.json b/website/common/locales/de/communityguidelines.json similarity index 100% rename from common/locales/de/communityguidelines.json rename to website/common/locales/de/communityguidelines.json diff --git a/common/locales/de/content.json b/website/common/locales/de/content.json similarity index 100% rename from common/locales/de/content.json rename to website/common/locales/de/content.json diff --git a/common/locales/de/contrib.json b/website/common/locales/de/contrib.json similarity index 100% rename from common/locales/de/contrib.json rename to website/common/locales/de/contrib.json diff --git a/common/locales/de/death.json b/website/common/locales/de/death.json similarity index 100% rename from common/locales/de/death.json rename to website/common/locales/de/death.json diff --git a/common/locales/de/defaulttasks.json b/website/common/locales/de/defaulttasks.json similarity index 100% rename from common/locales/de/defaulttasks.json rename to website/common/locales/de/defaulttasks.json diff --git a/common/locales/de/faq.json b/website/common/locales/de/faq.json similarity index 100% rename from common/locales/de/faq.json rename to website/common/locales/de/faq.json diff --git a/common/locales/de/front.json b/website/common/locales/de/front.json similarity index 100% rename from common/locales/de/front.json rename to website/common/locales/de/front.json diff --git a/common/locales/de/gear.json b/website/common/locales/de/gear.json similarity index 100% rename from common/locales/de/gear.json rename to website/common/locales/de/gear.json diff --git a/common/locales/de/generic.json b/website/common/locales/de/generic.json similarity index 100% rename from common/locales/de/generic.json rename to website/common/locales/de/generic.json diff --git a/common/locales/de/groups.json b/website/common/locales/de/groups.json similarity index 100% rename from common/locales/de/groups.json rename to website/common/locales/de/groups.json diff --git a/common/locales/de/limited.json b/website/common/locales/de/limited.json similarity index 100% rename from common/locales/de/limited.json rename to website/common/locales/de/limited.json diff --git a/common/locales/de/loadingscreentips.json b/website/common/locales/de/loadingscreentips.json similarity index 100% rename from common/locales/de/loadingscreentips.json rename to website/common/locales/de/loadingscreentips.json diff --git a/common/locales/de/maintenance.json b/website/common/locales/de/maintenance.json similarity index 100% rename from common/locales/de/maintenance.json rename to website/common/locales/de/maintenance.json diff --git a/common/locales/de/messages.json b/website/common/locales/de/messages.json similarity index 100% rename from common/locales/de/messages.json rename to website/common/locales/de/messages.json diff --git a/common/locales/de/noscript.json b/website/common/locales/de/noscript.json similarity index 100% rename from common/locales/de/noscript.json rename to website/common/locales/de/noscript.json diff --git a/common/locales/de/npc.json b/website/common/locales/de/npc.json similarity index 100% rename from common/locales/de/npc.json rename to website/common/locales/de/npc.json diff --git a/common/locales/de/pets.json b/website/common/locales/de/pets.json similarity index 100% rename from common/locales/de/pets.json rename to website/common/locales/de/pets.json diff --git a/common/locales/de/quests.json b/website/common/locales/de/quests.json similarity index 100% rename from common/locales/de/quests.json rename to website/common/locales/de/quests.json diff --git a/common/locales/de/questscontent.json b/website/common/locales/de/questscontent.json similarity index 100% rename from common/locales/de/questscontent.json rename to website/common/locales/de/questscontent.json diff --git a/common/locales/de/rebirth.json b/website/common/locales/de/rebirth.json similarity index 100% rename from common/locales/de/rebirth.json rename to website/common/locales/de/rebirth.json diff --git a/common/locales/de/settings.json b/website/common/locales/de/settings.json similarity index 100% rename from common/locales/de/settings.json rename to website/common/locales/de/settings.json diff --git a/common/locales/de/spells.json b/website/common/locales/de/spells.json similarity index 100% rename from common/locales/de/spells.json rename to website/common/locales/de/spells.json diff --git a/common/locales/de/subscriber.json b/website/common/locales/de/subscriber.json similarity index 100% rename from common/locales/de/subscriber.json rename to website/common/locales/de/subscriber.json diff --git a/common/locales/de/tasks.json b/website/common/locales/de/tasks.json similarity index 100% rename from common/locales/de/tasks.json rename to website/common/locales/de/tasks.json diff --git a/common/locales/en/_README_FIRST.md b/website/common/locales/en/_README_FIRST.md similarity index 100% rename from common/locales/en/_README_FIRST.md rename to website/common/locales/en/_README_FIRST.md diff --git a/common/locales/en/backgrounds.json b/website/common/locales/en/backgrounds.json similarity index 100% rename from common/locales/en/backgrounds.json rename to website/common/locales/en/backgrounds.json diff --git a/common/locales/en/challenge.json b/website/common/locales/en/challenge.json similarity index 100% rename from common/locales/en/challenge.json rename to website/common/locales/en/challenge.json diff --git a/common/locales/en/character.json b/website/common/locales/en/character.json similarity index 100% rename from common/locales/en/character.json rename to website/common/locales/en/character.json diff --git a/common/locales/en/communityGuidelines.json b/website/common/locales/en/communityGuidelines.json similarity index 100% rename from common/locales/en/communityGuidelines.json rename to website/common/locales/en/communityGuidelines.json diff --git a/common/locales/en/content.json b/website/common/locales/en/content.json similarity index 100% rename from common/locales/en/content.json rename to website/common/locales/en/content.json diff --git a/common/locales/en/contrib.json b/website/common/locales/en/contrib.json similarity index 100% rename from common/locales/en/contrib.json rename to website/common/locales/en/contrib.json diff --git a/common/locales/en/death.json b/website/common/locales/en/death.json similarity index 100% rename from common/locales/en/death.json rename to website/common/locales/en/death.json diff --git a/common/locales/en/defaultTasks.json b/website/common/locales/en/defaultTasks.json similarity index 100% rename from common/locales/en/defaultTasks.json rename to website/common/locales/en/defaultTasks.json diff --git a/common/locales/en/faq.json b/website/common/locales/en/faq.json similarity index 100% rename from common/locales/en/faq.json rename to website/common/locales/en/faq.json diff --git a/common/locales/en/front.json b/website/common/locales/en/front.json similarity index 100% rename from common/locales/en/front.json rename to website/common/locales/en/front.json diff --git a/common/locales/en/gear.json b/website/common/locales/en/gear.json similarity index 100% rename from common/locales/en/gear.json rename to website/common/locales/en/gear.json diff --git a/common/locales/en/gear_README.md b/website/common/locales/en/gear_README.md similarity index 100% rename from common/locales/en/gear_README.md rename to website/common/locales/en/gear_README.md diff --git a/common/locales/en/generic.json b/website/common/locales/en/generic.json similarity index 100% rename from common/locales/en/generic.json rename to website/common/locales/en/generic.json diff --git a/common/locales/en/groups.json b/website/common/locales/en/groups.json similarity index 100% rename from common/locales/en/groups.json rename to website/common/locales/en/groups.json diff --git a/common/locales/en/limited.json b/website/common/locales/en/limited.json similarity index 100% rename from common/locales/en/limited.json rename to website/common/locales/en/limited.json diff --git a/common/locales/en/loadingScreenTips.json b/website/common/locales/en/loadingScreenTips.json similarity index 100% rename from common/locales/en/loadingScreenTips.json rename to website/common/locales/en/loadingScreenTips.json diff --git a/common/locales/en/maintenance.json b/website/common/locales/en/maintenance.json similarity index 100% rename from common/locales/en/maintenance.json rename to website/common/locales/en/maintenance.json diff --git a/common/locales/en/merch.json b/website/common/locales/en/merch.json similarity index 100% rename from common/locales/en/merch.json rename to website/common/locales/en/merch.json diff --git a/common/locales/en/messages.json b/website/common/locales/en/messages.json similarity index 100% rename from common/locales/en/messages.json rename to website/common/locales/en/messages.json diff --git a/common/locales/en/noscript.json b/website/common/locales/en/noscript.json similarity index 100% rename from common/locales/en/noscript.json rename to website/common/locales/en/noscript.json diff --git a/common/locales/en/npc.json b/website/common/locales/en/npc.json similarity index 100% rename from common/locales/en/npc.json rename to website/common/locales/en/npc.json diff --git a/common/locales/en/overview.json b/website/common/locales/en/overview.json similarity index 100% rename from common/locales/en/overview.json rename to website/common/locales/en/overview.json diff --git a/common/locales/en/pets.json b/website/common/locales/en/pets.json similarity index 100% rename from common/locales/en/pets.json rename to website/common/locales/en/pets.json diff --git a/common/locales/en/quests.json b/website/common/locales/en/quests.json similarity index 100% rename from common/locales/en/quests.json rename to website/common/locales/en/quests.json diff --git a/common/locales/en/questsContent.json b/website/common/locales/en/questsContent.json similarity index 100% rename from common/locales/en/questsContent.json rename to website/common/locales/en/questsContent.json diff --git a/common/locales/en/rebirth.json b/website/common/locales/en/rebirth.json similarity index 100% rename from common/locales/en/rebirth.json rename to website/common/locales/en/rebirth.json diff --git a/common/locales/en/settings.json b/website/common/locales/en/settings.json similarity index 100% rename from common/locales/en/settings.json rename to website/common/locales/en/settings.json diff --git a/common/locales/en/spells.json b/website/common/locales/en/spells.json similarity index 100% rename from common/locales/en/spells.json rename to website/common/locales/en/spells.json diff --git a/common/locales/en/subscriber.json b/website/common/locales/en/subscriber.json similarity index 100% rename from common/locales/en/subscriber.json rename to website/common/locales/en/subscriber.json diff --git a/common/locales/en/tasks.json b/website/common/locales/en/tasks.json similarity index 100% rename from common/locales/en/tasks.json rename to website/common/locales/en/tasks.json diff --git a/common/locales/en@pirate/_README_FIRST.md b/website/common/locales/en@pirate/_README_FIRST.md similarity index 100% rename from common/locales/en@pirate/_README_FIRST.md rename to website/common/locales/en@pirate/_README_FIRST.md diff --git a/common/locales/en@pirate/backgrounds.json b/website/common/locales/en@pirate/backgrounds.json similarity index 100% rename from common/locales/en@pirate/backgrounds.json rename to website/common/locales/en@pirate/backgrounds.json diff --git a/common/locales/en@pirate/challenge.json b/website/common/locales/en@pirate/challenge.json similarity index 100% rename from common/locales/en@pirate/challenge.json rename to website/common/locales/en@pirate/challenge.json diff --git a/common/locales/en@pirate/character.json b/website/common/locales/en@pirate/character.json similarity index 100% rename from common/locales/en@pirate/character.json rename to website/common/locales/en@pirate/character.json diff --git a/common/locales/en@pirate/communityguidelines.json b/website/common/locales/en@pirate/communityguidelines.json similarity index 100% rename from common/locales/en@pirate/communityguidelines.json rename to website/common/locales/en@pirate/communityguidelines.json diff --git a/common/locales/en@pirate/content.json b/website/common/locales/en@pirate/content.json similarity index 100% rename from common/locales/en@pirate/content.json rename to website/common/locales/en@pirate/content.json diff --git a/common/locales/en@pirate/contrib.json b/website/common/locales/en@pirate/contrib.json similarity index 100% rename from common/locales/en@pirate/contrib.json rename to website/common/locales/en@pirate/contrib.json diff --git a/common/locales/en@pirate/death.json b/website/common/locales/en@pirate/death.json similarity index 100% rename from common/locales/en@pirate/death.json rename to website/common/locales/en@pirate/death.json diff --git a/common/locales/en@pirate/defaulttasks.json b/website/common/locales/en@pirate/defaulttasks.json similarity index 100% rename from common/locales/en@pirate/defaulttasks.json rename to website/common/locales/en@pirate/defaulttasks.json diff --git a/common/locales/en@pirate/faq.json b/website/common/locales/en@pirate/faq.json similarity index 100% rename from common/locales/en@pirate/faq.json rename to website/common/locales/en@pirate/faq.json diff --git a/common/locales/en@pirate/front.json b/website/common/locales/en@pirate/front.json similarity index 100% rename from common/locales/en@pirate/front.json rename to website/common/locales/en@pirate/front.json diff --git a/common/locales/en@pirate/gear.json b/website/common/locales/en@pirate/gear.json similarity index 100% rename from common/locales/en@pirate/gear.json rename to website/common/locales/en@pirate/gear.json diff --git a/common/locales/en@pirate/generic.json b/website/common/locales/en@pirate/generic.json similarity index 100% rename from common/locales/en@pirate/generic.json rename to website/common/locales/en@pirate/generic.json diff --git a/common/locales/en@pirate/groups.json b/website/common/locales/en@pirate/groups.json similarity index 100% rename from common/locales/en@pirate/groups.json rename to website/common/locales/en@pirate/groups.json diff --git a/common/locales/en@pirate/limited.json b/website/common/locales/en@pirate/limited.json similarity index 100% rename from common/locales/en@pirate/limited.json rename to website/common/locales/en@pirate/limited.json diff --git a/common/locales/en@pirate/loadingscreentips.json b/website/common/locales/en@pirate/loadingscreentips.json similarity index 100% rename from common/locales/en@pirate/loadingscreentips.json rename to website/common/locales/en@pirate/loadingscreentips.json diff --git a/common/locales/en@pirate/maintenance.json b/website/common/locales/en@pirate/maintenance.json similarity index 100% rename from common/locales/en@pirate/maintenance.json rename to website/common/locales/en@pirate/maintenance.json diff --git a/common/locales/en@pirate/messages.json b/website/common/locales/en@pirate/messages.json similarity index 100% rename from common/locales/en@pirate/messages.json rename to website/common/locales/en@pirate/messages.json diff --git a/common/locales/en@pirate/noscript.json b/website/common/locales/en@pirate/noscript.json similarity index 100% rename from common/locales/en@pirate/noscript.json rename to website/common/locales/en@pirate/noscript.json diff --git a/common/locales/en@pirate/npc.json b/website/common/locales/en@pirate/npc.json similarity index 100% rename from common/locales/en@pirate/npc.json rename to website/common/locales/en@pirate/npc.json diff --git a/common/locales/en@pirate/pets.json b/website/common/locales/en@pirate/pets.json similarity index 100% rename from common/locales/en@pirate/pets.json rename to website/common/locales/en@pirate/pets.json diff --git a/common/locales/en@pirate/quests.json b/website/common/locales/en@pirate/quests.json similarity index 100% rename from common/locales/en@pirate/quests.json rename to website/common/locales/en@pirate/quests.json diff --git a/common/locales/en@pirate/questscontent.json b/website/common/locales/en@pirate/questscontent.json similarity index 100% rename from common/locales/en@pirate/questscontent.json rename to website/common/locales/en@pirate/questscontent.json diff --git a/common/locales/en@pirate/rebirth.json b/website/common/locales/en@pirate/rebirth.json similarity index 100% rename from common/locales/en@pirate/rebirth.json rename to website/common/locales/en@pirate/rebirth.json diff --git a/common/locales/en@pirate/settings.json b/website/common/locales/en@pirate/settings.json similarity index 100% rename from common/locales/en@pirate/settings.json rename to website/common/locales/en@pirate/settings.json diff --git a/common/locales/en@pirate/spells.json b/website/common/locales/en@pirate/spells.json similarity index 100% rename from common/locales/en@pirate/spells.json rename to website/common/locales/en@pirate/spells.json diff --git a/common/locales/en@pirate/subscriber.json b/website/common/locales/en@pirate/subscriber.json similarity index 100% rename from common/locales/en@pirate/subscriber.json rename to website/common/locales/en@pirate/subscriber.json diff --git a/common/locales/en@pirate/tasks.json b/website/common/locales/en@pirate/tasks.json similarity index 100% rename from common/locales/en@pirate/tasks.json rename to website/common/locales/en@pirate/tasks.json diff --git a/common/locales/en_GB/_README_FIRST.md b/website/common/locales/en_GB/_README_FIRST.md similarity index 100% rename from common/locales/en_GB/_README_FIRST.md rename to website/common/locales/en_GB/_README_FIRST.md diff --git a/common/locales/en_GB/backgrounds.json b/website/common/locales/en_GB/backgrounds.json similarity index 100% rename from common/locales/en_GB/backgrounds.json rename to website/common/locales/en_GB/backgrounds.json diff --git a/common/locales/en_GB/challenge.json b/website/common/locales/en_GB/challenge.json similarity index 100% rename from common/locales/en_GB/challenge.json rename to website/common/locales/en_GB/challenge.json diff --git a/common/locales/en_GB/character.json b/website/common/locales/en_GB/character.json similarity index 100% rename from common/locales/en_GB/character.json rename to website/common/locales/en_GB/character.json diff --git a/common/locales/en_GB/communityguidelines.json b/website/common/locales/en_GB/communityguidelines.json similarity index 100% rename from common/locales/en_GB/communityguidelines.json rename to website/common/locales/en_GB/communityguidelines.json diff --git a/common/locales/en_GB/content.json b/website/common/locales/en_GB/content.json similarity index 100% rename from common/locales/en_GB/content.json rename to website/common/locales/en_GB/content.json diff --git a/common/locales/en_GB/contrib.json b/website/common/locales/en_GB/contrib.json similarity index 100% rename from common/locales/en_GB/contrib.json rename to website/common/locales/en_GB/contrib.json diff --git a/common/locales/en_GB/death.json b/website/common/locales/en_GB/death.json similarity index 100% rename from common/locales/en_GB/death.json rename to website/common/locales/en_GB/death.json diff --git a/common/locales/en_GB/defaulttasks.json b/website/common/locales/en_GB/defaulttasks.json similarity index 100% rename from common/locales/en_GB/defaulttasks.json rename to website/common/locales/en_GB/defaulttasks.json diff --git a/common/locales/en_GB/faq.json b/website/common/locales/en_GB/faq.json similarity index 100% rename from common/locales/en_GB/faq.json rename to website/common/locales/en_GB/faq.json diff --git a/common/locales/en_GB/front.json b/website/common/locales/en_GB/front.json similarity index 100% rename from common/locales/en_GB/front.json rename to website/common/locales/en_GB/front.json diff --git a/common/locales/en_GB/gear.json b/website/common/locales/en_GB/gear.json similarity index 100% rename from common/locales/en_GB/gear.json rename to website/common/locales/en_GB/gear.json diff --git a/common/locales/en_GB/generic.json b/website/common/locales/en_GB/generic.json similarity index 100% rename from common/locales/en_GB/generic.json rename to website/common/locales/en_GB/generic.json diff --git a/common/locales/en_GB/groups.json b/website/common/locales/en_GB/groups.json similarity index 100% rename from common/locales/en_GB/groups.json rename to website/common/locales/en_GB/groups.json diff --git a/common/locales/en_GB/limited.json b/website/common/locales/en_GB/limited.json similarity index 100% rename from common/locales/en_GB/limited.json rename to website/common/locales/en_GB/limited.json diff --git a/common/locales/en_GB/loadingscreentips.json b/website/common/locales/en_GB/loadingscreentips.json similarity index 100% rename from common/locales/en_GB/loadingscreentips.json rename to website/common/locales/en_GB/loadingscreentips.json diff --git a/common/locales/en_GB/maintenance.json b/website/common/locales/en_GB/maintenance.json similarity index 100% rename from common/locales/en_GB/maintenance.json rename to website/common/locales/en_GB/maintenance.json diff --git a/common/locales/en_GB/messages.json b/website/common/locales/en_GB/messages.json similarity index 100% rename from common/locales/en_GB/messages.json rename to website/common/locales/en_GB/messages.json diff --git a/common/locales/en_GB/noscript.json b/website/common/locales/en_GB/noscript.json similarity index 100% rename from common/locales/en_GB/noscript.json rename to website/common/locales/en_GB/noscript.json diff --git a/common/locales/en_GB/npc.json b/website/common/locales/en_GB/npc.json similarity index 100% rename from common/locales/en_GB/npc.json rename to website/common/locales/en_GB/npc.json diff --git a/common/locales/en_GB/pets.json b/website/common/locales/en_GB/pets.json similarity index 100% rename from common/locales/en_GB/pets.json rename to website/common/locales/en_GB/pets.json diff --git a/common/locales/en_GB/quests.json b/website/common/locales/en_GB/quests.json similarity index 100% rename from common/locales/en_GB/quests.json rename to website/common/locales/en_GB/quests.json diff --git a/common/locales/en_GB/questscontent.json b/website/common/locales/en_GB/questscontent.json similarity index 100% rename from common/locales/en_GB/questscontent.json rename to website/common/locales/en_GB/questscontent.json diff --git a/common/locales/en_GB/rebirth.json b/website/common/locales/en_GB/rebirth.json similarity index 100% rename from common/locales/en_GB/rebirth.json rename to website/common/locales/en_GB/rebirth.json diff --git a/common/locales/en_GB/settings.json b/website/common/locales/en_GB/settings.json similarity index 100% rename from common/locales/en_GB/settings.json rename to website/common/locales/en_GB/settings.json diff --git a/common/locales/en_GB/spells.json b/website/common/locales/en_GB/spells.json similarity index 100% rename from common/locales/en_GB/spells.json rename to website/common/locales/en_GB/spells.json diff --git a/common/locales/en_GB/subscriber.json b/website/common/locales/en_GB/subscriber.json similarity index 100% rename from common/locales/en_GB/subscriber.json rename to website/common/locales/en_GB/subscriber.json diff --git a/common/locales/en_GB/tasks.json b/website/common/locales/en_GB/tasks.json similarity index 100% rename from common/locales/en_GB/tasks.json rename to website/common/locales/en_GB/tasks.json diff --git a/common/locales/es/_README_FIRST.md b/website/common/locales/es/_README_FIRST.md similarity index 100% rename from common/locales/es/_README_FIRST.md rename to website/common/locales/es/_README_FIRST.md diff --git a/common/locales/es/backgrounds.json b/website/common/locales/es/backgrounds.json similarity index 100% rename from common/locales/es/backgrounds.json rename to website/common/locales/es/backgrounds.json diff --git a/common/locales/es/challenge.json b/website/common/locales/es/challenge.json similarity index 100% rename from common/locales/es/challenge.json rename to website/common/locales/es/challenge.json diff --git a/common/locales/es/character.json b/website/common/locales/es/character.json similarity index 100% rename from common/locales/es/character.json rename to website/common/locales/es/character.json diff --git a/common/locales/es/communityguidelines.json b/website/common/locales/es/communityguidelines.json similarity index 100% rename from common/locales/es/communityguidelines.json rename to website/common/locales/es/communityguidelines.json diff --git a/common/locales/es/content.json b/website/common/locales/es/content.json similarity index 100% rename from common/locales/es/content.json rename to website/common/locales/es/content.json diff --git a/common/locales/es/contrib.json b/website/common/locales/es/contrib.json similarity index 100% rename from common/locales/es/contrib.json rename to website/common/locales/es/contrib.json diff --git a/common/locales/es/death.json b/website/common/locales/es/death.json similarity index 100% rename from common/locales/es/death.json rename to website/common/locales/es/death.json diff --git a/common/locales/es/defaulttasks.json b/website/common/locales/es/defaulttasks.json similarity index 100% rename from common/locales/es/defaulttasks.json rename to website/common/locales/es/defaulttasks.json diff --git a/common/locales/es/faq.json b/website/common/locales/es/faq.json similarity index 100% rename from common/locales/es/faq.json rename to website/common/locales/es/faq.json diff --git a/common/locales/es/front.json b/website/common/locales/es/front.json similarity index 100% rename from common/locales/es/front.json rename to website/common/locales/es/front.json diff --git a/common/locales/es/gear.json b/website/common/locales/es/gear.json similarity index 100% rename from common/locales/es/gear.json rename to website/common/locales/es/gear.json diff --git a/common/locales/es/generic.json b/website/common/locales/es/generic.json similarity index 100% rename from common/locales/es/generic.json rename to website/common/locales/es/generic.json diff --git a/common/locales/es/groups.json b/website/common/locales/es/groups.json similarity index 100% rename from common/locales/es/groups.json rename to website/common/locales/es/groups.json diff --git a/common/locales/es/limited.json b/website/common/locales/es/limited.json similarity index 100% rename from common/locales/es/limited.json rename to website/common/locales/es/limited.json diff --git a/common/locales/es/loadingscreentips.json b/website/common/locales/es/loadingscreentips.json similarity index 100% rename from common/locales/es/loadingscreentips.json rename to website/common/locales/es/loadingscreentips.json diff --git a/common/locales/es/maintenance.json b/website/common/locales/es/maintenance.json similarity index 100% rename from common/locales/es/maintenance.json rename to website/common/locales/es/maintenance.json diff --git a/common/locales/es/messages.json b/website/common/locales/es/messages.json similarity index 100% rename from common/locales/es/messages.json rename to website/common/locales/es/messages.json diff --git a/common/locales/es/noscript.json b/website/common/locales/es/noscript.json similarity index 100% rename from common/locales/es/noscript.json rename to website/common/locales/es/noscript.json diff --git a/common/locales/es/npc.json b/website/common/locales/es/npc.json similarity index 100% rename from common/locales/es/npc.json rename to website/common/locales/es/npc.json diff --git a/common/locales/es/pets.json b/website/common/locales/es/pets.json similarity index 100% rename from common/locales/es/pets.json rename to website/common/locales/es/pets.json diff --git a/common/locales/es/quests.json b/website/common/locales/es/quests.json similarity index 100% rename from common/locales/es/quests.json rename to website/common/locales/es/quests.json diff --git a/common/locales/es/questscontent.json b/website/common/locales/es/questscontent.json similarity index 100% rename from common/locales/es/questscontent.json rename to website/common/locales/es/questscontent.json diff --git a/common/locales/es/rebirth.json b/website/common/locales/es/rebirth.json similarity index 100% rename from common/locales/es/rebirth.json rename to website/common/locales/es/rebirth.json diff --git a/common/locales/es/settings.json b/website/common/locales/es/settings.json similarity index 100% rename from common/locales/es/settings.json rename to website/common/locales/es/settings.json diff --git a/common/locales/es/spells.json b/website/common/locales/es/spells.json similarity index 100% rename from common/locales/es/spells.json rename to website/common/locales/es/spells.json diff --git a/common/locales/es/subscriber.json b/website/common/locales/es/subscriber.json similarity index 100% rename from common/locales/es/subscriber.json rename to website/common/locales/es/subscriber.json diff --git a/common/locales/es/tasks.json b/website/common/locales/es/tasks.json similarity index 100% rename from common/locales/es/tasks.json rename to website/common/locales/es/tasks.json diff --git a/common/locales/es_419/_README_FIRST.md b/website/common/locales/es_419/_README_FIRST.md similarity index 100% rename from common/locales/es_419/_README_FIRST.md rename to website/common/locales/es_419/_README_FIRST.md diff --git a/common/locales/es_419/backgrounds.json b/website/common/locales/es_419/backgrounds.json similarity index 100% rename from common/locales/es_419/backgrounds.json rename to website/common/locales/es_419/backgrounds.json diff --git a/common/locales/es_419/challenge.json b/website/common/locales/es_419/challenge.json similarity index 100% rename from common/locales/es_419/challenge.json rename to website/common/locales/es_419/challenge.json diff --git a/common/locales/es_419/character.json b/website/common/locales/es_419/character.json similarity index 100% rename from common/locales/es_419/character.json rename to website/common/locales/es_419/character.json diff --git a/common/locales/es_419/communityguidelines.json b/website/common/locales/es_419/communityguidelines.json similarity index 100% rename from common/locales/es_419/communityguidelines.json rename to website/common/locales/es_419/communityguidelines.json diff --git a/common/locales/es_419/content.json b/website/common/locales/es_419/content.json similarity index 100% rename from common/locales/es_419/content.json rename to website/common/locales/es_419/content.json diff --git a/common/locales/es_419/contrib.json b/website/common/locales/es_419/contrib.json similarity index 100% rename from common/locales/es_419/contrib.json rename to website/common/locales/es_419/contrib.json diff --git a/common/locales/es_419/death.json b/website/common/locales/es_419/death.json similarity index 100% rename from common/locales/es_419/death.json rename to website/common/locales/es_419/death.json diff --git a/common/locales/es_419/defaulttasks.json b/website/common/locales/es_419/defaulttasks.json similarity index 100% rename from common/locales/es_419/defaulttasks.json rename to website/common/locales/es_419/defaulttasks.json diff --git a/common/locales/es_419/faq.json b/website/common/locales/es_419/faq.json similarity index 100% rename from common/locales/es_419/faq.json rename to website/common/locales/es_419/faq.json diff --git a/common/locales/es_419/front.json b/website/common/locales/es_419/front.json similarity index 100% rename from common/locales/es_419/front.json rename to website/common/locales/es_419/front.json diff --git a/common/locales/es_419/gear.json b/website/common/locales/es_419/gear.json similarity index 100% rename from common/locales/es_419/gear.json rename to website/common/locales/es_419/gear.json diff --git a/common/locales/es_419/generic.json b/website/common/locales/es_419/generic.json similarity index 100% rename from common/locales/es_419/generic.json rename to website/common/locales/es_419/generic.json diff --git a/common/locales/es_419/groups.json b/website/common/locales/es_419/groups.json similarity index 100% rename from common/locales/es_419/groups.json rename to website/common/locales/es_419/groups.json diff --git a/common/locales/es_419/limited.json b/website/common/locales/es_419/limited.json similarity index 100% rename from common/locales/es_419/limited.json rename to website/common/locales/es_419/limited.json diff --git a/common/locales/es_419/loadingscreentips.json b/website/common/locales/es_419/loadingscreentips.json similarity index 100% rename from common/locales/es_419/loadingscreentips.json rename to website/common/locales/es_419/loadingscreentips.json diff --git a/common/locales/es_419/maintenance.json b/website/common/locales/es_419/maintenance.json similarity index 100% rename from common/locales/es_419/maintenance.json rename to website/common/locales/es_419/maintenance.json diff --git a/common/locales/es_419/messages.json b/website/common/locales/es_419/messages.json similarity index 100% rename from common/locales/es_419/messages.json rename to website/common/locales/es_419/messages.json diff --git a/common/locales/es_419/noscript.json b/website/common/locales/es_419/noscript.json similarity index 100% rename from common/locales/es_419/noscript.json rename to website/common/locales/es_419/noscript.json diff --git a/common/locales/es_419/npc.json b/website/common/locales/es_419/npc.json similarity index 100% rename from common/locales/es_419/npc.json rename to website/common/locales/es_419/npc.json diff --git a/common/locales/es_419/pets.json b/website/common/locales/es_419/pets.json similarity index 100% rename from common/locales/es_419/pets.json rename to website/common/locales/es_419/pets.json diff --git a/common/locales/es_419/quests.json b/website/common/locales/es_419/quests.json similarity index 100% rename from common/locales/es_419/quests.json rename to website/common/locales/es_419/quests.json diff --git a/common/locales/es_419/questscontent.json b/website/common/locales/es_419/questscontent.json similarity index 100% rename from common/locales/es_419/questscontent.json rename to website/common/locales/es_419/questscontent.json diff --git a/common/locales/es_419/rebirth.json b/website/common/locales/es_419/rebirth.json similarity index 100% rename from common/locales/es_419/rebirth.json rename to website/common/locales/es_419/rebirth.json diff --git a/common/locales/es_419/settings.json b/website/common/locales/es_419/settings.json similarity index 100% rename from common/locales/es_419/settings.json rename to website/common/locales/es_419/settings.json diff --git a/common/locales/es_419/spells.json b/website/common/locales/es_419/spells.json similarity index 100% rename from common/locales/es_419/spells.json rename to website/common/locales/es_419/spells.json diff --git a/common/locales/es_419/subscriber.json b/website/common/locales/es_419/subscriber.json similarity index 100% rename from common/locales/es_419/subscriber.json rename to website/common/locales/es_419/subscriber.json diff --git a/common/locales/es_419/tasks.json b/website/common/locales/es_419/tasks.json similarity index 100% rename from common/locales/es_419/tasks.json rename to website/common/locales/es_419/tasks.json diff --git a/common/locales/fr/_README_FIRST.md b/website/common/locales/fr/_README_FIRST.md similarity index 100% rename from common/locales/fr/_README_FIRST.md rename to website/common/locales/fr/_README_FIRST.md diff --git a/common/locales/fr/backgrounds.json b/website/common/locales/fr/backgrounds.json similarity index 100% rename from common/locales/fr/backgrounds.json rename to website/common/locales/fr/backgrounds.json diff --git a/common/locales/fr/challenge.json b/website/common/locales/fr/challenge.json similarity index 100% rename from common/locales/fr/challenge.json rename to website/common/locales/fr/challenge.json diff --git a/common/locales/fr/character.json b/website/common/locales/fr/character.json similarity index 100% rename from common/locales/fr/character.json rename to website/common/locales/fr/character.json diff --git a/common/locales/fr/communityguidelines.json b/website/common/locales/fr/communityguidelines.json similarity index 100% rename from common/locales/fr/communityguidelines.json rename to website/common/locales/fr/communityguidelines.json diff --git a/common/locales/fr/content.json b/website/common/locales/fr/content.json similarity index 100% rename from common/locales/fr/content.json rename to website/common/locales/fr/content.json diff --git a/common/locales/fr/contrib.json b/website/common/locales/fr/contrib.json similarity index 100% rename from common/locales/fr/contrib.json rename to website/common/locales/fr/contrib.json diff --git a/common/locales/fr/death.json b/website/common/locales/fr/death.json similarity index 100% rename from common/locales/fr/death.json rename to website/common/locales/fr/death.json diff --git a/common/locales/fr/defaulttasks.json b/website/common/locales/fr/defaulttasks.json similarity index 100% rename from common/locales/fr/defaulttasks.json rename to website/common/locales/fr/defaulttasks.json diff --git a/common/locales/fr/faq.json b/website/common/locales/fr/faq.json similarity index 100% rename from common/locales/fr/faq.json rename to website/common/locales/fr/faq.json diff --git a/common/locales/fr/front.json b/website/common/locales/fr/front.json similarity index 100% rename from common/locales/fr/front.json rename to website/common/locales/fr/front.json diff --git a/common/locales/fr/gear.json b/website/common/locales/fr/gear.json similarity index 100% rename from common/locales/fr/gear.json rename to website/common/locales/fr/gear.json diff --git a/common/locales/fr/generic.json b/website/common/locales/fr/generic.json similarity index 100% rename from common/locales/fr/generic.json rename to website/common/locales/fr/generic.json diff --git a/common/locales/fr/groups.json b/website/common/locales/fr/groups.json similarity index 100% rename from common/locales/fr/groups.json rename to website/common/locales/fr/groups.json diff --git a/common/locales/fr/limited.json b/website/common/locales/fr/limited.json similarity index 100% rename from common/locales/fr/limited.json rename to website/common/locales/fr/limited.json diff --git a/common/locales/fr/loadingscreentips.json b/website/common/locales/fr/loadingscreentips.json similarity index 100% rename from common/locales/fr/loadingscreentips.json rename to website/common/locales/fr/loadingscreentips.json diff --git a/common/locales/fr/maintenance.json b/website/common/locales/fr/maintenance.json similarity index 100% rename from common/locales/fr/maintenance.json rename to website/common/locales/fr/maintenance.json diff --git a/common/locales/fr/messages.json b/website/common/locales/fr/messages.json similarity index 100% rename from common/locales/fr/messages.json rename to website/common/locales/fr/messages.json diff --git a/common/locales/fr/noscript.json b/website/common/locales/fr/noscript.json similarity index 100% rename from common/locales/fr/noscript.json rename to website/common/locales/fr/noscript.json diff --git a/common/locales/fr/npc.json b/website/common/locales/fr/npc.json similarity index 100% rename from common/locales/fr/npc.json rename to website/common/locales/fr/npc.json diff --git a/common/locales/fr/pets.json b/website/common/locales/fr/pets.json similarity index 100% rename from common/locales/fr/pets.json rename to website/common/locales/fr/pets.json diff --git a/common/locales/fr/quests.json b/website/common/locales/fr/quests.json similarity index 100% rename from common/locales/fr/quests.json rename to website/common/locales/fr/quests.json diff --git a/common/locales/fr/questscontent.json b/website/common/locales/fr/questscontent.json similarity index 100% rename from common/locales/fr/questscontent.json rename to website/common/locales/fr/questscontent.json diff --git a/common/locales/fr/rebirth.json b/website/common/locales/fr/rebirth.json similarity index 100% rename from common/locales/fr/rebirth.json rename to website/common/locales/fr/rebirth.json diff --git a/common/locales/fr/settings.json b/website/common/locales/fr/settings.json similarity index 100% rename from common/locales/fr/settings.json rename to website/common/locales/fr/settings.json diff --git a/common/locales/fr/spells.json b/website/common/locales/fr/spells.json similarity index 100% rename from common/locales/fr/spells.json rename to website/common/locales/fr/spells.json diff --git a/common/locales/fr/subscriber.json b/website/common/locales/fr/subscriber.json similarity index 100% rename from common/locales/fr/subscriber.json rename to website/common/locales/fr/subscriber.json diff --git a/common/locales/fr/tasks.json b/website/common/locales/fr/tasks.json similarity index 100% rename from common/locales/fr/tasks.json rename to website/common/locales/fr/tasks.json diff --git a/common/locales/he/_README_FIRST.md b/website/common/locales/he/_README_FIRST.md similarity index 100% rename from common/locales/he/_README_FIRST.md rename to website/common/locales/he/_README_FIRST.md diff --git a/common/locales/he/backgrounds.json b/website/common/locales/he/backgrounds.json similarity index 100% rename from common/locales/he/backgrounds.json rename to website/common/locales/he/backgrounds.json diff --git a/common/locales/he/challenge.json b/website/common/locales/he/challenge.json similarity index 100% rename from common/locales/he/challenge.json rename to website/common/locales/he/challenge.json diff --git a/common/locales/he/character.json b/website/common/locales/he/character.json similarity index 100% rename from common/locales/he/character.json rename to website/common/locales/he/character.json diff --git a/common/locales/he/communityguidelines.json b/website/common/locales/he/communityguidelines.json similarity index 100% rename from common/locales/he/communityguidelines.json rename to website/common/locales/he/communityguidelines.json diff --git a/common/locales/he/content.json b/website/common/locales/he/content.json similarity index 100% rename from common/locales/he/content.json rename to website/common/locales/he/content.json diff --git a/common/locales/he/contrib.json b/website/common/locales/he/contrib.json similarity index 100% rename from common/locales/he/contrib.json rename to website/common/locales/he/contrib.json diff --git a/common/locales/he/death.json b/website/common/locales/he/death.json similarity index 100% rename from common/locales/he/death.json rename to website/common/locales/he/death.json diff --git a/common/locales/he/defaulttasks.json b/website/common/locales/he/defaulttasks.json similarity index 100% rename from common/locales/he/defaulttasks.json rename to website/common/locales/he/defaulttasks.json diff --git a/common/locales/he/faq.json b/website/common/locales/he/faq.json similarity index 100% rename from common/locales/he/faq.json rename to website/common/locales/he/faq.json diff --git a/common/locales/he/front.json b/website/common/locales/he/front.json similarity index 100% rename from common/locales/he/front.json rename to website/common/locales/he/front.json diff --git a/common/locales/he/gear.json b/website/common/locales/he/gear.json similarity index 100% rename from common/locales/he/gear.json rename to website/common/locales/he/gear.json diff --git a/common/locales/he/generic.json b/website/common/locales/he/generic.json similarity index 100% rename from common/locales/he/generic.json rename to website/common/locales/he/generic.json diff --git a/common/locales/he/groups.json b/website/common/locales/he/groups.json similarity index 100% rename from common/locales/he/groups.json rename to website/common/locales/he/groups.json diff --git a/common/locales/he/limited.json b/website/common/locales/he/limited.json similarity index 100% rename from common/locales/he/limited.json rename to website/common/locales/he/limited.json diff --git a/common/locales/he/loadingscreentips.json b/website/common/locales/he/loadingscreentips.json similarity index 100% rename from common/locales/he/loadingscreentips.json rename to website/common/locales/he/loadingscreentips.json diff --git a/common/locales/he/maintenance.json b/website/common/locales/he/maintenance.json similarity index 100% rename from common/locales/he/maintenance.json rename to website/common/locales/he/maintenance.json diff --git a/common/locales/he/messages.json b/website/common/locales/he/messages.json similarity index 100% rename from common/locales/he/messages.json rename to website/common/locales/he/messages.json diff --git a/common/locales/he/noscript.json b/website/common/locales/he/noscript.json similarity index 100% rename from common/locales/he/noscript.json rename to website/common/locales/he/noscript.json diff --git a/common/locales/he/npc.json b/website/common/locales/he/npc.json similarity index 100% rename from common/locales/he/npc.json rename to website/common/locales/he/npc.json diff --git a/common/locales/he/pets.json b/website/common/locales/he/pets.json similarity index 100% rename from common/locales/he/pets.json rename to website/common/locales/he/pets.json diff --git a/common/locales/he/quests.json b/website/common/locales/he/quests.json similarity index 100% rename from common/locales/he/quests.json rename to website/common/locales/he/quests.json diff --git a/common/locales/he/questscontent.json b/website/common/locales/he/questscontent.json similarity index 100% rename from common/locales/he/questscontent.json rename to website/common/locales/he/questscontent.json diff --git a/common/locales/he/rebirth.json b/website/common/locales/he/rebirth.json similarity index 100% rename from common/locales/he/rebirth.json rename to website/common/locales/he/rebirth.json diff --git a/common/locales/he/settings.json b/website/common/locales/he/settings.json similarity index 100% rename from common/locales/he/settings.json rename to website/common/locales/he/settings.json diff --git a/common/locales/he/spells.json b/website/common/locales/he/spells.json similarity index 100% rename from common/locales/he/spells.json rename to website/common/locales/he/spells.json diff --git a/common/locales/he/subscriber.json b/website/common/locales/he/subscriber.json similarity index 100% rename from common/locales/he/subscriber.json rename to website/common/locales/he/subscriber.json diff --git a/common/locales/he/tasks.json b/website/common/locales/he/tasks.json similarity index 100% rename from common/locales/he/tasks.json rename to website/common/locales/he/tasks.json diff --git a/common/locales/hu/_README_FIRST.md b/website/common/locales/hu/_README_FIRST.md similarity index 100% rename from common/locales/hu/_README_FIRST.md rename to website/common/locales/hu/_README_FIRST.md diff --git a/common/locales/hu/backgrounds.json b/website/common/locales/hu/backgrounds.json similarity index 100% rename from common/locales/hu/backgrounds.json rename to website/common/locales/hu/backgrounds.json diff --git a/common/locales/hu/challenge.json b/website/common/locales/hu/challenge.json similarity index 100% rename from common/locales/hu/challenge.json rename to website/common/locales/hu/challenge.json diff --git a/common/locales/hu/character.json b/website/common/locales/hu/character.json similarity index 100% rename from common/locales/hu/character.json rename to website/common/locales/hu/character.json diff --git a/common/locales/hu/communityguidelines.json b/website/common/locales/hu/communityguidelines.json similarity index 100% rename from common/locales/hu/communityguidelines.json rename to website/common/locales/hu/communityguidelines.json diff --git a/common/locales/hu/content.json b/website/common/locales/hu/content.json similarity index 100% rename from common/locales/hu/content.json rename to website/common/locales/hu/content.json diff --git a/common/locales/hu/contrib.json b/website/common/locales/hu/contrib.json similarity index 100% rename from common/locales/hu/contrib.json rename to website/common/locales/hu/contrib.json diff --git a/common/locales/hu/death.json b/website/common/locales/hu/death.json similarity index 100% rename from common/locales/hu/death.json rename to website/common/locales/hu/death.json diff --git a/common/locales/hu/defaulttasks.json b/website/common/locales/hu/defaulttasks.json similarity index 100% rename from common/locales/hu/defaulttasks.json rename to website/common/locales/hu/defaulttasks.json diff --git a/common/locales/hu/faq.json b/website/common/locales/hu/faq.json similarity index 100% rename from common/locales/hu/faq.json rename to website/common/locales/hu/faq.json diff --git a/common/locales/hu/front.json b/website/common/locales/hu/front.json similarity index 100% rename from common/locales/hu/front.json rename to website/common/locales/hu/front.json diff --git a/common/locales/hu/gear.json b/website/common/locales/hu/gear.json similarity index 100% rename from common/locales/hu/gear.json rename to website/common/locales/hu/gear.json diff --git a/common/locales/hu/generic.json b/website/common/locales/hu/generic.json similarity index 100% rename from common/locales/hu/generic.json rename to website/common/locales/hu/generic.json diff --git a/common/locales/hu/groups.json b/website/common/locales/hu/groups.json similarity index 100% rename from common/locales/hu/groups.json rename to website/common/locales/hu/groups.json diff --git a/common/locales/hu/limited.json b/website/common/locales/hu/limited.json similarity index 100% rename from common/locales/hu/limited.json rename to website/common/locales/hu/limited.json diff --git a/common/locales/hu/loadingscreentips.json b/website/common/locales/hu/loadingscreentips.json similarity index 100% rename from common/locales/hu/loadingscreentips.json rename to website/common/locales/hu/loadingscreentips.json diff --git a/common/locales/hu/maintenance.json b/website/common/locales/hu/maintenance.json similarity index 100% rename from common/locales/hu/maintenance.json rename to website/common/locales/hu/maintenance.json diff --git a/common/locales/hu/messages.json b/website/common/locales/hu/messages.json similarity index 100% rename from common/locales/hu/messages.json rename to website/common/locales/hu/messages.json diff --git a/common/locales/hu/noscript.json b/website/common/locales/hu/noscript.json similarity index 100% rename from common/locales/hu/noscript.json rename to website/common/locales/hu/noscript.json diff --git a/common/locales/hu/npc.json b/website/common/locales/hu/npc.json similarity index 100% rename from common/locales/hu/npc.json rename to website/common/locales/hu/npc.json diff --git a/common/locales/hu/pets.json b/website/common/locales/hu/pets.json similarity index 100% rename from common/locales/hu/pets.json rename to website/common/locales/hu/pets.json diff --git a/common/locales/hu/quests.json b/website/common/locales/hu/quests.json similarity index 100% rename from common/locales/hu/quests.json rename to website/common/locales/hu/quests.json diff --git a/common/locales/hu/questscontent.json b/website/common/locales/hu/questscontent.json similarity index 100% rename from common/locales/hu/questscontent.json rename to website/common/locales/hu/questscontent.json diff --git a/common/locales/hu/rebirth.json b/website/common/locales/hu/rebirth.json similarity index 100% rename from common/locales/hu/rebirth.json rename to website/common/locales/hu/rebirth.json diff --git a/common/locales/hu/settings.json b/website/common/locales/hu/settings.json similarity index 100% rename from common/locales/hu/settings.json rename to website/common/locales/hu/settings.json diff --git a/common/locales/hu/spells.json b/website/common/locales/hu/spells.json similarity index 100% rename from common/locales/hu/spells.json rename to website/common/locales/hu/spells.json diff --git a/common/locales/hu/subscriber.json b/website/common/locales/hu/subscriber.json similarity index 100% rename from common/locales/hu/subscriber.json rename to website/common/locales/hu/subscriber.json diff --git a/common/locales/hu/tasks.json b/website/common/locales/hu/tasks.json similarity index 100% rename from common/locales/hu/tasks.json rename to website/common/locales/hu/tasks.json diff --git a/common/locales/id/_README_FIRST.md b/website/common/locales/id/_README_FIRST.md similarity index 100% rename from common/locales/id/_README_FIRST.md rename to website/common/locales/id/_README_FIRST.md diff --git a/common/locales/id/backgrounds.json b/website/common/locales/id/backgrounds.json similarity index 100% rename from common/locales/id/backgrounds.json rename to website/common/locales/id/backgrounds.json diff --git a/common/locales/id/challenge.json b/website/common/locales/id/challenge.json similarity index 100% rename from common/locales/id/challenge.json rename to website/common/locales/id/challenge.json diff --git a/common/locales/id/character.json b/website/common/locales/id/character.json similarity index 100% rename from common/locales/id/character.json rename to website/common/locales/id/character.json diff --git a/common/locales/id/communityguidelines.json b/website/common/locales/id/communityguidelines.json similarity index 100% rename from common/locales/id/communityguidelines.json rename to website/common/locales/id/communityguidelines.json diff --git a/common/locales/id/content.json b/website/common/locales/id/content.json similarity index 100% rename from common/locales/id/content.json rename to website/common/locales/id/content.json diff --git a/common/locales/id/contrib.json b/website/common/locales/id/contrib.json similarity index 100% rename from common/locales/id/contrib.json rename to website/common/locales/id/contrib.json diff --git a/common/locales/id/death.json b/website/common/locales/id/death.json similarity index 100% rename from common/locales/id/death.json rename to website/common/locales/id/death.json diff --git a/common/locales/id/defaulttasks.json b/website/common/locales/id/defaulttasks.json similarity index 100% rename from common/locales/id/defaulttasks.json rename to website/common/locales/id/defaulttasks.json diff --git a/common/locales/id/faq.json b/website/common/locales/id/faq.json similarity index 100% rename from common/locales/id/faq.json rename to website/common/locales/id/faq.json diff --git a/common/locales/id/front.json b/website/common/locales/id/front.json similarity index 100% rename from common/locales/id/front.json rename to website/common/locales/id/front.json diff --git a/common/locales/id/gear.json b/website/common/locales/id/gear.json similarity index 100% rename from common/locales/id/gear.json rename to website/common/locales/id/gear.json diff --git a/common/locales/id/generic.json b/website/common/locales/id/generic.json similarity index 100% rename from common/locales/id/generic.json rename to website/common/locales/id/generic.json diff --git a/common/locales/id/groups.json b/website/common/locales/id/groups.json similarity index 100% rename from common/locales/id/groups.json rename to website/common/locales/id/groups.json diff --git a/common/locales/id/limited.json b/website/common/locales/id/limited.json similarity index 100% rename from common/locales/id/limited.json rename to website/common/locales/id/limited.json diff --git a/common/locales/id/loadingscreentips.json b/website/common/locales/id/loadingscreentips.json similarity index 100% rename from common/locales/id/loadingscreentips.json rename to website/common/locales/id/loadingscreentips.json diff --git a/common/locales/id/maintenance.json b/website/common/locales/id/maintenance.json similarity index 100% rename from common/locales/id/maintenance.json rename to website/common/locales/id/maintenance.json diff --git a/common/locales/id/messages.json b/website/common/locales/id/messages.json similarity index 100% rename from common/locales/id/messages.json rename to website/common/locales/id/messages.json diff --git a/common/locales/id/noscript.json b/website/common/locales/id/noscript.json similarity index 100% rename from common/locales/id/noscript.json rename to website/common/locales/id/noscript.json diff --git a/common/locales/id/npc.json b/website/common/locales/id/npc.json similarity index 100% rename from common/locales/id/npc.json rename to website/common/locales/id/npc.json diff --git a/common/locales/id/pets.json b/website/common/locales/id/pets.json similarity index 100% rename from common/locales/id/pets.json rename to website/common/locales/id/pets.json diff --git a/common/locales/id/quests.json b/website/common/locales/id/quests.json similarity index 100% rename from common/locales/id/quests.json rename to website/common/locales/id/quests.json diff --git a/common/locales/id/questscontent.json b/website/common/locales/id/questscontent.json similarity index 100% rename from common/locales/id/questscontent.json rename to website/common/locales/id/questscontent.json diff --git a/common/locales/id/rebirth.json b/website/common/locales/id/rebirth.json similarity index 100% rename from common/locales/id/rebirth.json rename to website/common/locales/id/rebirth.json diff --git a/common/locales/id/settings.json b/website/common/locales/id/settings.json similarity index 100% rename from common/locales/id/settings.json rename to website/common/locales/id/settings.json diff --git a/common/locales/id/spells.json b/website/common/locales/id/spells.json similarity index 100% rename from common/locales/id/spells.json rename to website/common/locales/id/spells.json diff --git a/common/locales/id/subscriber.json b/website/common/locales/id/subscriber.json similarity index 100% rename from common/locales/id/subscriber.json rename to website/common/locales/id/subscriber.json diff --git a/common/locales/id/tasks.json b/website/common/locales/id/tasks.json similarity index 100% rename from common/locales/id/tasks.json rename to website/common/locales/id/tasks.json diff --git a/common/locales/it/_README_FIRST.md b/website/common/locales/it/_README_FIRST.md similarity index 100% rename from common/locales/it/_README_FIRST.md rename to website/common/locales/it/_README_FIRST.md diff --git a/common/locales/it/backgrounds.json b/website/common/locales/it/backgrounds.json similarity index 100% rename from common/locales/it/backgrounds.json rename to website/common/locales/it/backgrounds.json diff --git a/common/locales/it/challenge.json b/website/common/locales/it/challenge.json similarity index 100% rename from common/locales/it/challenge.json rename to website/common/locales/it/challenge.json diff --git a/common/locales/it/character.json b/website/common/locales/it/character.json similarity index 100% rename from common/locales/it/character.json rename to website/common/locales/it/character.json diff --git a/common/locales/it/communityguidelines.json b/website/common/locales/it/communityguidelines.json similarity index 100% rename from common/locales/it/communityguidelines.json rename to website/common/locales/it/communityguidelines.json diff --git a/common/locales/it/content.json b/website/common/locales/it/content.json similarity index 100% rename from common/locales/it/content.json rename to website/common/locales/it/content.json diff --git a/common/locales/it/contrib.json b/website/common/locales/it/contrib.json similarity index 100% rename from common/locales/it/contrib.json rename to website/common/locales/it/contrib.json diff --git a/common/locales/it/death.json b/website/common/locales/it/death.json similarity index 100% rename from common/locales/it/death.json rename to website/common/locales/it/death.json diff --git a/common/locales/it/defaulttasks.json b/website/common/locales/it/defaulttasks.json similarity index 100% rename from common/locales/it/defaulttasks.json rename to website/common/locales/it/defaulttasks.json diff --git a/common/locales/it/faq.json b/website/common/locales/it/faq.json similarity index 100% rename from common/locales/it/faq.json rename to website/common/locales/it/faq.json diff --git a/common/locales/it/front.json b/website/common/locales/it/front.json similarity index 100% rename from common/locales/it/front.json rename to website/common/locales/it/front.json diff --git a/common/locales/it/gear.json b/website/common/locales/it/gear.json similarity index 100% rename from common/locales/it/gear.json rename to website/common/locales/it/gear.json diff --git a/common/locales/it/generic.json b/website/common/locales/it/generic.json similarity index 100% rename from common/locales/it/generic.json rename to website/common/locales/it/generic.json diff --git a/common/locales/it/groups.json b/website/common/locales/it/groups.json similarity index 100% rename from common/locales/it/groups.json rename to website/common/locales/it/groups.json diff --git a/common/locales/it/limited.json b/website/common/locales/it/limited.json similarity index 100% rename from common/locales/it/limited.json rename to website/common/locales/it/limited.json diff --git a/common/locales/it/loadingscreentips.json b/website/common/locales/it/loadingscreentips.json similarity index 100% rename from common/locales/it/loadingscreentips.json rename to website/common/locales/it/loadingscreentips.json diff --git a/common/locales/it/maintenance.json b/website/common/locales/it/maintenance.json similarity index 100% rename from common/locales/it/maintenance.json rename to website/common/locales/it/maintenance.json diff --git a/common/locales/it/messages.json b/website/common/locales/it/messages.json similarity index 100% rename from common/locales/it/messages.json rename to website/common/locales/it/messages.json diff --git a/common/locales/it/noscript.json b/website/common/locales/it/noscript.json similarity index 100% rename from common/locales/it/noscript.json rename to website/common/locales/it/noscript.json diff --git a/common/locales/it/npc.json b/website/common/locales/it/npc.json similarity index 100% rename from common/locales/it/npc.json rename to website/common/locales/it/npc.json diff --git a/common/locales/it/pets.json b/website/common/locales/it/pets.json similarity index 100% rename from common/locales/it/pets.json rename to website/common/locales/it/pets.json diff --git a/common/locales/it/quests.json b/website/common/locales/it/quests.json similarity index 100% rename from common/locales/it/quests.json rename to website/common/locales/it/quests.json diff --git a/common/locales/it/questscontent.json b/website/common/locales/it/questscontent.json similarity index 100% rename from common/locales/it/questscontent.json rename to website/common/locales/it/questscontent.json diff --git a/common/locales/it/rebirth.json b/website/common/locales/it/rebirth.json similarity index 100% rename from common/locales/it/rebirth.json rename to website/common/locales/it/rebirth.json diff --git a/common/locales/it/settings.json b/website/common/locales/it/settings.json similarity index 100% rename from common/locales/it/settings.json rename to website/common/locales/it/settings.json diff --git a/common/locales/it/spells.json b/website/common/locales/it/spells.json similarity index 100% rename from common/locales/it/spells.json rename to website/common/locales/it/spells.json diff --git a/common/locales/it/subscriber.json b/website/common/locales/it/subscriber.json similarity index 100% rename from common/locales/it/subscriber.json rename to website/common/locales/it/subscriber.json diff --git a/common/locales/it/tasks.json b/website/common/locales/it/tasks.json similarity index 100% rename from common/locales/it/tasks.json rename to website/common/locales/it/tasks.json diff --git a/common/locales/ja/_README_FIRST.md b/website/common/locales/ja/_README_FIRST.md similarity index 100% rename from common/locales/ja/_README_FIRST.md rename to website/common/locales/ja/_README_FIRST.md diff --git a/common/locales/ja/backgrounds.json b/website/common/locales/ja/backgrounds.json similarity index 100% rename from common/locales/ja/backgrounds.json rename to website/common/locales/ja/backgrounds.json diff --git a/common/locales/ja/challenge.json b/website/common/locales/ja/challenge.json similarity index 100% rename from common/locales/ja/challenge.json rename to website/common/locales/ja/challenge.json diff --git a/common/locales/ja/character.json b/website/common/locales/ja/character.json similarity index 100% rename from common/locales/ja/character.json rename to website/common/locales/ja/character.json diff --git a/common/locales/ja/communityguidelines.json b/website/common/locales/ja/communityguidelines.json similarity index 100% rename from common/locales/ja/communityguidelines.json rename to website/common/locales/ja/communityguidelines.json diff --git a/common/locales/ja/content.json b/website/common/locales/ja/content.json similarity index 100% rename from common/locales/ja/content.json rename to website/common/locales/ja/content.json diff --git a/common/locales/ja/contrib.json b/website/common/locales/ja/contrib.json similarity index 100% rename from common/locales/ja/contrib.json rename to website/common/locales/ja/contrib.json diff --git a/common/locales/ja/death.json b/website/common/locales/ja/death.json similarity index 100% rename from common/locales/ja/death.json rename to website/common/locales/ja/death.json diff --git a/common/locales/ja/defaulttasks.json b/website/common/locales/ja/defaulttasks.json similarity index 100% rename from common/locales/ja/defaulttasks.json rename to website/common/locales/ja/defaulttasks.json diff --git a/common/locales/ja/faq.json b/website/common/locales/ja/faq.json similarity index 100% rename from common/locales/ja/faq.json rename to website/common/locales/ja/faq.json diff --git a/common/locales/ja/front.json b/website/common/locales/ja/front.json similarity index 100% rename from common/locales/ja/front.json rename to website/common/locales/ja/front.json diff --git a/common/locales/ja/gear.json b/website/common/locales/ja/gear.json similarity index 100% rename from common/locales/ja/gear.json rename to website/common/locales/ja/gear.json diff --git a/common/locales/ja/generic.json b/website/common/locales/ja/generic.json similarity index 100% rename from common/locales/ja/generic.json rename to website/common/locales/ja/generic.json diff --git a/common/locales/ja/groups.json b/website/common/locales/ja/groups.json similarity index 100% rename from common/locales/ja/groups.json rename to website/common/locales/ja/groups.json diff --git a/common/locales/ja/limited.json b/website/common/locales/ja/limited.json similarity index 100% rename from common/locales/ja/limited.json rename to website/common/locales/ja/limited.json diff --git a/common/locales/ja/loadingscreentips.json b/website/common/locales/ja/loadingscreentips.json similarity index 100% rename from common/locales/ja/loadingscreentips.json rename to website/common/locales/ja/loadingscreentips.json diff --git a/common/locales/ja/maintenance.json b/website/common/locales/ja/maintenance.json similarity index 100% rename from common/locales/ja/maintenance.json rename to website/common/locales/ja/maintenance.json diff --git a/common/locales/ja/messages.json b/website/common/locales/ja/messages.json similarity index 100% rename from common/locales/ja/messages.json rename to website/common/locales/ja/messages.json diff --git a/common/locales/ja/noscript.json b/website/common/locales/ja/noscript.json similarity index 100% rename from common/locales/ja/noscript.json rename to website/common/locales/ja/noscript.json diff --git a/common/locales/ja/npc.json b/website/common/locales/ja/npc.json similarity index 100% rename from common/locales/ja/npc.json rename to website/common/locales/ja/npc.json diff --git a/common/locales/ja/pets.json b/website/common/locales/ja/pets.json similarity index 100% rename from common/locales/ja/pets.json rename to website/common/locales/ja/pets.json diff --git a/common/locales/ja/quests.json b/website/common/locales/ja/quests.json similarity index 100% rename from common/locales/ja/quests.json rename to website/common/locales/ja/quests.json diff --git a/common/locales/ja/questscontent.json b/website/common/locales/ja/questscontent.json similarity index 100% rename from common/locales/ja/questscontent.json rename to website/common/locales/ja/questscontent.json diff --git a/common/locales/ja/rebirth.json b/website/common/locales/ja/rebirth.json similarity index 100% rename from common/locales/ja/rebirth.json rename to website/common/locales/ja/rebirth.json diff --git a/common/locales/ja/settings.json b/website/common/locales/ja/settings.json similarity index 100% rename from common/locales/ja/settings.json rename to website/common/locales/ja/settings.json diff --git a/common/locales/ja/spells.json b/website/common/locales/ja/spells.json similarity index 100% rename from common/locales/ja/spells.json rename to website/common/locales/ja/spells.json diff --git a/common/locales/ja/subscriber.json b/website/common/locales/ja/subscriber.json similarity index 100% rename from common/locales/ja/subscriber.json rename to website/common/locales/ja/subscriber.json diff --git a/common/locales/ja/tasks.json b/website/common/locales/ja/tasks.json similarity index 100% rename from common/locales/ja/tasks.json rename to website/common/locales/ja/tasks.json diff --git a/common/locales/nl/_README_FIRST.md b/website/common/locales/nl/_README_FIRST.md similarity index 100% rename from common/locales/nl/_README_FIRST.md rename to website/common/locales/nl/_README_FIRST.md diff --git a/common/locales/nl/backgrounds.json b/website/common/locales/nl/backgrounds.json similarity index 100% rename from common/locales/nl/backgrounds.json rename to website/common/locales/nl/backgrounds.json diff --git a/common/locales/nl/challenge.json b/website/common/locales/nl/challenge.json similarity index 100% rename from common/locales/nl/challenge.json rename to website/common/locales/nl/challenge.json diff --git a/common/locales/nl/character.json b/website/common/locales/nl/character.json similarity index 100% rename from common/locales/nl/character.json rename to website/common/locales/nl/character.json diff --git a/common/locales/nl/communityguidelines.json b/website/common/locales/nl/communityguidelines.json similarity index 100% rename from common/locales/nl/communityguidelines.json rename to website/common/locales/nl/communityguidelines.json diff --git a/common/locales/nl/content.json b/website/common/locales/nl/content.json similarity index 100% rename from common/locales/nl/content.json rename to website/common/locales/nl/content.json diff --git a/common/locales/nl/contrib.json b/website/common/locales/nl/contrib.json similarity index 100% rename from common/locales/nl/contrib.json rename to website/common/locales/nl/contrib.json diff --git a/common/locales/nl/death.json b/website/common/locales/nl/death.json similarity index 100% rename from common/locales/nl/death.json rename to website/common/locales/nl/death.json diff --git a/common/locales/nl/defaulttasks.json b/website/common/locales/nl/defaulttasks.json similarity index 100% rename from common/locales/nl/defaulttasks.json rename to website/common/locales/nl/defaulttasks.json diff --git a/common/locales/nl/faq.json b/website/common/locales/nl/faq.json similarity index 100% rename from common/locales/nl/faq.json rename to website/common/locales/nl/faq.json diff --git a/common/locales/nl/front.json b/website/common/locales/nl/front.json similarity index 100% rename from common/locales/nl/front.json rename to website/common/locales/nl/front.json diff --git a/common/locales/nl/gear.json b/website/common/locales/nl/gear.json similarity index 100% rename from common/locales/nl/gear.json rename to website/common/locales/nl/gear.json diff --git a/common/locales/nl/generic.json b/website/common/locales/nl/generic.json similarity index 100% rename from common/locales/nl/generic.json rename to website/common/locales/nl/generic.json diff --git a/common/locales/nl/groups.json b/website/common/locales/nl/groups.json similarity index 100% rename from common/locales/nl/groups.json rename to website/common/locales/nl/groups.json diff --git a/common/locales/nl/limited.json b/website/common/locales/nl/limited.json similarity index 100% rename from common/locales/nl/limited.json rename to website/common/locales/nl/limited.json diff --git a/common/locales/nl/loadingscreentips.json b/website/common/locales/nl/loadingscreentips.json similarity index 100% rename from common/locales/nl/loadingscreentips.json rename to website/common/locales/nl/loadingscreentips.json diff --git a/common/locales/nl/maintenance.json b/website/common/locales/nl/maintenance.json similarity index 100% rename from common/locales/nl/maintenance.json rename to website/common/locales/nl/maintenance.json diff --git a/common/locales/nl/messages.json b/website/common/locales/nl/messages.json similarity index 100% rename from common/locales/nl/messages.json rename to website/common/locales/nl/messages.json diff --git a/common/locales/nl/noscript.json b/website/common/locales/nl/noscript.json similarity index 100% rename from common/locales/nl/noscript.json rename to website/common/locales/nl/noscript.json diff --git a/common/locales/nl/npc.json b/website/common/locales/nl/npc.json similarity index 100% rename from common/locales/nl/npc.json rename to website/common/locales/nl/npc.json diff --git a/common/locales/nl/pets.json b/website/common/locales/nl/pets.json similarity index 100% rename from common/locales/nl/pets.json rename to website/common/locales/nl/pets.json diff --git a/common/locales/nl/quests.json b/website/common/locales/nl/quests.json similarity index 100% rename from common/locales/nl/quests.json rename to website/common/locales/nl/quests.json diff --git a/common/locales/nl/questscontent.json b/website/common/locales/nl/questscontent.json similarity index 100% rename from common/locales/nl/questscontent.json rename to website/common/locales/nl/questscontent.json diff --git a/common/locales/nl/rebirth.json b/website/common/locales/nl/rebirth.json similarity index 100% rename from common/locales/nl/rebirth.json rename to website/common/locales/nl/rebirth.json diff --git a/common/locales/nl/settings.json b/website/common/locales/nl/settings.json similarity index 100% rename from common/locales/nl/settings.json rename to website/common/locales/nl/settings.json diff --git a/common/locales/nl/spells.json b/website/common/locales/nl/spells.json similarity index 100% rename from common/locales/nl/spells.json rename to website/common/locales/nl/spells.json diff --git a/common/locales/nl/subscriber.json b/website/common/locales/nl/subscriber.json similarity index 100% rename from common/locales/nl/subscriber.json rename to website/common/locales/nl/subscriber.json diff --git a/common/locales/nl/tasks.json b/website/common/locales/nl/tasks.json similarity index 100% rename from common/locales/nl/tasks.json rename to website/common/locales/nl/tasks.json diff --git a/common/locales/pl/_README_FIRST.md b/website/common/locales/pl/_README_FIRST.md similarity index 100% rename from common/locales/pl/_README_FIRST.md rename to website/common/locales/pl/_README_FIRST.md diff --git a/common/locales/pl/backgrounds.json b/website/common/locales/pl/backgrounds.json similarity index 100% rename from common/locales/pl/backgrounds.json rename to website/common/locales/pl/backgrounds.json diff --git a/common/locales/pl/challenge.json b/website/common/locales/pl/challenge.json similarity index 100% rename from common/locales/pl/challenge.json rename to website/common/locales/pl/challenge.json diff --git a/common/locales/pl/character.json b/website/common/locales/pl/character.json similarity index 100% rename from common/locales/pl/character.json rename to website/common/locales/pl/character.json diff --git a/common/locales/pl/communityguidelines.json b/website/common/locales/pl/communityguidelines.json similarity index 100% rename from common/locales/pl/communityguidelines.json rename to website/common/locales/pl/communityguidelines.json diff --git a/common/locales/pl/content.json b/website/common/locales/pl/content.json similarity index 100% rename from common/locales/pl/content.json rename to website/common/locales/pl/content.json diff --git a/common/locales/pl/contrib.json b/website/common/locales/pl/contrib.json similarity index 100% rename from common/locales/pl/contrib.json rename to website/common/locales/pl/contrib.json diff --git a/common/locales/pl/death.json b/website/common/locales/pl/death.json similarity index 100% rename from common/locales/pl/death.json rename to website/common/locales/pl/death.json diff --git a/common/locales/pl/defaulttasks.json b/website/common/locales/pl/defaulttasks.json similarity index 100% rename from common/locales/pl/defaulttasks.json rename to website/common/locales/pl/defaulttasks.json diff --git a/common/locales/pl/faq.json b/website/common/locales/pl/faq.json similarity index 100% rename from common/locales/pl/faq.json rename to website/common/locales/pl/faq.json diff --git a/common/locales/pl/front.json b/website/common/locales/pl/front.json similarity index 100% rename from common/locales/pl/front.json rename to website/common/locales/pl/front.json diff --git a/common/locales/pl/gear.json b/website/common/locales/pl/gear.json similarity index 100% rename from common/locales/pl/gear.json rename to website/common/locales/pl/gear.json diff --git a/common/locales/pl/generic.json b/website/common/locales/pl/generic.json similarity index 100% rename from common/locales/pl/generic.json rename to website/common/locales/pl/generic.json diff --git a/common/locales/pl/groups.json b/website/common/locales/pl/groups.json similarity index 100% rename from common/locales/pl/groups.json rename to website/common/locales/pl/groups.json diff --git a/common/locales/pl/limited.json b/website/common/locales/pl/limited.json similarity index 100% rename from common/locales/pl/limited.json rename to website/common/locales/pl/limited.json diff --git a/common/locales/pl/loadingscreentips.json b/website/common/locales/pl/loadingscreentips.json similarity index 100% rename from common/locales/pl/loadingscreentips.json rename to website/common/locales/pl/loadingscreentips.json diff --git a/common/locales/pl/maintenance.json b/website/common/locales/pl/maintenance.json similarity index 100% rename from common/locales/pl/maintenance.json rename to website/common/locales/pl/maintenance.json diff --git a/common/locales/pl/messages.json b/website/common/locales/pl/messages.json similarity index 100% rename from common/locales/pl/messages.json rename to website/common/locales/pl/messages.json diff --git a/common/locales/pl/noscript.json b/website/common/locales/pl/noscript.json similarity index 100% rename from common/locales/pl/noscript.json rename to website/common/locales/pl/noscript.json diff --git a/common/locales/pl/npc.json b/website/common/locales/pl/npc.json similarity index 100% rename from common/locales/pl/npc.json rename to website/common/locales/pl/npc.json diff --git a/common/locales/pl/pets.json b/website/common/locales/pl/pets.json similarity index 100% rename from common/locales/pl/pets.json rename to website/common/locales/pl/pets.json diff --git a/common/locales/pl/quests.json b/website/common/locales/pl/quests.json similarity index 100% rename from common/locales/pl/quests.json rename to website/common/locales/pl/quests.json diff --git a/common/locales/pl/questscontent.json b/website/common/locales/pl/questscontent.json similarity index 100% rename from common/locales/pl/questscontent.json rename to website/common/locales/pl/questscontent.json diff --git a/common/locales/pl/rebirth.json b/website/common/locales/pl/rebirth.json similarity index 100% rename from common/locales/pl/rebirth.json rename to website/common/locales/pl/rebirth.json diff --git a/common/locales/pl/settings.json b/website/common/locales/pl/settings.json similarity index 100% rename from common/locales/pl/settings.json rename to website/common/locales/pl/settings.json diff --git a/common/locales/pl/spells.json b/website/common/locales/pl/spells.json similarity index 100% rename from common/locales/pl/spells.json rename to website/common/locales/pl/spells.json diff --git a/common/locales/pl/subscriber.json b/website/common/locales/pl/subscriber.json similarity index 100% rename from common/locales/pl/subscriber.json rename to website/common/locales/pl/subscriber.json diff --git a/common/locales/pl/tasks.json b/website/common/locales/pl/tasks.json similarity index 100% rename from common/locales/pl/tasks.json rename to website/common/locales/pl/tasks.json diff --git a/common/locales/pt/_README_FIRST.md b/website/common/locales/pt/_README_FIRST.md similarity index 100% rename from common/locales/pt/_README_FIRST.md rename to website/common/locales/pt/_README_FIRST.md diff --git a/common/locales/pt/backgrounds.json b/website/common/locales/pt/backgrounds.json similarity index 100% rename from common/locales/pt/backgrounds.json rename to website/common/locales/pt/backgrounds.json diff --git a/common/locales/pt/challenge.json b/website/common/locales/pt/challenge.json similarity index 100% rename from common/locales/pt/challenge.json rename to website/common/locales/pt/challenge.json diff --git a/common/locales/pt/character.json b/website/common/locales/pt/character.json similarity index 100% rename from common/locales/pt/character.json rename to website/common/locales/pt/character.json diff --git a/common/locales/pt/communityguidelines.json b/website/common/locales/pt/communityguidelines.json similarity index 100% rename from common/locales/pt/communityguidelines.json rename to website/common/locales/pt/communityguidelines.json diff --git a/common/locales/pt/content.json b/website/common/locales/pt/content.json similarity index 100% rename from common/locales/pt/content.json rename to website/common/locales/pt/content.json diff --git a/common/locales/pt/contrib.json b/website/common/locales/pt/contrib.json similarity index 100% rename from common/locales/pt/contrib.json rename to website/common/locales/pt/contrib.json diff --git a/common/locales/pt/death.json b/website/common/locales/pt/death.json similarity index 100% rename from common/locales/pt/death.json rename to website/common/locales/pt/death.json diff --git a/common/locales/pt/defaulttasks.json b/website/common/locales/pt/defaulttasks.json similarity index 100% rename from common/locales/pt/defaulttasks.json rename to website/common/locales/pt/defaulttasks.json diff --git a/common/locales/pt/faq.json b/website/common/locales/pt/faq.json similarity index 100% rename from common/locales/pt/faq.json rename to website/common/locales/pt/faq.json diff --git a/common/locales/pt/front.json b/website/common/locales/pt/front.json similarity index 100% rename from common/locales/pt/front.json rename to website/common/locales/pt/front.json diff --git a/common/locales/pt/gear.json b/website/common/locales/pt/gear.json similarity index 100% rename from common/locales/pt/gear.json rename to website/common/locales/pt/gear.json diff --git a/common/locales/pt/generic.json b/website/common/locales/pt/generic.json similarity index 100% rename from common/locales/pt/generic.json rename to website/common/locales/pt/generic.json diff --git a/common/locales/pt/groups.json b/website/common/locales/pt/groups.json similarity index 100% rename from common/locales/pt/groups.json rename to website/common/locales/pt/groups.json diff --git a/common/locales/pt/limited.json b/website/common/locales/pt/limited.json similarity index 100% rename from common/locales/pt/limited.json rename to website/common/locales/pt/limited.json diff --git a/common/locales/pt/loadingscreentips.json b/website/common/locales/pt/loadingscreentips.json similarity index 100% rename from common/locales/pt/loadingscreentips.json rename to website/common/locales/pt/loadingscreentips.json diff --git a/common/locales/pt/maintenance.json b/website/common/locales/pt/maintenance.json similarity index 100% rename from common/locales/pt/maintenance.json rename to website/common/locales/pt/maintenance.json diff --git a/common/locales/pt/messages.json b/website/common/locales/pt/messages.json similarity index 100% rename from common/locales/pt/messages.json rename to website/common/locales/pt/messages.json diff --git a/common/locales/pt/noscript.json b/website/common/locales/pt/noscript.json similarity index 100% rename from common/locales/pt/noscript.json rename to website/common/locales/pt/noscript.json diff --git a/common/locales/pt/npc.json b/website/common/locales/pt/npc.json similarity index 100% rename from common/locales/pt/npc.json rename to website/common/locales/pt/npc.json diff --git a/common/locales/pt/pets.json b/website/common/locales/pt/pets.json similarity index 100% rename from common/locales/pt/pets.json rename to website/common/locales/pt/pets.json diff --git a/common/locales/pt/quests.json b/website/common/locales/pt/quests.json similarity index 100% rename from common/locales/pt/quests.json rename to website/common/locales/pt/quests.json diff --git a/common/locales/pt/questscontent.json b/website/common/locales/pt/questscontent.json similarity index 100% rename from common/locales/pt/questscontent.json rename to website/common/locales/pt/questscontent.json diff --git a/common/locales/pt/rebirth.json b/website/common/locales/pt/rebirth.json similarity index 100% rename from common/locales/pt/rebirth.json rename to website/common/locales/pt/rebirth.json diff --git a/common/locales/pt/settings.json b/website/common/locales/pt/settings.json similarity index 100% rename from common/locales/pt/settings.json rename to website/common/locales/pt/settings.json diff --git a/common/locales/pt/spells.json b/website/common/locales/pt/spells.json similarity index 100% rename from common/locales/pt/spells.json rename to website/common/locales/pt/spells.json diff --git a/common/locales/pt/subscriber.json b/website/common/locales/pt/subscriber.json similarity index 100% rename from common/locales/pt/subscriber.json rename to website/common/locales/pt/subscriber.json diff --git a/common/locales/pt/tasks.json b/website/common/locales/pt/tasks.json similarity index 100% rename from common/locales/pt/tasks.json rename to website/common/locales/pt/tasks.json diff --git a/common/locales/pt_BR/backgrounds.json b/website/common/locales/pt_BR/backgrounds.json similarity index 100% rename from common/locales/pt_BR/backgrounds.json rename to website/common/locales/pt_BR/backgrounds.json diff --git a/common/locales/pt_BR/challenge.json b/website/common/locales/pt_BR/challenge.json similarity index 100% rename from common/locales/pt_BR/challenge.json rename to website/common/locales/pt_BR/challenge.json diff --git a/common/locales/pt_BR/character.json b/website/common/locales/pt_BR/character.json similarity index 100% rename from common/locales/pt_BR/character.json rename to website/common/locales/pt_BR/character.json diff --git a/common/locales/pt_BR/communityguidelines.json b/website/common/locales/pt_BR/communityguidelines.json similarity index 100% rename from common/locales/pt_BR/communityguidelines.json rename to website/common/locales/pt_BR/communityguidelines.json diff --git a/common/locales/pt_BR/content.json b/website/common/locales/pt_BR/content.json similarity index 100% rename from common/locales/pt_BR/content.json rename to website/common/locales/pt_BR/content.json diff --git a/common/locales/pt_BR/contrib.json b/website/common/locales/pt_BR/contrib.json similarity index 100% rename from common/locales/pt_BR/contrib.json rename to website/common/locales/pt_BR/contrib.json diff --git a/common/locales/pt_BR/death.json b/website/common/locales/pt_BR/death.json similarity index 100% rename from common/locales/pt_BR/death.json rename to website/common/locales/pt_BR/death.json diff --git a/common/locales/pt_BR/defaulttasks.json b/website/common/locales/pt_BR/defaulttasks.json similarity index 100% rename from common/locales/pt_BR/defaulttasks.json rename to website/common/locales/pt_BR/defaulttasks.json diff --git a/common/locales/pt_BR/faq.json b/website/common/locales/pt_BR/faq.json similarity index 100% rename from common/locales/pt_BR/faq.json rename to website/common/locales/pt_BR/faq.json diff --git a/common/locales/pt_BR/front.json b/website/common/locales/pt_BR/front.json similarity index 100% rename from common/locales/pt_BR/front.json rename to website/common/locales/pt_BR/front.json diff --git a/common/locales/pt_BR/gear.json b/website/common/locales/pt_BR/gear.json similarity index 100% rename from common/locales/pt_BR/gear.json rename to website/common/locales/pt_BR/gear.json diff --git a/common/locales/pt_BR/generic.json b/website/common/locales/pt_BR/generic.json similarity index 100% rename from common/locales/pt_BR/generic.json rename to website/common/locales/pt_BR/generic.json diff --git a/common/locales/pt_BR/groups.json b/website/common/locales/pt_BR/groups.json similarity index 100% rename from common/locales/pt_BR/groups.json rename to website/common/locales/pt_BR/groups.json diff --git a/common/locales/pt_BR/limited.json b/website/common/locales/pt_BR/limited.json similarity index 100% rename from common/locales/pt_BR/limited.json rename to website/common/locales/pt_BR/limited.json diff --git a/common/locales/pt_BR/loadingscreentips.json b/website/common/locales/pt_BR/loadingscreentips.json similarity index 100% rename from common/locales/pt_BR/loadingscreentips.json rename to website/common/locales/pt_BR/loadingscreentips.json diff --git a/common/locales/pt_BR/maintenance.json b/website/common/locales/pt_BR/maintenance.json similarity index 100% rename from common/locales/pt_BR/maintenance.json rename to website/common/locales/pt_BR/maintenance.json diff --git a/common/locales/pt_BR/messages.json b/website/common/locales/pt_BR/messages.json similarity index 100% rename from common/locales/pt_BR/messages.json rename to website/common/locales/pt_BR/messages.json diff --git a/common/locales/pt_BR/noscript.json b/website/common/locales/pt_BR/noscript.json similarity index 100% rename from common/locales/pt_BR/noscript.json rename to website/common/locales/pt_BR/noscript.json diff --git a/common/locales/pt_BR/npc.json b/website/common/locales/pt_BR/npc.json similarity index 100% rename from common/locales/pt_BR/npc.json rename to website/common/locales/pt_BR/npc.json diff --git a/common/locales/pt_BR/pets.json b/website/common/locales/pt_BR/pets.json similarity index 100% rename from common/locales/pt_BR/pets.json rename to website/common/locales/pt_BR/pets.json diff --git a/common/locales/pt_BR/quests.json b/website/common/locales/pt_BR/quests.json similarity index 100% rename from common/locales/pt_BR/quests.json rename to website/common/locales/pt_BR/quests.json diff --git a/common/locales/pt_BR/questscontent.json b/website/common/locales/pt_BR/questscontent.json similarity index 100% rename from common/locales/pt_BR/questscontent.json rename to website/common/locales/pt_BR/questscontent.json diff --git a/common/locales/pt_BR/rebirth.json b/website/common/locales/pt_BR/rebirth.json similarity index 100% rename from common/locales/pt_BR/rebirth.json rename to website/common/locales/pt_BR/rebirth.json diff --git a/common/locales/pt_BR/settings.json b/website/common/locales/pt_BR/settings.json similarity index 100% rename from common/locales/pt_BR/settings.json rename to website/common/locales/pt_BR/settings.json diff --git a/common/locales/pt_BR/spells.json b/website/common/locales/pt_BR/spells.json similarity index 100% rename from common/locales/pt_BR/spells.json rename to website/common/locales/pt_BR/spells.json diff --git a/common/locales/pt_BR/subscriber.json b/website/common/locales/pt_BR/subscriber.json similarity index 100% rename from common/locales/pt_BR/subscriber.json rename to website/common/locales/pt_BR/subscriber.json diff --git a/common/locales/pt_BR/tasks.json b/website/common/locales/pt_BR/tasks.json similarity index 100% rename from common/locales/pt_BR/tasks.json rename to website/common/locales/pt_BR/tasks.json diff --git a/common/locales/ro/_README_FIRST.md b/website/common/locales/ro/_README_FIRST.md similarity index 100% rename from common/locales/ro/_README_FIRST.md rename to website/common/locales/ro/_README_FIRST.md diff --git a/common/locales/ro/backgrounds.json b/website/common/locales/ro/backgrounds.json similarity index 100% rename from common/locales/ro/backgrounds.json rename to website/common/locales/ro/backgrounds.json diff --git a/common/locales/ro/challenge.json b/website/common/locales/ro/challenge.json similarity index 100% rename from common/locales/ro/challenge.json rename to website/common/locales/ro/challenge.json diff --git a/common/locales/ro/character.json b/website/common/locales/ro/character.json similarity index 100% rename from common/locales/ro/character.json rename to website/common/locales/ro/character.json diff --git a/common/locales/ro/communityguidelines.json b/website/common/locales/ro/communityguidelines.json similarity index 100% rename from common/locales/ro/communityguidelines.json rename to website/common/locales/ro/communityguidelines.json diff --git a/common/locales/ro/content.json b/website/common/locales/ro/content.json similarity index 100% rename from common/locales/ro/content.json rename to website/common/locales/ro/content.json diff --git a/common/locales/ro/contrib.json b/website/common/locales/ro/contrib.json similarity index 100% rename from common/locales/ro/contrib.json rename to website/common/locales/ro/contrib.json diff --git a/common/locales/ro/death.json b/website/common/locales/ro/death.json similarity index 100% rename from common/locales/ro/death.json rename to website/common/locales/ro/death.json diff --git a/common/locales/ro/defaulttasks.json b/website/common/locales/ro/defaulttasks.json similarity index 100% rename from common/locales/ro/defaulttasks.json rename to website/common/locales/ro/defaulttasks.json diff --git a/common/locales/ro/faq.json b/website/common/locales/ro/faq.json similarity index 100% rename from common/locales/ro/faq.json rename to website/common/locales/ro/faq.json diff --git a/common/locales/ro/front.json b/website/common/locales/ro/front.json similarity index 100% rename from common/locales/ro/front.json rename to website/common/locales/ro/front.json diff --git a/common/locales/ro/gear.json b/website/common/locales/ro/gear.json similarity index 100% rename from common/locales/ro/gear.json rename to website/common/locales/ro/gear.json diff --git a/common/locales/ro/generic.json b/website/common/locales/ro/generic.json similarity index 100% rename from common/locales/ro/generic.json rename to website/common/locales/ro/generic.json diff --git a/common/locales/ro/groups.json b/website/common/locales/ro/groups.json similarity index 100% rename from common/locales/ro/groups.json rename to website/common/locales/ro/groups.json diff --git a/common/locales/ro/limited.json b/website/common/locales/ro/limited.json similarity index 100% rename from common/locales/ro/limited.json rename to website/common/locales/ro/limited.json diff --git a/common/locales/ro/loadingscreentips.json b/website/common/locales/ro/loadingscreentips.json similarity index 100% rename from common/locales/ro/loadingscreentips.json rename to website/common/locales/ro/loadingscreentips.json diff --git a/common/locales/ro/maintenance.json b/website/common/locales/ro/maintenance.json similarity index 100% rename from common/locales/ro/maintenance.json rename to website/common/locales/ro/maintenance.json diff --git a/common/locales/ro/messages.json b/website/common/locales/ro/messages.json similarity index 100% rename from common/locales/ro/messages.json rename to website/common/locales/ro/messages.json diff --git a/common/locales/ro/noscript.json b/website/common/locales/ro/noscript.json similarity index 100% rename from common/locales/ro/noscript.json rename to website/common/locales/ro/noscript.json diff --git a/common/locales/ro/npc.json b/website/common/locales/ro/npc.json similarity index 100% rename from common/locales/ro/npc.json rename to website/common/locales/ro/npc.json diff --git a/common/locales/ro/pets.json b/website/common/locales/ro/pets.json similarity index 100% rename from common/locales/ro/pets.json rename to website/common/locales/ro/pets.json diff --git a/common/locales/ro/quests.json b/website/common/locales/ro/quests.json similarity index 100% rename from common/locales/ro/quests.json rename to website/common/locales/ro/quests.json diff --git a/common/locales/ro/questscontent.json b/website/common/locales/ro/questscontent.json similarity index 100% rename from common/locales/ro/questscontent.json rename to website/common/locales/ro/questscontent.json diff --git a/common/locales/ro/rebirth.json b/website/common/locales/ro/rebirth.json similarity index 100% rename from common/locales/ro/rebirth.json rename to website/common/locales/ro/rebirth.json diff --git a/common/locales/ro/settings.json b/website/common/locales/ro/settings.json similarity index 100% rename from common/locales/ro/settings.json rename to website/common/locales/ro/settings.json diff --git a/common/locales/ro/spells.json b/website/common/locales/ro/spells.json similarity index 100% rename from common/locales/ro/spells.json rename to website/common/locales/ro/spells.json diff --git a/common/locales/ro/subscriber.json b/website/common/locales/ro/subscriber.json similarity index 100% rename from common/locales/ro/subscriber.json rename to website/common/locales/ro/subscriber.json diff --git a/common/locales/ro/tasks.json b/website/common/locales/ro/tasks.json similarity index 100% rename from common/locales/ro/tasks.json rename to website/common/locales/ro/tasks.json diff --git a/common/locales/ru/_README_FIRST.md b/website/common/locales/ru/_README_FIRST.md similarity index 100% rename from common/locales/ru/_README_FIRST.md rename to website/common/locales/ru/_README_FIRST.md diff --git a/common/locales/ru/backgrounds.json b/website/common/locales/ru/backgrounds.json similarity index 100% rename from common/locales/ru/backgrounds.json rename to website/common/locales/ru/backgrounds.json diff --git a/common/locales/ru/challenge.json b/website/common/locales/ru/challenge.json similarity index 100% rename from common/locales/ru/challenge.json rename to website/common/locales/ru/challenge.json diff --git a/common/locales/ru/character.json b/website/common/locales/ru/character.json similarity index 100% rename from common/locales/ru/character.json rename to website/common/locales/ru/character.json diff --git a/common/locales/ru/communityguidelines.json b/website/common/locales/ru/communityguidelines.json similarity index 100% rename from common/locales/ru/communityguidelines.json rename to website/common/locales/ru/communityguidelines.json diff --git a/common/locales/ru/content.json b/website/common/locales/ru/content.json similarity index 100% rename from common/locales/ru/content.json rename to website/common/locales/ru/content.json diff --git a/common/locales/ru/contrib.json b/website/common/locales/ru/contrib.json similarity index 100% rename from common/locales/ru/contrib.json rename to website/common/locales/ru/contrib.json diff --git a/common/locales/ru/death.json b/website/common/locales/ru/death.json similarity index 100% rename from common/locales/ru/death.json rename to website/common/locales/ru/death.json diff --git a/common/locales/ru/defaulttasks.json b/website/common/locales/ru/defaulttasks.json similarity index 100% rename from common/locales/ru/defaulttasks.json rename to website/common/locales/ru/defaulttasks.json diff --git a/common/locales/ru/faq.json b/website/common/locales/ru/faq.json similarity index 100% rename from common/locales/ru/faq.json rename to website/common/locales/ru/faq.json diff --git a/common/locales/ru/front.json b/website/common/locales/ru/front.json similarity index 100% rename from common/locales/ru/front.json rename to website/common/locales/ru/front.json diff --git a/common/locales/ru/gear.json b/website/common/locales/ru/gear.json similarity index 100% rename from common/locales/ru/gear.json rename to website/common/locales/ru/gear.json diff --git a/common/locales/ru/generic.json b/website/common/locales/ru/generic.json similarity index 100% rename from common/locales/ru/generic.json rename to website/common/locales/ru/generic.json diff --git a/common/locales/ru/groups.json b/website/common/locales/ru/groups.json similarity index 100% rename from common/locales/ru/groups.json rename to website/common/locales/ru/groups.json diff --git a/common/locales/ru/limited.json b/website/common/locales/ru/limited.json similarity index 100% rename from common/locales/ru/limited.json rename to website/common/locales/ru/limited.json diff --git a/common/locales/ru/loadingscreentips.json b/website/common/locales/ru/loadingscreentips.json similarity index 100% rename from common/locales/ru/loadingscreentips.json rename to website/common/locales/ru/loadingscreentips.json diff --git a/common/locales/ru/maintenance.json b/website/common/locales/ru/maintenance.json similarity index 100% rename from common/locales/ru/maintenance.json rename to website/common/locales/ru/maintenance.json diff --git a/common/locales/ru/messages.json b/website/common/locales/ru/messages.json similarity index 100% rename from common/locales/ru/messages.json rename to website/common/locales/ru/messages.json diff --git a/common/locales/ru/noscript.json b/website/common/locales/ru/noscript.json similarity index 100% rename from common/locales/ru/noscript.json rename to website/common/locales/ru/noscript.json diff --git a/common/locales/ru/npc.json b/website/common/locales/ru/npc.json similarity index 100% rename from common/locales/ru/npc.json rename to website/common/locales/ru/npc.json diff --git a/common/locales/ru/pets.json b/website/common/locales/ru/pets.json similarity index 100% rename from common/locales/ru/pets.json rename to website/common/locales/ru/pets.json diff --git a/common/locales/ru/quests.json b/website/common/locales/ru/quests.json similarity index 100% rename from common/locales/ru/quests.json rename to website/common/locales/ru/quests.json diff --git a/common/locales/ru/questscontent.json b/website/common/locales/ru/questscontent.json similarity index 100% rename from common/locales/ru/questscontent.json rename to website/common/locales/ru/questscontent.json diff --git a/common/locales/ru/rebirth.json b/website/common/locales/ru/rebirth.json similarity index 100% rename from common/locales/ru/rebirth.json rename to website/common/locales/ru/rebirth.json diff --git a/common/locales/ru/settings.json b/website/common/locales/ru/settings.json similarity index 100% rename from common/locales/ru/settings.json rename to website/common/locales/ru/settings.json diff --git a/common/locales/ru/spells.json b/website/common/locales/ru/spells.json similarity index 100% rename from common/locales/ru/spells.json rename to website/common/locales/ru/spells.json diff --git a/common/locales/ru/subscriber.json b/website/common/locales/ru/subscriber.json similarity index 100% rename from common/locales/ru/subscriber.json rename to website/common/locales/ru/subscriber.json diff --git a/common/locales/ru/tasks.json b/website/common/locales/ru/tasks.json similarity index 100% rename from common/locales/ru/tasks.json rename to website/common/locales/ru/tasks.json diff --git a/common/locales/sk/_README_FIRST.md b/website/common/locales/sk/_README_FIRST.md similarity index 100% rename from common/locales/sk/_README_FIRST.md rename to website/common/locales/sk/_README_FIRST.md diff --git a/common/locales/sk/backgrounds.json b/website/common/locales/sk/backgrounds.json similarity index 100% rename from common/locales/sk/backgrounds.json rename to website/common/locales/sk/backgrounds.json diff --git a/common/locales/sk/challenge.json b/website/common/locales/sk/challenge.json similarity index 100% rename from common/locales/sk/challenge.json rename to website/common/locales/sk/challenge.json diff --git a/common/locales/sk/character.json b/website/common/locales/sk/character.json similarity index 100% rename from common/locales/sk/character.json rename to website/common/locales/sk/character.json diff --git a/common/locales/sk/communityguidelines.json b/website/common/locales/sk/communityguidelines.json similarity index 100% rename from common/locales/sk/communityguidelines.json rename to website/common/locales/sk/communityguidelines.json diff --git a/common/locales/sk/content.json b/website/common/locales/sk/content.json similarity index 100% rename from common/locales/sk/content.json rename to website/common/locales/sk/content.json diff --git a/common/locales/sk/contrib.json b/website/common/locales/sk/contrib.json similarity index 100% rename from common/locales/sk/contrib.json rename to website/common/locales/sk/contrib.json diff --git a/common/locales/sk/death.json b/website/common/locales/sk/death.json similarity index 100% rename from common/locales/sk/death.json rename to website/common/locales/sk/death.json diff --git a/common/locales/sk/defaulttasks.json b/website/common/locales/sk/defaulttasks.json similarity index 100% rename from common/locales/sk/defaulttasks.json rename to website/common/locales/sk/defaulttasks.json diff --git a/common/locales/sk/faq.json b/website/common/locales/sk/faq.json similarity index 100% rename from common/locales/sk/faq.json rename to website/common/locales/sk/faq.json diff --git a/common/locales/sk/front.json b/website/common/locales/sk/front.json similarity index 100% rename from common/locales/sk/front.json rename to website/common/locales/sk/front.json diff --git a/common/locales/sk/gear.json b/website/common/locales/sk/gear.json similarity index 100% rename from common/locales/sk/gear.json rename to website/common/locales/sk/gear.json diff --git a/common/locales/sk/generic.json b/website/common/locales/sk/generic.json similarity index 100% rename from common/locales/sk/generic.json rename to website/common/locales/sk/generic.json diff --git a/common/locales/sk/groups.json b/website/common/locales/sk/groups.json similarity index 100% rename from common/locales/sk/groups.json rename to website/common/locales/sk/groups.json diff --git a/common/locales/sk/limited.json b/website/common/locales/sk/limited.json similarity index 100% rename from common/locales/sk/limited.json rename to website/common/locales/sk/limited.json diff --git a/common/locales/sk/loadingscreentips.json b/website/common/locales/sk/loadingscreentips.json similarity index 100% rename from common/locales/sk/loadingscreentips.json rename to website/common/locales/sk/loadingscreentips.json diff --git a/common/locales/sk/maintenance.json b/website/common/locales/sk/maintenance.json similarity index 100% rename from common/locales/sk/maintenance.json rename to website/common/locales/sk/maintenance.json diff --git a/common/locales/sk/messages.json b/website/common/locales/sk/messages.json similarity index 100% rename from common/locales/sk/messages.json rename to website/common/locales/sk/messages.json diff --git a/common/locales/sk/noscript.json b/website/common/locales/sk/noscript.json similarity index 100% rename from common/locales/sk/noscript.json rename to website/common/locales/sk/noscript.json diff --git a/common/locales/sk/npc.json b/website/common/locales/sk/npc.json similarity index 100% rename from common/locales/sk/npc.json rename to website/common/locales/sk/npc.json diff --git a/common/locales/sk/pets.json b/website/common/locales/sk/pets.json similarity index 100% rename from common/locales/sk/pets.json rename to website/common/locales/sk/pets.json diff --git a/common/locales/sk/quests.json b/website/common/locales/sk/quests.json similarity index 100% rename from common/locales/sk/quests.json rename to website/common/locales/sk/quests.json diff --git a/common/locales/sk/questscontent.json b/website/common/locales/sk/questscontent.json similarity index 100% rename from common/locales/sk/questscontent.json rename to website/common/locales/sk/questscontent.json diff --git a/common/locales/sk/rebirth.json b/website/common/locales/sk/rebirth.json similarity index 100% rename from common/locales/sk/rebirth.json rename to website/common/locales/sk/rebirth.json diff --git a/common/locales/sk/settings.json b/website/common/locales/sk/settings.json similarity index 100% rename from common/locales/sk/settings.json rename to website/common/locales/sk/settings.json diff --git a/common/locales/sk/spells.json b/website/common/locales/sk/spells.json similarity index 100% rename from common/locales/sk/spells.json rename to website/common/locales/sk/spells.json diff --git a/common/locales/sk/subscriber.json b/website/common/locales/sk/subscriber.json similarity index 100% rename from common/locales/sk/subscriber.json rename to website/common/locales/sk/subscriber.json diff --git a/common/locales/sk/tasks.json b/website/common/locales/sk/tasks.json similarity index 100% rename from common/locales/sk/tasks.json rename to website/common/locales/sk/tasks.json diff --git a/common/locales/sr/_README_FIRST.md b/website/common/locales/sr/_README_FIRST.md similarity index 100% rename from common/locales/sr/_README_FIRST.md rename to website/common/locales/sr/_README_FIRST.md diff --git a/common/locales/sr/backgrounds.json b/website/common/locales/sr/backgrounds.json similarity index 100% rename from common/locales/sr/backgrounds.json rename to website/common/locales/sr/backgrounds.json diff --git a/common/locales/sr/challenge.json b/website/common/locales/sr/challenge.json similarity index 100% rename from common/locales/sr/challenge.json rename to website/common/locales/sr/challenge.json diff --git a/common/locales/sr/character.json b/website/common/locales/sr/character.json similarity index 100% rename from common/locales/sr/character.json rename to website/common/locales/sr/character.json diff --git a/common/locales/sr/communityguidelines.json b/website/common/locales/sr/communityguidelines.json similarity index 100% rename from common/locales/sr/communityguidelines.json rename to website/common/locales/sr/communityguidelines.json diff --git a/common/locales/sr/content.json b/website/common/locales/sr/content.json similarity index 100% rename from common/locales/sr/content.json rename to website/common/locales/sr/content.json diff --git a/common/locales/sr/contrib.json b/website/common/locales/sr/contrib.json similarity index 100% rename from common/locales/sr/contrib.json rename to website/common/locales/sr/contrib.json diff --git a/common/locales/sr/death.json b/website/common/locales/sr/death.json similarity index 100% rename from common/locales/sr/death.json rename to website/common/locales/sr/death.json diff --git a/common/locales/sr/defaulttasks.json b/website/common/locales/sr/defaulttasks.json similarity index 100% rename from common/locales/sr/defaulttasks.json rename to website/common/locales/sr/defaulttasks.json diff --git a/common/locales/sr/faq.json b/website/common/locales/sr/faq.json similarity index 100% rename from common/locales/sr/faq.json rename to website/common/locales/sr/faq.json diff --git a/common/locales/sr/front.json b/website/common/locales/sr/front.json similarity index 100% rename from common/locales/sr/front.json rename to website/common/locales/sr/front.json diff --git a/common/locales/sr/gear.json b/website/common/locales/sr/gear.json similarity index 100% rename from common/locales/sr/gear.json rename to website/common/locales/sr/gear.json diff --git a/common/locales/sr/generic.json b/website/common/locales/sr/generic.json similarity index 100% rename from common/locales/sr/generic.json rename to website/common/locales/sr/generic.json diff --git a/common/locales/sr/groups.json b/website/common/locales/sr/groups.json similarity index 100% rename from common/locales/sr/groups.json rename to website/common/locales/sr/groups.json diff --git a/common/locales/sr/limited.json b/website/common/locales/sr/limited.json similarity index 100% rename from common/locales/sr/limited.json rename to website/common/locales/sr/limited.json diff --git a/common/locales/sr/loadingscreentips.json b/website/common/locales/sr/loadingscreentips.json similarity index 100% rename from common/locales/sr/loadingscreentips.json rename to website/common/locales/sr/loadingscreentips.json diff --git a/common/locales/sr/maintenance.json b/website/common/locales/sr/maintenance.json similarity index 100% rename from common/locales/sr/maintenance.json rename to website/common/locales/sr/maintenance.json diff --git a/common/locales/sr/messages.json b/website/common/locales/sr/messages.json similarity index 100% rename from common/locales/sr/messages.json rename to website/common/locales/sr/messages.json diff --git a/common/locales/sr/noscript.json b/website/common/locales/sr/noscript.json similarity index 100% rename from common/locales/sr/noscript.json rename to website/common/locales/sr/noscript.json diff --git a/common/locales/sr/npc.json b/website/common/locales/sr/npc.json similarity index 100% rename from common/locales/sr/npc.json rename to website/common/locales/sr/npc.json diff --git a/common/locales/sr/pets.json b/website/common/locales/sr/pets.json similarity index 100% rename from common/locales/sr/pets.json rename to website/common/locales/sr/pets.json diff --git a/common/locales/sr/quests.json b/website/common/locales/sr/quests.json similarity index 100% rename from common/locales/sr/quests.json rename to website/common/locales/sr/quests.json diff --git a/common/locales/sr/questscontent.json b/website/common/locales/sr/questscontent.json similarity index 100% rename from common/locales/sr/questscontent.json rename to website/common/locales/sr/questscontent.json diff --git a/common/locales/sr/rebirth.json b/website/common/locales/sr/rebirth.json similarity index 100% rename from common/locales/sr/rebirth.json rename to website/common/locales/sr/rebirth.json diff --git a/common/locales/sr/settings.json b/website/common/locales/sr/settings.json similarity index 100% rename from common/locales/sr/settings.json rename to website/common/locales/sr/settings.json diff --git a/common/locales/sr/spells.json b/website/common/locales/sr/spells.json similarity index 100% rename from common/locales/sr/spells.json rename to website/common/locales/sr/spells.json diff --git a/common/locales/sr/subscriber.json b/website/common/locales/sr/subscriber.json similarity index 100% rename from common/locales/sr/subscriber.json rename to website/common/locales/sr/subscriber.json diff --git a/common/locales/sr/tasks.json b/website/common/locales/sr/tasks.json similarity index 100% rename from common/locales/sr/tasks.json rename to website/common/locales/sr/tasks.json diff --git a/common/locales/sv/_README_FIRST.md b/website/common/locales/sv/_README_FIRST.md similarity index 100% rename from common/locales/sv/_README_FIRST.md rename to website/common/locales/sv/_README_FIRST.md diff --git a/common/locales/sv/backgrounds.json b/website/common/locales/sv/backgrounds.json similarity index 100% rename from common/locales/sv/backgrounds.json rename to website/common/locales/sv/backgrounds.json diff --git a/common/locales/sv/challenge.json b/website/common/locales/sv/challenge.json similarity index 100% rename from common/locales/sv/challenge.json rename to website/common/locales/sv/challenge.json diff --git a/common/locales/sv/character.json b/website/common/locales/sv/character.json similarity index 100% rename from common/locales/sv/character.json rename to website/common/locales/sv/character.json diff --git a/common/locales/sv/communityguidelines.json b/website/common/locales/sv/communityguidelines.json similarity index 100% rename from common/locales/sv/communityguidelines.json rename to website/common/locales/sv/communityguidelines.json diff --git a/common/locales/sv/content.json b/website/common/locales/sv/content.json similarity index 100% rename from common/locales/sv/content.json rename to website/common/locales/sv/content.json diff --git a/common/locales/sv/contrib.json b/website/common/locales/sv/contrib.json similarity index 100% rename from common/locales/sv/contrib.json rename to website/common/locales/sv/contrib.json diff --git a/common/locales/sv/death.json b/website/common/locales/sv/death.json similarity index 100% rename from common/locales/sv/death.json rename to website/common/locales/sv/death.json diff --git a/common/locales/sv/defaulttasks.json b/website/common/locales/sv/defaulttasks.json similarity index 100% rename from common/locales/sv/defaulttasks.json rename to website/common/locales/sv/defaulttasks.json diff --git a/common/locales/sv/faq.json b/website/common/locales/sv/faq.json similarity index 100% rename from common/locales/sv/faq.json rename to website/common/locales/sv/faq.json diff --git a/common/locales/sv/front.json b/website/common/locales/sv/front.json similarity index 100% rename from common/locales/sv/front.json rename to website/common/locales/sv/front.json diff --git a/common/locales/sv/gear.json b/website/common/locales/sv/gear.json similarity index 100% rename from common/locales/sv/gear.json rename to website/common/locales/sv/gear.json diff --git a/common/locales/sv/generic.json b/website/common/locales/sv/generic.json similarity index 100% rename from common/locales/sv/generic.json rename to website/common/locales/sv/generic.json diff --git a/common/locales/sv/groups.json b/website/common/locales/sv/groups.json similarity index 100% rename from common/locales/sv/groups.json rename to website/common/locales/sv/groups.json diff --git a/common/locales/sv/limited.json b/website/common/locales/sv/limited.json similarity index 100% rename from common/locales/sv/limited.json rename to website/common/locales/sv/limited.json diff --git a/common/locales/sv/loadingscreentips.json b/website/common/locales/sv/loadingscreentips.json similarity index 100% rename from common/locales/sv/loadingscreentips.json rename to website/common/locales/sv/loadingscreentips.json diff --git a/common/locales/sv/maintenance.json b/website/common/locales/sv/maintenance.json similarity index 100% rename from common/locales/sv/maintenance.json rename to website/common/locales/sv/maintenance.json diff --git a/common/locales/sv/messages.json b/website/common/locales/sv/messages.json similarity index 100% rename from common/locales/sv/messages.json rename to website/common/locales/sv/messages.json diff --git a/common/locales/sv/noscript.json b/website/common/locales/sv/noscript.json similarity index 100% rename from common/locales/sv/noscript.json rename to website/common/locales/sv/noscript.json diff --git a/common/locales/sv/npc.json b/website/common/locales/sv/npc.json similarity index 100% rename from common/locales/sv/npc.json rename to website/common/locales/sv/npc.json diff --git a/common/locales/sv/pets.json b/website/common/locales/sv/pets.json similarity index 100% rename from common/locales/sv/pets.json rename to website/common/locales/sv/pets.json diff --git a/common/locales/sv/quests.json b/website/common/locales/sv/quests.json similarity index 100% rename from common/locales/sv/quests.json rename to website/common/locales/sv/quests.json diff --git a/common/locales/sv/questscontent.json b/website/common/locales/sv/questscontent.json similarity index 100% rename from common/locales/sv/questscontent.json rename to website/common/locales/sv/questscontent.json diff --git a/common/locales/sv/rebirth.json b/website/common/locales/sv/rebirth.json similarity index 100% rename from common/locales/sv/rebirth.json rename to website/common/locales/sv/rebirth.json diff --git a/common/locales/sv/settings.json b/website/common/locales/sv/settings.json similarity index 100% rename from common/locales/sv/settings.json rename to website/common/locales/sv/settings.json diff --git a/common/locales/sv/spells.json b/website/common/locales/sv/spells.json similarity index 100% rename from common/locales/sv/spells.json rename to website/common/locales/sv/spells.json diff --git a/common/locales/sv/subscriber.json b/website/common/locales/sv/subscriber.json similarity index 100% rename from common/locales/sv/subscriber.json rename to website/common/locales/sv/subscriber.json diff --git a/common/locales/sv/tasks.json b/website/common/locales/sv/tasks.json similarity index 100% rename from common/locales/sv/tasks.json rename to website/common/locales/sv/tasks.json diff --git a/common/locales/uk/_README_FIRST.md b/website/common/locales/uk/_README_FIRST.md similarity index 100% rename from common/locales/uk/_README_FIRST.md rename to website/common/locales/uk/_README_FIRST.md diff --git a/common/locales/uk/backgrounds.json b/website/common/locales/uk/backgrounds.json similarity index 100% rename from common/locales/uk/backgrounds.json rename to website/common/locales/uk/backgrounds.json diff --git a/common/locales/uk/challenge.json b/website/common/locales/uk/challenge.json similarity index 100% rename from common/locales/uk/challenge.json rename to website/common/locales/uk/challenge.json diff --git a/common/locales/uk/character.json b/website/common/locales/uk/character.json similarity index 100% rename from common/locales/uk/character.json rename to website/common/locales/uk/character.json diff --git a/common/locales/uk/communityguidelines.json b/website/common/locales/uk/communityguidelines.json similarity index 100% rename from common/locales/uk/communityguidelines.json rename to website/common/locales/uk/communityguidelines.json diff --git a/common/locales/uk/content.json b/website/common/locales/uk/content.json similarity index 100% rename from common/locales/uk/content.json rename to website/common/locales/uk/content.json diff --git a/common/locales/uk/contrib.json b/website/common/locales/uk/contrib.json similarity index 100% rename from common/locales/uk/contrib.json rename to website/common/locales/uk/contrib.json diff --git a/common/locales/uk/death.json b/website/common/locales/uk/death.json similarity index 100% rename from common/locales/uk/death.json rename to website/common/locales/uk/death.json diff --git a/common/locales/uk/defaulttasks.json b/website/common/locales/uk/defaulttasks.json similarity index 100% rename from common/locales/uk/defaulttasks.json rename to website/common/locales/uk/defaulttasks.json diff --git a/common/locales/uk/faq.json b/website/common/locales/uk/faq.json similarity index 100% rename from common/locales/uk/faq.json rename to website/common/locales/uk/faq.json diff --git a/common/locales/uk/front.json b/website/common/locales/uk/front.json similarity index 100% rename from common/locales/uk/front.json rename to website/common/locales/uk/front.json diff --git a/common/locales/uk/gear.json b/website/common/locales/uk/gear.json similarity index 100% rename from common/locales/uk/gear.json rename to website/common/locales/uk/gear.json diff --git a/common/locales/uk/generic.json b/website/common/locales/uk/generic.json similarity index 100% rename from common/locales/uk/generic.json rename to website/common/locales/uk/generic.json diff --git a/common/locales/uk/groups.json b/website/common/locales/uk/groups.json similarity index 100% rename from common/locales/uk/groups.json rename to website/common/locales/uk/groups.json diff --git a/common/locales/uk/limited.json b/website/common/locales/uk/limited.json similarity index 100% rename from common/locales/uk/limited.json rename to website/common/locales/uk/limited.json diff --git a/common/locales/uk/loadingscreentips.json b/website/common/locales/uk/loadingscreentips.json similarity index 100% rename from common/locales/uk/loadingscreentips.json rename to website/common/locales/uk/loadingscreentips.json diff --git a/common/locales/uk/maintenance.json b/website/common/locales/uk/maintenance.json similarity index 100% rename from common/locales/uk/maintenance.json rename to website/common/locales/uk/maintenance.json diff --git a/common/locales/uk/messages.json b/website/common/locales/uk/messages.json similarity index 100% rename from common/locales/uk/messages.json rename to website/common/locales/uk/messages.json diff --git a/common/locales/uk/noscript.json b/website/common/locales/uk/noscript.json similarity index 100% rename from common/locales/uk/noscript.json rename to website/common/locales/uk/noscript.json diff --git a/common/locales/uk/npc.json b/website/common/locales/uk/npc.json similarity index 100% rename from common/locales/uk/npc.json rename to website/common/locales/uk/npc.json diff --git a/common/locales/uk/pets.json b/website/common/locales/uk/pets.json similarity index 100% rename from common/locales/uk/pets.json rename to website/common/locales/uk/pets.json diff --git a/common/locales/uk/quests.json b/website/common/locales/uk/quests.json similarity index 100% rename from common/locales/uk/quests.json rename to website/common/locales/uk/quests.json diff --git a/common/locales/uk/questscontent.json b/website/common/locales/uk/questscontent.json similarity index 100% rename from common/locales/uk/questscontent.json rename to website/common/locales/uk/questscontent.json diff --git a/common/locales/uk/rebirth.json b/website/common/locales/uk/rebirth.json similarity index 100% rename from common/locales/uk/rebirth.json rename to website/common/locales/uk/rebirth.json diff --git a/common/locales/uk/settings.json b/website/common/locales/uk/settings.json similarity index 100% rename from common/locales/uk/settings.json rename to website/common/locales/uk/settings.json diff --git a/common/locales/uk/spells.json b/website/common/locales/uk/spells.json similarity index 100% rename from common/locales/uk/spells.json rename to website/common/locales/uk/spells.json diff --git a/common/locales/uk/subscriber.json b/website/common/locales/uk/subscriber.json similarity index 100% rename from common/locales/uk/subscriber.json rename to website/common/locales/uk/subscriber.json diff --git a/common/locales/uk/tasks.json b/website/common/locales/uk/tasks.json similarity index 100% rename from common/locales/uk/tasks.json rename to website/common/locales/uk/tasks.json diff --git a/common/locales/zh/_README_FIRST.md b/website/common/locales/zh/_README_FIRST.md similarity index 100% rename from common/locales/zh/_README_FIRST.md rename to website/common/locales/zh/_README_FIRST.md diff --git a/common/locales/zh/backgrounds.json b/website/common/locales/zh/backgrounds.json similarity index 100% rename from common/locales/zh/backgrounds.json rename to website/common/locales/zh/backgrounds.json diff --git a/common/locales/zh/challenge.json b/website/common/locales/zh/challenge.json similarity index 100% rename from common/locales/zh/challenge.json rename to website/common/locales/zh/challenge.json diff --git a/common/locales/zh/character.json b/website/common/locales/zh/character.json similarity index 100% rename from common/locales/zh/character.json rename to website/common/locales/zh/character.json diff --git a/common/locales/zh/communityguidelines.json b/website/common/locales/zh/communityguidelines.json similarity index 100% rename from common/locales/zh/communityguidelines.json rename to website/common/locales/zh/communityguidelines.json diff --git a/common/locales/zh/content.json b/website/common/locales/zh/content.json similarity index 100% rename from common/locales/zh/content.json rename to website/common/locales/zh/content.json diff --git a/common/locales/zh/contrib.json b/website/common/locales/zh/contrib.json similarity index 100% rename from common/locales/zh/contrib.json rename to website/common/locales/zh/contrib.json diff --git a/common/locales/zh/death.json b/website/common/locales/zh/death.json similarity index 100% rename from common/locales/zh/death.json rename to website/common/locales/zh/death.json diff --git a/common/locales/zh/defaulttasks.json b/website/common/locales/zh/defaulttasks.json similarity index 100% rename from common/locales/zh/defaulttasks.json rename to website/common/locales/zh/defaulttasks.json diff --git a/common/locales/zh/faq.json b/website/common/locales/zh/faq.json similarity index 100% rename from common/locales/zh/faq.json rename to website/common/locales/zh/faq.json diff --git a/common/locales/zh/front.json b/website/common/locales/zh/front.json similarity index 100% rename from common/locales/zh/front.json rename to website/common/locales/zh/front.json diff --git a/common/locales/zh/gear.json b/website/common/locales/zh/gear.json similarity index 100% rename from common/locales/zh/gear.json rename to website/common/locales/zh/gear.json diff --git a/common/locales/zh/generic.json b/website/common/locales/zh/generic.json similarity index 100% rename from common/locales/zh/generic.json rename to website/common/locales/zh/generic.json diff --git a/common/locales/zh/groups.json b/website/common/locales/zh/groups.json similarity index 100% rename from common/locales/zh/groups.json rename to website/common/locales/zh/groups.json diff --git a/common/locales/zh/limited.json b/website/common/locales/zh/limited.json similarity index 100% rename from common/locales/zh/limited.json rename to website/common/locales/zh/limited.json diff --git a/common/locales/zh/loadingscreentips.json b/website/common/locales/zh/loadingscreentips.json similarity index 100% rename from common/locales/zh/loadingscreentips.json rename to website/common/locales/zh/loadingscreentips.json diff --git a/common/locales/zh/maintenance.json b/website/common/locales/zh/maintenance.json similarity index 100% rename from common/locales/zh/maintenance.json rename to website/common/locales/zh/maintenance.json diff --git a/common/locales/zh/messages.json b/website/common/locales/zh/messages.json similarity index 100% rename from common/locales/zh/messages.json rename to website/common/locales/zh/messages.json diff --git a/common/locales/zh/noscript.json b/website/common/locales/zh/noscript.json similarity index 100% rename from common/locales/zh/noscript.json rename to website/common/locales/zh/noscript.json diff --git a/common/locales/zh/npc.json b/website/common/locales/zh/npc.json similarity index 100% rename from common/locales/zh/npc.json rename to website/common/locales/zh/npc.json diff --git a/common/locales/zh/pets.json b/website/common/locales/zh/pets.json similarity index 100% rename from common/locales/zh/pets.json rename to website/common/locales/zh/pets.json diff --git a/common/locales/zh/quests.json b/website/common/locales/zh/quests.json similarity index 100% rename from common/locales/zh/quests.json rename to website/common/locales/zh/quests.json diff --git a/common/locales/zh/questscontent.json b/website/common/locales/zh/questscontent.json similarity index 100% rename from common/locales/zh/questscontent.json rename to website/common/locales/zh/questscontent.json diff --git a/common/locales/zh/rebirth.json b/website/common/locales/zh/rebirth.json similarity index 100% rename from common/locales/zh/rebirth.json rename to website/common/locales/zh/rebirth.json diff --git a/common/locales/zh/settings.json b/website/common/locales/zh/settings.json similarity index 100% rename from common/locales/zh/settings.json rename to website/common/locales/zh/settings.json diff --git a/common/locales/zh/spells.json b/website/common/locales/zh/spells.json similarity index 100% rename from common/locales/zh/spells.json rename to website/common/locales/zh/spells.json diff --git a/common/locales/zh/subscriber.json b/website/common/locales/zh/subscriber.json similarity index 100% rename from common/locales/zh/subscriber.json rename to website/common/locales/zh/subscriber.json diff --git a/common/locales/zh/tasks.json b/website/common/locales/zh/tasks.json similarity index 100% rename from common/locales/zh/tasks.json rename to website/common/locales/zh/tasks.json diff --git a/common/locales/zh_TW/_README_FIRST.md b/website/common/locales/zh_TW/_README_FIRST.md similarity index 100% rename from common/locales/zh_TW/_README_FIRST.md rename to website/common/locales/zh_TW/_README_FIRST.md diff --git a/common/locales/zh_TW/backgrounds.json b/website/common/locales/zh_TW/backgrounds.json similarity index 100% rename from common/locales/zh_TW/backgrounds.json rename to website/common/locales/zh_TW/backgrounds.json diff --git a/common/locales/zh_TW/challenge.json b/website/common/locales/zh_TW/challenge.json similarity index 100% rename from common/locales/zh_TW/challenge.json rename to website/common/locales/zh_TW/challenge.json diff --git a/common/locales/zh_TW/character.json b/website/common/locales/zh_TW/character.json similarity index 100% rename from common/locales/zh_TW/character.json rename to website/common/locales/zh_TW/character.json diff --git a/common/locales/zh_TW/communityguidelines.json b/website/common/locales/zh_TW/communityguidelines.json similarity index 100% rename from common/locales/zh_TW/communityguidelines.json rename to website/common/locales/zh_TW/communityguidelines.json diff --git a/common/locales/zh_TW/content.json b/website/common/locales/zh_TW/content.json similarity index 100% rename from common/locales/zh_TW/content.json rename to website/common/locales/zh_TW/content.json diff --git a/common/locales/zh_TW/contrib.json b/website/common/locales/zh_TW/contrib.json similarity index 100% rename from common/locales/zh_TW/contrib.json rename to website/common/locales/zh_TW/contrib.json diff --git a/common/locales/zh_TW/death.json b/website/common/locales/zh_TW/death.json similarity index 100% rename from common/locales/zh_TW/death.json rename to website/common/locales/zh_TW/death.json diff --git a/common/locales/zh_TW/defaulttasks.json b/website/common/locales/zh_TW/defaulttasks.json similarity index 100% rename from common/locales/zh_TW/defaulttasks.json rename to website/common/locales/zh_TW/defaulttasks.json diff --git a/common/locales/zh_TW/faq.json b/website/common/locales/zh_TW/faq.json similarity index 100% rename from common/locales/zh_TW/faq.json rename to website/common/locales/zh_TW/faq.json diff --git a/common/locales/zh_TW/front.json b/website/common/locales/zh_TW/front.json similarity index 100% rename from common/locales/zh_TW/front.json rename to website/common/locales/zh_TW/front.json diff --git a/common/locales/zh_TW/gear.json b/website/common/locales/zh_TW/gear.json similarity index 100% rename from common/locales/zh_TW/gear.json rename to website/common/locales/zh_TW/gear.json diff --git a/common/locales/zh_TW/generic.json b/website/common/locales/zh_TW/generic.json similarity index 100% rename from common/locales/zh_TW/generic.json rename to website/common/locales/zh_TW/generic.json diff --git a/common/locales/zh_TW/groups.json b/website/common/locales/zh_TW/groups.json similarity index 100% rename from common/locales/zh_TW/groups.json rename to website/common/locales/zh_TW/groups.json diff --git a/common/locales/zh_TW/limited.json b/website/common/locales/zh_TW/limited.json similarity index 100% rename from common/locales/zh_TW/limited.json rename to website/common/locales/zh_TW/limited.json diff --git a/common/locales/zh_TW/loadingscreentips.json b/website/common/locales/zh_TW/loadingscreentips.json similarity index 100% rename from common/locales/zh_TW/loadingscreentips.json rename to website/common/locales/zh_TW/loadingscreentips.json diff --git a/common/locales/zh_TW/maintenance.json b/website/common/locales/zh_TW/maintenance.json similarity index 100% rename from common/locales/zh_TW/maintenance.json rename to website/common/locales/zh_TW/maintenance.json diff --git a/common/locales/zh_TW/messages.json b/website/common/locales/zh_TW/messages.json similarity index 100% rename from common/locales/zh_TW/messages.json rename to website/common/locales/zh_TW/messages.json diff --git a/common/locales/zh_TW/noscript.json b/website/common/locales/zh_TW/noscript.json similarity index 100% rename from common/locales/zh_TW/noscript.json rename to website/common/locales/zh_TW/noscript.json diff --git a/common/locales/zh_TW/npc.json b/website/common/locales/zh_TW/npc.json similarity index 100% rename from common/locales/zh_TW/npc.json rename to website/common/locales/zh_TW/npc.json diff --git a/common/locales/zh_TW/pets.json b/website/common/locales/zh_TW/pets.json similarity index 100% rename from common/locales/zh_TW/pets.json rename to website/common/locales/zh_TW/pets.json diff --git a/common/locales/zh_TW/quests.json b/website/common/locales/zh_TW/quests.json similarity index 100% rename from common/locales/zh_TW/quests.json rename to website/common/locales/zh_TW/quests.json diff --git a/common/locales/zh_TW/questscontent.json b/website/common/locales/zh_TW/questscontent.json similarity index 100% rename from common/locales/zh_TW/questscontent.json rename to website/common/locales/zh_TW/questscontent.json diff --git a/common/locales/zh_TW/rebirth.json b/website/common/locales/zh_TW/rebirth.json similarity index 100% rename from common/locales/zh_TW/rebirth.json rename to website/common/locales/zh_TW/rebirth.json diff --git a/common/locales/zh_TW/settings.json b/website/common/locales/zh_TW/settings.json similarity index 100% rename from common/locales/zh_TW/settings.json rename to website/common/locales/zh_TW/settings.json diff --git a/common/locales/zh_TW/spells.json b/website/common/locales/zh_TW/spells.json similarity index 100% rename from common/locales/zh_TW/spells.json rename to website/common/locales/zh_TW/spells.json diff --git a/common/locales/zh_TW/subscriber.json b/website/common/locales/zh_TW/subscriber.json similarity index 100% rename from common/locales/zh_TW/subscriber.json rename to website/common/locales/zh_TW/subscriber.json diff --git a/common/locales/zh_TW/tasks.json b/website/common/locales/zh_TW/tasks.json similarity index 100% rename from common/locales/zh_TW/tasks.json rename to website/common/locales/zh_TW/tasks.json diff --git a/common/script/.eslintrc b/website/common/script/.eslintrc similarity index 100% rename from common/script/.eslintrc rename to website/common/script/.eslintrc diff --git a/common/script/constants.js b/website/common/script/constants.js similarity index 100% rename from common/script/constants.js rename to website/common/script/constants.js diff --git a/common/script/content/appearance/backgrounds.js b/website/common/script/content/appearance/backgrounds.js similarity index 100% rename from common/script/content/appearance/backgrounds.js rename to website/common/script/content/appearance/backgrounds.js diff --git a/common/script/content/appearance/chair.js b/website/common/script/content/appearance/chair.js similarity index 100% rename from common/script/content/appearance/chair.js rename to website/common/script/content/appearance/chair.js diff --git a/common/script/content/appearance/hair/bangs.js b/website/common/script/content/appearance/hair/bangs.js similarity index 100% rename from common/script/content/appearance/hair/bangs.js rename to website/common/script/content/appearance/hair/bangs.js diff --git a/common/script/content/appearance/hair/base.js b/website/common/script/content/appearance/hair/base.js similarity index 100% rename from common/script/content/appearance/hair/base.js rename to website/common/script/content/appearance/hair/base.js diff --git a/common/script/content/appearance/hair/beard.js b/website/common/script/content/appearance/hair/beard.js similarity index 100% rename from common/script/content/appearance/hair/beard.js rename to website/common/script/content/appearance/hair/beard.js diff --git a/common/script/content/appearance/hair/color.js b/website/common/script/content/appearance/hair/color.js similarity index 100% rename from common/script/content/appearance/hair/color.js rename to website/common/script/content/appearance/hair/color.js diff --git a/common/script/content/appearance/hair/flower.js b/website/common/script/content/appearance/hair/flower.js similarity index 100% rename from common/script/content/appearance/hair/flower.js rename to website/common/script/content/appearance/hair/flower.js diff --git a/common/script/content/appearance/hair/index.js b/website/common/script/content/appearance/hair/index.js similarity index 100% rename from common/script/content/appearance/hair/index.js rename to website/common/script/content/appearance/hair/index.js diff --git a/common/script/content/appearance/hair/mustache.js b/website/common/script/content/appearance/hair/mustache.js similarity index 100% rename from common/script/content/appearance/hair/mustache.js rename to website/common/script/content/appearance/hair/mustache.js diff --git a/common/script/content/appearance/index.js b/website/common/script/content/appearance/index.js similarity index 100% rename from common/script/content/appearance/index.js rename to website/common/script/content/appearance/index.js diff --git a/common/script/content/appearance/prefill.js b/website/common/script/content/appearance/prefill.js similarity index 100% rename from common/script/content/appearance/prefill.js rename to website/common/script/content/appearance/prefill.js diff --git a/common/script/content/appearance/sets.js b/website/common/script/content/appearance/sets.js similarity index 100% rename from common/script/content/appearance/sets.js rename to website/common/script/content/appearance/sets.js diff --git a/common/script/content/appearance/shirt.js b/website/common/script/content/appearance/shirt.js similarity index 100% rename from common/script/content/appearance/shirt.js rename to website/common/script/content/appearance/shirt.js diff --git a/common/script/content/appearance/size.js b/website/common/script/content/appearance/size.js similarity index 100% rename from common/script/content/appearance/size.js rename to website/common/script/content/appearance/size.js diff --git a/common/script/content/appearance/skin.js b/website/common/script/content/appearance/skin.js similarity index 100% rename from common/script/content/appearance/skin.js rename to website/common/script/content/appearance/skin.js diff --git a/common/script/content/constants.js b/website/common/script/content/constants.js similarity index 100% rename from common/script/content/constants.js rename to website/common/script/content/constants.js diff --git a/common/script/content/eggs.js b/website/common/script/content/eggs.js similarity index 100% rename from common/script/content/eggs.js rename to website/common/script/content/eggs.js diff --git a/common/script/content/faq.js b/website/common/script/content/faq.js similarity index 100% rename from common/script/content/faq.js rename to website/common/script/content/faq.js diff --git a/common/script/content/gear/armor.js b/website/common/script/content/gear/armor.js similarity index 100% rename from common/script/content/gear/armor.js rename to website/common/script/content/gear/armor.js diff --git a/common/script/content/gear/back.js b/website/common/script/content/gear/back.js similarity index 100% rename from common/script/content/gear/back.js rename to website/common/script/content/gear/back.js diff --git a/common/script/content/gear/body.js b/website/common/script/content/gear/body.js similarity index 100% rename from common/script/content/gear/body.js rename to website/common/script/content/gear/body.js diff --git a/common/script/content/gear/eyewear.js b/website/common/script/content/gear/eyewear.js similarity index 100% rename from common/script/content/gear/eyewear.js rename to website/common/script/content/gear/eyewear.js diff --git a/common/script/content/gear/gear-helper.js b/website/common/script/content/gear/gear-helper.js similarity index 100% rename from common/script/content/gear/gear-helper.js rename to website/common/script/content/gear/gear-helper.js diff --git a/common/script/content/gear/head-accessory.js b/website/common/script/content/gear/head-accessory.js similarity index 100% rename from common/script/content/gear/head-accessory.js rename to website/common/script/content/gear/head-accessory.js diff --git a/common/script/content/gear/head.js b/website/common/script/content/gear/head.js similarity index 100% rename from common/script/content/gear/head.js rename to website/common/script/content/gear/head.js diff --git a/common/script/content/gear/index.js b/website/common/script/content/gear/index.js similarity index 100% rename from common/script/content/gear/index.js rename to website/common/script/content/gear/index.js diff --git a/common/script/content/gear/sets/armoire.js b/website/common/script/content/gear/sets/armoire.js similarity index 100% rename from common/script/content/gear/sets/armoire.js rename to website/common/script/content/gear/sets/armoire.js diff --git a/common/script/content/gear/sets/base.js b/website/common/script/content/gear/sets/base.js similarity index 100% rename from common/script/content/gear/sets/base.js rename to website/common/script/content/gear/sets/base.js diff --git a/common/script/content/gear/sets/healer.js b/website/common/script/content/gear/sets/healer.js similarity index 100% rename from common/script/content/gear/sets/healer.js rename to website/common/script/content/gear/sets/healer.js diff --git a/common/script/content/gear/sets/mystery.js b/website/common/script/content/gear/sets/mystery.js similarity index 100% rename from common/script/content/gear/sets/mystery.js rename to website/common/script/content/gear/sets/mystery.js diff --git a/common/script/content/gear/sets/rogue.js b/website/common/script/content/gear/sets/rogue.js similarity index 100% rename from common/script/content/gear/sets/rogue.js rename to website/common/script/content/gear/sets/rogue.js diff --git a/common/script/content/gear/sets/special/index.js b/website/common/script/content/gear/sets/special/index.js similarity index 100% rename from common/script/content/gear/sets/special/index.js rename to website/common/script/content/gear/sets/special/index.js diff --git a/common/script/content/gear/sets/special/special-backer.js b/website/common/script/content/gear/sets/special/special-backer.js similarity index 100% rename from common/script/content/gear/sets/special/special-backer.js rename to website/common/script/content/gear/sets/special/special-backer.js diff --git a/common/script/content/gear/sets/special/special-contributor.js b/website/common/script/content/gear/sets/special/special-contributor.js similarity index 100% rename from common/script/content/gear/sets/special/special-contributor.js rename to website/common/script/content/gear/sets/special/special-contributor.js diff --git a/common/script/content/gear/sets/special/special-takeThis.js b/website/common/script/content/gear/sets/special/special-takeThis.js similarity index 100% rename from common/script/content/gear/sets/special/special-takeThis.js rename to website/common/script/content/gear/sets/special/special-takeThis.js diff --git a/common/script/content/gear/sets/special/special-wondercon.js b/website/common/script/content/gear/sets/special/special-wondercon.js similarity index 100% rename from common/script/content/gear/sets/special/special-wondercon.js rename to website/common/script/content/gear/sets/special/special-wondercon.js diff --git a/common/script/content/gear/sets/warrior.js b/website/common/script/content/gear/sets/warrior.js similarity index 100% rename from common/script/content/gear/sets/warrior.js rename to website/common/script/content/gear/sets/warrior.js diff --git a/common/script/content/gear/sets/wizard.js b/website/common/script/content/gear/sets/wizard.js similarity index 100% rename from common/script/content/gear/sets/wizard.js rename to website/common/script/content/gear/sets/wizard.js diff --git a/common/script/content/gear/shield.js b/website/common/script/content/gear/shield.js similarity index 100% rename from common/script/content/gear/shield.js rename to website/common/script/content/gear/shield.js diff --git a/common/script/content/gear/weapon.js b/website/common/script/content/gear/weapon.js similarity index 100% rename from common/script/content/gear/weapon.js rename to website/common/script/content/gear/weapon.js diff --git a/common/script/content/hatching-potions.js b/website/common/script/content/hatching-potions.js similarity index 100% rename from common/script/content/hatching-potions.js rename to website/common/script/content/hatching-potions.js diff --git a/common/script/content/index.js b/website/common/script/content/index.js similarity index 100% rename from common/script/content/index.js rename to website/common/script/content/index.js diff --git a/common/script/content/mystery-sets.js b/website/common/script/content/mystery-sets.js similarity index 100% rename from common/script/content/mystery-sets.js rename to website/common/script/content/mystery-sets.js diff --git a/common/script/content/spells.js b/website/common/script/content/spells.js similarity index 100% rename from common/script/content/spells.js rename to website/common/script/content/spells.js diff --git a/common/script/content/stable.js b/website/common/script/content/stable.js similarity index 100% rename from common/script/content/stable.js rename to website/common/script/content/stable.js diff --git a/common/script/content/translation.js b/website/common/script/content/translation.js similarity index 100% rename from common/script/content/translation.js rename to website/common/script/content/translation.js diff --git a/common/script/count.js b/website/common/script/count.js similarity index 100% rename from common/script/count.js rename to website/common/script/count.js diff --git a/common/script/cron.js b/website/common/script/cron.js similarity index 100% rename from common/script/cron.js rename to website/common/script/cron.js diff --git a/common/script/fns/autoAllocate.js b/website/common/script/fns/autoAllocate.js similarity index 100% rename from common/script/fns/autoAllocate.js rename to website/common/script/fns/autoAllocate.js diff --git a/common/script/fns/crit.js b/website/common/script/fns/crit.js similarity index 100% rename from common/script/fns/crit.js rename to website/common/script/fns/crit.js diff --git a/common/script/fns/dotGet.js b/website/common/script/fns/dotGet.js similarity index 100% rename from common/script/fns/dotGet.js rename to website/common/script/fns/dotGet.js diff --git a/common/script/fns/dotSet.js b/website/common/script/fns/dotSet.js similarity index 100% rename from common/script/fns/dotSet.js rename to website/common/script/fns/dotSet.js diff --git a/common/script/fns/handleTwoHanded.js b/website/common/script/fns/handleTwoHanded.js similarity index 100% rename from common/script/fns/handleTwoHanded.js rename to website/common/script/fns/handleTwoHanded.js diff --git a/common/script/fns/index.js b/website/common/script/fns/index.js similarity index 100% rename from common/script/fns/index.js rename to website/common/script/fns/index.js diff --git a/common/script/fns/nullify.js b/website/common/script/fns/nullify.js similarity index 100% rename from common/script/fns/nullify.js rename to website/common/script/fns/nullify.js diff --git a/common/script/fns/predictableRandom.js b/website/common/script/fns/predictableRandom.js similarity index 100% rename from common/script/fns/predictableRandom.js rename to website/common/script/fns/predictableRandom.js diff --git a/common/script/fns/randomDrop.js b/website/common/script/fns/randomDrop.js similarity index 100% rename from common/script/fns/randomDrop.js rename to website/common/script/fns/randomDrop.js diff --git a/common/script/fns/randomVal.js b/website/common/script/fns/randomVal.js similarity index 100% rename from common/script/fns/randomVal.js rename to website/common/script/fns/randomVal.js diff --git a/common/script/fns/resetGear.js b/website/common/script/fns/resetGear.js similarity index 100% rename from common/script/fns/resetGear.js rename to website/common/script/fns/resetGear.js diff --git a/common/script/fns/ultimateGear.js b/website/common/script/fns/ultimateGear.js similarity index 100% rename from common/script/fns/ultimateGear.js rename to website/common/script/fns/ultimateGear.js diff --git a/common/script/fns/updateStats.js b/website/common/script/fns/updateStats.js similarity index 100% rename from common/script/fns/updateStats.js rename to website/common/script/fns/updateStats.js diff --git a/common/script/i18n.js b/website/common/script/i18n.js similarity index 100% rename from common/script/i18n.js rename to website/common/script/i18n.js diff --git a/common/script/index.js b/website/common/script/index.js similarity index 100% rename from common/script/index.js rename to website/common/script/index.js diff --git a/common/script/libs/appliedTags.js b/website/common/script/libs/appliedTags.js similarity index 100% rename from common/script/libs/appliedTags.js rename to website/common/script/libs/appliedTags.js diff --git a/common/script/libs/dotGet.js b/website/common/script/libs/dotGet.js similarity index 100% rename from common/script/libs/dotGet.js rename to website/common/script/libs/dotGet.js diff --git a/common/script/libs/dotSet.js b/website/common/script/libs/dotSet.js similarity index 100% rename from common/script/libs/dotSet.js rename to website/common/script/libs/dotSet.js diff --git a/common/script/libs/errors.js b/website/common/script/libs/errors.js similarity index 100% rename from common/script/libs/errors.js rename to website/common/script/libs/errors.js diff --git a/common/script/libs/extendableBuiltin.js b/website/common/script/libs/extendableBuiltin.js similarity index 100% rename from common/script/libs/extendableBuiltin.js rename to website/common/script/libs/extendableBuiltin.js diff --git a/common/script/libs/gold.js b/website/common/script/libs/gold.js similarity index 100% rename from common/script/libs/gold.js rename to website/common/script/libs/gold.js diff --git a/common/script/libs/noTags.js b/website/common/script/libs/noTags.js similarity index 100% rename from common/script/libs/noTags.js rename to website/common/script/libs/noTags.js diff --git a/common/script/libs/percent.js b/website/common/script/libs/percent.js similarity index 100% rename from common/script/libs/percent.js rename to website/common/script/libs/percent.js diff --git a/common/script/libs/pickDeep.js b/website/common/script/libs/pickDeep.js similarity index 100% rename from common/script/libs/pickDeep.js rename to website/common/script/libs/pickDeep.js diff --git a/common/script/libs/planGemLimits.js b/website/common/script/libs/planGemLimits.js similarity index 100% rename from common/script/libs/planGemLimits.js rename to website/common/script/libs/planGemLimits.js diff --git a/common/script/libs/preenTodos.js b/website/common/script/libs/preenTodos.js similarity index 100% rename from common/script/libs/preenTodos.js rename to website/common/script/libs/preenTodos.js diff --git a/common/script/libs/refPush.js b/website/common/script/libs/refPush.js similarity index 100% rename from common/script/libs/refPush.js rename to website/common/script/libs/refPush.js diff --git a/common/script/libs/shops.js b/website/common/script/libs/shops.js similarity index 100% rename from common/script/libs/shops.js rename to website/common/script/libs/shops.js diff --git a/common/script/libs/silver.js b/website/common/script/libs/silver.js similarity index 100% rename from common/script/libs/silver.js rename to website/common/script/libs/silver.js diff --git a/common/script/libs/splitWhitespace.js b/website/common/script/libs/splitWhitespace.js similarity index 100% rename from common/script/libs/splitWhitespace.js rename to website/common/script/libs/splitWhitespace.js diff --git a/common/script/libs/statsComputed.js b/website/common/script/libs/statsComputed.js similarity index 100% rename from common/script/libs/statsComputed.js rename to website/common/script/libs/statsComputed.js diff --git a/common/script/libs/taskClasses.js b/website/common/script/libs/taskClasses.js similarity index 100% rename from common/script/libs/taskClasses.js rename to website/common/script/libs/taskClasses.js diff --git a/common/script/libs/taskDefaults.js b/website/common/script/libs/taskDefaults.js similarity index 100% rename from common/script/libs/taskDefaults.js rename to website/common/script/libs/taskDefaults.js diff --git a/common/script/libs/updateStore.js b/website/common/script/libs/updateStore.js similarity index 100% rename from common/script/libs/updateStore.js rename to website/common/script/libs/updateStore.js diff --git a/common/script/libs/uuid.js b/website/common/script/libs/uuid.js similarity index 100% rename from common/script/libs/uuid.js rename to website/common/script/libs/uuid.js diff --git a/common/script/ops/addTag.js b/website/common/script/ops/addTag.js similarity index 100% rename from common/script/ops/addTag.js rename to website/common/script/ops/addTag.js diff --git a/common/script/ops/addTask.js b/website/common/script/ops/addTask.js similarity index 100% rename from common/script/ops/addTask.js rename to website/common/script/ops/addTask.js diff --git a/common/script/ops/addWebhook.js b/website/common/script/ops/addWebhook.js similarity index 100% rename from common/script/ops/addWebhook.js rename to website/common/script/ops/addWebhook.js diff --git a/common/script/ops/allocate.js b/website/common/script/ops/allocate.js similarity index 100% rename from common/script/ops/allocate.js rename to website/common/script/ops/allocate.js diff --git a/common/script/ops/allocateNow.js b/website/common/script/ops/allocateNow.js similarity index 100% rename from common/script/ops/allocateNow.js rename to website/common/script/ops/allocateNow.js diff --git a/common/script/ops/blockUser.js b/website/common/script/ops/blockUser.js similarity index 100% rename from common/script/ops/blockUser.js rename to website/common/script/ops/blockUser.js diff --git a/common/script/ops/buy.js b/website/common/script/ops/buy.js similarity index 100% rename from common/script/ops/buy.js rename to website/common/script/ops/buy.js diff --git a/common/script/ops/buyArmoire.js b/website/common/script/ops/buyArmoire.js similarity index 100% rename from common/script/ops/buyArmoire.js rename to website/common/script/ops/buyArmoire.js diff --git a/common/script/ops/buyGear.js b/website/common/script/ops/buyGear.js similarity index 100% rename from common/script/ops/buyGear.js rename to website/common/script/ops/buyGear.js diff --git a/common/script/ops/buyHealthPotion.js b/website/common/script/ops/buyHealthPotion.js similarity index 100% rename from common/script/ops/buyHealthPotion.js rename to website/common/script/ops/buyHealthPotion.js diff --git a/common/script/ops/buyMysterySet.js b/website/common/script/ops/buyMysterySet.js similarity index 100% rename from common/script/ops/buyMysterySet.js rename to website/common/script/ops/buyMysterySet.js diff --git a/common/script/ops/buyQuest.js b/website/common/script/ops/buyQuest.js similarity index 100% rename from common/script/ops/buyQuest.js rename to website/common/script/ops/buyQuest.js diff --git a/common/script/ops/buySpecialSpell.js b/website/common/script/ops/buySpecialSpell.js similarity index 100% rename from common/script/ops/buySpecialSpell.js rename to website/common/script/ops/buySpecialSpell.js diff --git a/common/script/ops/changeClass.js b/website/common/script/ops/changeClass.js similarity index 100% rename from common/script/ops/changeClass.js rename to website/common/script/ops/changeClass.js diff --git a/common/script/ops/clearPMs.js b/website/common/script/ops/clearPMs.js similarity index 100% rename from common/script/ops/clearPMs.js rename to website/common/script/ops/clearPMs.js diff --git a/common/script/ops/deletePM.js b/website/common/script/ops/deletePM.js similarity index 100% rename from common/script/ops/deletePM.js rename to website/common/script/ops/deletePM.js diff --git a/common/script/ops/deleteTag.js b/website/common/script/ops/deleteTag.js similarity index 100% rename from common/script/ops/deleteTag.js rename to website/common/script/ops/deleteTag.js diff --git a/common/script/ops/deleteTask.js b/website/common/script/ops/deleteTask.js similarity index 100% rename from common/script/ops/deleteTask.js rename to website/common/script/ops/deleteTask.js diff --git a/common/script/ops/deleteWebhook.js b/website/common/script/ops/deleteWebhook.js similarity index 100% rename from common/script/ops/deleteWebhook.js rename to website/common/script/ops/deleteWebhook.js diff --git a/common/script/ops/disableClasses.js b/website/common/script/ops/disableClasses.js similarity index 100% rename from common/script/ops/disableClasses.js rename to website/common/script/ops/disableClasses.js diff --git a/common/script/ops/equip.js b/website/common/script/ops/equip.js similarity index 100% rename from common/script/ops/equip.js rename to website/common/script/ops/equip.js diff --git a/common/script/ops/feed.js b/website/common/script/ops/feed.js similarity index 100% rename from common/script/ops/feed.js rename to website/common/script/ops/feed.js diff --git a/common/script/ops/getTag.js b/website/common/script/ops/getTag.js similarity index 100% rename from common/script/ops/getTag.js rename to website/common/script/ops/getTag.js diff --git a/common/script/ops/getTags.js b/website/common/script/ops/getTags.js similarity index 100% rename from common/script/ops/getTags.js rename to website/common/script/ops/getTags.js diff --git a/common/script/ops/hatch.js b/website/common/script/ops/hatch.js similarity index 100% rename from common/script/ops/hatch.js rename to website/common/script/ops/hatch.js diff --git a/common/script/ops/hourglassPurchase.js b/website/common/script/ops/hourglassPurchase.js similarity index 100% rename from common/script/ops/hourglassPurchase.js rename to website/common/script/ops/hourglassPurchase.js diff --git a/common/script/ops/index.js b/website/common/script/ops/index.js similarity index 100% rename from common/script/ops/index.js rename to website/common/script/ops/index.js diff --git a/common/script/ops/markPMSRead.js b/website/common/script/ops/markPMSRead.js similarity index 100% rename from common/script/ops/markPMSRead.js rename to website/common/script/ops/markPMSRead.js diff --git a/common/script/ops/openMysteryItem.js b/website/common/script/ops/openMysteryItem.js similarity index 100% rename from common/script/ops/openMysteryItem.js rename to website/common/script/ops/openMysteryItem.js diff --git a/common/script/ops/purchase.js b/website/common/script/ops/purchase.js similarity index 100% rename from common/script/ops/purchase.js rename to website/common/script/ops/purchase.js diff --git a/common/script/ops/readCard.js b/website/common/script/ops/readCard.js similarity index 100% rename from common/script/ops/readCard.js rename to website/common/script/ops/readCard.js diff --git a/common/script/ops/rebirth.js b/website/common/script/ops/rebirth.js similarity index 100% rename from common/script/ops/rebirth.js rename to website/common/script/ops/rebirth.js diff --git a/common/script/ops/releaseBoth.js b/website/common/script/ops/releaseBoth.js similarity index 100% rename from common/script/ops/releaseBoth.js rename to website/common/script/ops/releaseBoth.js diff --git a/common/script/ops/releaseMounts.js b/website/common/script/ops/releaseMounts.js similarity index 100% rename from common/script/ops/releaseMounts.js rename to website/common/script/ops/releaseMounts.js diff --git a/common/script/ops/releasePets.js b/website/common/script/ops/releasePets.js similarity index 100% rename from common/script/ops/releasePets.js rename to website/common/script/ops/releasePets.js diff --git a/common/script/ops/reroll.js b/website/common/script/ops/reroll.js similarity index 100% rename from common/script/ops/reroll.js rename to website/common/script/ops/reroll.js diff --git a/common/script/ops/reset.js b/website/common/script/ops/reset.js similarity index 100% rename from common/script/ops/reset.js rename to website/common/script/ops/reset.js diff --git a/common/script/ops/revive.js b/website/common/script/ops/revive.js similarity index 100% rename from common/script/ops/revive.js rename to website/common/script/ops/revive.js diff --git a/common/script/ops/scoreTask.js b/website/common/script/ops/scoreTask.js similarity index 100% rename from common/script/ops/scoreTask.js rename to website/common/script/ops/scoreTask.js diff --git a/common/script/ops/sell.js b/website/common/script/ops/sell.js similarity index 100% rename from common/script/ops/sell.js rename to website/common/script/ops/sell.js diff --git a/common/script/ops/sleep.js b/website/common/script/ops/sleep.js similarity index 100% rename from common/script/ops/sleep.js rename to website/common/script/ops/sleep.js diff --git a/common/script/ops/sortTag.js b/website/common/script/ops/sortTag.js similarity index 100% rename from common/script/ops/sortTag.js rename to website/common/script/ops/sortTag.js diff --git a/common/script/ops/sortTask.js b/website/common/script/ops/sortTask.js similarity index 100% rename from common/script/ops/sortTask.js rename to website/common/script/ops/sortTask.js diff --git a/common/script/ops/unlock.js b/website/common/script/ops/unlock.js similarity index 100% rename from common/script/ops/unlock.js rename to website/common/script/ops/unlock.js diff --git a/common/script/ops/update.js b/website/common/script/ops/update.js similarity index 100% rename from common/script/ops/update.js rename to website/common/script/ops/update.js diff --git a/common/script/ops/updateTag.js b/website/common/script/ops/updateTag.js similarity index 100% rename from common/script/ops/updateTag.js rename to website/common/script/ops/updateTag.js diff --git a/common/script/ops/updateTask.js b/website/common/script/ops/updateTask.js similarity index 100% rename from common/script/ops/updateTask.js rename to website/common/script/ops/updateTask.js diff --git a/common/script/ops/updateWebhook.js b/website/common/script/ops/updateWebhook.js similarity index 100% rename from common/script/ops/updateWebhook.js rename to website/common/script/ops/updateWebhook.js diff --git a/common/script/statHelpers.js b/website/common/script/statHelpers.js similarity index 100% rename from common/script/statHelpers.js rename to website/common/script/statHelpers.js diff --git a/website/server/controllers/api-v3/content.js b/website/server/controllers/api-v3/content.js index 02b950cd8f..b9f91db6c6 100644 --- a/website/server/controllers/api-v3/content.js +++ b/website/server/controllers/api-v3/content.js @@ -1,4 +1,4 @@ -import common from '../../../../common'; +import common from '../../../common'; import _ from 'lodash'; import { langCodes } from '../../libs/i18n'; import Bluebird from 'bluebird'; diff --git a/website/server/controllers/api-v3/debug.js b/website/server/controllers/api-v3/debug.js index 67d38bef49..a32102b921 100644 --- a/website/server/controllers/api-v3/debug.js +++ b/website/server/controllers/api-v3/debug.js @@ -1,7 +1,7 @@ import { authWithHeaders } from '../../middlewares/auth'; import ensureDevelpmentMode from '../../middlewares/ensureDevelpmentMode'; import { BadRequest } from '../../libs/errors'; -import { content } from '../../../../common'; +import { content } from '../../../common'; import _ from 'lodash'; let api = {}; diff --git a/website/server/controllers/api-v3/quests.js b/website/server/controllers/api-v3/quests.js index 433d13dfeb..2c74dacc8c 100644 --- a/website/server/controllers/api-v3/quests.js +++ b/website/server/controllers/api-v3/quests.js @@ -15,7 +15,7 @@ import { getUserInfo, sendTxn as sendTxnEmail, } from '../../libs/email'; -import common from '../../../../common'; +import common from '../../../common'; import { sendNotification as sendPushNotification } from '../../libs/pushNotifications'; const questScrolls = common.content.quests; diff --git a/website/server/controllers/api-v3/shops.js b/website/server/controllers/api-v3/shops.js index 69bfa6deb8..75137510fb 100644 --- a/website/server/controllers/api-v3/shops.js +++ b/website/server/controllers/api-v3/shops.js @@ -1,5 +1,5 @@ import { authWithHeaders } from '../../middlewares/auth'; -import { shops } from '../../../../common/'; +import { shops } from '../../../common/'; let api = {}; diff --git a/website/server/controllers/api-v3/tasks.js b/website/server/controllers/api-v3/tasks.js index c4d37d5cda..48f5f1812b 100644 --- a/website/server/controllers/api-v3/tasks.js +++ b/website/server/controllers/api-v3/tasks.js @@ -13,7 +13,7 @@ import { createTasks, getTasks, } from '../../libs/taskManager'; -import common from '../../../../common'; +import common from '../../../common'; import Bluebird from 'bluebird'; import _ from 'lodash'; import logger from '../../libs/logger'; diff --git a/website/server/controllers/api-v3/user.js b/website/server/controllers/api-v3/user.js index d0c7001fff..33aa3728ac 100644 --- a/website/server/controllers/api-v3/user.js +++ b/website/server/controllers/api-v3/user.js @@ -1,5 +1,5 @@ import { authWithHeaders } from '../../middlewares/auth'; -import common from '../../../../common'; +import common from '../../../common'; import { NotFound, BadRequest, diff --git a/website/server/controllers/top-level/payments/amazon.js b/website/server/controllers/top-level/payments/amazon.js index 0efa50690d..733a2b19b0 100644 --- a/website/server/controllers/top-level/payments/amazon.js +++ b/website/server/controllers/top-level/payments/amazon.js @@ -7,7 +7,7 @@ import { authWithHeaders, authWithUrl, } from '../../../middlewares/auth'; -import shared from '../../../../../common'; +import shared from '../../../../common'; import payments from '../../../libs/payments'; import moment from 'moment'; import { model as Coupon } from '../../../models/coupon'; diff --git a/website/server/controllers/top-level/payments/paypal.js b/website/server/controllers/top-level/payments/paypal.js index feb565f280..e66596c485 100644 --- a/website/server/controllers/top-level/payments/paypal.js +++ b/website/server/controllers/top-level/payments/paypal.js @@ -6,7 +6,7 @@ import _ from 'lodash'; import payments from '../../../libs/payments'; import ipn from 'paypal-ipn'; import paypal from 'paypal-rest-sdk'; -import shared from '../../../../../common'; +import shared from '../../../../common'; import cc from 'coupon-code'; import Bluebird from 'bluebird'; import { model as Coupon } from '../../../models/coupon'; diff --git a/website/server/controllers/top-level/payments/stripe.js b/website/server/controllers/top-level/payments/stripe.js index e76c6667ab..07c828da98 100644 --- a/website/server/controllers/top-level/payments/stripe.js +++ b/website/server/controllers/top-level/payments/stripe.js @@ -1,5 +1,5 @@ import stripeModule from 'stripe'; -import shared from '../../../../../common'; +import shared from '../../../../common'; import { BadRequest, NotAuthorized, diff --git a/website/server/libs/amazonPayments.js b/website/server/libs/amazonPayments.js index bcf19417a5..5f3ee33707 100644 --- a/website/server/libs/amazonPayments.js +++ b/website/server/libs/amazonPayments.js @@ -1,6 +1,6 @@ import amazonPayments from 'amazon-payments'; import nconf from 'nconf'; -import common from '../../../common'; +import common from '../../common'; import Bluebird from 'bluebird'; import { BadRequest, diff --git a/website/server/libs/analyticsService.js b/website/server/libs/analyticsService.js index b78ec9fd3b..1bc18a8d18 100644 --- a/website/server/libs/analyticsService.js +++ b/website/server/libs/analyticsService.js @@ -8,7 +8,7 @@ import { each, omit, } from 'lodash'; -import { content as Content } from '../../../common'; +import { content as Content } from '../../common'; const AMPLIUDE_TOKEN = nconf.get('AMPLITUDE_KEY'); const GA_TOKEN = nconf.get('GA_ID'); diff --git a/website/server/libs/cron.js b/website/server/libs/cron.js index cc451a84a8..761b22c439 100644 --- a/website/server/libs/cron.js +++ b/website/server/libs/cron.js @@ -1,7 +1,7 @@ import moment from 'moment'; import Bluebird from 'bluebird'; import { model as User } from '../models/user'; -import common from '../../../common/'; +import common from '../../common/'; import { preenUserHistory } from '../libs/preening'; import _ from 'lodash'; import nconf from 'nconf'; diff --git a/website/server/libs/errors.js b/website/server/libs/errors.js index 73a3c23c54..43151c16a6 100644 --- a/website/server/libs/errors.js +++ b/website/server/libs/errors.js @@ -1,4 +1,4 @@ -import common from '../../../common'; +import common from '../../common'; export const CustomError = common.errors.CustomError; diff --git a/website/server/libs/i18n.js b/website/server/libs/i18n.js index 4780fe93ca..85c74df272 100644 --- a/website/server/libs/i18n.js +++ b/website/server/libs/i18n.js @@ -1,9 +1,9 @@ import fs from 'fs'; import path from 'path'; import _ from 'lodash'; -import shared from '../../../common'; +import shared from '../../common'; -export const localePath = path.join(__dirname, '/../../../common/locales/'); +export const localePath = path.join(__dirname, '../../common/locales/'); // Store translations export let translations = {}; diff --git a/website/server/libs/payments.js b/website/server/libs/payments.js index eea4637e19..6b27e88b11 100644 --- a/website/server/libs/payments.js +++ b/website/server/libs/payments.js @@ -6,7 +6,7 @@ import { } from './email'; import moment from 'moment'; import { sendNotification as sendPushNotification } from './pushNotifications'; -import shared from '../../../common' ; +import shared from '../../common' ; let api = {}; diff --git a/website/server/middlewares/cron.js b/website/server/middlewares/cron.js index 59fccd0c34..495a2e9514 100644 --- a/website/server/middlewares/cron.js +++ b/website/server/middlewares/cron.js @@ -1,6 +1,6 @@ import _ from 'lodash'; import moment from 'moment'; -import common from '../../../common'; +import common from '../../common'; import * as Tasks from '../models/task'; import Bluebird from 'bluebird'; import { model as Group } from '../models/group'; diff --git a/website/server/middlewares/language.js b/website/server/middlewares/language.js index 9223c53bad..50ef8a2b16 100644 --- a/website/server/middlewares/language.js +++ b/website/server/middlewares/language.js @@ -1,6 +1,6 @@ import { model as User } from '../models/user'; import accepts from 'accepts'; -import common from '../../../common'; +import common from '../../common'; import _ from 'lodash'; import { translations, diff --git a/website/server/middlewares/locals.js b/website/server/middlewares/locals.js index 1a85f072cf..f32370b2ac 100644 --- a/website/server/middlewares/locals.js +++ b/website/server/middlewares/locals.js @@ -1,6 +1,6 @@ import nconf from 'nconf'; import _ from 'lodash'; -import shared from '../../../common'; +import shared from '../../common'; import * as i18n from '../libs/i18n'; import { getBuildUrl, diff --git a/website/server/middlewares/static.js b/website/server/middlewares/static.js index 86e207628d..c21bca00c5 100644 --- a/website/server/middlewares/static.js +++ b/website/server/middlewares/static.js @@ -4,15 +4,16 @@ import path from 'path'; const IS_PROD = nconf.get('IS_PROD'); const MAX_AGE = IS_PROD ? 31536000000 : 0; +const ASSETS_DIR = path.join(__dirname, '/../../assets'); const PUBLIC_DIR = path.join(__dirname, '/../../client-old'); const BUILD_DIR = path.join(__dirname, '/../../build'); module.exports = function staticMiddleware (expressApp) { // TODO move all static files to a single location (one for public and one for build) expressApp.use(express.static(BUILD_DIR, { maxAge: MAX_AGE })); - expressApp.use('/common/dist', express.static(`${PUBLIC_DIR}/../../common/dist`, { maxAge: MAX_AGE })); - expressApp.use('/common/audio', express.static(`${PUBLIC_DIR}/../../common/audio`, { maxAge: MAX_AGE })); - expressApp.use('/common/img', express.static(`${PUBLIC_DIR}/../../common/img`, { maxAge: MAX_AGE })); + expressApp.use('/assets/audio', express.static(`${ASSETS_DIR}/audio`, { maxAge: MAX_AGE })); + expressApp.use('/assets/sprites', express.static(`${ASSETS_DIR}/sprites/dist`, { maxAge: MAX_AGE })); + expressApp.use('/assets/img', express.static(`${PUBLIC_DIR}/../../website/assets/img`, { maxAge: MAX_AGE })); expressApp.use(express.static(PUBLIC_DIR)); // Expose new client when not in production diff --git a/website/server/models/challenge.js b/website/server/models/challenge.js index 72a3691348..6de0451ee6 100644 --- a/website/server/models/challenge.js +++ b/website/server/models/challenge.js @@ -10,7 +10,7 @@ import { TAVERN_ID, } from './group'; import { removeFromArray } from '../libs/collectionManipulators'; -import shared from '../../../common'; +import shared from '../../common'; import { sendTxn as txnEmail } from '../libs/email'; import { sendNotification as sendPushNotification } from '../libs/pushNotifications'; import cwait from 'cwait'; diff --git a/website/server/models/coupon.js b/website/server/models/coupon.js index 43787f5c03..b76be3eaa5 100644 --- a/website/server/models/coupon.js +++ b/website/server/models/coupon.js @@ -2,7 +2,7 @@ import mongoose from 'mongoose'; import _ from 'lodash'; -import shared from '../../../common'; +import shared from '../../common'; import couponCode from 'coupon-code'; import baseModel from '../libs/baseModel'; import { diff --git a/website/server/models/group.js b/website/server/models/group.js index 66dbaacb67..b273902475 100644 --- a/website/server/models/group.js +++ b/website/server/models/group.js @@ -3,7 +3,7 @@ import { model as User, nameFields, } from './user'; -import shared from '../../../common'; +import shared from '../../common'; import _ from 'lodash'; import { model as Challenge} from './challenge'; import * as Tasks from './task'; diff --git a/website/server/models/task.js b/website/server/models/task.js index 4a7539a5b4..35121645c8 100644 --- a/website/server/models/task.js +++ b/website/server/models/task.js @@ -1,5 +1,5 @@ import mongoose from 'mongoose'; -import shared from '../../../common'; +import shared from '../../common'; import validator from 'validator'; import moment from 'moment'; import baseModel from '../libs/baseModel'; diff --git a/website/server/models/user/hooks.js b/website/server/models/user/hooks.js index abdee00061..314e9f69e9 100644 --- a/website/server/models/user/hooks.js +++ b/website/server/models/user/hooks.js @@ -1,4 +1,4 @@ -import shared from '../../../../common'; +import shared from '../../../common'; import _ from 'lodash'; import moment from 'moment'; import * as Tasks from '../task'; diff --git a/website/server/models/user/methods.js b/website/server/models/user/methods.js index c3f2157d8b..0fe9777118 100644 --- a/website/server/models/user/methods.js +++ b/website/server/models/user/methods.js @@ -1,4 +1,4 @@ -import common from '../../../../common'; +import common from '../../../common'; import Bluebird from 'bluebird'; import { chatDefaults, diff --git a/website/server/models/user/schema.js b/website/server/models/user/schema.js index c40228d698..167add3a4c 100644 --- a/website/server/models/user/schema.js +++ b/website/server/models/user/schema.js @@ -1,5 +1,5 @@ import mongoose from 'mongoose'; -import shared from '../../../../common'; +import shared from '../../../common'; import _ from 'lodash'; import validator from 'validator'; import { schema as TagSchema } from '../tag'; diff --git a/website/views/static/features.jade b/website/views/static/features.jade index 50beab9751..d31fc67c72 100644 --- a/website/views/static/features.jade +++ b/website/views/static/features.jade @@ -37,8 +37,8 @@ block content a.gallery(href='/marketing/guild.png', title=env.t('marketing2Header')) img.img-rendering-auto(src='/marketing/guild.png') p.lead=env.t('marketing2Lead1') - a.gallery(href='/common/img/sprites/spritesmith/quests/bosses/quest_vice3.png', title=env.t('marketing2Lead2Title')) - img(src='/common/img/sprites/spritesmith/quests/bosses/quest_vice3.png') + a.gallery(href='/assets/img/sprites/spritesmith/quests/bosses/quest_vice3.png', title=env.t('marketing2Lead2Title')) + img(src='/assets/img/sprites/spritesmith/quests/bosses/quest_vice3.png') p.lead!=env.t('marketing2Lead2') .col-md-6 a.gallery(href='/marketing/challenge.png', title=env.t('challenges'))